@charset "UTF-8";

/* reset */
html,body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,textarea,p,blockquote,th,td,figure,figcaption{margin:0;padding:0}table{border-collapse:collapse;border-spacing:0}fieldset,img{border:0}address,caption,cite,code,dfn,em,strong,th,var{font-style:normal;font-weight:normal}ol,ul{list-style:none}caption,th{text-align:left}h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal}q:before,q:after{content:''}abbr,acronym{border:0;font-variant:normal}sup{vertical-align:text-top}sub{vertical-align:text-bottom}input,textarea,select{font-family:inherit;font-size:inherit;font-weight:inherit;font-size:100%}legend{color:#000}#yui3-css-stamp.cssreset{display:none}video{display: block; }

/* base */
html{
    font-size:62.5%;
}
*, *::before, *::after{
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    letter-spacing: 0.03em;
}
body{
    color:#222;
    width: 100%;
    font-family:"Helvetica Neue","游ゴシック",YuGothic,'Yu Gothic','ヒラギノ角ゴシック','Hiragino Sans','メイリオ', Meiryo,sans-serif;
    font-size:1.6rem;
    line-height:1.7;
    letter-spacing:0.5px;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: "palt";
}
img{
    max-width:100%;
    height:auto;
}
a{
    text-decoration: none;
    color:#222;
    -webkit-transition:all .4s ease;
    transition:all .4s ease;
}
input, button, textarea, select {
    -webkit-appearance: none;
    appearance: none;
}
.sp--only{
    display:none;
}
.text-center{
    text-align: center;
}
.flex{
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -ms-flex-wrap:wrap;
    flex-wrap:wrap;
}
.inner{
    max-width:1200px;
    padding:0 25px;
    margin:0 auto;
    position: relative;
}




/* header */
.header{
    position: relative;
    z-index:100;
    background: #fff;
}
.header__logo img{
    height:60px;
}
.header__logo a:hover{
    opacity:.7;
}
.header__inner{
    width: 100%;
    padding-left:5%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: 80px;
}
.header__nav li{
    width:120px;
    text-align: center;
}
.header__nav li a{
    display: block;
    padding: 29px 0;
    font-size: 1.5rem;
    line-height: 1.5;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}
.header__nav li a:hover{
    color:#004ea3;
}
.header__nav li a::after {
    position: absolute;
    -webkit-transition: .3s ease;
    transition: .3s ease;
    content: '';
    width: 0;
    left: 50%;
    bottom: 0;
    height: 3px;
    background:#004ea3;
    right: 0;
    left: auto;
}
.header__nav li a:hover::after {
    width: 100%;
    left: 0;
}
.header__btn{
    background:-moz-linear-gradient(to left, #004ea3 0%,#006bfe 100%);
    background:-webkit-linear-gradient(to left, #004ea3 0%,#006bfe 100%);
    background: linear-gradient(to left, #004ea3 0%,#006bfe 100%);
    height: 80px;
    position: relative;
    overflow: hidden;
    z-index:1;
}
.header__btn a{
    display: block;
    min-width: 170px;
    padding:29px 0;
    text-align: center;
    color: #fff;
    font-size: 1.5rem;
    line-height: 1.5;
}
.header__btn:before{
    content: "";
    z-index:-1;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: -100%;
    background-color:#004ea3;
    -webkit-transition:.4s ease;
    transition:.4s ease;
}
.header__btn:hover:before{
    left: 0;
}
#toggle {
    display: none;
}
.toggleWrap {
    background: none;
    position: static;
    padding: 0;
}
.animation {
    -webkit-transition: none;
    transition: none;
}
.hide {
    opacity: 1;
    visibility: visible;
}


/* footer */
.footer{
    background: #000;
    color: #fff;
    font-size:1.3rem;
    position: relative;
}
.footer__inner{
    height:70px;
    width:100%;
    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;
    max-width:1200px;
    padding: 0 25px;
    margin:0 auto;
}
#backtotop{
    position: absolute;
    right:20px;
    top:-50px;
    width:50px;
    height:50px;
    background:#004ea3;
    overflow: hidden;
    z-index:1;
}
#backtotop::before{
    content: "";
    z-index:2;
    position: absolute;
    width: 100%;
    height: 100%;
    top:-100%;
    left:0;
    background-color:#000;
    -webkit-transition:.4s ease;
    transition:.4s ease;
}
#backtotop:hover::before{
    top: 0;
}
#backtotop::after{
    content: '';
    position: absolute;
    top:7px;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 12px;
    height: 12px;
    display: block;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    z-index:3;
}
.footer--nav__list li:last-of-type{
    margin:0 0 0 30px;
}
.footer--nav__list li a {
    display: block;
    position: relative;
    color: #fff;
    padding:0 0 4px 22px;
}
.footer--nav__list li a::before {
    position: absolute;
    content: '';
    width: 7px;
    height: 7px;
    border-top: solid 1px #fff;
    border-right: solid 1px #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 50%;
    left: 0;
    margin-top: -6px;
}
.footer--nav__list li a::after {
    content: '';
    position: absolute;
    width: 0;
    left:0;
    bottom: 0;
    -webkit-transition:.4s ease;
    transition:.4s ease;
    border-bottom:1px solid #999;
    display: block;
}
.footer--nav__list li a:hover{
    color:#999;
}
.footer--nav__list li a:hover::before{
    border-top: solid 2px #999;
    border-right: solid 2px #999;
}
.footer--nav__list li a:hover:after {
    width: 100%;
}


