@charset "utf-8";



/*リセットCSS（sanitize.css）の読み込み
---------------------------------------------------------------------------*/
@import url("https://unpkg.com/sanitize.css");

/*Font Awesomeの読み込み
---------------------------------------------------------------------------*/
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css");

/*Google Fontsの読み込み
---------------------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+1+Code:wght@400;500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&display=swap');

/*slick.cssの読み込み
---------------------------------------------------------------------------*/
@import url("https://cdn.jsdelivr.net/npm/slick-carousel@1.8.1/slick/slick.css");

/*テンプレート専用cssファイルの読み込み
---------------------------------------------------------------------------*/
@import url("animation.css");
@import url("inview.css");



/*全体の設定
---------------------------------------------------------------------------*/
html,body {
	margin: 0;padding: 0;
	font-size: 13px;	/*基準となるフォントサイズ。下の方にある「画面幅900px以上」で基準を大きなサイズに再設定しています。*/
	overflow-x: hidden;
}

body {
	font-family: BlinkMacSystemFont,Roboto,"Segoe UI","Helvetica Neue",HelveticaNeue,YuGothic,"Yu Gothic Medium","Yu Gothic",Verdana,Meiryo,sans-serif;
	-webkit-text-size-adjust: none;
	letter-spacing: 0.05em;
	background: #fff;	/*背景色*/
	color: #555;		/*全体の文字色*/
	line-height: 2;		/*行間*/
}
/* 横並び */
.flex {
	display: flex;
}

/*リセット*/
figure {margin: 0;}
dd {margin: 0;}
nav {margin: 0;padding: 0;}

/*table全般の設定*/
table {border-collapse:collapse;}

/*画像全般の設定*/
img {border: none;max-width: 100%;height: auto;vertical-align: middle;}

/*videoタグ*/
video {max-width: 100%;}

/*iframeタグ*/
iframe {width: 100%;}

/*ul,olタグ*/
ul, ol {margin-bottom: 30px;}


/*リンクテキスト全般の設定
---------------------------------------------------------------------------*/
a {
	color: #57524b;	/*文字色*/
	transition: 0.3s;
}


/*sectionタグと、詳細ページの共通設定
---------------------------------------------------------------------------*/
section,
main > article {
	margin: 0 auto;
	padding: 5% 2%;		/*ボックス内の余白*/
}


/*2カラムブロック（※900px未満では１カラム）
---------------------------------------------------------------------------*/
/*２カラムを囲むブロック*/
.c2 {
	display: flex;			/*flexボックスを使う指定*/
	flex-direction: column;	/*子要素を縦並びにする*/
}

/*c2内のh2見出し*/
.c2 h2 {
	font-size: 2em;
}

/*小さい端末で見た場合（１カラムになった際）に、画像を常に先頭に持ってくる*/
.c2 .image {
	order: -1;
}


/*header（ロゴなどが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	display: flex;					/*flexボックスを使う指定*/
	justify-content: space-between;	/*並びかたの種類の指定*/
	align-items: center;			/*垂直揃えの指定。天地中央に配置されるように。*/
	background: #fff;
	position: fixed; z-index: 100;	/*スクロールしても動かないようにする指定*/
	width: 100%;
	height: 73px;					/*ヘッダーの高さ。変更する場合、数行下にある#mainimgのtopの数値も合わせて変更して下さい。*/
	box-shadow: 0 0.5rem 0.5rem -0.5rem hsl(200 50% 20% / 20%);
}

/*ヘッダーのリンクテキストの文字色*/
header a {
	color: #000;
}

/*ロゴ画像*/
header #logo img {
	display: block;
	margin-left: 10px;
}
header #logo {
	margin: 0;
	width: 250px;	/*幅*/
}


/*トップページのメイン画像
---------------------------------------------------------------------------*/
/*全体を囲むブロック*/
#mainimg {
	width: 100%;
	height: 0;
	padding: 0;
	padding-top: 56.25%;
	position: relative;
	top: 50px;	/*headerのheightの数値と合わせて下さい。*/
	overflow: hidden;
	background: url(../images/mainimg.jpg) no-repeat center center / 100%;	/*背景色、背景画像の読み込み、最後の100%は画像幅。*/
	color: #fff;	/*文字色*/
}

/*テキストブロック*/
#mainimg #text {
	position: absolute;
	left: 3%;		/*mainimgに対して左からの配置場所指定*/
	top: 0px;		/*mainimgに対して上からの配置場所指定*/
	width: 100%;	/*幅*/
	height: 100%;	/*高さ*/
	display: flex;			/*flexボックスを使う指定*/
	align-items: center;	/*垂直揃えの指定。天地中央に配置されるように。*/
}
.scroll, .scrolldown1, .fa-angle-double-down {
	display: none;
}
.fa-lock {
	margin-right: 15px;
	font-size: 1.2em;
}
@media (max-width: 1020px) and (min-width: 768px) {
	#mainimg #text {
		top: 10%;
	}

}
@media (max-width: 767px) {
	#mainimg {
		background: url(../images/mainimg.jpg);
		background-size: cover;
		background-position: center;
		height: 100vh;
		position: relative;
	}
	#mainimg::before {
	content: '';
	background-color: rgba(0, 0, 0, 0.158);
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;
	z-index: 0;
}
	#mainimg #text {
		align-items: center;
		justify-content: center;
		left: 0%;
		text-align: center;
		top: 0%;
	}

	.scroll, .scrolldown1, .fa-angle-double-down {
		display: block;
	}
	.scroll {
		margin-top: 20%;
	}
	.scrolldown1 {
		font-size: 1.2em;
	}
}

/*h2見出し*/
#mainimg #text h2 {
	margin: 0;
	font-weight: 500;	/*文字の太さ。数値が大きいほど太くなります。*/
	font-size: 4vw;	/*文字サイズ。画面幅に対する単位です。*/
	text-shadow: 1px 1px 2px rgba(0,0,0,0.3);	/*テキストの影。右へ、下へ、ぼかし幅。0,0,0は黒の事で0.3は色が30%出た状態。*/
}
@media (max-width: 1020px) and (min-width: 768px) {
	#mainimg #text h2 {
		font-size: 5vw;
	}
}
@media (max-width: 767px) {
	#mainimg #text h2 {
		font-size: 8vw;
	}
}
/*pタグ。小文字の説明文。*/
#mainimg #text p.text {
	font-size: 15px;		/*文字サイズ*/
	/* margin: 0 10px 30px;	上、左右、下へのpタグ内の余白 */
	text-shadow: 1px 1px 2px #808080;
}
/* 会社ロゴ */
.logo {
	width: 100%;
}
.logo img {
	width: auto;
	height: auto;
	margin: -15px 15px 20px;
	object-fit: contain;
}
@media (max-width: 1020px) and (min-width: 768px) {
	.logo img {
	margin: -30px 15px 20px;
	}
	p.text {
		text-shadow: 1px 2px 3px #808080;
	}
}

@media (max-width: 767px) {
	.logo {
		justify-content: center;
		padding-bottom: 30px;
	}
	.logo img {
		width: 22%;
	}
	p.text {
		text-shadow: 1px 2px 3px #808080;
		text-align: initial;
		margin-bottom: 40px;
	}
}

/*menubarブロック初期設定
---------------------------------------------------------------------------*/
#menubar ul {list-style: none;margin: 0;padding: 0;}

/*メニューを非表示にしておく*/
#menubar {display: none;}

/*開閉用のスタイル*/
#menubar.db {display: block;}
#menubar.dn {display: none;}

/*メニュー１個あたりの設定*/
#menubar {
	vertical-align: middle;
}
#menubar a {
	display: block;text-decoration: none;
	text-align: center;		/*テキストを中央に*/
	letter-spacing: 0.1em;	/*文字間隔を少しだけ広くする指定*/
	padding: 10px;			/*メニュー内の余白*/
	position: relative;
}
.t3 {
	border-left: 1px solid #eee;
}
	.t3 a {
		top: 8%;
	}
