/*=====================================================
* 01.全体
* 02.header
* 03.nav
* 04.title
* 05.top
* 06.会社案内
* 07.事業案内
* 08.保有物件
* 09.パートナー募集
* 10.個人情報保護方針
* 11.お役立ちリンク
* 12.form

* 20.ボタン
* 21.icon/リスト
* 90.footer
* 100.common
========================================================*/


/*----------------------
 * 01.全体
----------------------*/

html {
	font-size: 62.5%;
}

body {
	font-size: 1.6rem!important;
	line-height: 1.8;
}

.contens-in-sp {
	margin-left: 15px;
	margin-right: 15px;
}

.bg-White {
	padding-bottom: 160px;
}

.bg-Lgray {
	padding-bottom: 130px;
	padding-top: 15px;
}

.bg-Lgray-sp {
	background-color: #f4f4f4;
}

.bg-White-in {
	background-color: #FFF;
	padding: 1em;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
}


/*----------------------
 * 02.header
----------------------*/

header {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 86px;
	background-color: #fff;
	z-index: 200;
}

.header-line {
	border-top: 4px #edac3c solid;
}

.logo-wrap-sp {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
}

img.logo{	
width: 3.5em;
	vertical-align: bottom;}

/*----------------------
* 03.nav
----------------------*/

.global-nav {
	position: fixed;
	right: -320px;
	/* 隠す */
	top: 0;
	width: 200px;
	/* スマホに収まるくらい */
	height: 100vh;
	padding-top: 50px;
	background-color: #edac3c;
	/*Mandarin*/
	transition: all .6s;
	z-index: 250;
	overflow-y: auto;
	/* メニューが多くなったらスクロールできるように */
}

.hamburger {
	position: absolute;
	right: 6%;
	top: -4px;
	width: 8%;
	/* 幅指定 */
	height: 46px;
	/* 高さ指定 */
	cursor: pointer;
	z-index: 300;
}

ul.global-nav__list, ul.global-sub {
	margin: 0;
	padding: 0;
	list-style: none;
}

ul.global-nav__list li, ul.global-sub li {
	text-align: left;
	padding: 14px 24px;
}

ul.global-nav__list li a, ul.global-sub li a {
	display: block;
	position: relative;
	text-decoration: none;
	color: #000;
	font-weight: 600;
	font-family: 'Noto Sans JP', sans-serif;
}