/* top--mv */
.top--mv{
    margin:0 0 200px;
    width: 100%;
    height:calc(100vh - 80px);
    position: relative;
    background-image:url(../image/overlay-mv.png);
    background-repeat:repeat;
    overflow: hidden;
}
#bg-video{
    position:absolute;
    right:0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -100;
    background: url('../video/top-mv.jpg') no-repeat;
    background-size: cover;
}
.top--mv__title{
    position: absolute;
    top: 60%;
    -webkit-transform: translateY(-60%);
    transform: translateY(-60%);
    left:5%;
    font-size:3.2rem;
    padding:10px;
    line-height: 1.4;
    color: #484848;
    font-weight:500;
    letter-spacing: 0.1em;
    background: rgba(255,255,255,0.9);
}



/* top--content */
.top--content{
    position: relative;
}
.top--content .sec--head{
    letter-spacing: 0.05em;
    font-weight:bold;
}
.top--content .sec--bigen{
    position: absolute;
    font-weight:bold;
    font-size:10rem;
    line-height:1;
    color:rgba(240,240,240,.7);
    letter-spacing:7px;
    z-index:0;
}


/* animation */
.show{
    opacity: 0;
    -webkit-transition:cubic-bezier(0.39, 0.575, 0.565, 1);
    transition:cubic-bezier(0.39, 0.575, 0.565, 1);
}
.show.is-active{
    opacity: 1;
    -webkit-transition-delay:.2s;
    transition-delay:.2s;
    -webkit-transition-duration:.7s;
    transition-duration:.7s;
}
.animation__image,.animation__bg{
    position: relative;
    display: block;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    position: relative;
    -webkit-transform-origin: left top;
    transform-origin: left top;
    -webkit-transition:cubic-bezier(0.39, 0.575, 0.565, 1);
    transition:cubic-bezier(0.39, 0.575, 0.565, 1);
    -webkit-transition-duration:.6s;
    transition-duration:.6s;
}
.animation__image::after,.animation__bg::after{
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    background: #1853de;
    z-index: 1;
    -webkit-transition:cubic-bezier(0.39, 0.575, 0.565, 1);
    transition:cubic-bezier(0.39, 0.575, 0.565, 1);
    -webkit-transition-duration:.6s;
    transition-duration:.6s;
}
.animation__bg::after{
    -webkit-transition-delay:.5s;
    transition-delay:.5s;
}
.animation__image::after{
    -webkit-transition-delay:.65s;
    transition-delay:.65s;
}
.animation__image.is-active,.animation__bg.is-active{
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}
.animation__image.is-active::after,.animation__bg.is-active::after{
    width: 0;
}



