@charset "utf-8";

/************************************************************
	アニメーション
*************************************************************/
/* フェードイン アニメーション */
@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeInScale {
	from {
		opacity: 0;
		transform: scale(0.8);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

/************************************************************
	共通
*************************************************************/
/* 下位共通
--------------------------------------------------------*/
#wrapper.sub {
}
#wrapper.sub > header {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 280px;
	margin-bottom: 6rem;
	background: #AFDCD7;
}
#wrapper.sub > header h2 {
	text-align: center;
	font-size: 3.6rem;
	font-weight: 600;
	line-height: 1;
}
#wrapper.sub > header h2 span {
	display: block;
	margin-bottom: 2rem;
	font-size: 1.8rem;
	color: #FFF;
}
@media only screen and (max-width: 768px){
	#wrapper.sub {
		margin-top: 70px;
	}
	#wrapper.sub > header {
		height: 200px;
	}
	#wrapper.sub > header h2 {
		font-size: 3rem;
	}
}
@media only screen and (max-width: 480px){
	#wrapper.sub {
		margin-top: 60px;
	}
	#wrapper.sub > header h2 {
		font-size: 2.6rem;
	}
	#wrapper.sub > header h2 span {
		font-size: 1.6rem;
	}
}
@media only screen and (max-width: 410px){
	#wrapper.sub {
		margin-top: 50px;
	}
	#wrapper.sub > header h2 {
		font-size: 2.2rem;
	}
	#wrapper.sub > header h2 span {
		font-size: 1.4rem;
	}
}
/* 下部バナー
--------------------------------------------------------*/
#bottom-banner {
	margin-bottom: 9rem;
}
#bottom-banner ul {
	display: flex;
	justify-content: center;
}
#bottom-banner ul li {
	text-align: center;
}
#bottom-banner ul li:first-of-type {
	margin-right: 3rem;
}
#bottom-banner ul li a {
	display: block;
}
#bottom-banner ul li a img {
	height: auto;
	width: 100%;
	max-width: 500px;
}
@media only screen and (max-width: 768px){
	#bottom-banner ul {
		display: block;
	}
	#bottom-banner ul li:first-of-type {
		margin-right: 0;
		margin-bottom: 3rem;
	}
}
/* お問い合わせ(電話)
--------------------------------------------------------*/
#contact-tel-box {
	width: max-content;
	min-width: 560px;
	margin: 0 auto 9rem;
	padding: 4rem 6rem;
	background: #EC733A;
	box-sizing: border-box;
	color: #FFF;
	text-align: center;
}
#contact-tel-box p {
	position: relative;
	margin-bottom: 2rem;
	font-size: 2rem;
	line-height: 1.2;
}
#contact-tel-box p::after {
	position: absolute;
	width: 105%;
	border-bottom: 2px solid #FFF;
	left: 50%;
	transform: translateX(-50%);
	bottom: -15px;
	content: "";
}
#contact-tel-box dl {
}
#contact-tel-box dl dt {
	font-size: 4.4rem;
	font-weight: 600;
}
#contact-tel-box dl dt span {
	font-size: 2rem;
	font-weight: 400;
}
#contact-tel-box dl dt a {
	color: #FFF;
}
#contact-tel-box dl dd {
}
@media only screen and (max-width: 768px){
	#contact-tel-box {
		min-width: auto;
		margin: 0 auto 6rem;
		padding: 3rem 5rem;
	}
}
@media only screen and (max-width: 480px){
	#contact-tel-box {
		padding: 3rem 2rem;
	}
	#contact-tel-box p {
		font-size: 1.6rem;
	}
	#contact-tel-box p::after {
		width: 100%;
	}
	#contact-tel-box dl dt {
		font-size: 3rem;
	}
	#contact-tel-box dl dt span {
		font-size: 1.6rem;
	}
}

/************************************************************
	物件共通
*************************************************************/
#wrapper.office:not(.result) {
	margin-top: 10rem;
}

/************************************************************
	物件一覧
*************************************************************/
/* ヘッダー
------------------------------------------------------------*/
header#search-head-result {
	margin-bottom: 3rem;
}
header#search-head-result h2 {
	margin-bottom: 1rem;
	font-size: 2.8rem;
	font-weight: 600;
	line-height: 1.2;
}
header#search-head-result p#search-parameters {
	margin-bottom: 1rem;
	padding: 0 1rem;
	font-size: 1.8rem;
	color: #39A79C;
	line-height: 1.4;
}
header#search-head-result p#search-parameters::before {
	content: "（";
}
header#search-head-result p#search-parameters::after {
	content: "）の居抜きオフィス";
}
header#search-head-result p#search-number {
}
header#search-head-result ul {
	display: flex;
	flex-wrap: wrap;
}
header#search-head-result ul li {
	margin-bottom: 1rem;
}
header#search-head-result ul li:not(:last-of-type) {
	margin-right: 1rem;
}
header#search-head-result ul li a {
	display: block;
	padding: 5px 2rem;
	background: #E7E7E7;
	box-sizing: border-box;
	font-size: 1.5rem;
}
/* select
------------------------------------------------------------*/
#wrapper.office #search-select {
	margin-bottom: 2rem;
	text-align: right;
}
#wrapper.office #search-select select {
	max-width: fit-content;
}
/* 一覧
------------------------------------------------------------*/
#post-list {
	margin-bottom: 9rem;
}
ul#office-list {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 3rem 2rem;
	align-items: stretch;
}
ul#office-list > li {
	position: relative;
	display: flex;
	flex-direction: column;
	background: white;
	border-radius: 8px;
	transition: box-shadow 0.3s ease;
}
ul#office-list > li > a {
	display: flex;
	flex-direction: column;
	text-decoration: none;
	color: inherit;
}
ul#office-list > li a div.thumb {
	position: relative;
	height: 200px;
	overflow: hidden;
	flex-shrink: 0;
}
ul#office-list > li a div.thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
ul#office-list > li.finished a div.thumb img {
	filter: brightness(50%);
}
ul#office-list > li a div.thumb span {
	position: absolute;
	top: 0;
	left: 0;
	padding: 1rem;
	background: #EC733A;
	box-sizing: border-box;
	font-size: 1.4rem;
	font-weight: 400;
	color: #FFF;
}
ul#office-list > li.finished a div.thumb span {
	background: #FE2222;
}
ul#office-list > li a div.info {
	display: flex;
	flex-direction: column;
}
ul#office-list > li a div.info p {
	font-size: 1.5rem;
}
ul#office-list > li a div.info p.num {
	font-size: 1.4rem;
}
ul#office-list > li a div.info p.access {
	margin-bottom: 1.5rem;
	padding-bottom: 1.5rem;
	border-bottom: 1px solid #CECECE;
}
ul#office-list > li a div.info h3 {
	margin-bottom: 1rem;
	font-weight: 600;
}
ul#office-list > li > ul {
	display: flex;
	flex-wrap: wrap;
}
ul#office-list > li > ul li {
	margin-bottom: 0.75rem;
}
ul#office-list > li > ul li:not(:last-of-type) {
	margin-right: 1rem;
}
ul#office-list > li > ul li a {
	display: block;
	padding: 5px;
	background: #F3F3F3;
	box-sizing: border-box;
	font-size: 1.3rem;
	color: #666;
}
@media only screen and (max-width: 768px){
	ul#office-list {
		grid-template-columns: repeat(3, 1fr);
		gap: 3rem 2rem;
	}

	ul#office-list > li a div.thumb {
		height: 180px;
	}

	ul#office-list > li a div.info {
		padding: 12px;
	}

	.property-actions {
		padding: 12px;
	}
}
@media only screen and (max-width: 480px){
	ul#office-list {
		grid-template-columns: repeat(2, 1fr);
		gap: 2rem 1.5rem;
	}

	ul#office-list > li a div.thumb {
		height: 150px;
	}

	ul#office-list > li a div.info {
		padding: 10px;
	}

	.property-actions {
		padding: 10px;
	}
}
@media only screen and (max-width: 375px){
	ul#office-list {
		grid-template-columns: repeat(1, 1fr);
	}

	ul#office-list > li a div.thumb {
		height: 200px;
	}
}
/* ページ送り
------------------------------------------------------------*/
.pagenavi {
	margin-bottom: 10rem;
	text-align: center;
}
.pagenavi span {
	display: inline-block;
}
.pagenavi a,
.pagenavi a:link,
.pagenavi a:visited{
	display: inline-block;
	margin: 0.6rem 0.8rem;
	padding: 0.3rem 1rem;
	border: 1px solid #333;
	color: #333;
	text-decoration: none;
}
.pagenavi a:hover {
	background-color: #39A79C;
	border: 1px solid #39A79C;
	color: #fff;
}
.pagenavi a:active {
	margin: 0.6rem 0.8rem;
	padding: 0.3rem 1rem;
	border: 1px solid #333;
	color: #333;
	text-decoration: none;
}
/* 現在ページ */
.pagenavi span.current {
	margin: 0.6rem 0.8rem;
	padding: 0.3rem 1.2rem;
	background-color: #39A79C;
	border: 1px solid #39A79C;
	color: #FFF;
}
/* 先頭,最後 */
.pagenavi a.previouspostslink,
.pagenavi a.nextpostslink {
}
/* Page x/x */
.pagenavi span.pages {
	margin: 0.6rem 0.8rem;
	padding: 0.3rem 1rem;
	color: #333;
	border: 1px solid #333;
}
/* 省略(...) */
.pagenavi span.extend {
	margin: 0.6rem 0.8rem;
	padding: 0.3rem 1rem;
	border: 1px solid #333;
	color: #333;
}

