@charset "utf-8";

/************************************************************
	Reset default browser CSS.
*************************************************************/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td { border: 0; font-family: inherit; font-size: 100%; font-style: inherit; font-weight: inherit; outline: 0; vertical-align: baseline; margin: 0; padding: 0;}
:focus { outline: 0;}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { display: block;}
ol, ul { list-style: none;}
table { border-collapse: collapse;border-spacing: 0;}
caption, th, td { font-weight: normal;text-align: left;}
blockquote:before, blockquote:after,q:before, q:after { content: "";}
blockquote, q { quotes: "" "";}
a { margin: 0; padding: 0; outline: 0; vertical-align: baseline; background: transparent;}
a { -webkit-tap-highlight-color:rgba(0, 0, 0, 0) !important; } 
a:active, a:hover { outline: none; outline-width: 0;}
a img { border: 0;}
img { -webkit-backface-visibility: hidden; backface-visibility: hidden; image-rendering: -webkit-optimize-contrast;/* Chrome transition Bug Fix */}
html { font-size: 62.5%; /*10px*/ }
body{
	margin: 0 auto;
	padding: 0;
	color: #000;
	font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック Medium", YuGothic,YuGothicM, "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, sans-serif;
	font-size: 1.6rem;
	line-height: 1.6;
	word-wrap: break-word;
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	overflow-x: hidden;
}

/************************************************************
	Link
*************************************************************/
a {
	margin: 0;
	padding: 0;
	outline: 0;
	vertical-align: baseline;
	background: transparent;
	color: #000;
	font-size: 100%;
	text-decoration: none;
	transition: color 0.3s;
}
a:hover, a:active {
	outline: none;
	color: #39A79C;
	text-decoration: none;
}

/************************************************************
	Layout
*************************************************************/
#wrapper {
	width: 100%;
	margin: 0 auto;
}
.inner {
	width: 1200px;
	margin-left: auto;
	margin-right: auto;
}
#content {
	width: 100%;
	margin: 0 auto;
}
@media only screen and (min-width: 1200px){
	.inner {
		width: 1200px;
	}
}
@media only screen and (max-width: 1199px){
	.inner {
		width: 90%;
	}
}

/************************************************************
	Typography
*************************************************************/
section > h2 {
}
section > h3 {
}

/************************************************************
	Header / Common
*************************************************************/
#mobile-menu {
	display: none;
}
.mm-menu.mm-current {
    display: block !important;
}
@media only screen and (min-width: 769px){ 
	header#mobile { 
		display: none !important;
	}
}
@media only screen and (max-width: 768px){
	header#main {
		display: none !important;
	}
	/*#mobile-menu {
		display: block;
	}*/
}