/* top--company */
.top--company .sec--head{
    margin:0 0 20px;
    font-size:2.0rem;
}
.top--company .sec--bigen{
    left:470px;
    top: -60px;
}
.top--company .about--image{
    position: absolute;
    top: 13%;
    right: 5%;
    max-width:600px;
    z-index:3;
}
.top--company .about--image img{
    display: block;
}
.top--company .about--body{
    position: relative;
    font-size: 1.5rem;
    margin:6% 0 0 0;
    width: 35%;
    z-index:2;
}
.top--company .about--body .text{
    line-height:2.4;
    text-align: justify;
}
.top--company .bg{
    position: absolute;
    top:-18%;
    right: 50%;
    width: 50%;
    height:450px;
    background-color:#33a1f5;
    overflow: hidden;
}
.button{
    display: inline-block;
    padding:10px 50px;
    margin: 20px 0 0;
    position: relative;
    font-size:1.4rem;
    font-style: italic;
    letter-spacing: 0.2em;
    border: 2px solid #222;
    overflow: hidden;
}
.button:before{
    content: "";
    z-index: -1;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: -100%;
    background-color:#000;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.button:hover{
    color: #ecf0f1;
}
.button:hover:before{
    left: 0;
}


/* top--property */
.top--apartment{
    margin:400px 0 0;
}
.top--tenant{
    margin:180px 0 0;
}
.top--property .bg{
    position: absolute;
    width: 50%;
    height:240px;
    overflow: hidden;
    z-index: -2;
}
.top--apartment .bg{
    top: -4%;
    left: 50%;
    background-color:#33a1f5;
}
.top--tenant .bg{
    top: -4%;
    right: 50%;
    background-color:#33a1f5;
}
.top--property .sec--head{
    margin:0 0 60px;
    font-size:3.0rem;
}
.top--apartment .sec--bigen{
    right: 280px;
    top: -40px;
}
.top--tenant .sec--bigen{
    left: 490px;
    top: -50px;
}
.top--property.reverse .sec--head{
    text-align: right;
}
.property--card{
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin:0 0 60px;
}
.top--property.reverse .property--card{
    -webkit-box-direction:reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}
.property--card:last-of-type{
    margin:0;
}
.property--card .about--image{
    width:55%;
    position: relative;
}
.property--card .about--body{
    width:38%;
}
.property--card h3{
    font-size:1.8rem;
    font-weight:bold;
    margin:0 0 12px;
}
.property--card dl{
    border-bottom: 1px dotted #bdc8ca;
    padding:10px 0;
    display: table;
    width:100%;
    font-size:1.5rem;
}
.property--card dt,.property--card dd{
    display: table-cell;
    vertical-align: middle;
}
.property--card dt{
    width:20%;
    background:#e0ffff;
    padding: 4px 4px 4px 10px;
}
.property--card dd{
    padding-left:30px;
}
.top--property .swiper-parent2 {
    position: relative;
}
.top--property .swiper2.swiper-container{
    padding-bottom: 50px;
}
.property--slider li img{
    display: block;
}
.swiper2.swiper-container .swiper-pagination-bullet {
    width: 16px;
    height: 16px;
    background:#888;
    color: #fff;
    font-size: 12px;
    line-height: 16px;
}
.swiper2.swiper-container .swiper-pagination-bullet-active {
    background-color:#004ea3;
}





