﻿@charset "UTF-8";

:root {
	/*--------- color ---------*/
	--color-primary: #000;
	--color-secondary: #ff5a00;
	--color-bg: #000;
	--color-fg: #ff5a00;
	--color-accent: #ff5a00;
}

/*--------- base ---------*/
html {
	font-size: 62.5%;
	width: 100%;
}
body {
	width: 100%;
	font-size: clamp(1.2rem, 1.018rem + 0.91vw, 1.6rem);
	font-family: "Noto Serif JP", serif;
	color: #333;
	background: #fff;
	-webkit-text-size-adjust: 100%;
}
* {
	box-sizing: border-box;
	word-wrap: break-word;
}
a {
	color: #333;
}
a:link,
a:visited,
a:active,
a:hover {
	overflow: hidden;
	outline: none;
}
/*img {
	width: 100%;
	vertical-align: top;
}*/
img {
	display: block;
	max-width: 100%;
	height: auto;
}
@media screen and (-webkit-min-device-pixel-ratio: 0) and (min-resolution: .001dpcm) {
	img {
		image-rendering: -webkit-optimize-contrast;
	}
}
input, select, textarea {
	outline: none;
}
b, strong {
	font-weight: 700;
}

/*--------- flexbox ---------*/
.flex {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
}
.flexevent {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

/*--------- form style ---------*/
/*--------- reset ---------*/
button,
textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border: none;
}
textarea {
	resize: none;
}
input[type="submit"]:hover,
label:hover {
	cursor: pointer;
}
select:-moz-focusring {
	color: transparent;
	text-shadow: 0 0 0 #333;
}
select::-ms-expand {
	display: none;
}
input[type="text"],
textarea,
select,
input[type="submit"],
input[type="email"] {
	font-family: inherit;
	font-size: inherit;
	border: 0;
	border-radius: 0;
}
select::-ms-expand {
	display: none;
}
textarea {
	display: block;
}
input[type="submit"]:hover {
	cursor: pointer;
}

/*--------- img ---------*/


/*--------- section ---------*/
section {
	position: relative;
}
section:nth-of-type(even) {
	background: #eee;
}
.section_inner {
	position: relative;
	margin: 0 auto;
	width: calc(100% - 20px);
	max-width: 1200px;
	padding: 40px 0;
}
.borderbox {
	padding: 16px;
	box-shadow: 4px 4px 8px 0px rgba(33, 33, 33, .3);
}

/*--------- title ---------*/
.section_title {
	margin: 0 auto 20px;
	position: relative;
	width: 100%;
	font-family: "Lexend", sans-serif;
	font-size: clamp(1.6rem, 1.129rem + 2.35vw, 2.6rem);
	letter-spacing: 1px;
	color: var(--color-accent);
	font-weight: 700;
	text-align: center;
}
.section_title span {
	display: block;
	position: relative;
	font-size: .5em;
	color: var(--color-primary);
}

/*--------- button ---------*/
.btn a,
.btn input {
	display: block;
	color: #FFF;
	font-size: 1.4rem;
	text-align: center;
	line-height: 40px;
	width: 300px;
	height: 40px;
	background: var(--color-fg);
	margin: 20px auto 0;
	transition: opacity .5s;
}


/*--------- breadlist ---------*/
#bread {
	text-align: right;
	max-width: 950px;
	margin: 0 auto;
}
.breadlist {
	width: 100%;
	white-space: nowrap;
	overflow-x: auto;
	padding: 6px;
}
.breadlist li {
	display: inline-block;
}
.breadlist li+li::before {
	content: "＞";
	margin-right: 5px;
}
.breadlist li a {
	text-decoration: underline;
}
.breadlist * {
	font-size: 1.2rem;
}


/*--------- pager ---------*/
.nav-links {
	line-height: 1;
	align-items: center;
	justify-content: center;
}
.pagination {
	overflow: hidden;
	margin-top: 40px;
	margin-bottom: 20px;
	text-align: center;
	clear: both;
	background-color: transparent;
}
.pagination a {
	padding: 5px 10px;
	display: inline-block;
	border: solid 1px #cccccc;
	color: #666666;
	background-color: #eee;
}
.pagination a:hover {
	background-color: #e8e8e8;
}
.pagination span {
	padding: 5px 10px;
	display: inline-block;
}
.pagination span.current {
}
.pagination .prev,
.pagination .next {
	display: none;
}