/************************************************************
	物件詳細
*************************************************************/
/* 枠
--------------------------------------------------------*/
#wrapper.office #office-main {
	display: flex;
	justify-content: space-between;
	margin-bottom: 3rem;
}
#wrapper.office #office-main #slide-wrap {
	width: 60%;
}
#wrapper.office #office-main #info-wrap {
	width: 35%;
}
@media only screen and (max-width: 999px){
	#wrapper.office #office-main #slide-wrap {
		width: 70%;
	}
	#wrapper.office #office-main #info-wrap {
		width: 25%;
	}
}
@media only screen and (max-width: 768px){
	#wrapper.office #office-main {
		flex-wrap: wrap;
		justify-content: flex-start;
	}
	#wrapper.office #office-main #slide-wrap,
	#wrapper.office #office-main #info-wrap {
		width: 100%;
	}
}
@media only screen and (max-width: 480px){
	#wrapper.office #office-main {
		margin-bottom: 6rem;
	}
}
/* タイトル
--------------------------------------------------------*/
#wrapper.office #office-main #slide-wrap h1 {
	display: flex;
	align-items: center;
	font-size: 2.8rem;
	font-weight: 600;
	line-height: 1.2;
}
#wrapper.office #office-main #slide-wrap h1 span.finished {
	min-width: 5em;
	margin-right: 5px;
	padding: 5px;
	background: #FE2222;
	box-sizing: border-box;
	border-radius: 5px;
	font-size: 1.4rem;
	color: #FFF;
	line-height: 1.2;
	text-align: center;
}
#wrapper.office #office-main #slide-wrap p#office-number {
	margin-bottom: 2rem;
	color: #31A794;
}
@media only screen and (max-width: 480px){
	#wrapper.office #office-main #slide-wrap h1 {
		font-size: 2.2rem;
	}
	#wrapper.office #office-main #slide-wrap h1 span.finished {
		padding: 12px 5px;
	}
}
/* Swiper 8.4.2
--------------------------------------------------------*/
.swiper {
	width: 100%;
	position: relative;
}
.swiper-slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.swiper-button-next, .swiper-button-prev {
	color: #39A79C !important;
}
/* Thumbnail */
.thumb-wrapper {
	display: grid;
	grid-template-columns: repeat(10, 1fr);
	gap: 8px;
	width: 100%;
	margin: 8px 0 3rem;
}
.thumb-media {
	position: relative;
	overflow: hidden;
	cursor: pointer;
	/*border: 2px solid #FFF;*/
}
.thumb-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.thumb-media-active {
	/*border: 2px solid #31A794;*/
	outline: 4px solid #31A794;
	outline-offset: -2px;
}
@media only screen and (max-width: 599px) {
	.thumb-wrapper {
		grid-template-columns: repeat(5, 1fr);
	}
}
/* 物件説明
--------------------------------------------------------*/
#wrapper.office #office-main #slide-wrap #desc {
}
#wrapper.office #office-main #slide-wrap #desc h2 {
	margin-bottom: 2rem;
	padding-bottom: 2rem;
	border-bottom: 1px solid #CECECE;
	font-size: 2.2rem;
	font-weight: 600;
	line-height: 1.2;
}
#wrapper.office #office-main #slide-wrap #desc p {
}
@media only screen and (max-width: 768px){
	#wrapper.office #office-main #slide-wrap #desc {
		margin-bottom: 3rem;
	}
}
@media only screen and (max-width: 480px){
	#wrapper.office #office-main #slide-wrap #desc h2 {
		font-size: 2rem;
	}
}
/* 物件情報
--------------------------------------------------------*/
#wrapper.office #office-main #info-wrap h2 {
	margin-bottom: 2rem;
	padding-bottom: 2rem;
	border-bottom: 1px solid #CECECE;
	font-size: 2.2rem;
	font-weight: 600;
	line-height: 1.2;
}
#wrapper.office #office-main #info-wrap dl {
	display: flex;
	margin-bottom: 2rem;
	padding-bottom: 2rem;
	border-bottom: 1px solid #CECECE;
}
#wrapper.office #office-main #info-wrap dl dt {
	width: 5em;
	min-width: 5em;
	font-weight: 600;
}
#wrapper.office #office-main #info-wrap dl dd {
}
#wrapper.office #office-main #info-wrap dl.access dd {
}
#wrapper.office #office-main #info-wrap dl.access dd ul {
}
#wrapper.office #office-main #info-wrap dl.access dd ul li {
}
#wrapper.office #office-main #info-wrap > ul {
	display: flex;
	flex-wrap: wrap;
}
#wrapper.office #office-main #info-wrap > ul li {
	margin-bottom: 1rem;
}
#wrapper.office #office-main #info-wrap > ul li:not(:last-of-type) {
	margin-right: 1rem;
}
#wrapper.office #office-main #info-wrap > ul li a {
	display: block;
	padding: 5px;
	background: #F3F3F3;
	box-sizing: border-box;
	font-size: 1.4rem;
	color: #666;
}
@media only screen and (max-width: 999px){
	#wrapper.office #office-main #info-wrap dl {
		font-size: 1.5rem;
		line-height: 1.4;
	}
}
@media only screen and (max-width: 480px){
	#wrapper.office #office-main #info-wrap h2 {
		font-size: 2rem;
	}
}
/* お問い合わせ
--------------------------------------------------------*/
#wrapper.office #office-contact {
	margin-bottom: 9rem;
	padding: 6rem 0;
	background: #F2F2F2;
}
#wrapper.office #office-contact h2 {
	margin-bottom: 4rem;
	font-size: 2.8rem;
	font-weight: 600;
	text-align: center;
	line-height: 1.2;
}
@media only screen and (max-width: 480px){
	#wrapper.office #office-contact h2 {
		font-size: 2.2rem;
	}
}
/* 個人情報保護方針の同意 */
#wrapper.office #office-contact p.check {
	text-align: center;
}
#wrapper.office #office-contact p.check #agree {
	text-align: center;
}
#wrapper.office #office-contact p.check label {
	font-size: 2rem;
	text-align: center;
	line-height: 1.2;
}
#wrapper.office #office-contact p.check label::before {
	font-size: 2.4rem;
}
#wrapper.office #office-contact p.check a {
	display: block;
	margin-top: 2rem;
	color: #39A79C;
	text-decoration: underline;
	line-height: 1.2;
}
#wrapper.office #office-contact p.check a::after {
	font-family: "Font Awesome 5 Pro";
	display: inline-block;
	font-style: normal;
	font-variant: normal;
	font-weight: 400;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	content: "\f35d";
	margin-left: 0.5rem;
}
#wrapper.office #office-contact p.btn_run {
	margin-top: 3rem;
	text-align: center;
}
#wrapper.office #office-contact p.btn_run input[type="submit"] {
	font-size: 2rem;
}
#wrapper.office #office-contact p.btn_run #submit-btn[disabled] {
	background-color: #CCC;
	cursor: not-allowed;
}
@media only screen and (max-width: 375px){
	#wrapper.office #office-contact p.check label {
		font-size: 1.6rem;
	}
	#wrapper.office #office-contact p.check label::before {
		font-size: 2rem;
	}
	#wrapper.office #office-contact p.check a {
		font-size: 1.4rem;
	}
}
/* 確認画面 */
#wrapper.office.confirm p.btn_run {
	margin-bottom: 9rem;
}
/* RECOMMEND
--------------------------------------------------------*/
#wrapper.office #area-recommend {
	margin-bottom: 9rem;
}
#wrapper.office #area-recommend h2 {
	margin-bottom: 3rem;
	font-size: 3.6rem;
	font-weight: 600;
	text-align: center;
	line-height: 1.2;
}
#wrapper.office #area-recommend h2::first-letter {
	color: #39A79C;
}
#wrapper.office #area-recommend h2 span {
	display: block;
	margin-top: 1rem;
	font-size: 1.5rem;
}
/* 公開終了
--------------------------------------------------------*/
#wrapper.office #office-finished {
	margin-bottom: 9rem;
	padding: 7rem 2rem;
	background: #FE2222;
	box-sizing: border-box;
}
#wrapper.office #office-finished p {
	font-size: 2.6rem;
	color: #FFF;
	text-align: center;
}