/************************************************************
	Header / Desktop
*************************************************************/
header#main {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	/*border-bottom: 1px solid #CCC;*/
	box-sizing: border-box;
}
header#main > div.logo {
	margin-right: auto;
	margin-left: 1.5rem;
}
header#main > div.logo h1 {
	display: block;
	margin-bottom: 4px;
	font-size: 1.2rem;
}
header#main > div.logo a {
	display: block;
}
header#main > div.logo a:hover {
	text-decoration: none;
}
header#main > div.logo a img {
	height: auto;
	width: 260px;
	transition: 0.3s ease;
}
header#main > ul {
    display: flex;
	margin-left: 2rem;
}
header#main > ul li {
	padding: 0 0.8rem;
	font-size: 1.5rem;
	font-weight: 600;
	line-height: 1.2;
}
header#main > ul li a {
	position: relative;
	transition: color 0.3s;
}
header#main > ul li a:hover {
	color: #39A79C;
	text-decoration: none;
}
header#main > ul li a::after {
	position: absolute;
	left: 0;
	bottom: -10px;
	width: 100%;
	height: 3px;
	background: #9DD2CC;
	content: '';
	transform: scale(0, 1);
	transform-origin: left top;
	transition: transform 0.3s;
}
header#main > ul li a:hover::after {
	transform: scale(1, 1);
}
header#main > dl {
	min-width: 220px;
	margin: 0 4rem;
	text-align: right;
}
header#main > dl dt {
	font-size: 3rem;
	font-weight: 500;
	color: #39A79C;
	line-height: 1.2;
}
header#main > dl dt span {
	font-size: 1.4rem;
}
header#main > dl dd {
	font-size: 1.4rem;
	text-align: right;
}
header#main > a.contact {
	display: flex;
	justify-content: center;
	align-items: center;
	min-width: 8em;
	height: 110px;
	background: #39A79C;
	color: #FFF;
}
header#main > a.contact:hover {
	background: #9DD2CC;
	text-decoration: none;
	transition: background 0.3s;
}
@media only screen and (max-width: 1459px){
	header#main > dl {
		margin: 0 3rem;
	}
}
@media only screen and (max-width: 1399px){
	header#main > div.logo a img {
		width: 220px;
	}
	header#main > ul li {
		padding: 0 0.5rem;
	}
	header#main > dl {
		margin: 0 2rem;
	}
}
@media only screen and (max-width: 1299px){
	header#main > dl {
		min-width: 200px;
	}
	header#main > dl dt {
		font-size: 2.6rem;
	}
}
@media only screen and (max-width: 999px){
	header#main > div.logo h1{
		font-size: 1rem;
	}
	header#main > div.logo a img {
		width: 160px;
	}
	header#main > ul li {
		padding: 0 0.4rem;
		font-size: 1.3rem;
	}
	header#main > dl {
		min-width: 185px;
		margin: 0 1rem;
	}
	header#main > dl dt {
		font-size: 2.4rem;
	}
	header#main > dl dt span {
		font-size: 1.2rem;
	}
	header#main > dl dd {
		font-size: 1.2rem;
	}
}
@media only screen and (max-width: 899px){
	header#main > div.logo h1 {
		padding-left: 0;
	}
	header#main > div.logo a img {
		width: 140px;
	}
	header#main > ul li {
		font-size: 1.2rem;
	}
	header#main > dl {
		min-width: 170px;
	}
	header#main > dl dt {
		font-size: 2.2rem;
	}
	header#main > dl dd {
		font-size: 1.1rem;
	}
}
/* Fixed
------------------------------------------------------------*/
header#main {
	top: -5rem;
}
header#main.fixed {
	position: fixed;
	top: 0;
	z-index: 10000;
	background: rgba(255, 255, 255, 0.9);
	transition: 0.3s ease-in-out;
}
header#main.fixed > a.contact {
	height: 90px;
}
header#main.fixed > p.logo a img {
	width: 200px;
}

/************************************************************
	Header / Mobile
*************************************************************/
header#mobile {
	width: 100%;
	position: fixed;
	top: 0;
	z-index: 999;
	display: flex;
	align-items: center;
	height: 70px;
	background: rgba(255,255,255,.8);
	box-sizing: border-box;
}
header#mobile p.logo {
	margin: 0 1rem;
}
header#mobile p.logo a {
	display: block;
}
header#mobile p.logo a span {
	display: block;
	margin-bottom: 2px;
	font-size: 1rem;
}
header#mobile p.logo a img {
	height: auto;
	width: 180px;
}
header#mobile ul {
	display: flex;
	align-items: center;
	margin-left: auto;
	margin-right: 90px;
}
header#mobile ul li {
	line-height: 1;
}
header#mobile ul li:not(:last-of-type) {
	margin-right: 2rem;
}
header#mobile ul li a {
	display: block;
	text-align: center;
}
header#mobile ul li a img {
	height: auto;
	width: 40px;
}
header#mobile ul li a span {
	display: block;
	font-size: 1rem;
}
@media only screen and (max-width: 480px){
	header#mobile {
		height: 60px;
	}
	header#mobile p.logo a img {
		width: 160px;
	}
	header#mobile ul {
		margin-right: 70px;
	}
	header#mobile ul li:not(:last-of-type) {
		margin-right: 0.75rem;
	}
	header#mobile ul li a img {
		width: 30px;
	}
}
@media only screen and (max-width: 410px){
	header#mobile {
		height: 50px;
	}
	header#mobile p.logo a img {
		width: 140px;
	}
	header#mobile ul {
		margin-right: 60px;
	}
	header#mobile ul li:not(:last-of-type) {
		margin-right: 0.5rem;
	}
	header#mobile ul li a img {
		width: 24px;
	}
	header#mobile ul li a span {
		font-size: 0.8rem;
	}
}
@media only screen and (max-width: 360px){
	header#mobile p.logo a span {
		font-size: 0.8rem;
	}
	header#mobile p.logo a img {
		width: 120px;
	}
}

