@charset "UTF-8";
/*
  File Name   : top.css
  Description : Write top content styles
*/
#home .top-section-hl {
  display: block;
  width: 100%;
  color: var(--color_font);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.5em;
  text-align: center;
}
@media only screen and (max-width: 1024px) {
  #home .top-section-hl {
    font-size: 2em;
  }
}


/* h2
============================================================ */

#home h2{
	font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
	font-size: 2em;
}

@media only screen and (max-width: 600px) {
#home h2 {
    font-size: 1.6em;
}
}


/* more
============================================================ */

.recommendation .more,.navi-area .more{
	margin: 0 auto;
    width: 105px;
    /* color: #fff; */
    font-size: 14px;
    min-height: 38px;
    padding-left: 14px;
    margin-top: 75px;
}

@media only screen and (max-width: 500px) {
.recommendation .more, .navi-area .more {
    margin: 0 auto;
    width: 95px;
    /* color: #fff; */
    font-size: 12px;
    min-height: 32px;
    padding-left: 14px;
    margin-top: 50px;
}
}



/* KV
============================================================ */
.top-kv {
  position: relative;
  overflow: hidden;
}
.top-kv::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 50%;
  bottom: -1px;
  left: 0;

}
.top-kvInner {
  position: relative;
  max-width: 2500px;
  margin: 0 auto 0;
  overflow: hidden;
}




.top-kvInner img.imgCover {
	clip-path: polygon(0 23%, 50% 0, 100% 23%, 100% 100%, 0% 100%);
}


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

img.imgCover {
	width: 100%;
    height: 35em;
    object-fit: cover;
    font-family: 'object-fit: cover;';
    display: block;
    object-position: top center;
}
	
}


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

    img.imgCover {
        height: 26em;
}
}


.top-copy{
    position: absolute;
    top: 150px;
    margin: 0 auto;
    text-align: center;
    width: 100%;
	opacity: 0;
	-webkit-animation: key_lay-title 0.4s ease-in 0.3s forwards;
    animation: key_lay-title 0.4s ease-in 0.3s forwards;
}

@media only screen and (max-width: 1100px) {
.top-copy {
    top: 80px;
}
}

@media only screen and (max-width: 800px) {
.top-copy {
    top: 70px;
}
}

.top-copy img{
	width: 45%;
    text-align: center;
}

@media only screen and (max-width: 1100px) {
.top-copy img {
    width: 58%;
}
}

@media only screen and (max-width: 710px) {
	
	
.top-kvInner img.imgCover {
    clip-path: polygon(0 15%, 50% 0, 100% 15%, 100% 100%, 0% 100%);
}
	
.top-copy {
        top: 120px;
    }
	
.top-copy img {
        width: 80%;
    }
}


@media only screen and (max-width: 500px) {
	
.top-copy {
        top: 80px;
    }
	
.top-copy img {
        width: 90%;
    }
}


@keyframes key_lay-title{
	
0% {
    opacity: 0;
    -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
    clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
}
	
50% {
    opacity: 1;
}
	
100% {
    opacity: 1;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}
	
}



/* SECTION GROUP 01
============================================================ */
.top-sectionGroup__01 .top-sectionGroupInner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  width: 100%;
  padding-top: 100px;
  padding-bottom: 100px;
}
@media only screen and (max-width: 1024px) {
  .top-sectionGroup__01 .top-sectionGroupInner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-line-pack: center;
        align-content: center;
    gap: 60px 0;
    padding-top: 40px;
    padding-bottom: 80px;
  }
}
.top-sectionGroup__01 .top-news {
  width: 62%;
}
@media only screen and (max-width: 1024px) {
  .top-sectionGroup__01 .top-news {
    width: 100%;
  }
}
.top-sectionGroup__01 .top-linkBanners {
  width: 30%;
}
@media only screen and (max-width: 1024px) {
  .top-sectionGroup__01 .top-linkBanners {
    width: 100%;
  }
}
.top-sectionGroup__01.isFull .top-sectionGroupInner {
  display: block;
}
.top-sectionGroup__01.isFull .top-news,
.top-sectionGroup__01.isFull .top-linkBanners {
  width: 100%;
}

/* copy
============================================================ */

.copy{
	text-align: center;
	margin-bottom: 50px;
	font-size: 120%;
	font-weight: 700;
}