.t3 a::after {
	position: absolute; /*親要素であるaタグを基準に位置を指定*/
	left: 0;            /*アンダーラインを各メニュー（aタグ）の左端に指定*/
	content: '';        /*本来は、擬似要素に入るテキストなどを’’内に指定。今回はアンダーラインなので何も記載しない*/
	width: 100%;        /*アンダーラインを各aタグの幅に合わせる*/
	height: 2px;        /*アンダーラインの高さ（太さ）*/
	background: rgb(190, 170, 90);/*アンダーラインの色*/
	bottom: 20px; /*アンダーラインが現れ始める位置（aタグの下辺からの高さ）*/
	opacity: 0;
	visibility: hidden;
	transition: 0.3s;
	}
	@media (max-width: 1020px) and (min-width: 768px) { 
		.t3 a::after {
			display: none;
		}
		.t3 {
			border: none;
		}
	}
	@media (max-width: 767px) {
	.t3 {
		border: none;
	}
	.t3 a::after {
		display: none;
	}
}
	.lock {
	background: linear-gradient( 180deg, rgba(175, 152, 65, 1) 0%, rgba(200, 182, 108, 1) 100% );
	box-shadow: inset 0 0 0 1px #fff;
	border: 4px solid rgb(190, 170, 90);
	}
	.lock a {
	color: #fff;
	text-shadow: 1px 2px 3px rgba(0,0,0,0.2);
	font-size: 1.1em;
	}
	.lock a:hover {
		transform: scale(1.03);
		filter: brightness(1.1);
	}
#menubar a:hover::after {
	visibility: visible;
	bottom: 10px; /*アニメーションが止まる位置*/
	opacity: .8;
	}



/*小さな端末用の設定（開閉ブロック）
---------------------------------------------------------------------------*/
/*メニューブロック設定*/
.s #menubar.db {
	position: fixed;overflow: auto;z-index: 100;
	left: 0px;top: 0px;
	width: 100%;
	height: 100%;
	padding: 70px 20px;	/*上下、左右へのブロック内の余白*/
	/* background: rgba(0,0,0,0.9);		背景色。0,0,0は黒の事で0.9は色が90%出た状態の事。 */
	/* background: rgba(175, 151, 65, 0.829); */
	/* background: rgba(190, 175, 135, 0.815); */
	background: rgba(255, 255, 255, 0.856);
	animation: animation1 0.2s both;	/*animation.cssの、animation1を実行する。0.2sは0.2秒の事。*/
	text-align: center;	/*内容をセンタリング*/
	color: #fff;		/*文字色*/
	font-size: 1.1em;
}
.s #menubar.db a {
	display: block;
	color: #000;	/*リンクテキストの文字色*/
}


/*３本バー（ハンバーガー）アイコン設定
---------------------------------------------------------------------------*/
/*開閉用のスタイル*/
#menubar_hdr.db {display: flex;}
#menubar_hdr.dn {display: none;}

/*３本バーを囲むブロック*/
#menubar_hdr {
	position: fixed;
	cursor: pointer;
	right: 7px;			/*右からの配置場所指定*/
	top: 12px;			/*上からの配置場所指定*/
	padding: 16px 14px;	/*上下、左右への余白*/
	width: 50px;		/*幅（３本バーが出ている場合の幅になります）*/
	height: 46px;		/*高さ*/
	display: flex;					/*flexボックスを使う指定*/
	flex-direction: column;			/*子要素（３本バー）を縦並びにする*/
	justify-content: space-between;	/*並びかたの種類の指定*/
	z-index: 900;
}


/*バー１本あたりの設定*/
#menubar_hdr span {
	display: block;
	transition: 0.3s;	/*アニメーションにかける時間。0.3秒。*/
	border-top: 2px solid #000;	/*線の幅、線種、色*/
}

/*×印が出ている状態の設定。※１本目および２本目のバーの共通設定。*/
#menubar_hdr.ham span:nth-of-type(1),
#menubar_hdr.ham span:nth-of-type(3) {
	transform-origin: center center;	/*変形の起点。センターに。*/
	width: 20px;						/*バーの幅*/
}

/*×印が出ている状態の設定。※１本目のバー。*/
#menubar_hdr.ham span:nth-of-type(1){
	transform: rotate(45deg) translate(3.8px, 5px);	/*回転45°と、X軸Y軸への移動距離の指定*/
}

/*×印が出ている状態の設定。※３本目のバー。*/
#menubar_hdr.ham span:nth-of-type(3){
	transform: rotate(-45deg) translate(3.8px, -5px);	/*回転-45°と、X軸Y軸への移動距離の指定*/
}

/*×印が出ている状態の設定。※２本目のバー。*/
#menubar_hdr.ham span:nth-of-type(2){
	display: none;	/*２本目は使わないので非表示にする*/
}


/*mainブロック設定
---------------------------------------------------------------------------*/
/*mainブロック*/
main {
	padding-top: 50px;
}

/*mainブロック内のh2タグ*/
main h2 {
	margin: 0 0 1em;		/*上、左右、下へのタグの外にとるスペース*/
	line-height: 1.5;		/*行間を少し狭く*/
	font-size: 2.5em;			/*文字サイズ。3倍。*/
	text-align: center;		/*文字をセンタリング*/
	letter-spacing: 0.2em;	/*文字間隔を少しだけ広くとる設定*/
	color: #000;			/*文字色*/
	font-family: 'Lato';	/*GoogleFontsの指定*/
	font-weight: 400;		/*文字の太さ*/
}
@media (max-width: 767px) {
	main h2 {
		margin-top: 25px;
		font-size: 23px;
	}
}

/*h2内のsupanタグ。小文字部分です。*/
main h2 span {
	display: block;
	font-weight: normal;
	color: rgba(175, 152, 65, 1);		/*文字色*/
	font-size: 20px;	/*文字サイズ*/
}

/*mainブロック内のh3タグ*/
main h3 {
	margin: 2% 0% 1em;		/*上、左右、下へのタグの外にとるスペース*/
	color: #222;			/*文字色*/
	font-size: 1.5em;
	border-bottom: 1px solid #ccc;
	font-weight: normal;
	letter-spacing: 3px;
}

/*mainブロックのpタグ*/
main p {
	margin: 0 20px 50px;	/*上、左右、下へ空けるスペース*/
}
/* main p + p {margin-top: -15px;} */

/* 入居者様向け案内 */
.recebox a {
	display: flex;
	justify-content: center;
	text-decoration: none;
}
.recebox a:hover {
	filter: brightness(1.1);
	transition: 0.5s;
}

.receimg {
	width: 18%;
	box-shadow: 2px 2px 4px #ccc;

}
.recetxt {
	font-size: 18px;
	font-weight: 600;
	background: #fff;
	margin: 0;
	padding: 20px;
}

.c-txt.line {
	padding-bottom: 20px;
	position: relative;
}
.c-txt.line::before {
	background: #192f60;
	content: '';
	width: 100%;
	height: 1px;
	position: absolute;
	left: 0;
	bottom: 0;
	margin: auto;
	transform-origin: right top;
	transform: scale(0, 1);
	transition: transform .3s;
}
.c-txt.line:hover::before {
	transform-origin: left top;
	transform: scale(1, 1);
}

.recearrow {
	margin-left: 70px;
}
.recession {
	color: #000;
}
.recetxt1 {
	text-align: center;
	display: flex;
	justify-content: center;
	margin: 0 auto;
}
.recetxt1 p {
	display: inline-block;
	text-align: left;
	font-size: 16px;
	margin: 30px 0;
	line-height: 2.3em;
}
.receimg1 {
	width: 150px;
	transform: rotate(5deg);
}
.pointbox {
	text-align: center;
}
.point {
	display: inline-block;
	text-align-last: left;
}
.point span {
	color: red;
}
.recetitle {
	width: 37%;
	margin: 20px auto;
	text-align: center;
	font-weight: bold;
	letter-spacing: 0.3em;
	font-size: 25px;
}
.fa-check {
	margin-right: 5px;
}