/*--------- header ---------*/
header {
	position: relative;
	height: 500px;
	overflow: hidden;
}
/*--------- 背景スライダー ---------*/
.header_slider {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	z-index: 1;
}
.header_slider > div{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	z-index: 10;
	opacity: 0;
	animation-name: fade;
	animation-duration: 16s;
	animation-iteration-count: infinite;
}
@keyframes fade {
	0%{ opacity: 0; }
	20%{ opacity: 1; }
	80%{ opacity: 0; transform: scale(1.2); }
	100%{ opacity: 0; z-index: 0; }
}
.header_slider > div:first-of-type{ background-image: url(../img/slider01.webp); animation-delay: 0s;}
.header_slider > div:nth-of-type(2){ background-image: url(../img/slider02.webp); animation-delay: 4s;}
.header_slider > div:nth-of-type(3){ background-image: url(../img/slider03.webp); animation-delay: 8s;}
.header_slider > div:last-of-type{ background-image: url(../img/slider04.webp); animation-delay: 12s;}
body:not(.home) .header_slider {
	display: none;
}
body:not(.home) header {
	background-size: cover;
	background-position: center center;
}
.real-estate-leasing header {
	background-image: url(../img/real-estate-leasing_header.webp);
}
.owened-properties header, .properties header {
	background-image: url(../img/properties_header.webp);
}
.management header {
	background-image: url(../img/management_header.webp);
}
.renovation header {
	background-image: url(../img/renovation_header.webp);
}
.asset header {
	background-image: url(../img/asset_header.webp);
}
.company_profile header {
	background-image: url(../img/company_profile_header.webp);
}
.contact header {
	background-image: url(../img/contact_header.webp);
}
.privacy-policy header {
	background-image: url(../img/privacy-policy_header.webp);
}
.header_inner {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	z-index: 2;
	color: #fff;
	text-align: center;
	filter: drop-shadow(0 0 3px rgb(0 0 0 /.5));
}
.header_catch {
	letter-spacing: .05em;
}
.header_catch span {
	display: block;
	font-size: .5em;
}
/*--------- PC style ---------*/
@media print, screen and (min-width:1024px) {
	body:not(.home) header {
		height: 300px;
	}
	.header_inner {
		max-width: 1290px;
		height: calc(100% - 60px);
		margin: 0 auto;
	}
	.header_logo {
		width: 240px;
		line-height: 0;
	}
	.header_info span {
		font-size: .6em;
		font-weight: 700;
	}
	.header_catch {
		font-size: 1.5em;
		margin-top: 1em;
	}
	.globalnavi_wrapper {
		position: relative;
		bottom: 0;
		z-index: 1;
	}
	#sept .globalnavi {
		background: var(--color-bg);
	}
	#septproperties .globalnavi {
		background: var(--color-fg);
	}
	.globalmenu {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		justify-content: center;
	}
	.globalmenu li {
		width: fit-content;
		text-align: center;
	}
	.globalmenu li:not(:first-of-type) {
		border-left: 1px solid #555;
	}
	.globalmenu li a {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		height: 60px;
		color: #FFF;
		font-size: 1.5rem;
		font-weight: 500;
		line-height: 1.4;
		transition: .5s background;
		padding: 0 20px;
	}
	.globalmenu li a span {
		font-size: 1rem;
		letter-spacing: .1em;
		display: block;
		transition: .5s color;
	}
	#sept .globalmenu li a span {
		color: var(--color-secondary);
	}
	#septproperties .globalmenu li a span {
		color: var(--color-primary);
	}
	@media (hover: hover){
		#sept .globalmenu li a:hover {
			background: var(--color-fg);
		}
		#septproperties .globalmenu li a:hover {
			background: var(--color-bg);
		}
		.globalmenu li a:hover span {
			color: #FFF!important;
		}
	}
}
/*--------- SP style ---------*/
@media print, screen and (max-width:1023px) {
	header{
		margin-bottom: 10px;
	}
	body:not(.home) header {
		height: 150px;
	}
	.header_inner {
		height: 100%;
	}
	.header_logo {
		width: 220px;
	}
	.header_catch {
		font-size: 1.2em;
		margin-top: .5em;
	}
	/*--------- sp_menubtn ---------*/
	.sp_menubtn {
		background: var(--color-fg);
		border-radius: 3px;
		position: fixed;
		top: 5px;
		right: 5px;
		width: 46px;
		height: 46px;
		z-index: 10000;
	}
	.sp_menubtn span {
		position: absolute;
		left: 0;
		right: 0;
		margin: 0 auto;
		width: 70%;
		height: 4px;
		background: #FFF;
		transition: all .4s;
	}
	.sp_menubtn span:nth-of-type(1) {
		top: 11px;
	}
	.sp_menubtn span:nth-of-type(2) {
		top: 21px;
	}
	.sp_menubtn span:nth-of-type(3) {
		bottom: 11px;
	}
	.sp_menubtn.active {
		background: #FFF;
	}
	.sp_menubtn.active span {
		background: var(--color-fg);
	}
	.sp_menubtn.active span:nth-of-type(1) {
		transform: translateY(10px) rotate(-315deg);
	}
	.sp_menubtn.active span:nth-of-type(2) {
		opacity: 0;
	}
	.sp_menubtn.active span:nth-of-type(3) {
		transform: translateY(-10px) rotate(315deg);
	}
	/*--------- globalnavi ---------*/
	.globalnavi_wrapper {
		transition: opacity .5s;
		opacity: 0;
		background: rgba(0,0,0,.7);
		width: 100vw;
		height: 100vh;
		z-index: 9999;
		position: fixed;
		top: 0;
		left: 0;
		pointer-events: none;
		backdrop-filter: blur(8px);
		-webkit-backdrop-filter: blur(8px);
	}
	.globalnavi_wrapper.menu_open {
		opacity: 1;
		pointer-events: auto;
	}
	.globalnavi_wrapper .globalnavi {
		display: none;
	}
	.globalnavi_wrapper.menu_open .globalnavi {
		display: block;
	}
	.globalmenu {
		position: fixed;
		width: calc(100% - 20px);
		z-index: 11;
		top:50px;
		border-radius: 10px;
		left:10px;
		padding: 10px;
		max-height:80vh;
		overflow:auto;
		/*---------  -webkit-overflow-scrolling: touch; ---------*/
		text-align:left;
	}
	.globalmenu li a {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		flex-direction: column;
		align-items: center;
		padding: 1em;
		color: #FFF;
		font-size: 1.4rem;
	}
	.globalmenu li a span {
		font-size: .6em;
		color: var(--color-secondary);
		margin-right:10px;
	}
}