/************************************************************
	物件検索
*************************************************************/
#wrapper.search {
}
#wrapper.search #search-filter {
}
#wrapper.search #search-filter dl {
	display: flex;
	justify-content: space-between;
	border-bottom: 1px solid #676767;
}
#wrapper.search #search-filter dl:first-of-type {
	border-top: 1px solid #676767;
}
#wrapper.search #search-filter dl dt {
	display: flex;
	align-items: center;
	width: 200px;
	padding: 6rem 2rem;
	background: #E7E7E7;
	box-sizing: border-box;
	font-weight: 600;
}
#wrapper.search #search-filter dl dd {
	flex: 1;
	padding: 6rem 4rem;
	box-sizing: border-box;
}
@media only screen and (max-width: 768px){
	#wrapper.search #search-filter dl {
		flex-wrap: wrap;
		justify-content: flex-start;
		border-bottom: none;
	}
	#wrapper.search #search-filter dl:first-of-type {
		border-top: none;
	}
	#wrapper.search #search-filter dl dt {
		justify-content: center;
		width: 100%;;
		padding: 1.5rem 2rem
	}
	#wrapper.search #search-filter dl dd {
		width: 100%;;
		padding: 3rem 2rem 6rem;
	}
}
@media only screen and (max-width: 480px){
	#wrapper.search #search-filter dl dt {
		padding: 1rem 2rem
	}
	#wrapper.search #search-filter dl dd {
		padding: 3rem 2rem;
	}
}
/* エリア
--------------------------------------------------------*/
#wrapper.search #search-filter dl.ward {
}
#wrapper.search #search-filter dl.ward dd div:first-of-type {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 15px 10px;
	margin-bottom: 4rem;
	padding-bottom: 4rem;
	border-bottom: 1px dotted #676767;
	font-size: 1.8rem;
}
#wrapper.search #search-filter dl.ward dd div:first-of-type label::before {
	font-size: 2rem;
}
#wrapper.search #search-filter dl.ward dd div:last-of-type {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 3rem;
}
#wrapper.search #search-filter dl.ward dd div:last-of-type select {
	padding: 2rem 0.5rem;
}
@media only screen and (max-width: 999px){
	#wrapper.search #search-filter dl.ward dd div:first-of-type {
		grid-template-columns: repeat(3, 1fr);
	}
}
@media only screen and (max-width: 599px){
	#wrapper.search #search-filter dl.ward dd div:first-of-type {
		grid-template-columns: repeat(2, 1fr);
		font-size: 1.6rem;
	}
	#wrapper.search #search-filter dl.ward dd div:first-of-type label::before {
		font-size: 1.8rem;
	}
	#wrapper.search #search-filter dl.ward dd div:last-of-type {
		display: block;
	}
	#wrapper.search #search-filter dl.ward dd div select:not(:last-of-type) {
		margin-bottom: 2rem;
	}
}
/* 面積
--------------------------------------------------------*/
#wrapper.search #search-filter dl.space {
}
#wrapper.search #search-filter dl.space dd {
}
#wrapper.search #search-filter dl.space dd div.type-space {
	margin-bottom: 2rem;
}
#wrapper.search #search-filter dl.space dd div.type-space label {
	font-size: 1.8rem;
}
#wrapper.search #search-filter dl.space dd div.type-space label:first-of-type {
	margin-right: 2rem;
}
#wrapper.search #search-filter dl.space dd div.input-space {
	margin-bottom: 3rem;
}
#wrapper.search #search-filter dl.space dd div.input-space input {
	width: 5.5em;
	border: none;
	font-size: 1.8rem;
	color: #39A79C;
	text-align: center;
}
#wrapper.search #search-filter dl.space dd div.input-space small {
	padding: 0 1rem;
}
#wrapper.search #search-filter dl.space dd div#range-space {
	margin-bottom: 2rem;
}
/*.noUi-connect {
    background: #39A79C !important;
}*/
@media only screen and (max-width: 375px){
	#wrapper.search #search-filter dl.space dd div.input-space input {
		font-size: 1.6rem;
	}
	#wrapper.search #search-filter dl.space dd div.input-space small {
		padding: 0 0.5rem;
	}
}
/* 人数
--------------------------------------------------------*/
#wrapper.search #search-filter dl.capacity {
}
#wrapper.search #search-filter dl.capacity dd {
}
#wrapper.search #search-filter dl.capacity dd div.input-capacity {
	margin-bottom: 3rem;
}
#wrapper.search #search-filter dl.capacity dd div.input-capacity input {
	width: 5.5em;
	border: none;
	font-size: 1.8rem;
	color: #39A79C;
	text-align: center;
}
#wrapper.search #search-filter dl.capacity dd div.input-capacity small {
	padding: 0 1rem;
}
#wrapper.search #search-filter dl.capacity dd div#range-capacity {
	margin-bottom: 2rem;
}
@media only screen and (max-width: 375px){
	#wrapper.search #search-filter dl.capacity dd div.input-capacity input {
		font-size: 1.6rem;
	}
	#wrapper.search #search-filter dl.capacity dd div.input-capacity small {
		padding: 0 0.5rem;
	}
}
/* 特徴
--------------------------------------------------------*/
#wrapper.search #search-filter dl.tag {
}
#wrapper.search #search-filter dl.tag dd {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 2rem;
}
#wrapper.search #search-filter dl.tag dd input[type="checkbox"] + label {
display: flex;
justify-content: center;
align-items: center;
	background-color: #CCC;
	padding: 2rem 1rem;
	border-radius: 5px;
	font-weight: 500;
	color: #FFF;
	text-align: center;
}
#wrapper.search #search-filter dl.tag dd input[type="checkbox"] + label:before,
#wrapper.search #search-filter dl.tag dd input[type="checkbox"]:checked + label:before{
	content: none;
}
#wrapper.search #search-filter dl.tag dd input[type="checkbox"]:checked + label {
	background-color: #39A79C;
}
@media only screen and (max-width: 999px){
	#wrapper.search #search-filter dl.tag dd {
		grid-template-columns: repeat(4, 1fr);
	}
}
@media only screen and (max-width: 599px){
	#wrapper.search #search-filter dl.tag dd {
		grid-template-columns: repeat(3, 1fr);
	}
}
@media only screen and (max-width: 480px){
	#wrapper.search #search-filter dl.tag dd {
		grid-template-columns: repeat(2, 1fr);
	}
}
/* ボタン周り
--------------------------------------------------------*/
#wrapper.search #search-filter div.bottom {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 4rem 0 6rem;
}
#wrapper.search #search-filter div.bottom p.total {
	font-weight: 600;
}
#wrapper.search #search-filter div.bottom p.total span {
	margin: 0 0.5rem;
	font-size: 3.5rem;
	color: #39A79C;
}
#wrapper.search #search-filter div.bottom p.btn_run {
	margin: 0 2rem;
}
#wrapper.search #search-filter div.bottom p.btn_run input {
	padding: 2rem 4rem;
	background: #EC733A;
	font-weight: 600;
}
#wrapper.search #search-filter div.bottom p.reset {
}
#wrapper.search #search-filter div.bottom p.reset input {
	padding: 2rem 4rem;
	background: #E7E7E7;
	border: none;
}
@media only screen and (max-width: 768px){
	#wrapper.search #search-filter div.bottom p.total span {
		font-size: 2.8rem;
	}
	#wrapper.search #search-filter div.bottom p.btn_run {
		margin: 0 1rem;
	}
	#wrapper.search #search-filter div.bottom p.btn_run input {
		padding: 2rem;
	}
	#wrapper.search #search-filter div.bottom p.reset input {
		padding: 2rem;
	}
}
@media only screen and (max-width: 480px){
	#wrapper.search #search-filter div.bottom {
		flex-direction: column;
		margin: 2rem 0 4rem;
	}
	#wrapper.search #search-filter div.bottom p.btn_run {
		width: 90%;
		margin: 2rem 0;
	}
	#wrapper.search #search-filter div.bottom p.btn_run input {
		width: 100%;
		margin: 0;
		padding: 2rem;
	}
	#wrapper.search #search-filter div.bottom p.reset {
		width: 90%;
	}
	#wrapper.search #search-filter div.bottom p.reset input {
		width: 100%;
		margin: 0;
		padding: 2rem;
	}
}
/* キーワード検索
--------------------------------------------------------*/
#wrapper.search #search-keyword {
	margin-bottom: 12rem;
}
#wrapper.search #search-keyword div {
	display: flex;
	justify-content: center;
	align-items: center;
}
#wrapper.search #search-keyword div span {
	font-weight: 600;
}
#wrapper.search #search-keyword div input[type="search"] {
	max-width: 300px;
	height: 60px;
	margin: 0 1rem 0 2rem;
	padding: 2rem 0.5rem;
}
#wrapper.search #search-keyword div p.btn_run {
}
#wrapper.search #search-keyword div p.btn_run input {
	height: 60px;
	background: #F4C400;
}
@media only screen and (max-width: 599px){
	#wrapper.search #search-keyword div input[type="search"] {
		max-width: 240px;
	}
}
@media only screen and (max-width: 480px){
	#wrapper.search #search-keyword {
		margin-bottom: 8rem;
	}
	#wrapper.search #search-keyword div {
		flex-direction: column;
	}
	#wrapper.search #search-keyword div input[type="search"] {
		max-width: 100%;
		width: 90%;
		margin: 1rem 0;
	}
	#wrapper.search #search-keyword div p.btn_run {
		width: 90%;
	}
	#wrapper.search #search-keyword div p.btn_run input {
		width: 100%;
		margin: 0;
	}
}

/************************************************************
	トップページ
*************************************************************/
#wrapper.home {
}
@media only screen and (max-width: 768px){
	#wrapper.home {
		margin-top: 70px;
	}
}
@media only screen and (max-width: 480px){
	#wrapper.home {
		margin-top: 60px;
	}
}
@media only screen and (max-width: 410px){
	#wrapper.home {
		margin-top: 50px;
	}
}
/* メインビジュアル - Figmaデザイン対応
--------------------------------------------------------*/
#wrapper.home #main-visual {
	position: relative;
	max-height: 356px;
}

#wrapper.home #main-visual .main-visual-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url('/images/home/mainvisual.jpg') center/cover no-repeat;
	z-index: 1;
}


#wrapper.home #main-visual .main-visual-content {
	position: relative;
	z-index: 3;
}

#wrapper.home #main-visual .content-card {
	background: rgba(255, 255, 255, 0.96);
	padding: 23px;
	border-radius: 19px;
	box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.1);
	text-align: center;
	max-width: 520px;
	position: relative;
	top: 30px;
	opacity: 0;
	animation: fadeInUp 0.5s ease-out forwards;
	animation-delay: 0.2s;
}

#wrapper.home #main-visual .logo-container .circle-logo {
	height: 83px;
	width: 86px;
	object-fit: contain;
	margin-bottom: 16px;
}

#wrapper.home #main-visual .main-title {
	font-size: 32px;
	font-weight: bold;
	color: #333;
	margin: 0 0 20px 0;
	line-height: 1.3;
}

#wrapper.home #main-visual .site-name img {
	aspect-ratio: 257 / 53;
	width: 257px;
	margin-bottom: 25px;
}

#wrapper.home #main-visual .action-buttons {
	display: flex;
	gap: 20px;
	justify-content: center;
}

#wrapper.home #main-visual .action-buttons .btn {
	flex: 1;
	padding: 20px 30px;
	padding-left: 50px;
	text-align: center;
	border-radius: 9px;
	font-size: 18px;
	font-weight: bold;
	color: white;
	text-decoration: none;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	transition: all 0.3s ease;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	filter: drop-shadow(var(--sds-size-depth-0) var(--sds-size-depth-100) var(--sds-size-depth-100) var(--sds-color-black-100)) drop-shadow(var(--sds-size-depth-0) var(--sds-size-depth-100) var(--sds-size-depth-100) var(--sds-color-black-200));
	position: relative;
}

#wrapper.home #main-visual .action-buttons .btn .btn-icon {
	width: 23px;
	height: 23px;
	position: absolute;
	left: 18px;
}

#wrapper.home #main-visual .action-buttons .btn-search {
	background: #ec733a;
}

#wrapper.home #main-visual .action-buttons .btn-search:hover {
	background: #d6662f;
	transform: translateY(-2px);
}

#wrapper.home #main-visual .action-buttons .btn-sell {
	background: #39a79c;
}

#wrapper.home #main-visual .action-buttons .btn-sell:hover {
	background: #32968c;
	transform: translateY(-2px);
}

@media only screen and (max-width: 768px){
	#wrapper.home #main-visual {
		height: 450px;
		max-height: 273px;
		padding: 20px;
	}

	#wrapper.home .main-visual-content {
		width: 100%;
	}

	#wrapper.home #main-visual .content-card {
		padding: 30px 25px;
		max-width: 100%;
		top: 150px;
	}

	#wrapper.home #main-visual .main-title {
		font-size: 24px;
	}

	#wrapper.home #main-visual .logo-container .circle-logo {
		height: 70px;
		width: 70px;
		margin-bottom: 12px;
	}

	#wrapper.home #main-visual .site-name img {
		width: 200px;
	}

	#wrapper.home #main-visual .action-buttons {
		flex-direction: column;
		gap: 8px;
	}

	/* #wrapper.home #main-visual .action-buttons .btn {
		font-size: 14px;
		padding: 18px 5px;
	}

	#wrapper.home #main-visual .action-buttons .btn .btn-icon {
		width: 16px;
		height: 16px;
	} */
}

@media only screen and (max-width: 480px){
	#wrapper.home #main-visual .main-visual-background {
		/* background-position: 70%; */
	background: url('/images/home/mainvisual_sp.jpg') center/cover no-repeat;
	}
	#wrapper.home #main-visual {
		height: 400px;
	}

	#wrapper.home #main-visual .content-card {
		padding: 25px 20px;
	}

	#wrapper.home #main-visual .main-title {
		font-size: 20px;
	}

	#wrapper.home #main-visual .site-name {
		font-size: 28px;
	}
}

