@charset "UTF-8";
/* CSS Document */


/******************************************************

PC設定 1200px以上の場合に適用 

*******************************************************/

/* header */
.header {
	background-color: transparent;
	box-shadow: none;
}

.header__link {
	background-image: url("/img/common/logo_white.png");
}

.header.scroll {
	background-color: #FFF;
}

.header.scroll .globalNav__link {
	color: #222;
}

.header.scroll .globalNav__item:nth-of-type(6) .globalNav__link,
.header.scroll .globalNav__item:nth-of-type(7) .globalNav__link {
	color: #FFF;
}



/* globalNav */
.globalNav__link {
	color: #FFF;
}



/* mvIndex */
.mvIndex {
	width: 100%;
	height: 100vh;
	min-height: 700px;
	position: relative;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
}

.mvIndex__content {
	position: absolute;
}

.mvIndex__img {
	display: block;
	width: 150px;
	height: auto;
	margin: 0 auto 30px auto;
}

.mvIndex__h1 {
	font-size: 18px;
	font-weight: 500;
	color: #FFF;
	text-align: center;
	line-height: 1.8;
}

.mvIndex__h1 span.pc {
	display: inline;
}

.mvIndex__h1 span.sp {
	display: none;
}

.mvIndex__box {
	position: relative;
	top: 0;
	width: 100%;
	height: 100vh;
	min-height: 700px;
}

.mvIndex__item {
	animation-duration: 18s;
	animation-delay: 2s;
	animation-iteration-count: infinite;
	animation-fill-mode: both;
	animation-timing-function: linear;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-size: cover!important;
	background-position: center center!important;
}

.mvIndex__item--01 {
	background: linear-gradient(rgba(0,0,0,.4), rgba(0,0,0,.4)),url("/img/index/bg_mvIndex_01.jpg");
	animation-name: mvIndex01;
}

.mvIndex__item--02 {
	background: linear-gradient(rgba(0,0,0,.4), rgba(0,0,0,.4)),url("/img/index/bg_mvIndex_02.jpg");
	animation-name: mvIndex02;
}
	
.mvIndex__item--03 {
	background: linear-gradient(rgba(0,0,0,.4), rgba(0,0,0,.4)),url("/img/index/bg_mvIndex_03.jpg");
	animation-name: mvIndex03;
}

/* 1枚目 */
@keyframes mvIndex01 {
	0% {opacity: 1;}
	28% {opacity: 1;}
	34% {opacity: 0;}
	61% {opacity: 0;}
	67% {opacity: 0;}
	94% {opacity: 0;}
	100% {opacity: 1;}
}

/* 2枚目 */
@keyframes mvIndex02 {
	0% {opacity: 0;}
	28% {opacity: 0;}
	34% {opacity: 1;}
	61% {opacity: 1;}
	67% {opacity: 0;}
	94% {opacity: 0;}
	100% {opacity: 0;}
}

/* 3枚目 */
@keyframes mvIndex03 {
	0% {opacity: 0;}
	28% {opacity: 0;}
	34% {opacity: 0;}
	61% {opacity: 0;}
	67% {opacity: 1;}
	94% {opacity: 1;}
	100% {opacity: 0;}
}

.scrollDown {
	position: absolute;
	bottom: 5px;
	left: 50%;
}

.scrollDown span{
	position: absolute;
	left: -15px;
	top: -100px;
	color: #FFF;
	font-size: 12px;
	font-weight: bold;
}

.scrollDown::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: -4px;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #FFF;
	animation:
		circlemove 1.6s ease-in-out infinite,
		cirlemovehide 1.6s ease-out infinite;
}

@keyframes circlemove {
	0%{bottom: 45px;}
	100%{bottom: -5px;}
 }

@keyframes cirlemovehide {
	0%{opacity: 0}
	50%{opacity: 1;}
	80%{opacity: 0.9;}
	100%{opacity: 0;}
 }

.scrollDown::after{
	content:"";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 1px;
	height: 50px;
	background: #FFF;
}



/* property */
.property__search {
	margin-bottom: 120px;
}

.search__btn {
	margin-top: 50px;
}

form > ul {
	width: 100%;
}

form > ul > li {
	display: flex;
	border-top: 1px solid #DDD;
}

form > ul > li h4 {
	width: 20%;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 30px 0;
	background-color: #f2e2b8;
	font-size: 18px;
	font-weight: 600;
}

form > ul > li > ul {
	width: 80%;
	display: flex;
	flex-wrap: wrap;
	padding: 30px 4%;
}

form > ul > li > ul > li {
	margin-right: 45px;
	line-height: 3;
	font-size: 18px;
}

input[type="checkbox"] {
    margin: 0;
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
 }

input[type="checkbox"] {
    cursor: pointer;
    padding-left: 40px;/*label手前にチェックボックス用の余白を開ける*/
    vertical-align: 7px;
    position: relative;
}
 
input[type="checkbox"]::before,
input[type="checkbox"]::after {
    content: "";
    display: block; 
    position: absolute;
 }
 