form {
	margin: 50px;
	text-align: center;

	input[type=button] {
	background: #ddd;
	border: #aaa solid 1px;
	border-radius: 10px;
	color: #aaa;
	padding: 10px 80px;
	pointer-events: none;
	transition: background-color .3s, color .5s;

	&:focus {
		visibility: hidden;
	}
	}

	&:has(input:checked) input[type=button] {
	background: #000;
	border: #000 solid 1px;
	color: #fff;
	cursor: pointer;
	pointer-events: auto;

	&:focus {
		visibility: visible;
	}
	}

	@media (hover: hover) {
	&:has(input:checked) input[type=button]:hover {
		background: #fff;
		color: #333;
	}
	}
}
.formp {
	margin: 15px 0;
}

/* スマホ */
@media (max-width: 767px) {
	.recebox a {
		display: block;
	}
	.receimg {
		width: 70%;
		margin: 0 auto;
	}
	.recetxt {
		font-size: 15px;
	}
	.recearrow {
		margin-left: 23px;
	}
	#recession {
		padding-bottom: 50px;
	}
	.receimg1 {
		display: none;
	}
	.recetxt1 {
		display: block;
	}
	.recetxt1 p {
		font-size: 14px;
		margin: 10px auto;
	}
	.recession h2 span {
		font-size: 14px;
	}
	.recetitle {
		font-size: 21px;
		margin: 20px auto 0;
	}
	.point {
		margin: 20px 31px;
	}
	.point li {
		padding-bottom: 10px;
	}
}




/* 問い合わせ */
.contact {
	height: auto;
	padding: 3% 1%;
	/* background-image: url(/images/img7.jpg); */
	/* background-size: cover; */
	/* background-position: center; */
	/* background: url(../images/img7.jpg) no-repeat center center / 100%; */
	position: relative;
}

.contact p {
	margin: 0;
	text-shadow: 1px 1px 2px #fff, -1px -1px 2px #fff;
	color: #333;
	font-size: 1em;
}
/* .contact::before {
	content: '';
	background-color: rgba(241, 238, 238, 0.76);
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;
	z-index: 0;
} */
.conwrap {
	justify-content: space-evenly;
	position: relative;
	align-items: center;
}
.conwrap i {
	padding:  0 5px;
}
.fa-rotate-25 {
	transform: rotate(25deg);
	font-size: 0.8em;
}
.add {
	width: 35%;
}
.add a img {
	width: 75%;
}
.add p {
	font-size: 1em;
	text-decoration: none;
	white-space: nowrap;
}

.tel a {
	text-decoration: none;
}
.tel a p {
	font-size: 1.5em;

}
.time {
	font-size: 1em;
}
.fax {
	text-decoration: none;
}
.map {
	width: 35%;
	height: auto;
}
.hirosima {
	padding-top: 20px;
}

.tdate {
	width:70%;
	margin: auto;
}
.tdate h4 {
	font-size: 30px;
}
.tdate p {
	text-align:right;
}


@media (max-width: 1020px) and (min-width: 768px) {
	.time {
		white-space: nowrap;
	}
	.map {
		width: 50%;
	}
	}
@media (max-width: 767px) {
	.conwrap {
		display: inline-block;
		width: 100%;
		margin: 0 auto;
		padding: 20px;
	}
	.add, .map {
		width: 100%;
	}
	.add p {
		font-size: 1.2em;
	}
	.tel a p {
		font-size: 1.6em;
	}
	.map {
		padding-top: 30px;
	}
	.tdate {
	width:auto;
}
}

/*tenantページ設定
---------------------------------------------------------------------------*/
/* テナント見出し */
#tenant {
	background: #f5f5f5;
}
.tenanttitle {
	background-image: url(../images/img2.jpg);
}
.tenanttitle2 {
	background-image: url(../images/img2.jpg);
}
.tenanttitle, .tenanttitle2 {
    background-size: cover;
    background-position: center;
	padding: 95px;
	line-height: 1.4em;
}

.ttitle {
	margin: 20px auto 0;
	font-weight: 600;
	color: #fff;
	font-family: serif;
	text-shadow: 5px 5px 10px rgba(0, 0, 0, 0.815);	/*ボックスの影。右へ、下へ、ぼかし幅、0,0,0は黒の事で0.1は色が10%出た状態。*/
}
.ttitle2 {
	line-height: 1.2;
}
.ttitle span {
	font-size: 21px;
    color: rgb(206, 178, 77);
	border-bottom: 1px solid #fff;
	display: inline;
}
.hrsmdate {
	text-decoration: none;
}
a.hrsmdate p {
	font-size: 15px;
	margin: 10px auto 0;
	color: #000;
	background:  rgb(190, 170, 90);
	width: 250px;
	border: 1px solid rgb(197, 183, 126);
	/* text-shadow: 1px 1px 2px rgba(0,0,0,0.3);	テキストの影。右へ、下へ、ぼかし幅。0,0,0は黒の事で0.3は色が30%出た状態。 */
}
a.hrsmdate:hover {
	filter: brightness(1.1);
}

/* テナントタブ */
.tenantbox {
	margin: 0 auto;
	width: 65%;
}
.listtabbox {
	border-bottom: 4px solid #192f60;
	text-align: center;
	margin-bottom: 2%;
}
.listtabbox div {
	display: flex;
	display: inline-block;
	background: #192f60;
	border: 2px;
	border-top-style: solid;
    border-right-style: solid;
    border-left-style: solid;
    border-color: #192f60;
	font-size: 22px;
	padding: 0px 20px;
	margin: auto 15px;
	border-radius:5px 5px 0 0;
	letter-spacing: .2em;
}
.listtabbox a {
	color: #fff;
	text-decoration: none;
}
.listtabbox .page1 {
	background: #fff;
	color: #192f60;
}
/* テナント物件情報 */
.tenantdbox {
	display: flex;
	margin: 0 auto;
	width: 65%;
}
.tenantlibox {
	width: 100%;
}
.numberbox {
	color: #000;
	display: flex;
	justify-content: space-between;
}
.count {
	font-weight: 600;
	color: #192f60;
}

.tenantli {
	padding: 1px 26px 30px;
	background: #fff;
	margin-top: 30px;
}
.tenantli h3, .tenantinfobox h3 {
	font-size: 19px;
	font-weight: bold;
}

.tcommbox {
	background: #f5f3ed;
	display: flex;
	align-items: center;
	margin-bottom: 20px;
}
.tpoint {
	background: #192f60;
	color: #fff;
	padding: 4px 12px;
	margin-right: 10px;
	display: flex;
	align-items: center;

}
.tcomm {
	color: #000;
	display: flex;
}

.tpoint2 {
	background: #192f60;
	color: #fff;
	padding: 4px 12px;
	margin-right: 10px;
	display: flex;
	align-items: center;

}
.tcommbox2 {
	background: #f5f3ed;
	display: flex;
}
.tcomm2 {
	color: #000;
	display: flex;
}

.tinfo {
	display: flex;
	color: #000;
	position: relative;

}
.timg {
	width: 300px;
	height: auto;
	display: flex;
	align-items: center;
}
.access {
	display: flex;
}
.access h3 {
	font-size: 18px;
	border: none;
    margin: 22px 0 18px 0;
}
.access span {
	color: #192f60;
	font-size: 20px;
}
.ainfo {
	background: #f5f5f5;
	padding: 15px;
}
.ainfo p {
	font-size: 16px;
	color: #222;
	margin: 0 0 15px 22px;
}
.info1 p {
	font-size: 14px;
	margin: 0 0 10px 22px;

}
.info1 span {
	background: #192f60;
	color: #fff;
	padding: 3px;
	margin-right: 5px;

}

.ta2 {
    border-top: 1px solid #ccc;
	margin: 0 30px;
}
.ta2 th, .ta2 td {
	font-size: 14px;
	padding: 2px 10px;
	font-weight: normal;
	/* border: 1px solid #999; */
}
.ta2 tr {
	border-bottom: 1px solid #ccc;
}
.ta2 th {
	background: #f5f5f5;
}
#about .ta3 {
	margin: 0 auto;
	width: 100%;
}
.ta3 th {
	width: 18%;
}
.ta3 td {
	width: 31%;
}
.ta3 tr {
	border-top: 1px solid #ccc;
}
#about .ta3 tr th {
	background: #f5f5f5;
}