/*--------------------------- TOP PAGE ---------------------------*/

/*--------- top_profile ---------*/
#top_profile .title {
	font-size: clamp(1.4rem, 0.647rem + 3.76vw, 3rem);
	text-align: center;
	font-weight: 700;
	margin: 30px auto 50px;
}
#top_profile .txt {
	line-height: 2;
	max-width: 720px;
	margin: 0 auto;
}


/*--------- top_topics ---------*/
#top_topics .section_inner {
	max-width: fit-content;
}
#top_topics dl {
	justify-content: space-between;
}
#top_topics dl + dl {
	border-top: 1px dotted #555;
	margin-top: 10px;
	padding-top: 10px;
}
#top_topics dl dt {
	font-size: 1.4rem;
	color: var(--color-accent);
}
#top_topics dl dt i {
	font-size: .9rem;
	margin-right: .5em;
}
/*--------- PC style ---------*/
@media print, screen and (min-width:1024px) {
	#top_topics dl dt {
		width: 10em;
	}
	#top_topics dl dd {
		width: calc(100% - 11em);
	}
}
/*--------- SP style ---------*/
@media print, screen and (max-width:1023px) {
	#top_topics dl dt {
		width: 100%;
	}
	#top_topics dl dd {
		width: 100%;
		padding-left: 1em;
	}
}