/* メインビジュアル下部エリア
--------------------------------------------------------*/
#wrapper.home #visual-bottom-area {
	height: 70px;
	background: #aeddd7;
	width: 100%;
}

@media only screen and (max-width: 480px){
	#wrapper.home #visual-bottom-area {
		height: 260px;
	}
}
/* 検索
--------------------------------------------------------*/
#wrapper.home #search-wrap {
	margin-bottom: 9rem;
	padding: 6rem 0;
	padding-top: 4rem;
	background: #AFDCD7;
}
#wrapper.home #search-wrap > div {
}
#wrapper.home #search-wrap > div > ul {
	display: grid;
	grid-template-columns: repeat(10, 1fr);
	gap: 10px;
	margin-bottom: 2.5rem;
}
#wrapper.home #search-wrap > div > ul li {
}
#wrapper.home #search-wrap > div > ul li a {
	display: block;
	padding: 1rem;
	background: #D2ECE9;
	border-radius: 10px;
	font-weight: 500;
	text-align: center;
}
.search-container {
	padding: 2rem;
	background: #FFF;
	border-radius: 15px;
	box-sizing: border-box;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
/* Search Form Component Styles */
.search-form-component .search-title {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-size: 2.4rem;
	font-weight: 600;
	color: #333;
	margin: 0 0 30px 0;
	text-align: center;
}
.search-form-component .search-title-icon {
	width: 24px;
	height: 24px;
}

/* Home page specific styling */
#search-wrap .search-form-component .search-title {
	font-size: 2.4rem;
	margin: 0 0 30px 0;
}

/* Search page specific styling */
.search-page .search-form-component .search-title {
	font-size: 2rem;
	margin: 0 0 20px 0;
}

.search-page-form {
	background: #FFF;
	border-radius: 10px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	padding: 2rem;
}

/* Search results page specific styles */
.sub.office.result .search-section {
	padding: 2rem 0 1rem 0;
	margin-bottom: 1rem;
}

.sub.office.result .search-form-component .search-title {
	font-size: 1.8rem;
	margin: 0 0 15px 0;
}

.sub.office.result .search-container {
	background: transparent;
	box-shadow: none;
	padding: 0;
}
.search-row-top {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 1.5rem;
}
.search-row-bottom {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 1.5rem;
}
.search-field-select {
	flex: 1;
}
.search-field-keyword-wide {
	flex: 3;
}
.search-submit-wide {
	flex: 1;
}
.search-field-select select {
	width: 100%;
	padding: 15px 20px;
	border: 2px solid #E5E5E5;
	border-radius: 8px;
	background: #FFF;
	font-size: 1.4rem;
	color: #666;
	cursor: pointer;
	transition: border-color 0.3s ease;
	appearance: none;
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23EC733A' d='M1.41 0L6 4.58 10.59 0 12 1.41l-6 6-6-6z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 15px center;
	background-size: 12px 8px;
}
.search-field-select select:hover {
	border-color: #EC733A;
}
.search-field-select select:focus {
	outline: none;
	border-color: #EC733A;
	box-shadow: 0 0 0 3px rgba(236, 115, 58, 0.1);
}
/* Highlight selected dropdowns - same style as active buttons */
.search-field-select select.has-value {
	background-color: #FFF5F0;
	border-color: #EC733A;
	color: #EC733A;
	font-weight: 500;
}
.search-select-button {
	width: 100%;
	padding: 15px 20px;
	border: 2px solid #E5E5E5;
	border-radius: 8px;
	background: #FFF;
	font-size: 1.4rem;
	color: #666;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	justify-content: space-between;
	align-items: center;
	text-align: left;
}
.search-select-button:hover {
	border-color: #EC733A;
	color: #EC733A;
}
.search-select-button.active {
	border-color: #EC733A;
	background: #FFF5F0;
	color: #EC733A;
}
.button-text {
	flex: 1;
}
.button-icon {
	transition: transform 0.3s ease;
	display: flex;
	align-items: center;
}
.button-icon svg {
	width: 12px;
	height: 8px;
}
.search-select-button.active .button-icon {
	transform: rotate(180deg);
}
.clear-search {
	color: #888 !important;
}
.search-submit-wide input {
	width: 100%;
	padding: 15px 30px 15px 45px !important;
	margin: 0 !important;
	background: #EC733A !important;
	color: #FFF;
	border: none;
	border-radius: 8px;
	font-size: 1.6rem;
	font-weight: 600;
	cursor: pointer;
	transition: background-color 0.3s ease, transform 0.2s ease;
	min-width: 120px;
	position: relative;
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='white'%3E%3Cpath d='M9 2a7 7 0 1 0 4.391 12.452l3.586 3.585a1 1 0 0 0 1.414-1.414l-3.585-3.586A7 7 0 0 0 9 2zM3 9a6 6 0 1 1 12 0A6 6 0 0 1 3 9z'/%3E%3C/svg%3E") !important;
	background-repeat: no-repeat !important;
	background-position: 15px center !important;
	background-size: 20px 20px !important;
}
.search-submit-wide input:hover {
	background-color: #D65B28 !important;
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='white'%3E%3Cpath d='M9 2a7 7 0 1 0 4.391 12.452l3.586 3.585a1 1 0 0 0 1.414-1.414l-3.585-3.586A7 7 0 0 0 9 2zM3 9a6 6 0 1 1 12 0A6 6 0 0 1 3 9z'/%3E%3C/svg%3E") !important;
	transform: translateY(-1px);
}
.keyword-input-main {
	width: 100%;
	padding: 15px 20px !important;
	border: 2px solid #E5E5E5 !important;
	border-radius: 8px;
	background: #FFF;
	font-size: 1.4rem;
	color: #666;
	box-sizing: border-box;
	transition: border-color 0.3s ease;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	height: 53px;
	line-height: 1.4;
}
.keyword-input-main:focus {
	outline: none;
	border-color: #EC733A !important;
	box-shadow: 0 0 0 3px rgba(236, 115, 58, 0.1);
}
.keyword-input-main::placeholder {
	color: #999;
	font-size: 1.4rem;
}
.search-links {
	display: flex;
	justify-content: center;
	margin-top: 1rem;
}
.search-links a {
	color: #EC733A;
	font-size: 1.3rem;
	text-decoration: none;
	transition: color 0.3s ease;
}
.search-links a:hover {
	color: #D65B28;
	text-decoration: underline;
}
/* Modal Styles */
.search-modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 1000;
	align-items: center;
	justify-content: center;
}
.search-modal.active {
	display: flex;
}
.modal-content {
	background: #FFF;
	border-radius: 15px;
	max-width: 500px;
	width: 90%;
	max-height: 80vh;
	overflow-y: auto;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}