.ticonsbox {
	/* position: relative; */
}
.tbtnbox {
	position: absolute;
	bottom: 10px;
	right: 10px;
}
.tbtnbox a {
	text-decoration: none;
	color: #fff;
	background: #192f60;
	padding: 15px 25px;
	border-radius: 1px;
}


.tab-wrap {
	display: flex;
	flex-wrap: wrap;
	margin:20px 0;
}
.tab-wrap:after {
	content: '';
	width: 100%;
	height: 3px;
	background: #192f60;
	display: block;
	order: -1;
}
.tab-label {
	color: #fff;
	background: #192f60;
	text-shadow: 0 -1px 0 rgba(0,0,0,.2);
	white-space: nowrap;
	text-align: center;
	padding: 1px;
	order: -1;
	position: relative;
	z-index: 1;
	cursor: pointer;
	border-radius: 5px 5px 0 0;
	flex: 1;
	font-size: 21px;
	letter-spacing: .2em;

}
.tab-label:not(:last-of-type) {
	margin-right: 45px;
}
.tab-content {
	width: 100%;
	height: 0;
	overflow: hidden;
	opacity: 0;
}
  /* アクティブなタブ */
.tab-switch:checked+.tab-label {
	background: #fff;
	color: #192f60;
	border: 2px;
	border-top-style: solid;
    border-right-style: solid;
    border-left-style: solid;
    border-color: #192f60;
}
.tab-switch:checked+.tab-label+.tab-content {
	height: auto;
	overflow: auto;
	padding: 15px;
	opacity: 1;
	transition: .5s opacity;
	/* box-shadow: 0 0 3px rgba(0,0,0,.2); */
}
  /* ラジオボタン非表示 */
.tab-switch {
	display: none;
}

@media (max-width: 767px) {
	.tenanttitle, .tenanttitle2 {
		padding: 60px;
	}

	.tenantbox {
		width: 90%;
	}
	.tinfo {
		display: block;
	}
	.timg {margin-bottom: 10px;
	}
	.ticonsnone {
		display: none;
	}
	.tenantli {
		padding-bottom: 90px;
	}
	.tbtnbox {
		bottom: -58px;
		right: 0;
	}
	.tenantdbox {
		display: block;
		width: 90%;
	}
}

/* テナント物件詳細
------------------------------------------------------- */
.tenantbox {
	/* display: flex; */
}

.tenantimgbox {
	width: 31%;
	margin-right: 50px;
	margin-top: 15px;
}
.tenantinfobox {
	width: 770px;
	/* display: flex; */

}
.ttitlebox {
	border-bottom: 1px solid #ccc;
	margin-bottom: 20px;
}
.ttitlebox h3 {
	/* border-bottom: 1px solid #192f60; */
	font-size: 23px;
	border: none;
	margin: 5px 0;
}
.ttitlebox p {
	text-align: right;
	font-size: 14px;
	margin: 0 0 12px 0;
}
.ttitlebox span {
	color: #192f60;
}
.tenantinfobox span {
	/* color: #192f60; */
}

@media (max-width: 767px) {
	.tenantimgbox {
		width: 90%;
        margin: 15px auto;
	}
	.tenantinfobox {
		width: auto;
	}
	.ttitlebox h3 {
		margin: 20px 0;
	}
}





/*フッター設定
---------------------------------------------------------------------------*/
footer small {font-size: 100%;}

footer {
	font-size: 0.7rem;		/*文字サイズ*/
	text-align: center;		/*内容をセンタリング*/
	padding: 20px;			/*ボックス内の余白*/
	background: #fff;		/*背景色*/
	color: #000;			/*文字色*/
}

/*リンクテキスト*/
footer a {text-decoration: none;color: #000;}

/*著作部分*/
footer .pr {display: block;}


/*フッターメニュー設定
---------------------------------------------------------------------------*/
/*ボックス全体の設定*/
#footermenu {
	background: #fff;	/*背景色*/
	color: #000;		/*文字色*/
	font-size: 0.7em;	/*文字サイズ*/
	padding: 20px;		/*ボックス内の余白*/
	display: flex;		/*flexボックスを使う指定*/
	justify-content: space-between;
	/* align-items: flex-start;		垂直揃えの指定。上に配置されるように。 */
}
@media (max-width: 767px) {
	#footermenu {
		padding: 20px 0;
	}
}
/*ボックス内のリンクテキスト設定*/
#footermenu a {
	text-decoration: none;
	color: #000;	/*文字色*/
	padding: 0 60px;
	font-weight: bold;
}

/*リンクテキストのマウスオン時*/
#footermenu a:hover {
	color: #777;	/*文字色*/
}

/*ulタグ（メニューの列単位）*/
#footermenu ul {
	margin: 0;
	padding: 0 2px;
	flex: 1;
	list-style: none;
	display: flex;
	justify-content: center;
}
.border {
	width: 60%;
	border-top: 1px solid #ddd;
	margin: 0 auto;
}

/*title*/
#footermenu .title {
	font-weight: bold;		/*太字にする*/
	/* color: #ccc;			文字色 */
	padding-bottom: 5px;	/*下に空けるスペース*/
}
@media (max-width: 767px) {
	#footermenu {
		font-size: 0.9em;
	}
	#footermenu a {
		padding: 0 8px;
	}
	.border {
		width: 90%;
	}
}


/*「お知らせ」ブロック
---------------------------------------------------------------------------*/
/*お知らせブロック*/
#new {
	margin: 0;
	display: flex;		/*flexボックスを使う指定*/
	flex-wrap: wrap;	/*折り返す指定*/
	padding: 0 20px;	/*上下、左右へのボックス内の余白*/
}

/*日付(dt)、記事(dd)共通設定*/
#new dt,
#new dd {
	padding: 5px 0;		/*上下、左右へのボックス内の余白*/
}

/*日付(dt)設定*/
#new dt {
	width: 8em;	/*幅。8文字(em)分。※下の「900px以上」の端末用の設定に再設定があります。*/
}

/*日付の横のマーク（共通設定）*/
#new dt span {
	display: none;	/*小さな端末では非表示にしておく。*/
}

/*記事(dd)設定*/
#new dd {
	width: calc(100% - 8em);	/*「8em」は上の「#new dt」のwidthの値です。※下の「900px以上」の端末用の設定に再設定があります。*/
}


/*listブロック
---------------------------------------------------------------------------*/
.list-container .list {
	margin-bottom: 30px;	/*ボックス同士の上下間に空けるスペース*/
	padding: 11px;			/*ボックス内の余白*/
	background: #fff;		/*背景色*/
	color: #555;			/*文字色*/
	box-shadow: 5px 5px 20px rgba(0,0,0,0.1);	/*ボックスの影。右へ、下へ、ぼかし幅、0,0,0は黒の事で0.1は色が10%出た状態。*/
	position: relative;
	line-height: 1.6;
}

/*ボックス内のh4タグ*/
.list-container .list h4 {
	margin: 5px 0;
	color: #111;	/*文字色*/
	font-size: 1.2em;
}
.list-container .list h4 a {
	color: #333;	/*リンクテキストの文字色*/
}

.price, .red {
	font-size: 1.2em;
	font-style: italic;
	font-weight: bold;
}
.red {
	color: #f00;
}
/*ボックス内のpタグ*/
.list-container .list p {
	margin: 2px;
	font-size: 1em;	/*文字サイズを80%に*/
	/* white-space: nowrap; */
}
.list figure img {
	object-fit: contain;
	height: 240px;
	border: 1px solid #ccc;
}

.comment {
	background: #f5f3ed;
	margin: 3% 0;
	padding: 3%;
	box-shadow: 1px 1px 2px #ccc;
}
.w50 {
	width: 50%;
	margin: 3% auto;
	border: 1px solid rgb(190, 170, 90);
	padding: 1%;
}

.comment p {
	color: #333;
	margin: 0 10px 0;
}