/*--------- top_link_block ---------*/
#top_link_block h3 {
	font-size: 2em;
	text-align: center;
	margin: 20px auto;
}
#top_link_block h3 span {
	color: var(--color-accent);
}
#top_link_block ul li {
	position: relative;
}
#top_link_block ul li img {
	transition: .5s;
}
#top_link_block ul li a {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
	z-index: 1;
}
#top_link_block .title {
	font-size: 1.2em;
	color: #FFF;
	font-weight: 700;
	letter-spacing: .25em;
	text-align: center;
	background: var(--color-fg);
}
#top_link_block .txt {
	letter-spacing: .1em;
	text-align: center;
	margin: 5px auto;
}
/*--------- PC style ---------*/
@media print, screen and (min-width:1024px) {
	#top_link_block ul {
		justify-content: space-between;
	}
	#top_link_block ul li {
		width: calc(100% / 3 - 20px);
	}
	@media (hover: hover){
		#top_link_block ul li:hover img {
			opacity: .7;
		}
	}
}
/*--------- SP style ---------*/
@media print, screen and (max-width:1023px) {
	#top_link_block ul {
		max-width: 460px;
		margin: 0 auto;
	}
	#top_link_block ul li {
		width: 100%;
	}
	#top_link_block ul li + li {
		margin-top: 20px;
	}
}



/*--------- top_owened-properties ---------*/
/*--------- owened-properties ---------*/
/*--------- top_properties ---------*/
/*--------- properties ---------*/

/* 切り替えタブ */
.refinement_block {
}
.refinement {
	padding: 30px;
}
.refinement_categories {
	border-bottom: 1px solid #e0dedd;
}
.refinement_categories ul {
	padding: 0 15px 20px 15px;
}
.refinement_categories ul li {
	display: inline-block;
	list-style: none;
	padding: 0 8px 0 0;
}
.refinement_categories ul li i {
	padding: 0 5px 0 0;
}
.refinement_tags {}
.refinement_tags ul {
	padding: 20px 15px 0 5px;
}
.refinement_tags ul li {
	display: inline-block;
	list-style: none;
	padding: 0 8px 0 10px;
}
.refinement_tags ul li + li {
	border-left: 1px dotted #c9c9c9;
}

.refinement_tags ul li a:link {
	color: var(--color-primary);
}
.refinement_tags ul li a:visited {
	color: var(--color-primary);
}
@media (hover: hover){
	.refinement_tags ul li a:hover {
		color: #999;
	}
}
.refinement_tags ul li span {
	display: inline-block;
	font-size: .9em;
}
.refinement_tags ul li a:active {}
/*--------- SP style ---------*/
@media print, screen and (max-width:1023px) {
	.refinement_block {
		margin: 0;
	}
	.refinement {
		padding: 0 0 4% 0;
	}
	.refinement_categories {
		border-bottom: 1px solid #e0dedd;
		font-weight: bold;
	}
	.refinement_categories ul {
		padding: 0;
	}
	.refinement_categories ul li {
		display: block;
		padding: 0;
	}
	.refinement_categories ul li i {
		padding: 0 5px 0 0;
	}
	.refinement_categories ul li a:link {
		display: block;
		padding: 10px;
	}
	.refinement_categories ul li.current a:link {
		display: block;
		background: var(--color-fg);
		color: #FFF;
	}
	.refinement_categories ul li.current a:visited {
		display: block;
		background: var(--color-fg);
		color: #FFF;
	}
	.refinement_tags ul li a:link {
		color: var(--color-primary);
	}
	.refinement_tags ul li a:visited {
		color: var(--color-primary);
	}
	.refinement_tags ul li a:active {}
}
.properties {}
.properties div.content {
	align-items: flex-start;
}
.properties div.content ul, .properties div.content a {
	position: relative;
	font-size: 1.4rem;
	margin-bottom: 20px;
	background: transparent;
}
.properties div.content div.new:before, .properties div.content a.new:before {
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	width: 25%;
	max-width: 50px;
	height: auto;
	aspect-ratio: 1/1;
	background: url(../img/new.png) no-repeat;
	background-size: cover;
	z-index: 10;
	pointer-events: none;
}
.properties div.content li + li {
	display: none;
}
.properties div.content li img, .properties div.content a img {
	object-fit: cover;
	aspect-ratio: 1/1;
	width: 100%;
	height: auto;
	transition: .5s;
}
.properties .category {
	position: absolute;
	top: 0;
	right: 0;
	font-size: .8em;
	color: #FFF;
	letter-spacing: .1em;
	background: #000;
	padding: .25em 1em;
}
.properties .title {
	color: var(--color-accent);
	font-size: 1.1em;
	font-weight: 700;
	line-height: 1.2;
	margin: 5px 0;
}
/*--------- PC style ---------*/
@media print, screen and (min-width:1024px) {
	.properties div.content ul, .properties div.content a {
		width: calc(100% / 5 - 10px);
		cursor: pointer;
		
	}
	@media (hover: hover){
		.properties div.content li:hover img, .properties div.content a:hover img {
			opacity: .7;
		}
	}
	.properties div.content ul:not(:nth-of-type(5n)), .properties div.content a:not(:nth-of-type(5n)) {
		margin-right: 5px;
	}
}
/*--------- SP style ---------*/
@media print, screen and (max-width:1023px) {
	.properties div.content ul, .properties div.content a {
		width: calc(100% / 2 - 10px);
	}
	.properties div.content ul:nth-of-type(2n), .properties div.content a:nth-of-type(2n) {
		margin-left: 20px;
	}
}
.fancybox-button div {
	pointer-events: none;
}