p.copy1{
    padding-bottom: 5px;
}

p.copy2{
    font-size: 110%;
	color: var(--color_dark);	
}

@media only screen and (max-width: 840px) {
	
.copy {
    font-weight: 700;
}
	
	
p.copy1 {
    padding-bottom: 15px;
}
	
p.copy2 {
    line-height: 130%;
}
	
span.kaigyo{
	display: block;
}
}

@media only screen and (max-width: 510px) {
.copy {
    margin-bottom: 30px;
    font-size: 100%;
}
}

@media only screen and (max-width: 430px) {
.copy {
    font-size: 90%;
}
}

@media only screen and (max-width: 390px) {
.copy {
    font-size: 85%;
}
}

/* NEWS
============================================================ */
.top-news .top-news-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  width: 100%;
  border-bottom: 1px solid var(--color_main);
  padding: 0 0 30px;
  margin: 0 0 10px;
}
.top-news .top-news-header .top-news-header-hl {
  margin: -0.25em 0 -0.25em;
}
@media print, screen and (min-width: 1025px) {
  .top-news .top-news-header .top-news-header-hl {
    text-align: left !important;
  }
}
@media only screen and (max-width: 1024px) {
  .top-news .top-news-header .top-news-header-hl {
    text-align: center;
  }
}
.top-news .com-news-list > ul > li:first-child {
  border-top: none;
}
.top-news .com-news-list > ul > li:last-child {
  border-bottom: none;
}
@media print, screen and (min-width: 1025px) {
  .top-news .com-news-list > .no-content {
    text-align: left;
  }
}
.top-news .top-news-moreBtn {
  max-width: 7em;
  min-height: 2.5em;
  font-size: 0.9rem;
  line-height: 1em;
}
@media only screen and (max-width: 1024px) {
  .top-news .top-news-moreBtn {
    font-size: 1rem;
    margin: 20px auto 0;
  }
}

/* recommendation
============================================================ */

.recommendation {
    padding-bottom: 90px;
}

.r-list{}


.r-list ul{
	display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 20px;
    width: 100%;
    margin: 0 auto;
    text-align: left;
    gap: 0 1em;
	padding: 100px 50px 10px 50px;
}

@media only screen and (max-width: 800px) {
.r-list ul {
    padding: 80px 50px 10px 50px;
}
}


@media only screen and (max-width: 700px) {
.r-list ul {
    padding: 80px 30px 10px 30px;
}
}

@media only screen and (max-width: 630px) {
.r-list ul {
    gap: 0 15px;
    padding: 60px 30px 10px 30px;
}
}

.r-list ul li{
	width: 48%;
    margin-bottom: 40px;
    transition: all 0.2s ease-in-out;
}

@media only screen and (max-width: 840px) {
.r-list ul li {
    font-size: 90%;
}
}

@media only screen and (max-width: 780px) {
.r-list ul li {
    width: 48%;
    margin-bottom: 25px;
}
}

@media only screen and (max-width: 500px) {
.r-list ul li {
        width: 100%;
        font-size: 100%;
	}}


.r-list ul li a {
	text-decoration: none;
	transition: all 0.2s ease-in-out;
}

.r-list ul li span.title {
    display: block;
    font-weight: bold;
    font-size: 110%;
    padding: 20px 0 10px 0;
}




@media only screen and (max-width: 530px) {
.r-list ul li span.title {
        font-size: 110%;
    }
}


@media only screen and (max-width: 500px) {
	
.r-list ul li span.title {
        font-size: 130%;
    }
	
}

@media only screen and (max-width: 430px) {
.r-list ul li span.title {
        font-size: 110%;
        line-height: 1.4em;
    }
}




.r-list ul li span.description{
	line-height: 1.7em;
    font-size: 80%;
    padding: 5px 0 0 0;
    display: inline;
	color: var(--color_font);
}


.r-list ul li span.description a {
	color: #4D4D4D;
}

.r-list ul li span.thumb {
	display: flex;
    text-align: center;
}


.r-list ul li span.thumb img {
    width: 100%;
    height: 12em;
    object-fit: cover;
    font-family: 'object-fit: cover;';
    display: block;
    object-position: top center;
    border: 1px solid #ccc;
    border-radius: 10px;
}

@media only screen and (max-width: 610px) {
.r-list ul li span.thumb img {
    height: 9em;
}
}