/*list内のNEWマーク*/
.list-container .list .mark {
	color: #fff;			/*文字色*/
	width: 67px;			/*幅*/
	line-height: 67px;		/*高さ*/
	border-radius: 50%;		/*角丸のサイズ。円形になります。*/
	text-align: center;		/*テキストをセンタリング*/
	position: absolute;
	left: -10px;			/*listブロックに対して左からの配置場所の指定*/
	top: -10px;				/*listブロックに対して上からの配置場所の指定*/
	transform: rotate(-20deg);	/*回転。まっすぐ表示させたいならこの１行を削除。*/
}
.new {
	/* background: #ff0000;	背景色 */
	background: orange;
	font-size: 1em;		/*文字サイズ*/
}
.sntk {
	background: #2ca9e1;
	font-size: 1em;		/*文字サイズ*/
}
.ossm {
	background: #aacf53;
	font-size: 0.9em;		/*文字サイズ*/

}
.day {
	font-weight: normal;
	display: block;
	text-align: right;
	letter-spacing: 2px;
	margin: 0 1% 1% 0;
}
@media (max-width: 1020px) and (min-width: 768px) {
	.list-container {
		flex-wrap: wrap;
		display: flex;
	}
	.list-container .list {
		width:calc(93%/3);
		margin: 1% 1% 5%;
	}
	.list figure img {
		height: 140px;
	}
	.w50 {
		width: 70%;
	}
}
@media (max-width: 767px) {
	.list-container {
		flex-wrap: wrap;
		display: flex;
	}
	.list-container .list {
		flex-wrap: wrap;
		width:calc(96%/2);
		margin: 1% 1% 5%;
	}
	.list figure img {
		height: 140px;
	}
	.w50 {
		width: 94%;
	}
}

/*求人一覧ページ（ist2　横長ブロックタイプ）
---------------------------------------------------------------------------*/
/*list2ボックス。１個あたりのボックスの指定です。*/
.list2 {
	display: flex;	/*flexボックスを使う指定*/
	border-bottom: 1px solid #ccc;	/*下線の幅、線種、色*/
	padding: 25px 0;	/*上下、左右へのボックス内の余白*/
}

.list2 div {
	flex: 1;
}

/*１つ目のボックスにのみ上に線を入れる*/
.list2:nth-of-type(1) {
	border-top: 1px solid #ccc;	/*上の線の幅、線種、色*/
}

/*ボックス内のfigure画像*/
.list2 figure {
	width: 20%;			/*画像の幅*/
	margin-right: 20px;	/*画像の右側に空けるスペース*/
}

/*ボックス内のh4タグ*/
.list2 h4 {
	margin: 0;				/*デフォルトマージンを一旦リセット*/
	margin-bottom: 10px;	/*下に少し余白を作る*/
	color: #a47e59;			/*文字色*/
}

.list2 h4 a {
	color: #a47e59;			/*リンクテキストの文字色*/
}

.list2 h4 a:hover {
	color: #333;			/*マウスオン時の文字色*/
}

/*ボックス内のpタグ*/
.list2 p {
	margin: 0;
	font-size: 0.7em;		/*文字サイズを70%に。*/
}


/*求人一覧ページのlistボックス内の情報詳細欄（tableっぽく見える所）
---------------------------------------------------------------------------*/
/*ボックス全体*/
dl.line {
	margin: 0;
	display: flex;		/*flexボックスを使う指定*/
	flex-wrap: wrap;	/*折り返す指定*/
	font-size: 0.7em;	/*文字サイズを70%に。*/
	border-top: 1px solid #ccc;	/*上の線の幅、線種、色*/
}

/*左右のボックス*/
dl.line dt, dl.line dd {
	border-bottom: 1px solid #ccc;	/*下線の幅、線種、色*/
	padding: 0 5px;					/*上下、左右へのボックス内の余白*/
}

/*左のボックス*/
dl.line dt {
	width: 8em;				/*幅。8文字(em)分。*/
	background: #f0f0f0;	/*背景色*/
}
/*右のボックス*/
dl.line dd {
	width: calc(100% - 8em);	/*「8em」は上の「dl.line dt」のwidthの値です。*/
}

/*list2ブロック内でのline設定*/
.list2 dl.line dt:nth-of-type(1), .list2 dl.line dd:nth-of-type(1),
.list2 dl.line dt:nth-of-type(2), .list2 dl.line dd:nth-of-type(2) {
	border-top: none;
}


/*サムネイルスライドショー
---------------------------------------------------------------------------*/
/*画像１枚あたりの設定*/
.list-slide .list {
	margin: 10px;	/*画像の外側に空けるスペース*/
}


/*FAQ
---------------------------------------------------------------------------*/
/*FAQボックス全体*/
.faq {
	padding: 0 5px;	/*上下、左右へのボックス内の余白*/
}

/*質問*/
.faq dt {
	border-radius: 3px;		/*枠を角丸にする指定*/
	margin-bottom: 20px;	/*下に空けるスペース*/
	background: linear-gradient(#fff, #f7f7f7);	/*背景グラデーション*/
	text-indent: -2em;				/*テキストのインデント。質問が複数行になった際に、テキストの冒頭を揃える為に設定しています。*/
	padding: 5px 1em 5px 3em;		/*ボックス内の余白。ここを変更する場合、上のtext-indentも調整します。*/
	border: 1px solid #e4e2d7;		/*枠線の幅、線種、色*/
}

/*アイコン（Font Awesome）*/
.faq dt::before {
	font-family: "Font Awesome 5 Free";	/*Font Awesomeを使う指定*/
	content: "\f059";		/*使いたいアイコン名をここで指定。Font Awesomeに記載されています。詳しくは当テンプレートのマニュアルを読んで下さい。*/
	color: #a47e59;			/*アイコンの色*/
	padding-right: 1em;		/*アイコンとテキストの間の余白*/
}

/*回答*/
.faq dd {
	padding: 5px 1em 30px 3em;		/*ボックス内の余白**/
}

/*opencloseを適用した要素のカーソル*/
.openclose {
	cursor: pointer;	/*カーソルの形状。リンクと同じスタイルにしてクリックできると認識してもらう。*/
}

.faq dt span {text-indent: 0;}


/*icon
---------------------------------------------------------------------------*/
.icon, .icon2 {
	display: inline-block;
	margin: 4px;
	line-height: 1.5;
	padding: 7px 10px;
	/* border: 1px solid #192f60; */
	color: #000;
	font-weight: normal;
	font-size: 1em;
}
.icon {
	background: rgba(206, 178, 77, 0.726);;
}
.icon2 {
	background: #192f60;
	color: #fff;
}
.icon.newicon {
	border-color: transparent;
	background: #f00;
	color: #fff;
}
.icon.upicon {
	border-color: transparent;
	background: #54b1ff;
	color: #fff;
}

/*btnの設定
---------------------------------------------------------------------------*/
a.btn1 {
	display: inline-block;text-decoration: none;
	letter-spacing: 0.1em;
	border-radius: 3px;
	padding: 18px 52px;
	font-size: 1.2em;
	box-shadow: 1px 2px 3px rgba(0,0,0,0.2);
}
a.btn1, a.btn3 {
	/* background: #ffce2b; */
	/* background: linear-gradient(45deg, #c0b283 0%, #c0b283 45%, #FEE9A0 70%, #c0b283 85%, #c0b283 90% 100%); */
	background: linear-gradient( 180deg, rgba(175, 152, 65, 1) 0%, rgba(200, 182, 108, 1) 100% );
	box-shadow: inset 0 0 0 1px #fff;
	border: 4px solid rgb(190, 170, 90);
	text-shadow: 0 0 8px rgb(0 0 0 / 40%);
	color: #fff;
}
a.btn2 {
	background: linear-gradient( 180deg, rgba(175, 152, 65, 1) 0%, rgba(200, 182, 108, 1) 100% );
	box-shadow: 1px 2px 3px rgba(0,0,0,0.2);
	text-shadow: 0 0 8px rgb(0 0 0 / 40%);
	color: #fff;
	padding: 10px 20px;
	display: inline-block;
	text-decoration: none;
	width: 285px;
	text-align: center;
}
a.btn3 {
	padding: 1% 5%;
	text-decoration: none;
	margin: 0 auto;
	/* width: 25%; */
	font-size: 1.1em;
}
a.btn4 {
	display: inline-block;text-decoration: none;
	border: 4px double rgb(190, 170, 90);
	font-weight: bold;
	font-size: 1.5em;
	padding: 45px 150px;
	margin: 0 30px;
}
a.btn5 {
	display: inline-block;text-decoration: none;
	letter-spacing: 0.1em;
	padding: 7px 162px;
	font-size: 1.2em;
	background: linear-gradient( 180deg, rgba(175, 152, 65, 1) 0%, rgba(200, 182, 108, 1) 100% );
}
a.btn6 {
	font-size: 1.1em;
	text-decoration: none;
	/* background: linear-gradient( 180deg, rgba(175, 152, 65, 1) 0%, rgba(200, 182, 108, 1) 100% ); */
	color: #333;
	padding: 1%;
	margin: auto 2px;
	border: none;
	border: 1px solid #b4b4b4;
	border-radius: 4px;
}

/* 福岡 */
a.btnf {
	display: inline-block;text-decoration: none;
	/* border: 4px double rgb(190, 170, 90); */
	border: solid 1px #000;
	box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.2);
	/* font-weight: bold; */
	font-size: 1.5em;
	padding: 30px auto;
	margin: 0 45px;
	/* background: linear-gradient( 180deg, rgba(175, 152, 65, 1) 0%, rgba(200, 182, 108, 1) 100% ); */
	background: #000000ad;
	background: #ffffffd7;
	/* color: #fff; */
	width: 260px;
}
/* 広島 */
a.btnh {
	display: inline-block;text-decoration: none;
	border: 4px double rgb(190, 170, 90);
	font-weight: bold;
	font-size: 1.5em;
	padding: 30px 150px;
	margin: 0 30px;
}