/*--------- ADMINISTRATIONS 詳細ページ ---------*/
.main_image_block {
	flex-direction: column;
}
.main_image_block .tag {
	display: inline-block;
	background: #000;
	color: #FFF;
	margin: 0;
	font-size: 10px;
	text-align: center;
	padding: 4px 0;
	width: 77px;
	line-height: 1;
}
.main_image_block .area {
	padding: 5px 0 0 0;
}
.main_image_area {
	width: 100%;
}
.thumb_image_block {
	width: 100%;
}
.thumb_image_block ul {
	font-size: 0;
	margin-top: 10px;
}
.thumb_image_block ul li {
	display: inline-block;
	width: calc(100% / 5 - 4px);
	vertical-align: top;
}
.thumb_image_block ul li:nth-child(n + 6) {
	margin-top: 5px;
}
.thumb_image_block ul li:not(:nth-child(5n)) {
	margin-right: 5px;
}
.thumb_image_block ul li .thumb_img {
	width: 100%;
}
.thumb_image_block ul li .thumb_img img {
	width: 100%;
	height: auto;
	object-fit: cover;
}
.info_area .tag {
	display: inline-block;
	color: #FFF;
	background: #000;
	padding: 0 10px;
}
.info_area .title {
	font-size: 1.6em;
	color: var(--color-accent);
}
.details dl {
	margin-top: 20px;
}
.details dl dt {
	float: left;
	clear: left;
	width: 10em;
	padding: 10px 12px;
}
.details dl dd {
	border-bottom: 1px dotted #ccc;
	padding: 10px 0 10px 10.5em;
}

.nav_block {
	padding: 30px 0;
}
.nav_block ul {
	text-align: center;
}
.nav_block ul li {
	display: inline-block;
	margin: 0 5px;
}
/*--------- PC style ---------*/
@media print, screen and (min-width:1024px) {
	.main_image_block {
		width: calc(100% - 650px);
		margin-right: 50px;
	}
	.details {
		width: 600px;
	}
}
/*--------- SP style ---------*/
@media print, screen and (max-width:1023px) {
	.administration {
		position: relative;
		padding-top: 100px;
	}
	.info_area {
		position: absolute;
		top: 0;
		left: 0;
	}
}