/* top--info */
.top--info{
    margin:180px 0 0;
    padding:130px 0 100px;
    background:#33a1f5;
}
.top--info .sec--head{
    font-size:3.0rem;
    z-index:10;
    position: absolute;
    top: -190px;
    left: 0;
    right: 0;
    margin:auto;
}
.top--info .sec--bigen{
    right: 0;
    top: -140px;
}
.top--info .swiper-parent {
    position: relative;
}
.top--info .swiper-container {
    padding-bottom: 50px;
}
.top--info .info__list li a{
    display: block;
}
.top--info .info--image{
    overflow: hidden;
    position: relative;
    display: block;
}
.top--info .info--image__inner{
    width: 100%;
    padding-top:56.25%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.top--info .info__list li .info--body{
    padding:16px 15px 20px;
    background: #fff;
}
.top--info .info__list li time{
    font-size:1.4rem
}
.top--info .info__list li .title{
    font-size:1.4rem;
}
.top--info .info__list li .more{
    height: 40px;
    line-height: 40px;
    padding:0 10px;
    background:#222;
    color: #fff;
    -webkit-transition: 0.4s ease;
    transition: 0.4s ease;
    font-size:1.4rem;
    font-style: italic;
    text-align: right;
    letter-spacing: 0.2em;
    position: relative;
    overflow: hidden;
    z-index:2;
}
.top--info .info__list li .more::before{
    content: "";
    z-index: -1;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: -100%;
    background:#031264;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.top--info .info__list li a:hover .more::before{
    left: 0;
}


/* sec--contact */
.sec--contact{
    padding: 70px 0 140px;
    background-image: url(../image/sec--contact.jpg);
    background-repeat:no-repeat;
    background-size: cover;
    background-position:center;
    color: #fff;
}
.sec--contact .sec--head{
    margin:0 0 20px;
    font-size:3.0rem;
}
.contact__list{
    -ms-flex-pack:distribute;
    justify-content:space-around;
    margin:60px 0 0;
}
.contact__list li{
    width:40%;
    text-align: center;
    padding: 15px;
    border-radius:80px;
    height:90px;
    -webkit-transition:.4s ease;
    transition:.4s ease;
}
.contact__list li.tel{
    background:#fff;
}
.contact__list li .title{
    font-size: 1.4rem;
    font-weight: bold;
    letter-spacing:2px;
    color:#000;
    line-height:1.6;
}
.contact__list li .phone{
    font-size: 3.1rem;
    letter-spacing:2px;
    font-weight:bold;
    color:#000;
    display: block;
}
.contact__list li .phone span{
    color:#000;
    margin:0 3px;
}
.contact__list li.mail{
    background:#ffc400;
}
.contact__list li .mail__link{
    display: block;
}
.contact__list li.mail span{
    display: block;
    font-size:2.7rem;
    font-weight:bold;
}
.contact__list li:hover{
    box-shadow:0 0 20px rgba(0,0,0,.2);
    -webkit-transform: scale(1.02);
    transform: scale(1.02);
}


/* other--mv */
.other--mv{
    position: relative;
    width: 100%;
    height:350px;
    background-size: cover;
    background-position:center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack:center;
    -ms-flex-pack:center;
    justify-content: center;
    color: #fff;
}
.other--mv .mv--title{
    font-size:5.2rem;
    font-weight:bold;
    letter-spacing: 0.1em;
    text-align: center;
}
.other--mv .mv--title .ja{
    font-size:1.6rem;
    display: block;
    text-align: center;
    letter-spacing: 0.1em;
}




/* privacy */
.privacy.other--mv{
    background-image: url(../image/privacy-bg.jpg);
}
.sec--privacy{
    margin:80px 0;
}
.sec--privacy .inner{
    max-width:800px;
}
.sec--privacy p{
    margin:20px 0 15px;
}
.sec--privacy .lead--text{
    border-bottom: 1px solid #d7d7d7;
    padding:0 0 50px;
}
.sec--privacy .card{
    padding:40px 0 0;
}
.sec--privacy h2{
    font-size:1.8rem;
    font-weight:bold;
    position: relative;
    padding:0 0 0 20px;
    line-height:2;
}
.sec--privacy h2::before{
    content: "";
    position: absolute;
    top: 3px;
    left: 0;
    display: inline-block;
    background:#1f5ab2;
    height:30px;
    width:6px;
}
.sec--privacy ul{
    list-style-type:disc;
    padding:0 0 0 20px;
}
.mail--colored{
    color:#0044CC;
    text-decoration: underline;
}
.mail--colored:hover{
    text-decoration: none;
}



/* company */
.company.other--mv{
    background-image: url(../image/company-bg.jpg);
}
.sec--company{
    margin:80px 0;
}
.sec--company .inner{
    max-width:1000px;
}
.c--message .lead__head{
    font-size:2.8rem;
    text-align: center;
    margin:0 0 30px;
}
.c--message p{
    line-height:2.2;
    text-align: justify;
}
.c--message p:not(:first-of-type){
    margin:16px 0 0;
}
.c--message .right {
    line-height:2;
    text-align: right;
}
.sec--company .sec--head{
    font-size:3.0rem;
    margin:0 0 40px;
    position: relative;
    display: inline-block;
}
.sec--company .sec--head::after {
    font-size:2.4rem;
    color: #5397fc;
    letter-spacing: 0.15em;
    position: absolute;
    bottom: 0;
    right: -220px;
}
.c--outline .sec--head::after {
    content: 'Outline';
}
.c--history .sec--head::after{
    content: 'History';
}
.outline--table{
    width:100%;
}
.outline--table tr:first-of-type{
    border-top: 1px solid #e5e5e5;
}
.outline--table th,.outline--table td{
    padding: 20px 30px;
    position: relative;
    vertical-align:top;
    font-size:1.4rem;
    border-bottom: 1px solid #e5e5e5;
}
.outline--table th{
    width: 200px;
    background:#f3f6fc;
}



/* sitemap */
.sitemap.other--mv{
    background-image: url(../image/sitemap-mv.jpg);
}
.sec--sitemap{
    background:#f3f6fc;
    padding:80px 0;
}
.sec--sitemap .inner{
    max-width:800px;
}
.sitemap--card{
    margin:0 0 20px;
}
.sitemap--card a{
    display: block;
    background: #fff;
    z-index:2;
}
.sitemap--card a:hover{
    color:#0044CC;
    text-decoration: underline;
}
.sitemap--card a .title {
    padding:24px;
    text-align: left;
    font-size:1.5rem;
    font-weight:bold;
}


/* error */
.error.other--mv{
    background-image: url(../image/error-bg.jpg);
}
.sec--error .inner{
    max-width:950px;
    margin:70px auto;
}
.sec--error .head{
    font-size:3.4rem;
    font-weight: bold;
    margin:0 0 40px;
}
.sec--error .text{
    margin:0 auto 60px;
    max-width:550px;
}
.sec--error ul{
    -webkit-box-pack:center;
    -ms-flex-pack:center;
    justify-content:center;
}
.sec--error ul li:first-of-type{
    margin:0 30px 0 0;
}
.sec--error a{
    display: block;
    width: 300px;
    margin:0 auto;
    padding:15px 20px;
    font-size:1.5rem;
    text-align: center;
    letter-spacing: .075em;
    font-weight:bold;
    border:2px solid #222;
    background:#fff;
    color: #222;
}
.sec--error a:hover{
    background:#222;
    color: #fff;
    border:2px solid #222;
}


/* single */
.single.other--mv{
    background-image: url(../image/single-bg.jpg);
}
.sec--single {
    margin:80px 0 100px;
}
.sec--single .single-inner{
    max-width:800px;
    margin:0 auto;
    border: 3px solid #eee;
    padding:60px 80px;
}
.sec--single time{
    background:#0583C9;
    color:#fff;
    font-weight: 700;
    padding:3px;
    font-size:1.4rem;
    letter-spacing: .06em;
}
.sec--single .head{
    border-bottom: 1px solid #eee;
    font-size: 2.4rem;
    font-weight: 700;
    margin: 0 0 20px;
    padding: 0 0 10px;
}
.sec--single .content p{
    margin:0 0 1.5em;
}
.sec--single .content p:last-of-type{
    margin:0;
}

/* prev next */
.post-btn{
    margin:40px 0 0;
}
.post-btn__inner{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}




/* contact */
.contact.other--mv{
    background-image: url(../image/contact-bg.jpg);
}
.page--contact{
    margin:80px 0;
}
.page--contact .inner{
    max-width:850px;
    padding:0;
}
.page--contact .text {
    font-size:1.5rem;
    text-align: center;
    margin:0 0 40px;
    padding:0 20px;
}
.page--contact .link{
    color:#0044CC;
    text-decoration: underline;
}
.page--contact .link:hover{
    opacity:.8;
    text-decoration:none;
}
.table-res-form {
    width: 100%;
}
.table-res-form tr:nth-child(2n+1) {
    background: #eee;
}
.table-res-form th, .table-res-form td {
    padding:1.5rem;
    padding:20px;
    vertical-align: middle;
}
.table-res-form th {
    position: relative;
    padding: 0 60px 0 0;
    width: 30%;
    text-align: right;
}
.table-res-form .requied {
    position: absolute;
    right: 10px;
    top:34px;
    display: inline-block;
    padding:3px 3px 2px;
    font-size:1.0rem;
    font-weight:bold;
    color: #fff;
    background:#f00;
    border-radius:3px;
}
.table-res-form input[type="text"], input[type="email"], textarea {
    border: 1px #eee solid;
    padding: 15px;
    width: 100%;
    outline: none;
    -webkit-transition: all .3s;
    transition: all .3s;
}
.table-res-form input[type="text"]:focus,.table-res-form input[type="email"]:focus,textarea:focus {
    box-shadow: 0 0 2px #87cefa;
    border: 1px solid #87cefa;
}
.table-res-form input[type="submit"] {
    padding:8px 50px;
    cursor: pointer;
    border:none;
    background: #4C9ED9;
    color: #fff;
    font-weight: bold;
}
.table-res-form input[type="submit"]:hover {
    opacity:.8;
}
.grecaptcha-badge{
	margin:50px auto 0;
}


/* contact-thanks */
.contact-thanks.other--mv{
    background-image: url(../image/contact-thanks-bg.jpg);
}
.page--contact.thanks .page-head{
    font-size:2.8rem;
    text-align: center;
    margin:0 0 30px;
}
.page--contact.thanks .text{
    max-width:500px;
    margin:0 auto 60px;
    font-size:1.5rem;
    line-height:2.1;
}
.page--contact.thanks .button-outer{
    text-align: center;
}
.page--contact.thanks .button{
    margin:0;
}




@media screen and (max-width:992px){
    /* header */
    #toggle {
        position: absolute;
        top:0;
        right:0;
        z-index: 10;
        color: #fff;
        background: #1f5ab2;
        width:160px;
        height:80px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack:center;
        -ms-flex-pack:center;
        justify-content: center;
    }
    .trigger,
    .trigger span {
        display: inline-block;
        -webkit-transition: all .4s;
        transition: all .4s;
    }
    .trigger {
        position: relative;
        width: 28px;
        height: 19px;
        margin:0 10px 0 0;
    }
    .trigger span {
        position: absolute;
        left: 0;
        width: 100%;
        height: 3px;
        background-color: #FFF;
        border-radius: 4px;
    }
    .trigger span:nth-of-type(1) {
        top: 0;
    }
    .trigger span:nth-of-type(2) {
        top: 8px;
    }
    .trigger span:nth-of-type(2)::after {
        position: absolute;
        top: 0;
        left: 0;
        content: '';
        width: 100%;
        height: 3px;
        background-color: #fff;
        border-radius: 4px;
        -webkit-transition: all .4s;
        transition: all .4s;
    }
    .trigger span:nth-of-type(3) {
        bottom: 0;
    }
    .trigger.active span:nth-of-type(1) {
        -webkit-transform: translateY(8px) scale(0);
        transform: translateY(8px) scale(0);
    }
    .trigger.active span:nth-of-type(2) {
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }
    .trigger.active span:nth-of-type(2)::after {
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
    }
    .trigger.active span:nth-of-type(3) {
        -webkit-transform: translateY(-8px) scale(0);
        transform: translateY(-8px) scale(0);
    }
    .toggle--text{
        font-size:1.3rem;
        font-weight: bold;
    }
    .toggleWrap {
        background: rgba(55,55,55,.9);
        padding:60px 15px 10px 15px;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
    .navItem {
        display: block;
        padding: 15px 0;
    }
    .hide {
        opacity: 0;
        visibility: hidden;
        overflow: hidden;
    }
    .animation {
        -webkit-transition-property: opacity, visibility;
        transition-property: opacity, visibility;
        -webkit-transition-duration: .3s;
        transition-duration: .3s;
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in;
    }
    .no-scroll {
        overflow: hidden;
    }
    .mainNav{
        width:100%;
    }
    .header__nav li{
        width:100%;
    }
    .header__nav li a{
        color: #fff;
        padding:20px 0;
    }
    .header__nav li a:hover{
        color: #fff;
    }
    .header__btn{
        width:100%;
    }
    .header__nav li a::after{
        content: none;
    }
    .is-scroll{
        position: fixed;
        box-shadow: rgba(0,0,0,0.1) 0px 0px 3px;
        top: 0;
        left: 0;
        width: 100%;
        -webkit-transition: all 0.3s;
        transition: all 0.3s;
    }

    /* top--company */
    .top--company .bg{
        height:300px;
        width:75%;
        right: 25%;
        top: -100px;
    }
    .top--company .about--image{
        position: relative;
        right:0;
        margin: 0 auto;
    }
    .top--company .about--body {
        width:100%;
        max-width: 600px;
        margin:10% auto 0;
        text-align: center;
    }
    .top--content .sec--bigen{
        font-size:5rem;
    }
    .top--company .sec--bigen {
        left:0;
    }
    .top--tenant .sec--bigen {
        left:0;
    }

}/*--  992  --*/


@media screen and (max-width:768px) {
    .pc--only{
        display: none;
    }
    .sp--only {
        display:block;
    }

    /* header */
    .header__logo img {
        height: 45px;
    }
    .header__inner{
        height:60px;
    }
    #toggle{
        height:60px;
        width:110px;
    }
    .header__nav li a:hover::after{
        content: none;
    }


    /* footer */
    .footer__inner{
        -webkit-box-direction:reverse;
        -ms-flex-direction:column-reverse;
        flex-direction:column-reverse;
        padding:30px 0 40px;
        height:auto;
    }
    .footer--nav__list{
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .copyright{
        display: block;
        text-align: center;
        margin:20px 0 0;
    }
    #backtotop{
        display: none;
    }


    /* top--mv */
    .top--mv{
        height: calc(100vh - 60px);
    }
    .top--mv__title{
        font-size:2.0rem;
    }




    /* top--property */
    .top--apartment{
        margin:200px 0 0;
    }
    .top--property .sec--head{
        margin:0 0 20px;
    }
    .top--apartment .sec--bigen {
        right: 0;
    }
    .top--property .bg{
        width:75%;
        height:300px;
    }
    .top--apartment .bg {
        left:25%;
        top: -2%;
    }
    .top--tenant .bg{
        right:25%;
    }
    .top--property.reverse .property--card{
        -webkit-box-direction:normal;
        -ms-flex-direction: column;
        flex-direction:column;
    }
    .property--card .about--image{
        width:100%;
        margin:0 0 20px;
    }
    .property--card .about--body{
        width:100%;
    }

    /* top--info */
    .top--info{
        margin:100px 0 0;
        padding:100px 0 50px;
    }
    .top--info .sec--head {
        top: -130px;
    }
    .top--info .sec--bigen {
        top: -80px;
    }
    .top--info .info__list{
        margin:0;
    }

    /* sec--contact */
    .sec--contact{
        padding:40px 0;
    }
    .contact__list{
        -webkit-box-direction:normal;
        -ms-flex-direction: column;
        flex-direction:column;
        margin:30px 0 60px;
    }
    .contact__list li{
        width:100%;
    }
    .contact__list li:first-of-type{
        margin:0 0 30px;
    }
    .contact__list li .phone {
        font-size:2.8rem;
    }
    .contact__list li.mail span{
        font-size:2.4rem;
        margin: 5px 0 0;
    }

    /* other--mv */
    .other--mv{
        height:200px;
    }
    .other--mv .mv--title{
        font-size:2.4rem;
    }

    /* company */
    .outline--table th, .outline--table td{
        display: block;
    }
    .outline--table th{
        width:100%;
    }

    /* privacy */
    .sec--privacy .inner{
    }
    .sec--privacy .lead--text{
        margin:0;
    }

    /* sitemap */
    .sitemap--card a .title{
        text-align: center;
    }

    /* error */
    .sec--error .inner{
        margin:40px auto;
    }
    .sec--error .head{
        font-size:2.1rem;
        margin:0 0 20px;
    }
    .sec--error .text{
        margin:0 0 30px;
    }
    .sec--error ul{
        -webkit-box-direction:normal;
        -ms-flex-direction: column;
        flex-direction:column;
    }
    .sec--error ul li:first-of-type{
        margin:0 0 20px;
    }
    .sec--error a{
        width:100%;
    }

    /* page--contact */
    .page--contact .text {
        text-align:left;
    }
    .table-res-form th, .table-res-form td {
        width: 100%;
        display: block;
    }
    .table-res-form th {
        text-align: left;
        padding:15px 20px 0;
    }
    .table-res-form td{
        padding:15px 20px 20px;
    }
    .table-res-form td:last-of-type{
        text-align: center;
        padding:15px 20px;
    }
    .table-res-form .empty {
        display: none;
    }
    .table-res-form .requied {
        position: static;
    }



    /* page--contact.thanks */
    .page--contact.thanks .page-head{
        font-size:2.0rem;
        font-weight:bold;
    }
    .page--contact.thanks .inner{
        padding:0 25px;
    }


    /* single */
    .sec--single{
        padding:0 25px;
    }
    .sec--single .single-inner{
        padding:20px 15px;
    }
    .sec--single .head {
        font-size: 2.0rem;
    }

    /* prev next */
    .post-btn__inner{
        -webkit-box-direction:normal;
        -ms-flex-direction: column;
        flex-direction:column;
    }
    .paging-btn{
        text-align: center;
    }



}/*--  768  --*/