.radius {
	border-radius: 100px !important;
}
a.btn1 i, a.btn2 i, a.btn3 i {
	/* margin-left: 13px; */
}
a:hover.btn1 {
	transform: scale(1.03);
	filter: brightness(1.1);
}
a:hover.btn2, a:hover.btn5, a:hover.btnh {
	filter: brightness(1.1);
}
a:active.btn2 {
	-webkit-transform: translateY(2px);
	transform: translateY(2px);/*下に動く*/
	box-shadow: none;
}
a:active.btnf {
	/* -webkit-transform: translateY(2px);
	transform: translateY(2px);/*下に動く*/
	/* box-shadow: none; */
}
a:hover.btnf1 {
	background: url(/images/fukuoka.jpg) no-repeat;
	background-size: cover;
	background-position: center;
	color: #fff;
	text-shadow: 1px 1px 2px rgba(0,0,0,0.3);	/*テキストの影。右へ、下へ、ぼかし幅。0,0,0は黒の事で0.3は色が30%出た状態。*/
	background-color: #0000007c;
}
a:hover.btnf2 {
	background: url(/images/hiroshima.jpg) no-repeat;
	background-size: cover;
	background-position: center;
	color: #fff;
	text-shadow: 1px 1px 2px rgba(0,0,0,0.3);	/*テキストの影。右へ、下へ、ぼかし幅。0,0,0は黒の事で0.3は色が30%出た状態。*/
	background-color: #0000007c;
}
a:hover.btnf3 {
	background: url(/images/kumamoto.jpg) no-repeat;
	background-size: cover;
	background-position: center;
	color: #fff;
	text-shadow: 1px 1px 2px rgba(0,0,0,0.3);	/*テキストの影。右へ、下へ、ぼかし幅。0,0,0は黒の事で0.3は色が30%出た状態。*/
	background-color: #0000007c;
}
a:hover.btnf4 {
	background: url(/images/img2.jpg) no-repeat;
	/* background-size: 220%;
	background-position: -165px -50px; */
	background-size: cover;
	background-position: center;
	color: #fff;
	text-shadow: 1px 1px 2px rgba(0,0,0,0.3);	/*テキストの影。右へ、下へ、ぼかし幅。0,0,0は黒の事で0.3は色が30%出た状態。*/
	background-color: #0000007c;
}

a:hover.btn3 {
	transform: scale(1.03);
	filter: brightness(1.1);
}
a:hover.btn6 {
	transform: scale(1.03);
	filter: brightness(1.1);
}

@media (max-width: 1020px) and (min-width: 768px) { 
	a.btnf {
		padding: 42px 80px;
		margin: 0 15px;
	}
	a.btnh {
		padding: 20px 80px;
		margin: 0 15px;
	}
	a.btn5 {
		padding: 7px 91px;
	}
 }
@media (max-width: 767px) {
	a.btnh, a.btnf {
		padding: 40px 0;
		width: 90%;
		margin: 0 auto;
	}
	a.btn5 {
		padding: 7px;
		width: 90%;
	}
	a.btn1 {
		padding: 13px 50px;
	}
	a.btn3 {
		padding: 5% 15%;
	}
	.link {
		padding: 12% 5% 4%;
	}
	a.btn2 {
		width: 200px;
		/* white-space: nowrap; */
	}
	a.btn6 {
		padding:2%;
}
 }


/*テーブル
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta1 caption {
	font-weight: bold;		/*太字に*/
	padding: 10px 5px;		/*上下、左右へのボックス内の余白。基本的に数行下の「.ta1 th, .ta1 td」のpaddingと揃えておけばOKです。*/
	/* background: #f5f3ed;		背景色 */
	background: #eee;
	margin-bottom: 15px;	/*下に空けるスペース*/
	font-size: 1.5em;
	/* border: 1px solid rgb(190, 170, 90); */
}
.ta1 caption .new {
	font-size: 0.7em;		/*文字サイズ*/
	/* background: #ff0000; */
	color: #fff;			/*文字色*/
	width: 50px;			/*幅*/
	line-height: 50px;		/*高さ*/
	text-align: center;		/*テキストをセンタリング*/
	padding: 5px 10px;
	margin-right: 20px;
}
#about .ta1 {
	width: 70%;

}

caption p {
	font-size: 0.7em;
	margin: 0 auto;
}

@media (max-width: 767px) {
	.ta1 caption {
		/* white-space: nowrap; */
	}
	.ta1 caption .new {
		margin-right: 15px;
	}
 }

 /* 会社概要の表 */
/*ta1テーブルブロック設定*/
.ta1 {
	border-top: 1px solid #ccc;	/*テーブルの一番上の線。幅、線種、色*/
	width: 100%;
	margin: 0 auto 30px;		/*最後の「30px」がテーブルの下に空けるスペースです*/
}

/*tr（１行分）タグ設定*/
.ta1 tr {
	border-bottom: 1px solid #ccc;	/*テーブルの下線。幅、線種、色*/
}

/*th（左側）、td（右側）の共通設定*/
.ta1 th, .ta1 td {
	padding: 10px 5px;		/*上下、左右へのボックス内の余白*。基本的に数行上の「.ta1 caption」のpaddingと揃えておけばOKです。*/
	word-break: break-all;	/*英語などのテキストを改行で自動的に折り返す設定。これがないと、テーブルを突き抜けて表示される場合があります。*/
	text-align: left;	/*左よせにする*/
}

/* おすすめ物件の表 */
#about table {
	border: solid 1px #ccc;
	box-sizing: border-box;
	vertical-align: middle;
	height: auto;
	margin: 30px auto auto;
}
#about td {
	padding: 0px 20px;
}

@media (max-width: 767px) {
	#about table {
		width: 95%;
	}

}

#about tr th {
	border: solid 1px #ccc;
	padding: 10px 20px;
	background: #eee;
	text-align: center;
}
@media (max-width: 1020px) and (min-width: 768px) {
	#about tr th {
		white-space: nowrap;
		font-size: 12px;
		width: 15%;
		padding: 12px;
	}
	#about tr td {
		width: 30%;
	}
}
@media (max-width: 767px) {
	#about tr th {
		white-space: nowrap;
		font-size: 12px;
		width: 15%;
		padding: 12px;
	}	
		#about tr td {
		font-size: 12px;
		width: 30%;
		padding: 0 10px;
	}
}