/*--------- real-estate-leasing ---------*/
/*--------- manegement ---------*/
.common_page {}
.common_page h3.title {
	text-align: center;
	font-size: clamp(1.6rem, 1.091rem + 2.55vw, 3rem);
	color: var(--color-accent);
	width: fit-content;
	margin: 0 auto 20px;
	padding: 0 10px 5px;
	border-bottom: 1px solid;
}
.common_page .contents:not(:first-of-type) {
	margin-top: 75px;
}
.common_page .contents p span {
	display: block;
	font-size: 1.1em;
	font-weight: 700;
	margin-bottom: 10px;
}
.common_page .contents img {
	margin: 25px auto;
}
#archives dl {
	width: fit-content;
	max-width: 720px;
	margin: 0 auto;
}
#archives dl dt {
	float: left;
	clear: left;
	width: 60px;
	color: #ff5700;
	padding: 17px 12px;
}
#archives dl dd {
	padding-left: 50px;
	padding: 17px 0 17px 60px;
	line-height: 1.4;
}
#archives dl dd:not(:last-of-type) {
	border-bottom: 1px dotted #ccc;
}
#archives p {
	text-align: center;
	margin-top: 20px;
}
#case .contents:not(:first-of-type) {
	margin-top: 25px;
	border-top: 1px solid #999;
}
#case .contents .info_wrapper {
	margin-bottom: 20px;
}
#case .contents .title {
	font-size: 1.6em;
	color: var(--color-accent);
	margin-bottom: 20px;
}
/*--------- PC style ---------*/
@media print, screen and (min-width:1024px) {
	#case .contents {
		padding: 40px;
	}
	#case .contents .info_wrapper .info {
		width: 550px;
		order: 2;
	}
	#case .contents .info_wrapper img {
		width: calc(100% - 570px);
		height: 100%;
		margin-right: 20px;
		order: 1;
	}
	#case .contents .before_after {
		flex-direction: row;
		justify-content: space-between;
	}
	#case .contents .before_after img {
		width: calc(100% / 2 - 20px);
	}
	#case .contents .before_after img:nth-of-type(n + 3) {
		margin-top: 20px;
	}
}
/*--------- SP style ---------*/
@media print, screen and (max-width:1023px) {
	#case .contents {
		padding: 10px;
	}
	#case .contents .info_wrapper .info {
		width: 100%;
	}
	#case .contents .info_wrapper img {
		width: 100%;
		height: 100%;
		margin-top: 10px;
	}
	#case .contents .before_after {
		flex-direction: column;
		justify-content: center;
	}
		#case .contents .before_after img {
			width: 100%;
		}
	#case .contents .before_after img:not(:first-of-type) {
		margin-top: 10px;
	}
}


/*--------- company_profile ---------*/
#company_profile h3.title {
	text-align: center;
	font-size: clamp(1.6rem, 1.091rem + 2.55vw, 3rem);
	color: var(--color-accent);
	width: fit-content;
	margin: 0 auto 20px;
	padding: 0 10px 5px;
	border-bottom: 1px solid;
}
#company_profile .txt {
	line-height: 2;
}


/*--------- philosophy ---------*/
#philosophy ul {
	counter-reset: number 0;
}
#philosophy ul li {
}
#philosophy ul li figure {
	display: block;
	border-radius: 50%;
	overflow: hidden;
	max-width: 200px;
	margin: 0 auto 10px;
	filter: drop-shadow(4px 4px 3px rgb(0 0 0 / .3));
}
#philosophy ul li figure:before,#philosophy ul li figure:after {
	position: absolute;
	bottom: 0;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: "Lexend", sans-serif;
	text-align: center;
	line-height: 1;
	width: 100%;
	height: 25%;
	z-index: 1;
}
#philosophy ul li figure:before {
	content: 'PHILOSOPHY';
	background: rgb(255 90 0 / 80%);
	color: rgb(255 255 255 / .5);
	letter-spacing: .1em;
}
#philosophy ul li figure:after {
	white-space: pre;
	counter-increment: number 1;
	content: '0' counter(number);
	font-size: 2.5em;
	color: #fff;
	font-weight: 700;
}
#philosophy ul li p {
	text-align: center;
	line-height: 1.5;
	font-weight: 700;
}
#philosophy ul li p span {
	color: #ff1900;
	font-weight: 700;
	padding: 0 .25em;
	border-bottom: 1px solid;
}
/*--------- PC style ---------*/
@media print, screen and (min-width:1024px) {
	#philosophy ul {
		justify-content: space-between;
	}
	#philosophy ul li {
		width: calc(100% / 3 - 5px);
	}
}
/*--------- SP style ---------*/
@media print, screen and (max-width:1023px) {
	#philosophy ul li {
		width: 100%;
	}
	#philosophy ul li + li {
		margin-top: 20px;
	}
}


/*--------- company_overview ---------*/
#company_overview img {
	display: block;
	width: 100%;
	max-width: 640px;
	margin: 0 auto 20px;
}
#company_overview dl {
	max-width: 640px;
	margin: 0 auto;
}
#company_overview dl dd:last-of-type {
	border: none;
}
/*--------- PC style ---------*/
@media print, screen and (min-width:1024px) {
	#company_overview dl dt {
		width: 6em;
		float: left;
		clear: both;
	}
	#company_overview dl dd {
		width: 100%;
		padding-left: 7em;
		border-bottom: 1px solid #ddd;
		padding-bottom: 10px;
		margin-bottom: 10px;
	}
}
/*--------- SP style ---------*/
@media print, screen and (max-width:1023px) {
	#company_overview dl dt {
		width: 100%;
		text-align: center;
		font-size: .9em;
		background: #ddd;
	}
	#company_overview dl dd {
		width: 100%;
		margin-bottom: 15px;
	}
}