.modal-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 2rem;
	border-bottom: 1px solid #E5E5E5;
}
.modal-header h3 {
	margin: 0;
	font-size: 1.8rem;
	font-weight: 600;
	color: #333;
}
.modal-close {
	background: none;
	border: none;
	font-size: 2rem;
	color: #666;
	cursor: pointer;
	padding: 0;
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.modal-close:hover {
	color: #EC733A;
}
.modal-body {
	padding: 2rem;
}
.modal-group {
	margin-bottom: 2rem;
}
.modal-group label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: 600;
	color: #333;
}
.modal-group select,
.modal-group input {
	width: 100%;
	padding: 12px 15px;
	border: 2px solid #E5E5E5;
	border-radius: 8px;
	font-size: 1.4rem;
	color: #666;
	box-sizing: border-box;
	transition: border-color 0.3s ease;
}
.modal-group select:focus,
.modal-group input:focus {
	outline: none;
	border-color: #EC733A;
	box-shadow: 0 0 0 3px rgba(236, 115, 58, 0.1);
}
.range-inputs {
	display: flex;
	align-items: center;
	gap: 10px;
}
.range-inputs select {
	flex: 1;
}
.range-inputs span {
	color: #666;
	font-weight: 500;
}
.keyword-tags-modal {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 1rem;
}
.keyword-tags-modal li a {
	display: inline-block;
	padding: 6px 12px;
	background: #F3F3F3;
	color: #666;
	font-size: 1.2rem;
	border-radius: 15px;
	text-decoration: none;
	transition: all 0.3s ease;
}
.keyword-tags-modal li a:hover,
.keyword-tags-modal li a.selected {
	background: #EC733A;
	color: #FFF;
}
.modal-footer {
	padding: 1.5rem 2rem;
	border-top: 1px solid #E5E5E5;
	text-align: right;
}
.modal-apply {
	padding: 12px 25px;
	background: #EC733A;
	color: #FFF;
	border: none;
	border-radius: 8px;
	font-size: 1.4rem;
	font-weight: 600;
	cursor: pointer;
	transition: background-color 0.3s ease;
}
.modal-apply:hover {
	background: #D65B28;
}
@media only screen and (max-width: 1199px){
	#wrapper.home #search-wrap > div > ul li a {
		font-size: 1.4rem;
	}
	.search-container {
		padding: 1.5rem;
	}
	#search-wrap .search-title {
		font-size: 2rem;
		margin: 0 0 25px 0;
	}
	#search-wrap .search-title-icon {
		width: 20px;
		height: 20px;
	}
	.search-field-select select,
	.search-select-button {
		font-size: 1.3rem;
		padding: 12px 15px;
	}
	.keyword-input-main {
		font-size: 1.3rem;
		padding: 12px 15px;
		height: 45px;
	}
	.search-submit-wide input {
		font-size: 1.5rem;
		padding: 12px 25px 12px 40px !important;
		background-position: 12px center !important;
		background-size: 16px 16px !important;
	}
}
@media only screen and (max-width: 999px){
	#wrapper.home #search-wrap > div > ul {
		grid-template-columns: repeat(5, 1fr);
	}
	#wrapper.home #search-wrap > div > ul li a {
		font-size: 1.6rem;
	}
	.search-row-top {
		flex-wrap: wrap;
		gap: 10px;
	}
	.search-field-select {
		flex: 1 1 calc(50% - 5px);
		min-width: calc(50% - 5px);
	}
	.search-row-bottom {
		gap: 10px;
	}
}
@media only screen and (max-width: 768px){
	#wrapper.home #search-wrap > div > ul {
		grid-template-columns: repeat(4, 1fr);
	}
	#wrapper.home #search-wrap > div > ul li a {
		font-size: 1.4rem;
	}
	.search-container {
		padding: 1.5rem;
	}
	#search-wrap .search-title {
		font-size: 1.8rem;
		margin: 0 0 20px 0;
	}
	#search-wrap .search-title-icon {
		width: 18px;
		height: 18px;
	}
	.search-field-select {
		flex: 1 1 100%;
		min-width: 100%;
	}
	.search-field-select select,
	.search-select-button {
		font-size: 1.4rem;
	}
	.search-links {
		align-items: center;
	}
	.modal-content {
		width: 95%;
		margin: 1rem;
	}
	.modal-header,
	.modal-body,
	.modal-footer {
		padding: 1.5rem;
	}
}
@media only screen and (max-width: 480px){
	#wrapper.home #search-wrap > div > ul {
		grid-template-columns: repeat(3, 1fr);
	}
	#wrapper.home #search-wrap {
		padding: 4rem 0;
	}
	.search-container {
		padding: 1.5rem;
	}
	.search-row-top,
	.search-row-bottom {
		margin-bottom: 1rem;
	}
	.search-field-select select,
	.search-select-button {
		padding: 12px 15px;
		font-size: 1.3rem;
	}
	.keyword-input-main {
		font-size: 1.3rem;
		padding: 12px 15px;
		height: 45px;
	}
	.search-submit-wide input {
		font-size: 1.4rem;
		padding: 12px 20px;
		min-width: 100px;
	}
	.search-links a {
		font-size: 1.2rem;
	}
	.modal-content {
		width: 95%;
		max-height: 90vh;
	}
	.modal-header,
	.modal-body,
	.modal-footer {
		padding: 1rem;
	}
}
/* 新着物件
--------------------------------------------------------*/
#wrapper.home #new {
	margin-bottom: 9rem;
}
#wrapper.home #new h2 {
	margin-bottom: 3rem;
	font-size: 3.6rem;
	font-weight: 600;
	text-align: center;
	line-height: 1.2;
}
#wrapper.home #new h2::first-letter {
	color: #39A79C;
}
#wrapper.home #new h2 span {
	display: block;
	margin-top: 1rem;
	font-size: 1.5rem;
}
/* PICK UP
--------------------------------------------------------*/
#wrapper.home #pickup {
	margin-bottom: 12rem;
}
#wrapper.home #pickup h2 {
	margin-bottom: 3rem;
	font-size: 3.6rem;
	font-weight: 600;
	text-align: center;
	line-height: 1.2;
}
#wrapper.home #pickup h2::first-letter {
	color: #39A79C;
}
#wrapper.home #pickup h2 span {
	display: block;
	margin-top: 1rem;
	font-size: 1.5rem;
}
#wrapper.home #pickup ul {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 30px 2px;
}
#wrapper.home #pickup ul li {
	position: relative;
}
#wrapper.home #pickup ul li a {
}
#wrapper.home #pickup ul li a img {
	display: block;
	height: auto;
	width: 100%;
	object-fit: cover;
	vertical-align: bottom;
}
#wrapper.home #pickup ul li a span {
	position: absolute;
	right: 1rem;
	bottom: -1em;
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 150px;
	padding: 1rem;
	background: #39A79C;
	color: #FFF;
	line-height: 1;
	z-index: 99;
}
#wrapper.home #pickup ul li a span::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: 999px){
	#wrapper.home #pickup ul {
		grid-template-columns: repeat(3, 1fr);
		gap: 3rem 1rem;
	}
}
@media only screen and (max-width: 768px){
	#wrapper.home #pickup ul {
		grid-template-columns: repeat(2, 1fr);
		gap: 3rem 1rem;
	}
}
@media only screen and (max-width: 480px){
	#wrapper.home #pickup h2 {
		font-size: 2.2rem;
	}
	#wrapper.home #pickup ul {
		grid-template-columns: repeat(1, 1fr);
		gap: 3rem 1rem;
	}
	#wrapper.home #pickup ul li a img {
		height: 160px;
	}
	#wrapper.home #pickup ul li:nth-of-type(3) a img {
		object-position: bottom;
	}
}

/************************************************************
	居抜きで入りたい方
*************************************************************/
#wrapper.move-in {
}
#wrapper.move-in > header {
	background: #F29D76;
}
/* POINT
--------------------------------------------------------*/
#wrapper.move-in section#point {
	margin-bottom: 9rem;
}
#wrapper.move-in section#point h2 {
	margin-bottom: 9rem;
	font-size: 3rem;
	font-weight: 500;
	color: #39A79C;
	text-align: center;
	line-height: 1.6;
}
#wrapper.move-in section#point ol {
}
#wrapper.move-in section#point ol li {
	display: flex;
}
#wrapper.move-in section#point ol li:not(:last-of-type) {
	margin-bottom: 6rem;
}
#wrapper.move-in section#point ol li span {
	font-size: 7rem;
	font-weight: 600;
	color: #AFDCD7;
	line-height: 1;
}
#wrapper.move-in section#point ol li span::before {
	display: block;
	content: "POINT";
	font-size: 2.6rem;
	font-weight: 400;
	color: #39A79C;
}
#wrapper.move-in section#point ol li div {
	position: relative;
	padding-left: 3rem;
	margin-left: 3rem;
}
#wrapper.move-in section#point ol li div::before {
	position: absolute;
	left: 0;
	display: inline-block;
	height: 95%;
	border-right: 4px solid #AFDCD7;
	content: "";
}
#wrapper.move-in section#point ol li div h3 {
	margin-bottom: 1.5rem;
	font-size: 3rem;
	font-weight: 500;
	line-height: 1.4;
}
#wrapper.move-in section#point ol li div p {
	font-size: 2rem;
}
#wrapper.move-in section#point ol li img {
	align-self: flex-start;
	height: auto;
	max-width: 100%;
	margin-left: auto;
}
@media only screen and (max-width: 768px){
	#wrapper.move-in section#point h2 {
		font-size: 2.4rem;
	}
}
@media only screen and (max-width: 699px){
	#wrapper.move-in section#point ol li span {
		font-size: 5rem;
	}
	#wrapper.move-in section#point ol li span::before {
		font-size: 2rem;
	}
	#wrapper.move-in section#point ol li div {
		padding-left: 2rem;
		margin-left: 2rem;
	}
	#wrapper.move-in section#point ol li div h3 {
		margin-bottom: 1rem;
		font-size: 2.4rem;
	}
	#wrapper.move-in section#point ol li div p {
		font-size: 1.8rem;
	}
}
@media only screen and (max-width: 480px){
	#wrapper.move-in section#point h2 {
		font-size: 2.2rem;
	}

	#wrapper.move-in section#point ol li {
		flex-wrap: wrap;
		justify-content: space-between;
	}
	#wrapper.move-in section#point ol li span {
		width: 100%;
		margin-bottom: 1rem;
	}
	#wrapper.move-in section#point ol li span::before {
		display: inline-block;
		margin-right: 0.5rem;
	}
	#wrapper.move-in section#point ol li div {
		width: 60%;
		margin: 0;
		padding: 0;
	}
	#wrapper.move-in section#point ol li div::before {
		height: auto;
		border: none;
	}
	#wrapper.move-in section#point ol li div h3 {
		margin-bottom: 0.5rem;
		font-size: 2.2rem;
	}
	#wrapper.move-in section#point ol li div h3 br {
		display: none;
	}
	#wrapper.move-in section#point ol li div p {
		font-size: 1.6rem;
	}
	#wrapper.move-in section#point ol li img {
		width: 36%;
		max-width: auto;
	}
}
/* フォーム
--------------------------------------------------------*/
#wrapper.move-in section#move-in-contact {
	margin-bottom: 9rem;
	padding: 6rem 0;
	background: #F2F2F2;
}
#wrapper.move-in section#move-in-contact h2 {
	margin-bottom: 6rem;
	font-size: 3rem;
	font-weight: 500;
	color: #39A79C;
	text-align: center;
	line-height: 1.6;
}
#wrapper.move-in section#move-in-contact #mail-form small,
#wrapper.move-in section#move-in-contact #mail-form span {
	display: inline-block;
}
#wrapper.move-in section#move-in-contact #mail-form #min_space + small {
	font-size: 1.6rem;
	color: inherit;
}
#wrapper.move-in section#move-in-contact #mail-form input.desired_space {
	width: 4em;
}
#wrapper.move-in section#move-in-contact #mail-form input#max_space {
	margin-right: 1rem;
}
#wrapper.move-in section#move-in-contact #mail-form #min_budget + small {
	font-size: 1.6rem;
	color: inherit;
}
#wrapper.move-in section#move-in-contact #mail-form input.budget {
	width: 8em;
}
#wrapper.move-in section#move-in-contact #mail-form #max_budget + span {
	margin-left: 0.5rem;
	font-size: 1.6rem;
	color: inherit;
}
#wrapper.move-in section#move-in-contact #mail-form .desired_time {
	display: block;
	margin-bottom: 0.5rem;
}
#wrapper.move-in section#move-in-contact #mail-form span.error {
	display: block;
}
@media only screen and (max-width: 480px){
	#wrapper.move-in section#move-in-contact h2 {
		font-size: 2.2rem;
	}
	#wrapper.move-in section#move-in-contact #mail-form #min_budget + small {
		display: block;
	}
	#wrapper.move-in section#move-in-contact #mail-form input.budget {
		width: 80%;
	}
	#wrapper.move-in section#move-in-contact #mail-form .desired_time {
		margin-bottom: 1rem;
	}
}
/* 個人情報保護方針の同意
--------------------------------------------------------*/
#wrapper.move-in #move-in-contact p.check {
	text-align: center;
}
#wrapper.move-in #move-in-contact p.check #agree {
	text-align: center;
}
#wrapper.move-in #move-in-contact p.check label {
	font-size: 2rem;
	text-align: center;
	line-height: 1.2;
}
#wrapper.move-in #move-in-contact p.check label::before {
	font-size: 2.4rem;
}
#wrapper.move-in #move-in-contact p.check a {
	display: block;
	margin-top: 2rem;
	color: #39A79C;
	text-decoration: underline;
	line-height: 1.2;
}
#wrapper.move-in #move-in-contact p.check a::after {
	font-family: "Font Awesome 5 Pro";
	display: inline-block;
	font-style: normal;
	font-variant: normal;
	font-weight: 400;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	content: "\f35d";
	margin-left: 0.5rem;
}
#wrapper.move-in #move-in-contact p.btn_run {
	margin-top: 3rem;
	text-align: center;
}
#wrapper.move-in #move-in-contact p.btn_run input[type="submit"] {
	font-size: 2rem;
}
#wrapper.move-in #move-in-contact p.btn_run #submit-btn[disabled] {
	background-color: #CCC;
	cursor: not-allowed;
}
@media only screen and (max-width: 375px){
	#wrapper.move-in #move-in-contact p.check label {
		font-size: 1.6rem;
	}
	#wrapper.move-in #move-in-contact p.check label::before {
		font-size: 2rem;
	}
	#wrapper.move-in #move-in-contact p.check a {
		font-size: 1.4rem;
	}
}
/* フォーム確認画面
--------------------------------------------------------*/
#wrapper.move-in.confirm p.btn_run {
	margin-bottom: 9rem;
}
/* 流れ
--------------------------------------------------------*/
#wrapper.move-in section#flow {
	margin-bottom: 9rem;
}
#wrapper.move-in section#flow h2 {
	margin-bottom: 6rem;
	font-size: 3rem;
	font-weight: 500;
	color: #39A79C;
	text-align: center;
	line-height: 1.6;
}
#wrapper.move-in section#flow ol {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 4rem;
}
#wrapper.move-in section#flow ol li {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	position: relative;
	padding: 2rem 3rem;
	border: 4px solid #AFDCD7;
	text-align: center;
}
#wrapper.move-in section#flow ol li::after {
	display: inline-block;
	border-style: solid;
	border-width: 15px 0 15px 15px;
	border-color: transparent transparent transparent #EC733A;
	position: absolute;
	right: -30px;
	top: 50%;
	transform: translateY(-50%);
	content: "";
	color: #EC733A;
}
#wrapper.move-in section#flow ol li:last-of-type::after {
	content: none;
}
#wrapper.move-in section#flow ol li h3 {
	width: 100%;
	align-self: end;
	font-size: 2.6rem;
	font-weight: 600;
	line-height: 1.4;
}
#wrapper.move-in section#flow ol li img {
	height: auto;
	max-width: 100%;
	align-self: flex-end;
}
@media only screen and (max-width: 999px){
	#wrapper.move-in section#flow ol li {
		padding: 2rem 1.5rem;
	}
	#wrapper.move-in section#flow ol li h3 {
		font-size: 2rem;
	}
}
@media only screen and (max-width: 768px){
	#wrapper.move-in section#flow ol {
		display: block;
	}
	#wrapper.move-in section#flow ol li:not(:last-of-type) {
		margin-bottom: 4rem;
	}
	#wrapper.move-in section#flow ol li::after {
		border-width: 15px 15px 0 15px;
		border-color: #EC733A transparent transparent transparent;
		top: auto;
		right: auto;
		bottom: -30px;
		left: 50%;
		transform: translate(-50% ,0%);
	}
}
@media only screen and (max-width: 480px){
	#wrapper.move-in section#flow h2 {
		font-size: 2.2rem;
	}
}