/********************************************************
	jQuery.mmenu CSS // Mobile
*********************************************************/
@media only screen and (max-width: 768px){
	/*.mm-menu { -webkit-overflow-scrolling: auto;}*/
	/* Open Button */
	header#mobile a#mmenu {
		position: fixed;
		top: 0;
		right: 0;
		z-index: 99999;
		display: flex;
		justify-content: center;
		align-items: center;
		flex-direction: column;
		width: 70px;
		height: 70px;
		background: #39A79C;
		box-sizing: border-box;
		text-decoration: none;
		color: #FFF;
	}
	header#mobile a#mmenu i {
		font-size: 2.4rem;
		transition: all 0.25s ease-out;
	}
	.mm-opened header#mobile a#mmenu i {
		font-weight: 300;
		transform: rotate(90deg);
	}
	.mm-opened header#mobile a#mmenu i:before {
		content: "\f00d";
	}
	header#mobile a#mmenu span {
		display: block;
		font-size: 1rem;
	}
	/* Theme Black Text Color（Defalt Theme Overwrite） */
	.mm-menu.mm-theme-black { color: rgba(255, 255, 255, 1) !important;} /* default 0.6 */
	.mm-menu.mm-theme-black .mm-navbar > *, .mm-menu.mm-theme-black .mm-navbar a { color: rgba(255, 255, 255, 1) !important;} /* default 0.4 */
	.mm-menu.mm-theme-black em.mm-counter { color: rgba(255, 255, 255, 1) !important;} /* default 0.4 */
	.mm-menu.mm-theme-black .mm-listview > li .mm-prev::before, .mm-menu.mm-theme-black .mm-listview > li .mm-next::after, .mm-menu.mm-theme-black .mm-listview > li .mm-arrow::after {
		border-color: rgba(255, 255, 255, 1) !important; /* default 0.4 */
	}
	/* bottom */
	.mm-navbar-bottom {
		height: 80px !important;
	}
	/* Background Color (Overwrite) ※Default Color #f3f3f3
	------------------------------------------------------------*/
   div#mobile-menu { background-color: #282829; }
}
@media only screen and (max-width: 480px){
	header#mobile a#mmenu {
		width: 60px;
		height: 60px;
	}
}
@media only screen and (max-width: 410px){
	header#mobile a#mmenu {
		width: 50px;
		height: 50px;
	}
}
/* Menu
------------------------------------------------------------*/
@media only screen and (max-width: 768px){
	#mobile-menu {
	}
	#mobile-menu ul {
	}
	#mobile-menu ul li {
	}
	#mobile-menu ul li a {
		padding-top: 15px;
		padding-bottom: 15px;
		font-size: 1.6rem;
	}
	#mobile-menu ul li a i {
		margin-right: 4px;
	}
	#mobile-menu p.contact {
		text-align: center;
	}
	#mobile-menu p.contact a {
		display: inline-block;
		width: 80%;
		margin: 3rem 0 1.5rem;
		padding-top: 1rem;
		padding-bottom: 1rem;
		background: #39A79C;
		box-sizing: border-box;
		color: #FFF;
	}
	#mobile-menu p.contact a i {
		margin-right: 4px;
	}
	#mobile-menu dl {
		margin-bottom: 3rem;
		text-align: center;
		line-height: 1.4;
	}
	#mobile-menu dl dt {
		font-size: 2.6rem;
	}
	#mobile-menu dl dt a {
		color: #FFF;
	}
	#mobile-menu dl dt i {
		margin-right: 5px;
		font-size: 2.2rem;
	}
	#mobile-menu dl dd {
		font-size: 1.2rem;
	}
	#mobile-menu ol {
		display: flex;
		justify-content: center;
	}
	#mobile-menu ol li {
	}
	#mobile-menu ol li::after {
		border: none;
	}
	#mobile-menu ol li a {
		padding: 0 10px;
		font-size: 1.4rem;
	}
}