/*--------- business_content ---------*/
.business_content_box {

}
#business_content01 p {
	line-height: 1.5;
}
#business_content02 {
	margin-top: 100px;
}
#business_content02 p {
	text-align: center;
}
#business_content02 img {
	margin: 0 auto;
}
/*--------- PC style ---------*/
@media print, screen and (min-width:1024px) {
	#business_content01 .business_content_box figure {
		width: calc(50% - 50px);
		margin-right: 50px;
	}
	#business_content01 .business_content_box p {
		width: 50%;
	}
}
/*--------- SP style ---------*/
@media print, screen and (max-width:1023px) {
	#business_content01 .business_content_box figure {
		max-width: 300px;
		margin: 20px auto 0;
		order: 2;
	}
	#business_content01 .business_content_box p {
		width: 100%;
		order: 1;
	}
}


/*--------- recruit ---------*/
#recruit {

}
.entry_block {
	margin-top: 100px;
}
.recruit_block p, .entry_block p {
	line-height: 2;
	width: fit-content;
	margin: 0 auto;
}


/*--------- FAQ ---------*/
#faq {

}
#faq dl dt, #faq dl dd {
	position: relative;
	padding-left: 2.5em;
}
#faq dl dt {
	font-weight: 700;
	margin-bottom: 20px;
}
#faq dl dd {
	margin-bottom: 40px;
	padding-bottom: 40px;
	border-bottom: 1px dashed #ddd;
}
#faq dl dd:last-of-type {
	border: none;
}
#faq dl dt:before, #faq dl dd:before {
	position: absolute;
	color: #FFF;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 1.5em;
	height: 1.5em;
	font-size: 2rem;
	line-height: 1;
	top: -0.25em;
	left: 0;
	border-radius: 50%;
}
#faq dl dt:before {
	content: 'Q';
	background: var(--color-fg);
}
#faq dl dd:before {
	content: 'A';
	background: #000;
}


/*--------- privacy-policy ---------*/
#privacy-policy {

}
#privacy-policy p {
	line-height: 2;
	max-width: 820px;
	margin: 0 auto 60px;
}
#privacy-policy ul {
	counter-reset: number 0;
	max-width: 800px;
	margin: 0 auto 50px;
}
#privacy-policy ul li {
	position: relative;
	padding-left: 1em;
}
#privacy-policy ul li:not(:last-of-type) {
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 1px dashed #ddd;
}
#privacy-policy ul li:before {
	counter-increment: number 1;
	content: counter(number) ".";
	position: absolute;
	left: 0;
}
#privacy-policy p.certification {
	text-align: right;
}



/*--------- contact ---------*/
.form_wrapper {
	max-width: 800px;
	margin: 0 auto;
}
.contact h3 {
	color: #FFF;
	background: #000;
	text-align: center;
	padding: .25em 1em;
}
.contact dl {

}
.contact dl dd .vertical-item {
	display: block;
}
input[type="text"],
textarea,
select,
input[type="email"] {
	border: 2px solid #ccc;
	border-radius: 6px;
	padding: 5px;
	margin: 5px 0;
}
textarea {
	width: 100%;
	max-width: 500px;
}
input[type="email"] {
	width: 100%;
	max-width: 640px;
}
input::placeholder {
	opacity: 0.5;
}
.long-txt {
	width: 100%;
	max-width: 640px;
}
.middle-txt {
	width: 100%;
	max-width: 300px;
}
.short-txt {
	width: 100%;
	max-width: 8em;
}
/*--------- PC style ---------*/
@media print, screen and (min-width:1024px) {
	.contact dl dt, .contact dl dd {
		padding: 20px 10px;
	}
	.contact dl dt {
		float: left;
		width: 15em;
	}
	.contact dl dd {
		width:100%;
		padding-left: 15em;
	}
	.contact dl dd:not(:last-of-type) {
		border-bottom: 1px solid #ddd;
	}
}
/*--------- SP style ---------*/
@media print, screen and (max-width:1023px) {
	.contact dl dt, .contact dl dd {
		padding: 10px;
	}
	.contact dl dt {
		width: 100%;
		background: #ddd;
		margin-top: 20px;
	}
	.contact dl dd {
		width:100%;
	}
}