/************************************************************
	居抜きで出たい方
*************************************************************/
#wrapper.move-out {
}
#wrapper.move-out > header {
	background: #F7D64B;
}
/* POINT
--------------------------------------------------------*/
#wrapper.move-out section#point {
	margin-bottom: 9rem;
}
#wrapper.move-out section#point h2 {
	margin-bottom: 9rem;
	font-size: 3rem;
	font-weight: 500;
	color: #39A79C;
	text-align: center;
	line-height: 1.6;
}
#wrapper.move-out section#point ol {
}
#wrapper.move-out section#point ol li {
	display: flex;
}
#wrapper.move-out section#point ol li:not(:last-of-type) {
	margin-bottom: 6rem;
}
#wrapper.move-out section#point ol li span {
	font-size: 7rem;
	font-weight: 600;
	color: #AFDCD7;
	line-height: 1;
}
#wrapper.move-out section#point ol li span::before {
	display: block;
	content: "POINT";
	font-size: 2.6rem;
	font-weight: 400;
	color: #39A79C;
}
#wrapper.move-out section#point ol li div {
	position: relative;
	padding-left: 3rem;
	margin-left: 3rem;
}
#wrapper.move-out section#point ol li div::before {
	position: absolute;
	left: 0;
	display: inline-block;
	height: 95%;
	border-right: 4px solid #AFDCD7;
	content: "";
}
#wrapper.move-out section#point ol li div h3 {
	margin-bottom: 1.5rem;
	font-size: 3rem;
	font-weight: 500;
	line-height: 1.4;
}
#wrapper.move-out section#point ol li div p {
	font-size: 2rem;
}
#wrapper.move-out section#point ol li img {
	align-self: flex-start;
	height: auto;
	max-width: 100%;
	margin-left: auto;
}
@media only screen and (max-width: 768px){
	#wrapper.move-out section#point h2 {
		font-size: 2.4rem;
	}
}
@media only screen and (max-width: 699px){
	#wrapper.move-out section#point ol li span {
		font-size: 5rem;
	}
	#wrapper.move-out section#point ol li span::before {
		font-size: 2rem;
	}
	#wrapper.move-out section#point ol li div {
		padding-left: 2rem;
		margin-left: 2rem;
	}
	#wrapper.move-out section#point ol li div h3 {
		margin-bottom: 1rem;
		font-size: 2.4rem;
	}
	#wrapper.move-out section#point ol li div p {
		font-size: 1.8rem;
	}
}
@media only screen and (max-width: 480px){
	#wrapper.move-out section#point h2 {
		font-size: 2.2rem;
	}

	#wrapper.move-out section#point ol li {
		flex-wrap: wrap;
		justify-content: space-between;
	}
	#wrapper.move-out section#point ol li span {
		width: 100%;
		margin-bottom: 1rem;
	}
	#wrapper.move-out section#point ol li span::before {
		display: inline-block;
		margin-right: 0.5rem;
	}
	#wrapper.move-out section#point ol li div {
		width: 60%;
		margin: 0;
		padding: 0;
	}
	#wrapper.move-out section#point ol li div::before {
		height: auto;
		border: none;
	}
	#wrapper.move-out section#point ol li div h3 {
		margin-bottom: 0.5rem;
		font-size: 2.2rem;
	}
	#wrapper.move-out section#point ol li div h3 br {
		display: none;
	}
	#wrapper.move-out section#point ol li div p {
		font-size: 1.6rem;
	}
	#wrapper.move-out section#point ol li img {
		width: 36%;
		max-width: auto;
	}
}
/* フォーム
--------------------------------------------------------*/
#wrapper.move-out section#move-out-contact {
	margin-bottom: 9rem;
	padding: 6rem 0;
	background: #F2F2F2;
}
#wrapper.move-out section#move-out-contact h2 {
	margin-bottom: 6rem;
	font-size: 3rem;
	font-weight: 500;
	color: #39A79C;
	text-align: center;
	line-height: 1.6;
}
#wrapper.move-out section#move-out-contact #mail-form small,
#wrapper.move-out section#move-out-contact #mail-form span {
	display: inline-block;
}
#wrapper.move-out section#move-out-contact #mail-form ul {
}
#wrapper.move-out section#move-out-contact #mail-form ul li {
	display: flex;
	margin-bottom: 2rem;
}
#wrapper.move-out section#move-out-contact #mail-form ul li p {
	width: 10em;
}
#wrapper.move-out section#move-out-contact #mail-form ul li div {
	flex: 1;
}
#wrapper.move-out section#move-out-contact #mail-form ul li div input[type="tel"] {
	width: 4em;
}
#wrapper.move-out section#move-out-contact #mail-form ul li div select {
	width: 11em;
}
#wrapper.move-out section#move-out-contact #mail-form ul li div input[type="text"] {
	width: 80%;
}
#wrapper.move-out section#move-out-contact #mail-form #min_space + small {
	font-size: 1.6rem;
	color: inherit;
}
#wrapper.move-out section#move-out-contact #mail-form input.space {
	width: 4em;
}
#wrapper.move-out section#move-out-contact #mail-form .approval {
	display: block;
	margin-bottom: 0.5rem;
}
#wrapper.move-out section#move-out-contact #mail-form span.error {
	display: block;
}
@media only screen and (max-width: 768px){
	#wrapper.move-out section#move-out-contact #mail-form ul li div input[type="text"] {
		width: 100%;
	}
}
@media only screen and (max-width: 480px){
	#wrapper.move-out section#move-out-contact h2 {
		font-size: 2.2rem;
	}
	#wrapper.move-out section#move-out-contact #mail-form .approval {
		margin-bottom: 1rem;
	}
}
/* 個人情報保護方針の同意
--------------------------------------------------------*/
#wrapper.move-out #move-out-contact p.check {
	text-align: center;
}
#wrapper.move-out #move-out-contact p.check #agree {
	text-align: center;
}
#wrapper.move-out #move-out-contact p.check label {
	font-size: 2rem;
	text-align: center;
	line-height: 1.2;
}
#wrapper.move-out #move-out-contact p.check label::before {
	font-size: 2.4rem;
}
#wrapper.move-out #move-out-contact p.check a {
	display: block;
	margin-top: 2rem;
	color: #39A79C;
	text-decoration: underline;
	line-height: 1.2;
}
#wrapper.move-out #move-out-contact p.check a::after {
	font-family: "Font Awesome 5 Pro";
	display: inline-block;
	font-style: normal;
	font-variant: normal;
	font-weight: 400;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	content: "\f35d";
	margin-left: 0.5rem;
}
#wrapper.move-out #move-out-contact p.btn_run {
	margin-top: 3rem;
	text-align: center;
}
#wrapper.move-out #move-out-contact p.btn_run input[type="submit"] {
	font-size: 2rem;
}
#wrapper.move-out #move-out-contact p.btn_run #submit-btn[disabled] {
	background-color: #CCC;
	cursor: not-allowed;
}
@media only screen and (max-width: 375px){
	#wrapper.move-out #move-out-contact p.check label {
		font-size: 1.6rem;
	}
	#wrapper.move-out #move-out-contact p.check label::before {
		font-size: 2rem;
	}
	#wrapper.move-out #move-out-contact p.check a {
		font-size: 1.4rem;
	}
}
/* 流れ
--------------------------------------------------------*/
#wrapper.move-out section#flow {
	margin-bottom: 9rem;
}
#wrapper.move-out section#flow h2 {
	margin-bottom: 6rem;
	font-size: 3rem;
	font-weight: 500;
	color: #39A79C;
	text-align: center;
	line-height: 1.6;
}
#wrapper.move-out section#flow ol {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 4rem;
}
#wrapper.move-out section#flow ol li {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	position: relative;
	padding: 2rem 3rem;
	border: 4px solid #AFDCD7;
	text-align: center;
}
#wrapper.move-out section#flow ol li::after {
	display: inline-block;
	border-style: solid;
	border-width: 15px 0 15px 15px;
	border-color: transparent transparent transparent #EC733A;
	position: absolute;
	right: -30px;
	top: 50%;
	transform: translateY(-50%);
	content: "";
	color: #EC733A;
}
#wrapper.move-out section#flow ol li:last-of-type::after {
	content: none;
}
#wrapper.move-out section#flow ol li h3 {
	width: 100%;
	align-self: end;
	font-size: 2.6rem;
	font-weight: 600;
	line-height: 1.4;
}
#wrapper.move-out section#flow ol li img {
	height: auto;
	max-width: 100%;
	align-self: flex-end;
}
@media only screen and (max-width: 999px){
	#wrapper.move-out section#flow ol li {
		padding: 2rem 1.5rem;
	}
	#wrapper.move-out section#flow ol li h3 {
		font-size: 2rem;
	}
}
@media only screen and (max-width: 768px){
	#wrapper.move-out section#flow ol {
		display: block;
	}
	#wrapper.move-out section#flow ol li:not(:last-of-type) {
		margin-bottom: 4rem;
	}
	#wrapper.move-out section#flow ol li::after {
		border-width: 15px 15px 0 15px;
		border-color: #EC733A transparent transparent transparent;
		top: auto;
		right: auto;
		bottom: -30px;
		left: 50%;
		transform: translate(-50% ,0%);
	}
}
@media only screen and (max-width: 480px){
	#wrapper.move-out section#flow h2 {
		font-size: 2.2rem;
	}
}
/* フォーム送信確認・完了
--------------------------------------------------------*/
#wrapper.move-out.confirm p.btn_run {
	margin-bottom: 9rem;
}