/************************************************************
	Footer
*************************************************************/
footer {
	padding: 6em 0 0;
	width: 100%;
	background: #F2F2F2;
}
@media only screen and (max-width: 768px){
	footer {
		padding: 3em 0 0;
	}
}
/* search
--------------------------------------------------------*/
footer > div#ft-search {
	display: flex;
	margin: 0 auto 3rem auto;
	padding-bottom: 3rem;
	border-bottom: 1px solid #CCC;
}
@media only screen and (min-width: 1260px){	footer > div#ft-search { width: 1200px;}}
@media only screen and (max-width: 1259px){	footer > div#ft-search { width: 90%;}}
footer > div#ft-search p {
	margin-right: 3rem;
	font-weight: 600;
  white-space:nowrap;
}
footer > div#ft-search ul {
	display: flex;
  flex-wrap: wrap;
  gap:10px 2rem;
}
footer > div#ft-search ul li {
	font-size: 1.3rem;
}
footer > div#ft-search ul li:not(:last-of-type) {
}
footer > div#ft-search ul li a {
}
footer > div#ft-search ul li a::before {
	margin-right: 4px;
	font-family: "Font Awesome 5 Pro";
	display: inline-block;
	font-style: normal;
	font-variant: normal;
	font-weight: 900;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	content: "\f0da";
}
@media only screen and (max-width: 999px){
	footer > div#ft-search {
		flex-wrap: wrap;
	}
	footer > div#ft-search p {
		margin-right: 0;
    margin-bottom:10px;
	}
	footer > div#ft-search p br{
    display:none;
	}
  footer > div#ft-search ul {
    gap:5px 2rem;
  }
}
@media only screen and (max-width: 799px){
}
/* main
--------------------------------------------------------*/
footer > div#ft-main {
	display: flex;
	justify-content: space-between;
	margin: 0 auto 3rem auto;
}
@media only screen and (min-width: 1260px){	footer > div#ft-main { width: 1200px;}}
@media only screen and (max-width: 1259px){	footer > div#ft-main { width: 90%;}}
footer > div#ft-main #ft_reoffice {
	display: flex;
	align-items: flex-start;
	width: 60%;
}
footer > div#ft-main #ft_reoffice a {
	display: block;
}
footer > div#ft-main #ft_reoffice a img {
	height: auto;
	max-width: 100px;
}
footer > div#ft-main #ft_reoffice dl {
	margin-left: 3rem;
}
footer > div#ft-main #ft_reoffice dl dt {
	margin-bottom: 1.5rem;
	font-weight: 600;
	line-height: 1.2;
}
footer > div#ft-main #ft_reoffice dl dd {
	font-size: 1.4rem;
}
footer > div#ft-main #ft_reoffice dl dd a{
	display: inline-block;
  text-decoration:underline;
  margin-top:0.5em;
}
footer > div#ft-main ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 33%;
}
footer > div#ft-main ul li {
	width: 45%;
	margin-bottom: 1.5rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid #CCC;
	box-sizing: border-box;
	font-size: 1.5rem;
	line-height: 1.2;
}
footer > div#ft-main ul li a {
	display: block;
	padding-left: 1em;
	position: relative;
}
footer > div#ft-main ul li a::before {
	margin-right: 10px;
	font-family: "Font Awesome 5 Pro";
	display: inline-block;
	font-style: normal;
	font-variant: normal;
	font-weight: 900;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	content: "\f0da";
	position: absolute;
	left: 0;
	top: 0;
}
@media only screen and (max-width: 599px){
	footer > div#ft-main {
		display: block;
	}
	footer > div#ft-main #ft_reoffice {
		width: 100%;
		margin-bottom: 2rem;
	}
	footer > div#ft-main #ft_reoffice a img {
		max-width: 80px;
	}
	footer > div#ft-main #ft_reoffice dl {
		margin-left: 2rem;
	}
	footer > div#ft-main #ft_reoffice dl dt {
		margin-bottom: 0.5rem;
	}
	footer > div#ft-main ul {
		width: 100%;
	}
}
/* sub
--------------------------------------------------------*/
footer > div#ft-sub {
	padding: 1.5rem 0;;
	background: #39A79C;
}
footer > div#ft-sub div {
	display: flex;
	justify-content: space-between;
	margin: 0 auto;
}
@media only screen and (min-width: 1260px){	footer > div#ft-sub div { width: 1200px;}}
@media only screen and (max-width: 1259px){	footer > div#ft-sub div { width: 90%;}}
footer > div#ft-sub div ul {
	display: flex;
}
footer > div#ft-sub div ul li {
	font-size: 1.4rem;
}
footer > div#ft-sub div ul li:first-of-type {
	margin-right: 2rem;
	padding-right: 2rem;
	border-right: 1px solid #FFF;
}
footer > div#ft-sub div ul li a {
	color: #FFF;
}
footer > div#ft-sub div small {
	font-size: 1.2rem;
	color: #FFF;
}
@media only screen and (max-width: 768px){
	footer > div#ft-sub div {
		padding-bottom: 70px;
	}
}
@media only screen and (max-width: 599px){
	footer > div#ft-sub div {
		display: block;
		text-align: center;
	}
	footer > div#ft-sub div ul {
		justify-content: center;
	}
}
/* contact
--------------------------------------------------------*/
#contact-bottom {
}
#contact-bottom h2 {
	margin-bottom: 3rem;
	font-size: 3.6rem;
	font-weight: 600;
	text-align: center;
	line-height: 1.2;
}
#contact-bottom h2::first-letter {
	color: #39A79C;
}
#contact-bottom h2 span {
	display: block;
	margin-top: 1rem;
	font-size: 1.5rem;
}
#contact-bottom > div {
	position: relative;
}
#contact-bottom > div img {
	height: auto;
	width: 100%;
	object-fit: cover;
	vertical-align: bottom;
}
#contact-bottom > div > div {
	position: absolute;
	bottom: -5rem;
	left: 50%;
	transform: translateX(-50%);
	padding: 6rem 3rem;
	background: #FFF;
	box-sizing: border-box;
}
#contact-bottom > div > div p {
	margin-bottom: 2rem;
	text-align: center;
}
#contact-bottom > div > div ul {
	display: flex;
	justify-content: center;
}
#contact-bottom > div > div ul li {
}
#contact-bottom > div > div ul li.tel {
	margin-right: 6rem;
}
#contact-bottom > div > div ul li.tel dl {
}
#contact-bottom > div > div ul li.tel dl dt {
	font-size: 4rem;
	font-weight: 500;
	color: #39A79C;
	line-height: 1.2;
}
#contact-bottom > div > div ul li.tel dl dt a {
	color: #39A79C;
}
#contact-bottom > div > div ul li.tel dl dt span {
	font-size: 1.4rem;
}
#contact-bottom > div > div ul li.tel dl dd {
	font-size: 1.4rem;
	text-align: right;
}
#contact-bottom > div > div ul li.form {
	display: flex;
	justify-content: center;
	align-items: center;
}
#contact-bottom > div > div ul li.form a {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 300px;
	height: 100%;
	padding: 0 3rem;
	background: #39A79C;
	box-sizing: border-box;
	color: #FFF;
}
#contact-bottom > div > div ul li.form a::after {
	width: 30px;
	height: 6px;
	border-bottom: solid 1px;
	border-right: solid 1px;
	transform: skew(45deg);
	content: '';
	color: #FFF;
}
@media only screen and (max-width: 899px){
	#contact-bottom > div > div {
		width: 85%;
		padding: 4rem 2rem;
	}
	#contact-bottom > div > div ul li.tel {
		margin-right: 3rem;
	}
	#contact-bottom > div > div ul li.tel dl dt {
		font-size: 3rem;
	}
	#contact-bottom > div > div ul li.form a {
		min-width: auto !important;
	}
}
@media only screen and (max-width: 768px){
	#contact-bottom > div > div {
		position: initial;
		transform: translateX(0);
		bottom: 0;
		left: 0;
		width: 100%;
		padding: 3rem;
	}
	#contact-bottom > div > div p br {
		display: none;
	}
	#contact-bottom > div > div ul {
		justify-content: flex-start;
		flex-direction: column;
		text-align: center;
	}
	#contact-bottom > div > div ul li.tel dl {
		margin-bottom: 2rem;
	}
	#contact-bottom > div > div ul li.tel dl dd {
		text-align: center;
	}
	#contact-bottom > div > div ul li.form a {
		width: 100%;
		padding: 3rem 2rem;
	}
}
/* Fixed Footer Menu
--------------------------------------------------------*/
@media only screen and (min-width: 1000px){
	nav#mobileFixed {
		display: none;
	}
}
@media screen and (max-width: 768px){
	nav#mobileFixed {
		position: fixed;
		bottom: 0;
		width: 100%;
		background: rgba(40,40,41,.9);
		box-sizing: border-box;
		z-index: 10000;
	}
	nav#mobileFixed ul {
		display: flex;
	}
	nav#mobileFixed ul li {
		width: calc(100% / 5);
		text-align: center;
		box-sizing: border-box;
	}
	nav#mobileFixed ul li a {
		display: block;
		padding: 15px 0;
		text-decoration: none;
		color: #FFF !important;
		font-size: 8px;
	}
	nav#mobileFixed ul li a:hover {
		text-decoration: none !important;
	}
	nav#mobileFixed ul li a i {
		margin-bottom: 3px;
		display: block;
		font-size: 1.8rem;
	}
}