/* ギャラリー */
/*画像の横幅を100%にしてレスポンシブ化*/
img{
  width: 100%;
  height: auto;
	vertical-align: bottom;/*画像の下にできる余白を削除*/
}

/*メイン画像下に余白をつける*/

.gallery{
	margin:0 0 50px 0;
	/* height: 400px; */
}
.gallery img {
	object-fit: contain;
	height: 400px;
}
/*矢印の設定*/

/*戻る、次へ矢印の位置*/
.slick-prev,
.slick-next {
    position: absolute;/*絶対配置にする*/
	z-index: 3;
    top: 42%;
    cursor: pointer;/*マウスカーソルを指マークに*/
    outline: none;/*クリックをしたら出てくる枠線を消す*/
    border-top: 2px solid #ccc;/*矢印の色*/
    border-right: 2px solid #ccc;/*矢印の色*/
    height: 25px;
    width: 25px;
}

.slick-prev {/*戻る矢印の位置と形状*/
    left:2.5%;
    transform: rotate(-135deg);
}

.slick-next {/*次へ矢印の位置と形状*/
    right:2.5%;
    transform: rotate(45deg);
}

/*選択するサムネイル画像の設定*/

.choice-btn li{
  cursor: pointer;
  outline: none;
  background: #fff;
  width:25%!important;
}

.choice-btn li img{
	opacity: 0.4;/*選択されていないものは透過40%*/
	height: 200px;
	object-fit: contain;
	padding: 5%;
}

.choice-btn li.slick-current img{
  opacity: 1;/*選択されているものは透過しない*/
}

.choice-btn .slick-track {
  transform: unset !important;/*画面幅サイズ変更に伴うサムネイル固定*/
}
.gallery__item {
	width: calc(95% / 4);
}
@media (max-width: 767px) {
	.gallery{
		margin:0 0 20px 0;
	}
	.gallery img {
		object-fit: contain;
		height: 260px;
	}
	.choice-btn li img{
		object-fit: contain;
		height: 100px;
	}
	.gallery__item {
		width: calc(95% / 2);
	}
 }
/*========= レイアウトのためのCSS ===============*/

/*エリア全体を中央寄せ*/
.wrapper{
  width:94%;
  max-width: 800px;
	margin: 50px auto;
	padding: 50px;
	border: 1px solid #ccc;
}
.wrapper p {
	font-size: 1.1em;
	/* border-bottom: 1px solid #000; */
}
.fa-images, .fa-comment-dots, .fa-clone, .fa-edit{
	margin: 0 5px;
}
.fa-building, .fa-user {
	margin-right: 6px;
	font-size: 1.2em;
}
.fa-arrow-circle-right {
	margin-left: 11px;
	color: rgb(190, 170, 90);
}

.ma20 {
	margin-top: 40px;
}

ul{
  margin:0;
  padding: 0;
  list-style: none;
}

a{
  color: #333;
}

a:hover,
a:active{
  text-decoration: none;
}

h1{
  text-align: center;
  font-size:6vw;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin:30px 0;
}

p{
  margin:20px 0;
  word-wrap : break-word;
}
@media (max-width: 767px) {
	.wrapper {
		margin-top: 20px;
		padding: 20px 50px;
	}
	.wrapper p {
		margin: 10px auto;
	}
 }


/* 会社概要タブ */
.company {
	padding: 5% 15%;
}
@media (max-width: 767px) {
	.company {
		padding: 5%;
	}
 }

 /* 仲介業者専用ページ */
 .kusitu {
	padding: 5% 0 2%;
	/* background: oldlace; */
	box-shadow: 0 0 2px 0 #ccc;
	background-image: url(/images/mainimg10.jpg);
	background-size: cover;
 }
.kusitutxt {
	font-weight: 500;
	font-size: 1.1em;
	white-space: nowrap;
	margin: 40px auto 0;
	color: #fff;
	text-shadow: 1px 1px 2px rgba(0,0,0,0.3);	/*テキストの影。右へ、下へ、ぼかし幅。0,0,0は黒の事で0.3は色が30%出た状態。*/
	background: #00000071;
 }
.kusitu .bg1, .kusitu .bg2, .kusitu .bg3 {
	background-size: cover;
	background-position: center;
	text-shadow: 1px 1px white, -1px -1px white;
	overflow: hidden;
}
.kusitu .bg1 {
	/* background-image: url(../images/img4-1.jpg); */
}
.kusitu .bg2 {
	/* background-image: url(../images/img9.jpg); */
}
.kusitu .bg3 {
	/* background-image: url(../images/tenant3.jpg); */
}