ul.global-nav__list li a:after, ul.global-sub li a:after {
	display: block;
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
	width: 6px;
	height: 6px;
	margin: -4px 0 0 0;
	border-top: solid 2px #000;
	border-right: solid 2px #000;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

ul.global-nav__list li a>div {
	color: #020452;
	font-size: .8em;
	font-family: 'Open Sans', sans-serif;
}

ul.global-sub li {
	padding: 16px 24px 0;
	font-size: .8em;
}

.hamburger__line {
	position: absolute;
	left: 0px;
	width: 100%;
	height: 4px;
	background-color: #020452;
	/*Navy*/
	transition: all .6s;
}

.hamburger__line--1 {
	top: 30px;
}

.hamburger__line--2 {
	top: 40px;
}

.hamburger__line--3 {
	top: 50px;
}

.black-bg {
	position: fixed;
	left: 0;
	top: 0;
	width: 100vw;
	height: 100vh;
	z-index: 100;
	background-color: #000;
	opacity: 0;
	visibility: hidden;
	transition: all .6s;
	cursor: pointer;
}


/* 表示された時用のCSS */

.nav-open .global-nav {
	right: 0;
}

.nav-open .black-bg {
	opacity: .2;
	visibility: visible;
}

.nav-open .hamburger__line--1 {
	transform: rotate(45deg);
	top: 35px;
	background-color: #FFF;
}

.nav-open .hamburger__line--2 {
	width: 0;
	left: 50%;
}

.nav-open .hamburger__line--3 {
	transform: rotate(-45deg);
	top: 35px;
	background-color: #FFF;
}


/*----------------------
 * 04.title
----------------------*/

.about-ttl h1, .bus-ttl h1, .property-ttl h1, .partners-ttl h1, .contact-ttl h1, .privacy-ttl h1, .links-ttl h1 {
	display: table;
}


/*会社案内*/

.about-ttl {
	background-position: 10% top;
	width: 100%;
	background-size: auto 100%;
	margin-top: 86px;
}

.about-ttl h1 img {
	width: 96%;
	display: table-cell;
	vertical-align: middle;
}


/*事業案内*/

.bus-ttl {
	background-position: 10% top;
	width: 100%;
	background-size: auto 100%;
	margin-top: 86px;
}

.bus-ttl h1 img {
	width: 96%;
	display: table-cell;
	vertical-align: middle;
}


/*保有物件*/

.property-ttl {
	background-position: 10% top;
	width: 100%;
	background-size: auto 100%;
	margin-top: 86px;
}

.property-ttl h1 img {
	width: 96%;
	display: table-cell;
	vertical-align: middle;
}


/*パートナー募集*/

.partners-ttl {
	background-position: 10% top;
	width: 100%;
	background-size: auto 100%;
	margin-top: 86px;
}

.partners-ttl h1 img {
	width: 96%;
	display: table-cell;
	vertical-align: middle;
}


/*お問い合わせ*/

.contact-ttl {
	background-position: 10% top;
	background-size: auto 100%;
	margin-top: 86px;
}

.contact-ttl h1 img {
	width: 96%;
	display: table-cell;
	vertical-align: middle;
}


/*個人情報*/

.privacy-ttl {
	background-position: 10% top;
	background-size: auto 100%;
	margin-top: 86px;
}

.privacy-ttl h1 img {
	width: 96%;
	display: table-cell;
	vertical-align: middle;
}


/*お役立ちリンク*/

.links-ttl {
	background-position: 10% top;
	background-size: auto 100%;
	margin-top: 86px;
}

.links-ttl h1 img {
	width: 96%;
	display: table-cell;
	vertical-align: middle;
}

/*----------------------
* 05.top
----------------------*/

.kv-sp {
	width: 100%;
	height: auto;
	margin-top: 86px;
	background-color: #f4f4f4;
}

.top-news-wrap {
	position: relative;
	margin-bottom: 40px;
}

.top-news-wrap .top-news_img {
	display: none;
}

.top-news-wrap .top-news_img img {
	display: none;
}

.top-news-wrap .bg {
	display: none;
}

.top-news-wrap .news {
	background-color: #FFF;
	padding: 1.5em;
	margin-left: 2em;
	margin-right: 2em;
}

dl.news-info {
	padding: 1em 0 0 0;
}

dl.news-info dt {
	color: #363636;
	text-align: left;
	font-weight: bold;
	display: block;
}

dl.news-info dd {
	display: block;
	padding-bottom: 1em;
}

dl.news-info dd:last-child {
	padding-bottom: 0;
}

.news h1 {
	border-bottom: #020452 3px solid;
	color: #020452;
	font-size: 1.2em;
	line-height: 1;
	padding-bottom: .5em;
}


/*----------------------
* 06.会社案内
----------------------*/

dl.tbl {
	display:flex;
	flex-wrap: wrap;
	width: 100%;
	background-color: #FFF;
	margin-left: auto;
	margin-right: auto;
	padding: 1em;
}

dl.tbl dt {
	color: #020452;
	text-align: left;
	font-weight:500;
	width: 30%;
	padding-top: .5em;
	padding-bottom: .5em;
	border-bottom:#d0d8e0 1px dotted;
}

dl.tbl dd {
	font-weight:500;
	padding-top: .5em;
	padding-bottom: .5em;
	width: 70%;
	border-bottom:#d0d8e0 1px dotted;
}

dl.tbl dt:last-of-type,
dl.tbl dd:last-child{border-bottom:none;}


/*----------------------
* 07.事業案内
----------------------*/

.bus-wrap-r/*テキスト右*/
{
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 100px;
}

.bus-wrap-l/*テキストひだり*/
{
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 100px;
}

.bus-wrap-l .txt img, .bus-wrap-r .txt img {
	width: 80%;
}

.bus-wrap-l .txt, .bus-wrap-r .txt {
	background-color: #FFF;
	padding: 2em;
}

.bus-wrap-l .img, .bus-wrap-r .img {
	overflow: hidden;
	width: 100%;
	height: 100px;/* トリミングしたい枠の高さ */
	position: relative;
}

.bus-wrap-l .img img, .bus-wrap-r .img img {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 100%;
	height: auto;
}

.item1-sp {
	order: 1;
}

.item2-sp {
	order: 2;
}

/*----------------------
* 08.保有物件
----------------------*/

.soon {
	height: 400px;
	display: block;
	text-align: center;
	vertical-align: middle;
	font-size: 1.2em;
}

/*----------------------
* 09.パートナー募集
----------------------*/

.partners-wrap-l
/*枠線*/

{
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 50px;
}

.partners-wrap-l .txt {
	background-color: #edac3c;
	width: 100%;
	padding: 2em;
}

.partners-wrap-l .txt h2 {
	color: #000;
}

.partners-wrap-l .txt h3 {
	color: #FFF;
}

.partners-wrap-l .img {
	background-color: #FFF;
	padding: 2em 2em 2em 2em;
}


/*----------------------
* 10.個人情報保護方針
----------------------*/

.ttl-bold {
	font-size: 1.2em;
	line-height: 1.5;
	font-weight: 500;
	margin-top: 3em;
	margin-bottom: 1em;
	font-weight: 600;
}

.img-txt{
	width: 60%;
	vertical-align: middle;
	padding-top: .1em;
}

.content-block span {
	font-weight: 600;
	color: #020452;
}

/*----------------------
 * 11.お役立ちリンク
----------------------*/

ul.link-lst{
	}
	
ul.link-lst li{
	padding-bottom:4em;
	}
	
ul.link-lst li:last-of-type{
	padding-bottom:0!important;
	}
		
ul.link-lst li:nth-of-type(odd){
	border-bottom:#d0d8e0 1px dotted;
	padding-top: 1em;
	padding-bottom: 1em;
	}	
	
ul.link-lst li:nth-of-type(even){
	padding-top: 1em;
	padding-bottom: 1em;
	}

dl.link-lst{
	margin-left:0;
	}
	
dl.link-lst a{color:#020452;}
dl.link-lst dt{
	color:#020452;
	font-size:1.15em;
	margin-left:0;
	}

dl.link-lst dd:nth-of-type(1){
	font-size:.6em;
	margin-bottom:1em;
	}	
dl.link-lst dd:nth-of-type(n+2){
	font-size:1em;
	}

/*----------------------
 * 12.form
----------------------*/
input,
textarea{
    font-size: 16px;
}

dl.contact {
	padding: 1em 0;
}

dl.contact dt {
	color: #363636;
	text-align: left;
	font-weight: bold;
	display: block;
	padding-bottom: .2em;
}

dl.contact dd {
	display: block;
	padding-bottom: .2em;
	margin-bottom: 1em;
}

input[type='submit'] {
	display: block;
	font-size: 1em;
	width: 55%;
	padding: 1em;
	font-weight: 600;
	letter-spacing: .2em;
	margin-bottom: 2em;
}

input.submit-m[type='submit'] {/*form用*/
	display:inline-block;
	font-size: 1em;
	font-weight: 500;
	padding: .6em 1em;
	letter-spacing: .2em;
	line-height: 1;
}
.btn-back{/*form用*/
	display:inline-block;
	font-size: 1em;
	padding: .6em;
	letter-spacing: 0;
	line-height: 1;
}

input[type='reset'] {
	display: block;
	font-size: 1em;
	width: 55%;
	padding: .5em;
}

input[type='submit']:hover,
input[type='submit']:active {
	border: #edac3c 2px solid;
	background-color: rgba(273, 172, 60, .8);
	box-sizing: border-box;
}

input[type='reset']:hover,
input[type='reset']:active {
	border: #bac6d2 2px solid;
	background-color: rgba(186, 198, 210, .8);
	box-sizing: border-box;
}

textarea {
	height: 200px;
	width: 100%;
	padding: 5px;
}

input[type='text'] {
	font-size: 1em;
	padding: 0.4em 0.8em;
	width: 100%;
}

input[type='text']:focus {
	border: 1px solid rgba(0, 0, 0, 0.32);
	box-shadow: none;
	outline: none;
}

#formWrap{ 
		padding:1em;
		background-color:#FFF;
    margin-left: 1em;
    margin-right:1em;
}

.form-box > h2{ line-height:1.5;}
#formWrap h3{ text-align:center;}

.formTable{
	margin:2em auto;
	}

.formTable th{ 
	font-weight:500; 
	text-align:left;
	width:20%;
	padding: 1em 0;
	color: #020452;
	font-weight: 500;
	font-size: 1em;
	vertical-align: top;
	border-bottom: #d0d8e0 1px dotted;
	}
	
.formTable th:first-of-type,
.formTable td:first-of-type{border-top: #d0d8e0 1px dotted;}
	
.formTable td{
		padding: 1em 0;
    font-weight: 500;
    font-size: 1em;
    vertical-align: middle;
		border-bottom: #d0d8e0 1px dotted;
	}

/*
input[type="text"] {
	width: 100%;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.select-box {
	overflow: hidden;
	width: 90%;
	margin-left:auto;
	margin-right:auto;
	text-align: center;
}
.select-box select {
	width:auto;
	padding-right: 1em;
	cursor: pointer;
	text-indent: 0.01px;
	text-overflow: ellipsis;
	border: none;
	outline: none;
	background: transparent;
	background-image: none;
	box-shadow: none;
	-webkit-appearance: none;
	appearance: none;
}
.select-box select::-ms-expand {
	display: none;
}
.select-box.cp_sl01 {
	position: relative;
	border: 1px solid #bbbbbb;
	border-radius: 2px;
	background: #ffffff;
}
.select-box.cp_sl01::before {
	position: absolute;
	top: 1em;
	right: 0.9em;
	width: 0;
	height: 0;
	padding: 0;
	content: '';
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-top: 9px solid #666666;
	pointer-events: none;
}
.select-box.cp_sl01 select {
	padding: 8px 38px 8px 8px;
	color: #666666;
}

input[type="radio"] {
	display: none;
}

label {
	position: relative;
	display: inline-block;
	padding: 3px 3px 3px 20px;
	cursor: pointer;
}

label::before, 
label::after {
	position: absolute;
	content: '';
	top: 50%;
	border-radius: 100%;
	-webkit-transition: all .2s;
	transition: all .2s;
}

label::before {
	left: 0;
	width: 14px;
	height: 14px;
	margin-top: -8px;
	background: #f3f3f3;
	border: 1px solid #ccc;
}

label:hover::before {
	background: #fff;
}

label::after {
	opacity: 0;
	left: 4px;
	width: 8px;
	height: 8px;
	margin-top: -4px;
	background: #3498db;
	-webkit-transform: scale(2);
	transform: scale(2);
}

input[type="radio"]:checked+label::before {
	background: #fff;
	border: 1px solid #3498db;
}

input[type="radio"]:checked+label::after {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}

.select-box.sl-op-main{
	position: relative;
	border: 1px solid #bbbbbb;
	border-radius: 2px;
	background: #FFF;
	margin-top:1em;
	margin-bottom:1em;
}

.select-box.sl-op-main select {
	padding:.6em 1.6em .6em .6em;
	color: #666666;
	cursor: pointer;
	text-indent: 0.01px;
	text-overflow: ellipsis;
	border: none;
	outline: none;
	background: transparent;
	background-image: none;
	box-shadow: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	font-size:1.1em;
	text-align: center;
	text-align: -webkit-center;
	text-align: -moz-center;
	margin-left:auto;
	margin-right:auto;
}

.select-box.sl-op-main::before {
	position: absolute;
	top: 1.2em;
	right: 1.5em;
	width: 0;
	height: 0;
	padding: 0;
	content:"";
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
	border-top: 6px solid #666666;
	pointer-events: none;
}
*/


/*----------------------
 * 20.ボタン
----------------------*/
.btn-orange {
	display: inline-block;
	font-size: 1em;
	padding: .6em 2em;
	letter-spacing: .2em;
}

.btn-navy {
	display: inline-block;
	font-size: 1em;
	padding: .6em 2em;
	letter-spacing: .2em;
}

/*----------------------
 * 21.icon/リスト
----------------------*/

ul.lst-dot li {
	z-index: -1;
}

ul.lst-no li {
	z-index: -1;
	margin-left: 1em;
}

.icon-yellow-news, .icon-green-news {
	padding: 0 .3em;
}

ol.num {
	margin-left: -.2em;
}

ol.num li {
	padding-left: 1.5em;
	margin-bottom: 1em;
}

ol.num-s li {
	padding-left: 1.5em;
}

ol.num li:before, ol.num-s li:before {
	position: absolute;
	top: .2em;
	left: 0;
	width: 1.3em;
	height: 1.3em;
	line-height: 1.2em;
}

ul.list-link {
	padding-top: 0;
	padding-bottom: 2em;
	margin-bottom: 2em;
}

.icon-pdf, .icon-excel {
	background-size: 18px auto;
	padding-right: 20px;
}


/*----------------------
 * 90.footer
----------------------*/

.bottom-area {
	height: 145px;
}

.footer-wrap {
	background-size: 100%;
	padding-top: 80px;
}

.footer_copyright {
	font-size: .6em;
	height: 40px;
	width: 100%;
	text-align: center;
}


/*----------------------
 * 100.common
----------------------*/

.dsp-no-sp {
	display: none!important;
	visibility: hidden;
}

.mt-s {
	margin-top: 5px;
}

.mt-m {
	margin-top: 10px;
}

.mt-m-sp {
	margin-top: 15px;
}

.mt-l {
	margin-top: 30px;
}

.mt-xl {
	margin-top: 40px;
}

.mb-m {
	margin-bottom: 10px;
}

.mb-l {
	margin-bottom: 30px;
}

.mb-xl {
	margin-bottom: 40px;
}

.mb-xxl {
	margin-bottom: 60px;
}

.size-xs {
	font-size: 0.6em;
}

.br-sp {
	display: block!important;
}

.br-pc {
	display: none;
}