/************************************************************
	居抜きで入りたい方・出たい方共通
*************************************************************/
div#in-out {
	margin-bottom: 9rem;
	padding: 6rem 0;
	background: #F2F2F2;
}
div#in-out p {
	margin-bottom: 3rem;
	padding: 0 2rem;
	font-size: 2rem;
	font-weight: 500;
	text-align: center;
}
div#in-out ul {
	display: flex;
	justify-content: center;
	align-items: center;
}
div#in-out ul li {
}
div#in-out ul li:first-of-type {
	margin-right: 3rem;
}
div#in-out ul li a {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 340px;
	height: 60px;
	padding: 0 3rem;
	box-sizing: border-box;
	color: #FFF;
}
div#in-out ul li.in a {
	background: #EC733A;
}
div#in-out ul li.out a {
	background: #F4C400;
}
div#in-out ul li 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){
	div#in-out ul li a {
		min-width: 280px;
	}
}
@media only screen and (max-width: 768px){
	div#in-out ul {
		flex-wrap: wrap
	}
	div#in-out ul li {
		width: 90%;
	}
	div#in-out ul li:first-of-type {
		margin-right: 0;
		margin-bottom: 2rem;
	}
	div#in-out ul li a {
		min-width: auto;
		width: 100%;
	}
}
@media only screen and (max-width: 360px){
	div#in-out ul li a::after {
		width: 20px;
	}
}

/************************************************************
	お問い合わせ
*************************************************************/
#wrapper.contact {
}
#wrapper.contact #general {
	margin-bottom: 9rem;
}
#wrapper.contact #general > p {
	margin-bottom: 6rem;
	font-size: 1.8rem;
	text-align: center;
}
#wrapper.contact #general #mail-form {
}
/* 個人情報保護方針の同意
--------------------------------------------------------*/
#wrapper.contact #general p.check {
	text-align: center;
}
#wrapper.contact #general p.check #agree {
	text-align: center;
}
#wrapper.contact #general p.check label {
	font-size: 2rem;
	text-align: center;
	line-height: 1.2;
}
#wrapper.contact #general p.check label::before {
	font-size: 2.4rem;
}
#wrapper.contact #general p.check a {
	display: block;
	margin-top: 2rem;
	color: #39A79C;
	text-decoration: underline;
	line-height: 1.2;
}
#wrapper.contact #general p.check a::after {
	font-family: "Font Awesome 5 Pro";
	display: inline-block;
	font-style: normal;
	font-variant: normal;
	font-weight: 400;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	content: "\f35d";
	margin-left: 0.5rem;
}
#wrapper.contact #general p.btn_run {
	margin-top: 3rem;
	text-align: center;
}
#wrapper.contact #general p.btn_run input[type="submit"] {
	font-size: 2rem;
}
#wrapper.contact #general p.btn_run #submit-btn[disabled] {
	background-color: #CCC;
	cursor: not-allowed;
}
@media only screen and (max-width: 375px){
	#wrapper.contact #general p.check label {
		font-size: 1.6rem;
	}
	#wrapper.contact #general p.check label::before {
		font-size: 2rem;
	}
	#wrapper.contact #general p.check a {
		font-size: 1.4rem;
	}
}

/************************************************************
	居抜き物件とは
*************************************************************/
#wrapper.about {
}
/* とは
--------------------------------------------------------*/
#wrapper.about section#intro {
	margin-bottom: 9rem;
}
#wrapper.about section#intro h2 {
	margin-bottom: 4rem;
	font-size: 3rem;
	font-weight: 500;
	color: #39A79C;
	text-align: center;
	line-height: 1.6;
}
#wrapper.about section#intro h3 {
	margin: 4rem 0;
	font-size: 2.4rem;
	font-weight: 500;
	text-align: center;
	line-height: 1.6;
}
#wrapper.about section#intro img {
	height: auto;
	max-width: 100%;
	width: auto;
}
#wrapper.about section#intro div {
	width: 70%;
	margin: 0 auto 4rem auto;
}
#wrapper.about section#intro div p:not(:last-of-type) {
	margin-bottom: 1rem;
}
@media only screen and (max-width: 768px){
	#wrapper.about section#intro h2 {
		font-size: 2.4rem;
	}
	#wrapper.about section#intro h3 {
		font-size: 2rem;
	}
	#wrapper.about section#intro h3 br {
		display: none;
	}
	#wrapper.about section#intro div {
		width: 90%;
	}
}
@media only screen and (max-width: 480px){
	#wrapper.about section#intro h2 {
		font-size: 2.2rem;
	}
	#wrapper.about section#intro h3 {
		font-size: 1.6rem;
	}
}
/* メリット
--------------------------------------------------------*/
#wrapper.about section#merit {
	margin-bottom: 9rem;
}
#wrapper.about section#merit h2 {
	margin-bottom: 4rem;
	font-size: 3rem;
	font-weight: 500;
	color: #39A79C;
	text-align: center;
	line-height: 1.6;
}
#wrapper.about section#merit h3 {
	margin: 4rem 0;
	font-size: 2.4rem;
	font-weight: 500;
	text-align: center;
	line-height: 1.6;
}
#wrapper.about section#merit div {
	width: 70%;
	margin: 0 auto 4rem auto;
}
#wrapper.about section#merit div p:not(:last-of-type) {
	margin-bottom: 1rem;
}
#wrapper.about section#merit div p b {
	font-weight: normal;
	color: #CC0000;
}
@media only screen and (max-width: 768px){
	#wrapper.about section#merit h2 {
		margin-bottom: 2rem;
		font-size: 2.4rem;
	}
	#wrapper.about section#merit h3 {
		margin: 2rem 0;
		font-size: 2rem;
	}
	#wrapper.about section#merit h3 br {
		display: none;
	}
	#wrapper.about section#merit div {
		width: 90%;
	}
}
@media only screen and (max-width: 480px){
	#wrapper.about section#merit h2 {
		font-size: 2.2rem;
	}
	#wrapper.about section#merit h3 {
		font-size: 1.6rem;
	}
}
/* 例
--------------------------------------------------------*/
#wrapper.about section#example {
	margin-bottom: 9rem;
}
#wrapper.about section#example h2 {
	margin-bottom: 4rem;
	font-size: 3rem;
	font-weight: 500;
	color: #39A79C;
	text-align: center;
	line-height: 1.6;
}
#wrapper.about section#example h2 span {
	display: inline-block;
	width: 44px;
	height: 44px;
	line-height: 44px;
	margin-right: 0.5rem;
	background: #39A79C;
	border-radius: 50%;
	font-size: 2.4rem;
	font-weight: normal;
	color: #FFF;
}
#wrapper.about section#example ul {
	display: flex;
	justify-content: space-between;
}
#wrapper.about section#example ul li {
	width: 48%;
	text-align: center;
}
#wrapper.about section#example ul li h3 {
	margin-bottom: 2rem;
	padding: 1rem;
	border-radius: 20px;
	box-sizing: border-box;
	font-size: 2rem;
	font-weight: 600;
}
#wrapper.about section#example ul li.in h3 {
	background: #F29D76;
}
#wrapper.about section#example ul li.out h3 {
	background: #F7D64B;
}
#wrapper.about section#example ul li img {
	height: auto;
	max-width: 100%;
	width: auto;
}
#wrapper.about section#example ul li p {
	font-size: 2rem;
	font-weight: 600;
}
#wrapper.about section#example > i {
	display: block;
	margin: 1rem 0;
	font-size: 7rem;
	color: #39A79C;
	text-align: center;
}
#wrapper.about section#example > p {
	font-size: 2.6rem;
	font-weight: 600;
	text-align: center;
	line-height: 1.4;
}
@media only screen and (max-width: 768px){
	#wrapper.about section#example h2 {
		margin-bottom: 2rem;
		font-size: 2.4rem;
	}
	#wrapper.about section#example h2 span {
		width: 38px;
		height: 38px;
		line-height: 38px;
		font-size: 2rem;
	}
	#wrapper.about section#example > p {
		font-size: 2.2rem;
	}
}
@media only screen and (max-width: 480px){
	#wrapper.about section#example h2 {
		font-size: 2.2rem;
	}
	#wrapper.about section#example h2 span {
		display: block;
		margin: 0 auto;
	}
	#wrapper.about section#example ul {
		flex-wrap: wrap;
	}
	#wrapper.about section#example ul li {
		width: 100%;
	}
	#wrapper.about section#example ul li:first-of-type {
		margin-bottom: 3rem;
	}
	#wrapper.about section#example ul li.out h3 {
		margin-bottom: 0;
	}
	#wrapper.about section#example > p {
		font-size: 2rem;
	}
}
/* セットアップオフィス
--------------------------------------------------------*/
#wrapper.about section#setup {
	display: flex;
	margin-bottom: 9rem;
}
#wrapper.about section#setup img {
	height: auto;
	width: 50%;
	object-fit: cover;
}
#wrapper.about section#setup div {
	display: grid;
	place-content: center;
	/*place-items: center;*/
	width: 50%;
	padding: 6rem;
	background: #AFDCD7;
	box-sizing: border-box;
}
#wrapper.about section#setup div h2 {
	margin-bottom: 2rem;
	font-size: 2.4rem;
	font-weight: 500;
	color: #39A79C;
	line-height: 1.4;
}
#wrapper.about section#setup div h3 {
	margin-bottom: 2rem;
	font-size: 2rem;
	font-weight: 500;
	line-height: 1.4;
}
#wrapper.about section#setup div p {
	font-size: 1.4rem;
}
@media only screen and (max-width: 699px){
	#wrapper.about section#setup {
		flex-wrap: wrap;
	}
	#wrapper.about section#setup img {
		width: 100%;
	}
	#wrapper.about section#setup div {
		width: 100%;
		padding: 4rem 2rem;
	}
}