input[type="checkbox"]::before {
    background-color: #fff;
    border-radius: 0%;
    border: 1px solid #333;
	border-radius: 3px;
    width: 25px;/*チェックボックスの横幅*/
    height: 25px;/*チェックボックスの縦幅*/
    transform: translateY(-50%);
    top: 50%;
    left: 0;
}
 
input[type="checkbox"]::after {
    border-bottom: 3px solid #de4800;
    border-left: 3px solid #de4800;
    opacity: 0;/*チェック前は非表示*/
    height: 6px;/*チェックの高さ*/
    width: 11px;/*チェックの横幅*/
    transform: rotate(-45deg);
    top: -7px;/*チェック時の位置調整*/
    left: 7px;/*チェック時の位置調整*/
}
 
input[type="checkbox"]:checked::after {
    opacity: 1;/*チェック後表示*/
}

form > ul > li > label {
	width: 80%;
	padding: 30px 4%;
}

form > ul > li > label input {
	border: 1px solid #333;
	width: 100%;
	height: 30px;
	padding-left: 10px;
}

form > ul > li:last-child {
	width: 100%;
	background-color: #de4800;
	padding: 30px 0;
	position: relative;
}

form > ul > li > input {
	display: block;
	width: 60%;
	height: 60px;
	line-height: 58px;
	font-size: 18px;
	font-weight: 600;
	color: #FFF;
	background-color: #f3c84f;
	border: 1px solid #f3c84f;
	margin: 0 auto;
	position: relative;
	text-align: center;
	transition: .2s;
	border-radius: 30px;
}

form > ul > li > input:hover {
	background-color: #eb9800;
	border: 1px solid #eb9800;
	cursor: pointer;
}

.property__box {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.property__box::before{
  content: "";
  display: block;
  width: 23%;
  order: 1;
}

.property__box::after{
  content: "";
  display: block;
  width: 23%;
}

.property__item {
	width: 23%;
	margin-bottom: 70px;
}

.property__thumbnail {
	position: relative;
	display: block;
	transition: .2s;
	overflow: hidden;
	margin-bottom: 20px;
}

.property__thumbnail::before {
	display: block;
	content: "";
	padding-top: 100%;
}

.property__thumbnail img {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	max-width: none;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: .2s;
}

.property__thumbnail img:hover {
	-webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -o-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
}

.property__new {
	position: absolute;
	top: 0;
	right: 0;
	background-color: #cc542d;
	padding: 0 10px;
}

.property__new p {
	color: #FFF;
	font-weight: 600;
}

.property__h3 {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 10px;
}

.propety__type {
	background-color: #eb9800;
	display: inline-block;
	color: #FFF;
	font-size: 12px;
	padding: 2px 15px 0 15px;
	border-radius: 20px;	
}

.property__price {
	margin-top: 10px;
}

.property__price > span {
	display: inline-block;
	font-size: 12px;
	border: 1px solid #333;
	padding: 0 7px;
	margin-right: 10px;
	vertical-align: 5px;
}

.property__price p {
	display: inline-block;
	font-size: 32px;
	font-weight: 600;
}

.property__price p span {
	font-size: 16px;
	margin-left: 5px;
}

.tag__box {
	display: flex;
	flex-wrap: wrap;
	margin-top: 10px;
}

.tag__item {
	font-size: 14px;
	color: #AAA;
	border: 1px solid #AAA;
	margin-right: 10px;
	margin-bottom: 5px;
	border-radius: 15px;
	padding: 0 10px;
}

.tag__item::before {
	display: inline-block;
	content: "#";
}



/* forSellers */
.forSellers {
	position: relative;
}

.forSellers__upper {
	width: 100%;
	height: 350px;
	background-image: url("/img/index/bg_forsellers_upper.jpg");
	background-size: 2000px 350px; /* image size */
	animation: bg_upper 40s infinite linear;
}

@keyframes bg_upper {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 2000px 0;
  }
}

.forSellers__lower {
	width: 100%;
	height: 350px;
	background-image: url("/img/index/bg_forsellers_lower.jpg");
	background-size: 2000px 350px; /* image size */
	animation: bg_lower 35s infinite linear;
}

@keyframes bg_lower {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -2000px 0;
  }
}

.forSellers__overlay {
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0, .6);
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
	align-items: center;
}

.forSellers__h2 {
	color: #FFF;
}

.forSellers .h2__en {
	color: #FFF;
}

.forSellers__box {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	width: 620px;
	margin: 60px auto 0 auto;
}

.forSellers__btn {
	background-color: transparent;
	border: 1px solid #FFF;
}

.forSellers__btn:hover {
	background-color: #FFF;
	color: #eb9800;
}



/* news */
.news__h2 {
	margin-bottom: 60px;
}

.news__box {
	margin-bottom: 60px;
}