/*--------- footer ---------*/
#sept footer {
	background: var(--color-bg);
}
#septproperties footer {
	background: var(--color-fg);
}
footer * {
	font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", sans-serif;
	color: #FFF;
}
.footer_bnr_block {
	text-align: center;
	padding: 20px;
}
.footer_bnr_block h3 {
	letter-spacing: .5em;
	font-weight: 400;
	margin-bottom: 5px;
}
.footer_bnr_block ul {
	justify-content: center;
	border-bottom: 1px solid #666;
	padding-bottom: 15px;
	width: fit-content;
	margin: 0 auto;
}
.footer_bnr_block ul li a {
	width: 100%;
}
.footer_bnr_block ul li img {
	max-width: fit-content;
	width: 100%;
	padding: 5px;
	transition: .5s;
}
.footer_info {
	text-align: center;
}
.footer_info .footer_logo {
	margin: 20px auto;
}
.footer_info .footer_logo img {
	max-width: 240px;
	margin: 0 auto 10px;
}
.footer_address {
	margin-bottom: 20px;
}
.footer_address .tel {
	font-size: 2rem;
	margin-top: 5px;
}
.footer_address .tel i {
	font-size: .8em;
	margin-right: .5em;
}
.copyright {
	display: block;
	width: 100%;
	font-size: 1.2rem;
	text-align: center;
	padding: 10px;
}
/*--------- footer_nav ---------*/
.footer_nav {
	margin: 25px auto;
}
.footer_nav ul {
	font-size: 1.2rem;
	text-align: center;
	margin: 0 auto;
	width: fit-content;
}
.footer_nav ul li + li {
	margin-left: 1em;
	padding-left: 1em;
	border-left: 1px solid #666;
}
/*--------- PC style ---------*/
@media print,
screen and (min-width:1024px) {
	@media (hover: hover){
		.footer_bnr_block ul li img:hover {
			opacity: .7;
		}
	}
}







/*--------- SP style ---------*/
@media print,
screen and (max-width:1023px) {
}

/*--------- PC style ---------*/
@media print,
screen and (min-width:1024px) {
}







/*--------- 404 notfound ---------*/
#notfound {
	min-height: 30vh;
}

/*--------- fadein ---------*/
.animate {
	opacity: 0;
}

.fadeIn {
	transition: 1s opacity;
}

@keyframes fadeIn {
	0% {
		visibility: hidden;
		opacity: 0;
		filter: blur(5px);
	}

	100% {
		visibility: visible;
		opacity: 1;
		filter: blur(0);
	}
}

.fadeUp {
	opacity: 0;
	transition: 1s opacity, 1s filter;
}

.fadeUp.active {
	opacity: 1;
}

@keyframes fadeinAnime{
	from { opacity: 0;}
	to { opacity: 1;}
}


/*--------- 切り替えタブ ---------*/
.tab-btn-wrapper {
	justify-content: space-between;
	max-width: 1000px;
}
.tab-btn {
	text-align: center;
}
/*--------- SP style ---------*/
@media print,
screen and (max-width:1023px) {
	.tab-btn-wrapper {
		margin: 20px auto 0;
	}
	.tab-btn {
		flex-basis: calc(100% / 2);
		padding: 2.5px;
	}
}
/*--------- PC style ---------*/
@media print,
screen and (min-width:1024px) {
	.tab-btn-wrapper {
		margin: 50px auto 0;
	}
	.tab-btn {
		flex-basis: calc(100% / 4 - 5px);
	}
}
.tab-btn a {
	display: block;
	position: relative;
	padding: 8px;
	text-decoration: none;
	line-height: 1.2;
	color: #333;
	background-color: #ccc;
	cursor: pointer;
}
.tab-btn a.is-active {
	color: #FFF;
	background: var(--color-fg);
}
.tab-contents-item {
	display: none;
	width: 100%;
	flex-direction: column;
}
.tab-contents-item.is-active {
	display: flex;
}
.tab-contents-item>p {
	margin: auto;
	height: 40px;
	opacity: 0;
}
.tab-contents-item.is-active>p {
	animation:  fadeinAnime 2s forwards;
}