/************************************************************
	よくある質問
*************************************************************/
#wrapper.faq {
}
#wrapper.faq section#faq-list {
	margin-bottom: 9rem;
}
#wrapper.faq section#faq-list h2 {
	margin-bottom: 4rem;
	font-size: 3rem;
	font-weight: 500;
	color: #39A79C;
	text-align: center;
	line-height: 1.6;
}
#wrapper.faq section#faq-list ul {
}
#wrapper.faq section#faq-list ul li {
	margin-bottom: 6rem;
}
#wrapper.faq section#faq-list ul li dl {
}
#wrapper.faq section#faq-list ul li dl dt {
	position: relative;
	margin-bottom: 2rem;
	padding-bottom: 2rem;
	padding-left: 2.5em;
	font-size: 2rem;
	font-weight: 500;
	border-bottom: 2px solid #666;
	line-height: 1.2;
}
#wrapper.faq section#faq-list ul li dl dt::before {
	font-size: 3rem;
	font-weight: 700;
	color: #39A79C;
	content: "Ｑ.";
	margin-right: 1rem;
	position: absolute;
	left: 0;
	top: 0;
	line-height: 1;
}
#wrapper.faq section#faq-list ul li dl dd {
	position: relative;
	padding-left: 7em;
}
#wrapper.faq section#faq-list ul li dl dd::before {
	font-size: 3rem;
	font-weight: 700;
	color: #EC733A;
	content: "Ａ.";
	position: absolute;
	left: 2em;
	top: 0;
	line-height: 1;
}
#wrapper.faq section#faq-list ul li dl dd a {
	text-decoration: underline;
}
@media only screen and (max-width: 768px){
	#wrapper.faq section#faq-list h2 {
		font-size: 2.4rem;
	}
}
@media only screen and (max-width: 480px){
	#wrapper.faq section#faq-list h2 {
		font-size: 2.2rem;
	}
	#wrapper.faq section#faq-list ul li dl dd {
		padding-left: 3em;
	}
	#wrapper.faq section#faq-list ul li dl dt::before {
		font-size: 2.4rem;
	}
	#wrapper.faq section#faq-list ul li dl dd::before {
		font-size: 2.4rem;
		left: 0;
	}
}

/************************************************************
	運営会社
*************************************************************/
#wrapper.company {
}
#wrapper.company section {
	margin-bottom: 9rem;
}
#wrapper.company section h2 {
	margin-bottom: 4rem;
	font-size: 3rem;
	font-weight: 500;
	color: #39A79C;
	text-align: center;
	line-height: 1.6;
}
#wrapper.company section dl {
	display: flex;
	flex-wrap: wrap;
}
#wrapper.company section dl dt,
#wrapper.company section dl dd {
	padding: 4rem 3rem;
	border-bottom: 1px solid #999;
	box-sizing: border-box;
	line-height: 1.2;
}
#wrapper.company section dl:first-of-type dt,
#wrapper.company section dl:first-of-type dd {
	border-top: 1px solid #999;
}
#wrapper.company section dl dt {
	display: flex;
	align-items: center;
	width: 30%;
	background: #AFDCD7;
	font-weight: 500;
}
#wrapper.company section dl dd {
	width: 70%;
}
#wrapper.company section dl dd a {
	color: #39A79C;
}
#wrapper.company section dl dd a.link::after {
	font-family: "Font Awesome 5 Pro";
	display: inline-block;
	font-style: normal;
	font-variant: normal;
	font-weight: 400;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	content: "\f35d";
	margin-left: 0.5rem;
}
@media only screen and (max-width: 768px){
	#wrapper.company section h2 {
		font-size: 2.4rem;
	}
}
@media only screen and (max-width: 480px){
	#wrapper.company section h2 {
		font-size: 2.2rem;
	}
	#wrapper.company section dl dt,
	#wrapper.company section dl dd {
		padding: 2rem;
	}
}

/************************************************************
	プライバシーポリシー
*************************************************************/
#wrapper.privacy {
}
#wrapper.privacy section {
	margin-bottom: 9rem;
}
#wrapper.privacy section h2 {
	margin: 6rem 0 2rem;
	font-size: 2rem;
	font-weight: 500;
	color: #39A79C;
	line-height: 1.2;
}
#wrapper.privacy section p {
}
#wrapper.privacy section ul {
	margin-top: 1rem;
	list-style-type: disc;
	list-style-position: inside;
	padding-left: 1em;
	text-indent: -1em;
}
#wrapper.privacy section ul li {
}











/************************************************************
	フォーム
*************************************************************/
/* Form Default Setting
------------------------------------------------------------*/
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="search"],
input[type="number"],
select,
textarea {
	width: 100%;
	max-width: 600px;
	padding: 1rem 0.5rem;
	border: 1px solid #CECECE;
	box-sizing: border-box;
	font-size: 1.6rem;
	vertical-align: middle;
}
textarea {
	height: auto;
	line-height: 1.5;
}
input[type="submit"],
input[type="button"] {
	margin: 0 0.5rem;
	padding: 1rem 3rem;
	border: none;
	background: #39A79C;
	font-size: 1.6rem;
	color: #FFF;
}
input[type="reset"] {
	margin: 0 0.5rem;
	padding: 1rem 3rem;
	border: 1px solid #000;
	background: #E7E7E7;
	font-size: 1.6rem;
	color: #000;
}
input[type="submit"]:hover,
input[type="button"]:hover,
input[type="reset"]:hover {
	opacity: 0.75;
	transition: 0.5s ease-in-out;
	cursor: pointer;
}
input[type="text"]:disabled {
	border: none;
	background: none;
}
input#back {
	background: #CCC;
}
*:first-child+html input[type="submit"]{ padding:3px;}
/* placeholder */
::placeholder {
  color: #CCC;
}
/* Focus */
input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
select:focus,
textarea:focus {
	box-shadow: 0 0 4px #39A79C;
	border: 1px solid #39A79C;
}
/* radio */
input[type="radio"] { display: none; appearance: none;}
input[type="radio"] + label {
	position: relative;
	display: inline-block;
	cursor: pointer;
}
input[type="radio"] + label:before {
	font-family: "Font Awesome 5 Pro";
	display: inline-block;
	font-style: normal;
	font-variant: normal;
	font-weight: 400;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	content: "\f111";
	margin-right: 0.5rem;
	font-size: 2rem;
	color: #CECECE;
	vertical-align: middle;
}
input[type="radio"]:checked + label {
	color: #39A79C;
}
input[type="radio"]:checked + label:before {
	content: "\f058";
	font-weight: 900;
	color: #39A79C;
}
/* check box */
input[type="checkbox"] { display: none; appearance: none;}
input[type="checkbox"] + label {
	position: relative;
	display: inline-block;
	cursor: pointer;
}
input[type="checkbox"] + label:before {
	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: "\f0c8";
	margin-right: 0.5rem;
	font-size: 2rem;
	color: #CECECE;
	vertical-align: middle;
}
input[type="checkbox"]:checked + label {
	color: #39A79C;
}
input[type="checkbox"]:checked + label:before {
	content: "\f14a";
	font-weight: 900;
	color: #39A79C;
}
/* iPhone独自スタイル（グラデーション, 角丸）を解除 */
input[type="text"], input[type="email"], input[type="tel"], input[type="submit"], input[type="button"], input[type="reset"], textarea {
	-webkit-appearance: none;
}
/* Mail Form
------------------------------------------------------------*/
#mail-form {
	margin-bottom: 3rem;
	background: #FFF;
	border: 1px solid #CECECE;
}
#mail-form dl {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
#mail-form dl:not(:last-of-type) {
	border-bottom: 1px solid #CECECE;
}
#mail-form dl dt {
	position: relative;
	display: flex;
	align-items: center;
	width: 35%;
	padding: 0 7rem 0 3rem;
	background: #D2ECE9;
	box-sizing: border-box;
}
#mail-form dl dt::after {
	position: absolute;
	right: 2rem;
	top: 50%;
	transform: translateY(-50%);
	padding: 0 5px;
	border-radius: 5px;
	color: #FFF;
}
#mail-form dl dt.must::after {
	background: #E97538;
	content: "必須";
}
#mail-form dl dt.any:after {
	background: #999;
	content: "任意";
}
#mail-form dl dd {
	width: 65%;
	padding: 3rem;
	box-sizing: border-box;
}
#mail-form dl dd span {
	display: block;
	font-size: 1.2rem;
}
#mail-form dl dd span.error {
	color: #FF3333;
}
#mail-form dl dd span.zipcode {
	margin-left: 1rem;
	font-size: 1.2rem;
}
#mail-form dl dd span.zipcode a::after{
	font-family: "Font Awesome 5 Pro";
	display: inline-block;
	font-style: normal;
	font-variant: normal;
	font-weight: 400;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	content: "\f35d";
	margin-left: 0.5rem;
}
#mail-form dl dd small {
	display: block;
	font-size: 1.4rem;
	color: #CE3135;
}
/* ボタンエリア（確認, 送信等） */
#mail-form + p.btn_run {
	text-align: center;
}
@media only screen and (max-width: 768px){
	#mail-form dl {
		justify-content: flex-start;
		font-size: 1.5rem;
		line-height: 1.2;
	}
	#mail-form dl dt {
		width: 100%;
		padding: 2rem 7rem 2rem 2rem;
	}
	#mail-form dl dt.must:after {
		font-size: 1.5rem;
	}
	#mail-form dl dd {
		width: 100%;
		padding: 2rem;
	}
}
#confirm-msg,
#complete-msg {
    margin-bottom: 6rem;
}
#confirm-msg p,
#complete-msg p {
    font-size: 1.8rem;
    text-align: center;
}