/************************************************************
	非公開物件バナー
*************************************************************/
aside.bnr-undisclosed {
	margin-bottom: 6rem;
}
	.home aside.bnr-undisclosed  {
		margin-top: -3rem;
	}
aside.bnr-undisclosed p {
	text-align: center;
}
aside.bnr-undisclosed p a {
	display: inline-block;
}
aside.bnr-undisclosed p a img {
	height: auto;
	max-width: 480px;
	width: 100%;
	vertical-align: bottom;
}
aside.bnr-undisclosed p a span {
	display: block;
	margin-top: 3px;
	font-size: 1.3rem;
}
@media only screen and (max-width: 480px){
	aside.bnr-undisclosed {
		width: 90%;
		margin-left: auto;
		margin-right: auto;
	}
}

/************************************************************
	エラー
*************************************************************/
.error .inner {
	margin-top: 10rem;
}
.error .inner h1 {
	margin-bottom: 2rem;
	font-size: 2.4rem;
	font-weight: bold;
	text-align: center;
}

/************************************************************
	 Extensions
*************************************************************/
/* PAGE TOP
--------------------------------------------------------*/
#page-top {
	position: fixed;
	bottom: 1.5rem;
	right: 1.5rem;
	z-index: 99999;
}
#page-top a {
	display: block;
	width: 30px;
	height: 30px;
	line-height: 30px;
	padding: 1rem;
	border-radius: 5px;
	background: #666;
	font-size: 2rem;
	color: #FFF;
	text-align: center;
	text-decoration: none;
}
#page-top a:hover {
	background: #39A79C;
	transition: 0.5s ease-in-out;
	text-decoration: none;
}
@media only screen and (max-width: 768px){
	#page-top {
		bottom: 8rem;
		right: 1rem;
	}
}
/* パンくず
--------------------------------------------------------*/
div#breadcrumbs {
	margin-bottom: 6rem;
}
div#breadcrumbs ol {
	line-height: 1.2;
}
div#breadcrumbs ol li {
	display: inline;
	font-size: 1.4rem;
}
div#breadcrumbs ol li:not(:first-of-type)::before {
	padding: 0 0.75rem;
	font-family: "Font Awesome 5 Pro";
	display: inline-block;
	font-style: normal;
	font-variant: normal;
	font-weight: 300;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	content: "\f105";
}
div#breadcrumbs ol li a {
}