.kusitubtn {
	display: flex;
	justify-content: center;
	margin-top: 20px;
}
.kusitubox p {
	text-align: center;
	font-size: 17px;
	margin: 25px;
	font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
.kusitubox span {
	font-size: 25px;
	font-weight: bold;
	border-bottom: 2px solid rgb(190, 170, 90);
}

.applist {
	width: 80%;
	text-align: center;
	margin: auto;
	padding-bottom: 1%;
}
.btnwrap {
	justify-content: center;
	display: flex;
	padding-top: 30px;
	align-items: center;
}
.btnwrap p {
	margin-bottom: 30px;
}

.btnwrap a p {
	margin: 25px;
}
.hrsmbtn {

}
.box26 {
	position: relative;
	margin: 2em 0;
	padding: 1em 1em;
	border: double 3px rgb(190, 170, 90);
}
.box26 .box-title {
	position: absolute;
	display: inline-block;
	top: -13px;
	left: 20px;
	padding: 0 10px;
	line-height: 1;
	font-size: 21px;
	background: #FFF;
	color: #000;
	font-weight: bold;
	letter-spacing: 3px;
}
@media (max-width: 1020px) and (min-width: 768px) {
	.kusitu {
		padding-top: 8%;
	}
	.applist {
		margin: 7% auto;
	}
	.btnwrap {
		display: block;
	}
	.box26 {
		padding: 10px;
		width: 70%;
		margin: auto;
	}
	.kusitubox p {
		text-align: center;
		font-size: 16px;
	}
	.kusitubox span {
		font-size: 21px;
	}

  }
@media (max-width: 767px) {
	.app h2 {
		margin-bottom: 35px;
	}
	.kusitu {
		padding-top: 14%;
	}
	.kusitutxt {
		margin: 0 0 20px 0;
	}
	.btnwrap {
		display: block;
	}
	.box26 .box-title {
		left: 10px;
	}
	.box26 {
		padding: 1em -1em;
	}
	.kusitutxt {
		font-size: 1.1em;
	}
	.kusitubtn {
		display: block;
		text-align: center;
	}
	.kusitubox span {
		font-size: 20px;
	}
	.kusitubox p {
		font-size: 15px;
	}
	.kusitubtn a {
		margin: 15px;
		padding: 0;
	}
	a.hrsmdate p {
		margin-top: -25px;
		/* width: 370px; */
	}

}


/*背景色パターン
---------------------------------------------------------------------------*/
.bg1 {
	background: #eee;
}
.bg2 {
	background: oldlace;
}
.bg3 {
	background: #fff;
}
.bg3 h2 {
	color: #555;
}


/*PAGE TOP（↑）設定
---------------------------------------------------------------------------*/
.pagetop-show {display: block;}

/*ボタンの設定*/
.pagetop a {
	display: block;text-decoration: none;text-align: center;z-index: 99;
	position: fixed;	/*スクロールに追従しない(固定で表示)為の設定*/
	right: 20px;		/*右からの配置場所指定*/
	bottom: 20px;		/*下からの配置場所指定*/
	color: #fff;		/*文字色*/
	font-size: 1.5em;	/*文字サイズ*/
	background: rgba(0,0,0,0.2);	/*背景色。0,0,0は黒の事で0.2は色が20%出た状態。*/
	width: 60px;		/*幅*/
	line-height: 60px;	/*高さ*/
	border-radius: 50%;	/*円形にする*/
}


/*その他
---------------------------------------------------------------------------*/
.clearfix::after {content: "";display: block;clear: both;}
.color-theme, .color-theme a {color: #a47e59 !important;}
.color-check, .color-check a {color: #f00 !important;}
.c {text-align: center !important;}
.ws {width: 95%;display: block;}
.wl {width: 95%;display: block;}
.mb30 {margin-bottom: 30px !important;}
.mt30 {margin-top: 30px !important;}
.look {display: inline-block;padding: 0px 10px;background: #eee; border: 1px solid #ccc; border-radius: 3px;margin: 2px 0; word-break: break-all;}
.small {font-size: 0.8em; letter-spacing: normal !important;}
.large {font-size: 1.5em !important;}
.block {display: block !important;}
.sh {display: block;}
.pc {display: none;}
.hidden {position: absolute; top: -9999px; left: -9999px;}
/* パソコンのみ表示 */
.pb {
	display: block;
}
/* スマホのみ表示 */
.sb {
	display: none;
}
/* タブレットのみ表示 */
.tb {
	display: none;
}
@media (max-width: 1020px) and (min-width: 768px) {
	.tb {
		display: block;
	}
	.pb {
		display: none;
	}
 }
@media (max-width: 767px) {
	.sb {
		display: block;
	}
	.pb {
		display: none;
	}
 }



/*---------------------------------------------------------------------------
ここから下は画面幅400px以下の追加指定
---------------------------------------------------------------------------*/
@media screen and (max-width:400px) {


/*btnの設定
---------------------------------------------------------------------------*/
a.btn1, a.btn2 {
	/* padding: 10px 30px; */
}
a.btn1 i, a.btn2 i {
	margin-left: 10px;
}


/*　※注意！　下の閉じカッコ　}　はこのブロックに必要なので、削除しないで下さい。　*/

}



/*---------------------------------------------------------------------------
ここから下は画面幅900px以上の追加指定
---------------------------------------------------------------------------*/
@media screen and (min-width:900px) {


/*全体の設定
---------------------------------------------------------------------------*/
html, body {
	font-size: 15px;	/*基準となるフォントサイズの上書き*/
}


/*2カラムブロック
---------------------------------------------------------------------------*/
/*２カラムを囲むブロック*/
.c2 {
	flex-direction: row;			/*子要素を横並びにする*/
	justify-content: space-between;	/*並びかたの種類の指定*/
	align-items: center;			/*垂直揃えの指定。天地中央に配置されるように。*/
	
	margin-left: -6%;
	margin-right: -6%;
}
/*画像ブロック*/
.c2 .image {
	width: 60%;
}

/*テキストブロック*/
.c2 .text {
	width: 40%;
	padding: 0 3%;
}

/*最初(左)に配置*/
.c2 .l {
	order: -1;
}

/*画像を右側に配置する場合の設定*/
.c2 .image.r {
	overflow: hidden;
	/*margin-right: -6%;	画像を画面枠ギリギリまで移動する*/
	border-radius: 100px 0px 0px 100px;	/*角を丸くする指定。左上、右上、右下、左下への順番。*/
}

/*画像を左側に配置する場合の設定*/
.c2 .image.l {
	overflow: hidden;
	/*margin-left: -6%;	画像を画面枠ギリギリまで移動する*/
	border-radius: 0px 100px 100px 0px;	/*角を丸くする指定。左上、右上、右下、左下への順番。*/
}


/*トップページのメイン画像
---------------------------------------------------------------------------*/
/*テキストブロック*/
#mainimg #text {
	/* width: 50%;		幅 */
}


/*menubarブロック設定
---------------------------------------------------------------------------*/
/*メニューブロックの設定*/
#menubar {
	/* font-size: 0.85em;	文字サイズを少し小さくする */
}
#menubar ul {
	display: flex;	/*flexボックスを使う指定*/
}

/*メニュー１個あたりの設定*/
#menubar a {
	margin: 6px 20px;	/*上下、左右への余白*/
}


/*３本バー（ハンバーガー）アイコン設定
---------------------------------------------------------------------------*/
/*ハンバーガーメニューを非表示にする*/
#menubar_hdr {display: none;}


/*「お知らせ」ブロック
---------------------------------------------------------------------------*/
/*日付(dt)設定*/
#new dt {
	width: 14em;	/*幅。14文字(em)分。*/
	display: flex;	/*flexボックスを使う指定*/
	justify-content: space-between;	/*日付とアイコンをそれぞれ端に寄せる*/
}

/*日付の横のマーク（共通設定）*/
#new dt span {
	display: inline-block;	/*表示させる*/
	width: 6em;				/*幅。6文字(em)分。*/
	background: #999;		/*背景色*/
	color: #fff;			/*文字色*/
	font-size: 0.8em;		/*文字サイズを80%に。*/
	text-align: center;		/*文字をセンタリング*/
	margin-right: 1em;		/*アイコンの右側に空けるスペース*/
	align-self: flex-start;	/*高さを間延びさせない指定*/
	line-height: 1.8;		/*行間を少し狭く*/
	position: relative;top: 0.4em;	/*上下の配置バランスの微調整*/
}

/*bg1設定。サンプルテンプレートでは「サービス」と書いてあるマーク*/
#new dt span.icon-bg1 {
	background: #a47e59;	/*背景色*/
}

/*記事(dd)設定*/
#new dd {
	width: calc(100% - 14em);	/*「14em」は上の「#new dt」のwidthの値です。*/
}


/*フッターメニュー設定
---------------------------------------------------------------------------*/
/*ボックス全体の設定*/
#footermenu {
	font-size: 0.8em;	/*文字サイズ*/
	padding: 30px 50px 0;	/*上下、左右へのボックス内の余白*/
}


/*listブロック
---------------------------------------------------------------------------*/
/*listブロック全体を囲むブロック*/
.list-container {
	display: flex;		/*flexボックスを使う指定*/
	flex-wrap: wrap;	/*折り返す指定*/
	justify-content: center;
}

/*１個あたりのボックス設定*/
.list-container .list {
	display: flex;					/*flexボックスを使う指定*/
	justify-content: space-between;	/*並びかたの種類の指定*/
	flex-direction: column;			/*子要素を縦並びにする*/
	width: 19%;						/*幅。３列になります。*/
	margin-right: 1%;
}

.list-container .list:nth-of-type(5n) {
	margin-right: 0;
}

/*ボックス内のtextブロック*/
.list-container .list .text {
	flex: 1;
}


/*求人一覧ページ（ist2　横長ブロックタイプ）
---------------------------------------------------------------------------*/
/*list2ボックス。１個あたりのボックスの指定です。*/
.list2 {
	padding-left: 10px;	/*ボックス内の左側にだけ余白を作る*/
}


/*求人一覧ページのlistボックス内の情報詳細欄（tableっぽく見える所）
---------------------------------------------------------------------------*/
/*list2ブロック内でのline設定*/
.list2 dl.line dd {
	width: calc(50% - 8em - 10px);	/*大きな端末向けの再設定。２列にしたいので、100%でなく半分の50%から引いています。*/
	margin-right: 10px;				/*２列になった際の間のスペース*/
}

.list2 dl.line {border-top: none;}

.list2 dl.line dt:nth-of-type(1), .list2 dl.line dd:nth-of-type(1),
.list2 dl.line dt:nth-of-type(2), .list2 dl.line dd:nth-of-type(2) {
	border-top: 1px solid #ccc;
}


/*テーブル
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta1 caption {
	padding: 5px 15px;		/*上下、左右へのボックス内の余白*/
}

/*th（左側）、td（右側）の共通設定*/
.ta1 th, .ta1 td {
	padding: 20px 15px;		/*上下、左右へのボックス内の余白*/
	width: 35%;
}

/*th（左側）のみの設定*/
.ta1 th {
	width: 15%;		/*幅*/
}


/*その他
---------------------------------------------------------------------------*/
.ws {width: 48%;display: inline;}
.sh {display: none;}
.pc {display: inline-block;}


/*　※注意！　下の閉じカッコ　}　はこのブロックに必要なので、削除しないで下さい。　*/

}