.news__item {
	width: 100%;
	border-bottom: 1px solid #DDD;
	padding-bottom: 20px;
	padding-left: 20px;
	margin-bottom: 20px;
	overflow-x: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.news__date {
	display: inline-block;
	width: 120px;
}

.news__category {
	display: inline-block;
	width: 120px;
	margin-right: 30px;
}

.news__category p {
	width: 100%;
	font-size: 14px;
	text-align: center;
	color: #FFF;
}

.news__category .information {
	background-color: #f3c84f;
	color: #FFF;
}

.news__category .property {
	background-color: #eb9800;
	color: #FFF;
}

.news__category .recruit {
	background-color: #de4800;
}

.news__category .other {
	background-color: #777;
	color: #FFF;
}

.news__h3 {
	display: inline-block;
	width: calc(100% - 250px);
}

.news__link:hover {
	text-decoration: underline;
}



/******************************************************

タブレットの設定 960px~1199pxの場合に適用 

*******************************************************/

@media screen and (max-width: 1199px){


	

	
	
}



/******************************************************

タブレットの設定 768px~959pxの場合に適用 

*******************************************************/

@media screen and (max-width: 959px){

/* property */
.property__box::before{
  width: 31%;
}

.property__box::after{
  width: 31%;
}

.property__item {
	width: 31%;
}
	
	

}



/******************************************************

SPの設定 767px以下の場合に適用 

*******************************************************/

@media screen and (max-width: 767px){

/* movie */
.mvIndex,
.mvIndex__box {
	height: 350px;
	min-height: 350px;
}
	
.mvIndex__content {
	margin-top: 50px;
}

.mvIndex__img {
	display: block;
	width: 60px;
	height: auto;
	margin: 0 auto 15px auto;
}

.mvIndex__h1 {
	font-size: 13px;
	font-weight: 600;
	color: #FFF;
	text-align: center;
	line-height: 1.8;
}
	
.mvIndex__h1 span.pc {
	display: none;
}

.mvIndex__h1 span.sp {
	display: inline;
}

.scrollDown {
	display: none;
}
	
	
	
/* property */
form > ul > li {
	display: block;
	border: none;
}

form > ul > li h4 {
	width: 100%;
	padding: 10px 0;
	font-size: 16px;
}

form > ul > li > ul {
	width: 100%;
	padding: 15px 0;
	margin: 0 auto;
}

form > ul > li > ul > li {
	width: 50%;
	margin-right: 0;
	font-size: 14px;
}

.sf-field-taxonomy-tag .sf-level-0 {
	width: 100%;
}

input[type="checkbox"] {
    cursor: pointer;
    padding-left: 35px;/*label手前にチェックボックス用の余白を開ける*/
}
	
input[type="checkbox"]::before {
	width: 20px;
	height: 20px;
	left: 3px;
}

form > ul > li > label {
	display: block;
	width: 100%;
	padding: 25px;
}

form > ul > li > label input {
	border: 1px solid #333;
	width: 100%;
	height: 30px;
	padding-left: 10px;
}

form > ul > li:last-child {
	padding: 25px 0;
	box-shadow: 0 1px 3px 0 #333;
}

form > ul > li > input {
	width: 300px;
	height: 50px;
	line-height: 48px;
	font-size: 16px;
}

.property__item {
	width: 47%;
	margin-bottom: 40px;
}

.property__thumbnail {
	margin-bottom: 15px;
}

.property__h3 {
	font-size: 16px;
	margin-bottom: 5px;
}

.propety__type {
	font-size: 10px;
	padding: 0 10px;
	border-radius: 20px;	
}

.property__price {
	margin-top: 10px;
}

.property__price > span {
	display: inline-block;
	font-size: 10px;
	border: 1px solid #333;
	padding: 0 5px;
	margin-right: 5px;
	vertical-align: 3px;
}

.property__price p {
	font-size: 20px;
}

.property__price p span {
	font-size: 14px;
	margin-left: 3px;
}

.tag__box {
	display: flex;
	flex-wrap: wrap;
	margin-top: 10px;
}

.tag__item {
	font-size: 10px;
	margin-right: 7px;
	margin-bottom: 3px;
	padding: 0 7px;
}

	
	
/* forsellers */
.forSellers__h2 {
	margin-bottom: 10px;
}
	
.forSellers__upper {
	height: 250px;
	background-size: 1785px 250px; /* image size */
	animation: bg_upper 40s infinite linear;
}

@keyframes bg_upper {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 1785px 0;
  }
}

.forSellers__lower {
	height: 250px;
	background-size: 1785px 250px; /* image size */
	animation: bg_lower 35s infinite linear;
}

@keyframes bg_lower {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -1785px 0;
  }
}

.forSellers__box {
	display: block;
	width: 100%;
	margin: 30px auto 0 auto;
}

.forSellers__item:nth-of-type(1) {
	width: 100%;
	margin-bottom: 20px;
}


	
	
/* news */
.news__h2 {
	margin-bottom: 30px;
}
	
.news__box {
	margin-bottom: 40px;
}
	
.news__item {
	padding-bottom: 15px;
	margin-bottom: 15px;
	padding-left: 0;
}

.news__date {
	width: 90px;
}

.news__category {
	width: 80px;
	margin-right: 0;
}

.news__category p {
	font-size: 12px;
	line-height: 1.6;
}

.news__h3 {
	display: block;
	width: 100%;
	margin-top: 5px;
}

.news__link {
	display: block;
	width: 100%;
	transition: .2s;
	overflow-x: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	margin-top: 5px;
}


	
	
	
}