/************************************************************
	ソーシャルサービス
*************************************************************/
/* YouTube
--------------------------------------------------------*/
.YouTube  {
	margin-bottom: 1em;
	overflow: hidden;
	position: relative;
	/* paddingで高さを出している */
	height: 0;
	padding-top:30px;
	padding-bottom:56.25%;
}
.YouTube iframe,
.YouTube object,
.YouTube embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
/* Google Map
--------------------------------------------------------*/
.google-maps {
	position: relative;
	padding-bottom: 75%;
	height: 0;
	overflow: hidden;
}
.google-maps iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100% !important;
	height: 100% !important;
}

/********************************************************
	Animation
*********************************************************/
@keyframes up {
	0%, 100% { transform: translateY(0px);}
	50% { transform: translateY(-5px);}
}



/************************************************************
	居抜きオフィス物件一覧 表示テキスト
*************************************************************/
#page #area-info {
}
/* とは
--------------------------------------------------------*/
#page #area-info {
	margin-bottom: 9rem;
}
#page #area-info  h2 {
	margin-bottom: 4rem;
	font-size: 3rem;
	font-weight: 500;
	color: #39A79C;
	text-align: center;
	line-height: 1.6;
}
#page #area-info  p {
  width: 70%;
  margin: 0 auto 4rem auto;
}

@media only screen and (max-width: 768px) {
  #page #area-info  h2 {
    margin-bottom: 2rem;
    font-size: 2.4rem;
  }
  #page #area-info  p {
    width: 90%;
  }
}
@media only screen and (max-width: 480px) {
  #page #area-info  h2 {
    font-size: 2.2rem;
  }
}