/*
@media only screen and (max-width: 460px) {
	
.r-list ul {
    gap: 0 .7em;
}
	
.r-list ul li {
        margin-bottom: 17px;
    }
	
.r-list ul li span.title {
        padding: 12px 10px 0 10px;
    }
	
.r-list ul li span.description {
    line-height: 1.5em;
    font-size: 75%;
    padding: 5px 10px 15px 10px;
    letter-spacing: 0;
}

}
*/



.recommendation  .top-inner {
	position: relative;
	background-color: var(--color_bg);
	border-radius: 10px;
    padding-bottom: 50px;
  }

@media only screen and (max-width: 700px) {
.recommendation .top-inner {
    padding-bottom: 40px;
}
}

.r-title{
    text-align: center;
    position: absolute;
    top: -50px;
    margin: 0 auto;
	width: 100%;
}


@media only screen and (max-width: 630px) {
.r-title {
    top: -40px;
}
}

.r-title img{
	width: 100%;
	max-width: 330px;
}

@media only screen and (max-width: 800px) {
.r-title img {
    max-width: 280px;
}
}


@media only screen and (max-width: 630px) {
.r-title img {
        max-width: 230px;
    }
}


.bound {
    animation: 4s 0s bound ease-in infinite;
}

@keyframes bound {
	79%,
	90%,
	97%,
	100% {
		-webkit-transform: translate(0);
		        transform: translate(0);
	}
	85% {
		-webkit-transform: translateY(-20px);
		        transform: translateY(-20px);
	}
	94% {
		-webkit-transform: translateY(-4px);
		        transform: translateY(-4px);
	}
	99% {
		-webkit-transform: translateY(-2px);
		        transform: translateY(-2px);
	}
}


/* topics
============================================================ */


.topics{
	background-color: var(--color_dark);
}

ul.topics-ul {
    padding: 80px 0;
	display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 20px;
    width: 100%;
    margin: 0 auto;
    text-align: left;
    gap: 2em 1em;
}


@media only screen and (max-width: 980px) {
ul.topics-ul {
    padding: 40px 0;
    display: block;
}
}


li.topics-ul-item {
    border-radius: 10px;
    background-color: #fff;
	width: 48%;
	padding: 30px;
}


@media only screen and (max-width: 980px) {
li.topics-ul-item {
    width: 100%;
	margin: 30px 0;
}
}


li.topics-ul-item a{
	text-decoration: none;
}


li.topics-ul-item span.title{
	display: block;
	font-family: 'Zen Maru Gothic', sans-serif;
	font-weight: 700;
	font-size: 130%;
    margin-bottom: 20px;
}


li.topics-ul-item span.title a{
	text-decoration: none;
}

li.topics-ul-item span.description {
	color: var(--color_font);
}

@media only screen and (max-width: 600px) {
	
li.topics-ul-item span.title {
    font-size: 120%;
    margin-bottom: 10px;
}
	
li.topics-ul-item span.description {
    font-size: 80%;
    line-height: 1.4em;
}
}


/* navi-area
============================================================ */


.navi-area{
	padding: 70px;
	text-align: center;
}

@media only screen and (max-width: 800px) {
.navi-area {
    padding: 70px 30px;
}
}

@media only screen and (max-width: 500px) {
.navi-area {
        padding: 50px 20px;
    }
}

.navi-area.rent{
	background-color: var(--color_sub);
	background-image: url(../images/common/chintai_bg.jpg);
    background-position: right top;
    background-repeat: no-repeat;
    background-size: cover;
}

.navi-area.buy{
	background-color: #fff;
	background-image: url(../images/common/baibai_bg.jpg);
    background-position: left top;
    background-repeat: no-repeat;
    background-size: cover;
}

.n-title{}

.n-title h2{
}

.n-title h2 span{
	color: var(--color_main);
}

.n-sub {
    padding: 20px 20px 40px 20px;
	font-weight: 500;
}

@media only screen and (max-width: 1100px) {
.n-sub span{
	display: block;
}

}

@media only screen and (max-width: 640px) {
.n-sub {
    padding: 20px 0px 40px 0px;
    font-size: 90%;
}
}


@media only screen and (max-width: 520px) {
.n-sub {
        font-size: 80%;
        letter-spacing: 1px;
    }
}

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

.n-sub {
        font-size: 60%;
        letter-spacing: 1px;
    }
}