@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;500;600;700&display=swap');


/* ━━━━━━━━━━━━━━━━

 ■初期化

━━━━━━━━━━━━━━━━ */

body {
    font-family: 'Noto Sans Japanese', sans-serif;
}



/* ━━━━━━━━━━━━━━━━

 ■ユーティリティ

━━━━━━━━━━━━━━━━ */

.u-mr-5 {
    margin-right: 5px;
}

.u-mr-10 {
    margin-right: 10px;
}

.u-mb-0 {
    margin-bottom: 0 !important;
}

.u-mb-5 {
    margin-bottom: 5px;
}

.u-mb-10 {
    margin-bottom: 10px !important;
}

.u-mb-20 {
    margin-bottom: 20px !important;
}

.u-mb-30 {
    margin-bottom: 30px;
}

.u-mb-50 {
    margin-bottom: 50px;
}

.u-text-center {
    text-align: center;
}

@media screen and (min-width: 768px) {
  .u-hidden-pc {
      display: none;
  }
}

@media screen and (max-width: 767px) {
  .u-hidden-sp {
      display: none;
  }
}



/* ━━━━━━━━━━━━━━━━

 ■コンポーネント

━━━━━━━━━━━━━━━━ */


/*=================================

* コンテナ

=================================*/

.c-block {
    margin-bottom: 50px;
    padding: 30px 0;
}

@media screen and (min-width:768px) {
    .c-block {
        width: 980px;
        margin: 0 auto 100px auto;
    }
}

/*
    ボタン
================================*/
.c-btn {
    width: 90%;
    display: block;
    text-decoration: none;
    text-align: center;
    padding: 10px 5px;
    background-color: #767171;
    border-radius: 30px;
    margin: 0 auto;
}

.c-btn,
.c-btn:link,
.c-btn:visited {
    color: #FFF;
    text-decoration: none;
}

.c-btn:hover {
    opacity: 0.8;
}

@media screen and (min-width:768px) {
    .c-btn {
        width: 45%;
        font-size: 17px;
        padding: 8px 10px 10px 10px;
    }
}

/*
    H2タイトル
================================*/
h2.tit {
    width: 90%;
    text-align: center;
    color: #000;
    font-size: 1.4em;
    font-weight: bold;
    margin: 0 auto 30px auto;
    padding: 0;
    background-color: #FFF !important;
}

/* PC */
@media screen and (min-width:768px) {
    h2.tit {
        width: 100%;
        font-size: 1.7em;
    }
}

/*
    H2タイトル（明朝）
================================*/
h2.tit__min {
    width: 90%;
    margin: 0 auto 20px auto;
    font-size: 27px;
    font-weight: 600;
    letter-spacing: 2px;
    line-height: 35px;
    font-family: "Noto Serif JP", serif;
    color: #0b3c5d;
}

/* PC */
@media screen and (min-width:768px) {
    h2.tit__min {
        width: 100%;
        margin: 0 auto 30px auto;
        font-size: 50px;
        letter-spacing: 5px;
        line-height: 65px;
    }
}

/*
    H3タイトル
================================*/

/* スマホ*/
@media screen and (max-width:767px) {
    h3.tit {
        margin: 0 0 15px 0;
        padding: 6px 10px;
        background: #ff1616;
        color: #FFF;
        text-shadow: none;
        font-size: 1em;
        font-weight: bold;
        border-top: none;
        border-bottom: none;
    }
}

/* PC */
@media screen and (min-width:768px) {
    h3.tit {
        font-size: 1.3em;
        margin: 0 0 20px 0;
    }
}



/* ━━━━━━━━━━━━━━━━

 ■レイアウト

━━━━━━━━━━━━━━━━ */


/*=================================

* メインビジュアル

=================================*/

.l-jumbotron {
    height: 200px;
    margin: 0 0 40px 0;
    background-repeat: no-repeat;
    background-position: 50% 100%;
    background-size: cover;
    background-image: url(../img/jumbotron__image.jpg);
}

.l-jumbotron__inner {
    width: 95%;
    position: relative;
    margin: auto;
}

.l-jumbotron__inner h2 {
    position: absolute;
    left: 0;
    top: 15px;
    line-height: 1.3;
    font-weight: 800;
    font-size: 35px;
}

.l-jumbotron__inner h3 {
    position: absolute;
    left: 0;
    top: 65px;
    line-height: 1.2;
    font-weight: 600;
    font-size: 16px;
}


/* PC */
@media screen and (min-width:768px) {
    .l-jumbotron {
        height: 500px;
    }

    .l-jumbotron__inner {
        width: 980px;
    }
    
    .l-jumbotron__inner h2 {
        top: 30px;
        font-size: 75px;
        line-height: 1.3;
    }
    
    .l-jumbotron__inner h3 {         
        top: 130px;
        font-size: 45px;
        line-height: 1.2;
    }
}





/* ━━━━━━━━━━━━━━━━

 ■プロジェクト

━━━━━━━━━━━━━━━━ */


/*=================================

* sub-visual

=================================*/
.p-sub-visual {
    position: relative;
    margin: 0 auto 30px auto;
}

.p-sub-visual::before {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    content: '';
    background-color: rgba(255, 255, 255, 0.7);
}

.p-sub-visual img {
    max-width: 100%;
}

.p-sub-visual h3 {
    position: absolute;
    top: 10px;
    left: 0;
    display: inline-block;
    padding-left: 16px;
    color: #333;
    font-size: 18px;
    font-weight: 900;
}

.p-sub-visual h2 {
    position: absolute;
    top: 35px;
    left: 0;
    display: inline-block;
    padding-left: 16px;
    color: #333;
    line-height: 1.2;
    font-size: 25px;
    font-weight: 900;
}

/* PC */
@media screen and (min-width:768px) {
    .p-sub-visual {
        margin: 0 auto 50px auto;
    }
    
    .p-sub-visual h3 {
        padding-left: 20px;
        top: 40px;
        font-size: 35px;
    }
    
    .p-sub-visual h2 {
        padding-left: 20px;
        top: 85px;
        font-size: 50px;
        border-bottom: 2px solid #333;
        line-height: 1.5;
    }
}


/*=================================

* トップ

=================================*/

/*
  選ばれる理由
================================*/
.p-point {
    padding-top: 15px;
}

.p-point__block {
    width: 90%;
    margin: 0 auto;
}

.p-point__list {
    position: relative;
    width: 100%;
    margin-bottom: 50px;
    border: solid 1px #ccc;
}

.p-point__list:last-child {
    margin-bottom: 10px;
}

.p-point__list-cover {
    position: absolute;
    top: -14px;
    left: 12px;
    width: 80px;
    padding: 20px 0;
    text-align: center;
    color: #fff;
    background-color: #ff1616;
}

.p-point__block-no {
    font-size: 1.7rem;
}

.p-point__list h2 {
    min-height: 110px;
    margin-bottom: 0;
    padding: 12px 12px 12px 104px;
    font-size: 1.6rem;
    font-weight: bold;
    border-bottom: solid 1px #ccc;
}

.p-point__list-text {
    padding: 20px;
}

/* PC */
@media screen and (min-width:768px) {
    .p-point__block {
        width: 100%;
        display: flex;
        justify-content: space-between;
        margin-bottom: 30px;
    }
    
    .p-point__list {
        width: 32%;
        margin-bottom: 0;
    }
    .p-point__list:last-child {
        margin-bottom: 0;
    }
}

/*
　スタッフ紹介
=================================*/
.p-staff-list {
    width: 90%;
    margin: 0 auto 20px auto;
    overflow: hidden;
}

.p-staff-list::after {
    content: " ";
    display: block;
    clear: both;
}

.p-staff-list ul {
    margin-right: -3%;
}

.p-staff-list li {
    float: left;
    width: 47%;
    margin: 0 3% 0 0;
}

.p-staff-list li a {
    display: block;
    margin-bottom: 10px;
}

.p-staff-list img {
    max-width: 100%;
}

.p-staff-list p {
    text-align: center;
}

/* PC */
@media screen and (min-width:768px) {
    .p-staff-list li {
        width: 22%;
    }
    
    .p-staff-list p {
        font-size: 16px;
    }
}

/*
　お客様の声
=================================*/
.survey__list ._image img {
    max-width: 100%;
}

.survey__list ._detail {
    font-size: 13px;
    line-height: 1.3;
    overflow : hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    max-height: 3rem;
}

/*
　おすすめ物件
=================================*/
.p-estate-list {
    width: 90%;
    margin: 0 auto;
}

.p-estate-list li {
    width: 100%;
    height: auto;
    margin: 0 0 20px 0;
    background: #f5f5f5;
    border-radius: 10px;
}

.p-estate-list a {
    display: block;
    position: relative;
    text-decoration: none;
    color: #000;
}

.p-estate-list a:hover {
    opacity: 0.5;
}

.p-estate-list__image {
    width: 100%;
    height: 200px;
    background-repeat: no-repeat; 
    background-position: 0 50%;
    background-size: cover;
    border-radius: 10px 10px 0 0;
}

.p-estate-list__type {
    position: absolute;
    top: 187px;
    left: 10px;
    display: inline-block;
    padding: 5px 10px;
    font-size: 12px;
    min-width: 70px;
    box-sizing: border-box;
    text-align: center;
    background: #ff1616;
    color: #fff;
    z-index: 100;
}

.p-estate-list__detail {
    padding: 25px 15px 15px 15px;
}

.p-estate-list__name {
    font-weight: bold;
    margin-bottom: 5px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.p-estate-list__access {
    font-size: 13px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    margin-bottom: 5px;
}

.p-estate-list__price {
    font-size: 22px;
    margin-bottom: 5px;
}

.p-estate-list__price span {
    font-size: 17px;
}

.p-estate-list__catchcopy {
    font-size: 13px;
    line-height: 1.3;
    overflow : hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    max-height: 2rem;
}

.p-estate-list__label {
    position: absolute;
    top: 7px;
    right: 7px;
    width: 45px;
    height: 45px;
    background: #fdd100;
    border-radius: 23px;
    box-sizing: border-box;
    display: block;
    padding: 12px 2px;
    text-align: center;
    line-height: 1.2;
}

.p-estate-list__label span {
    color: #fff;
    font-size: 0.8rem;
}

/* PC */
@media screen and (min-width:768px) {
    .p-estate-list {
        width: 100%;
    }
    
    .p-estate-list:after {
        content: "";
        display: block;
        clear: both;
    }
    
    .p-estate-list li {
        float: left;
        width: 310px;
        height: 360px;
        margin: 0 25px 20px 0;
    }
    
    .p-estate-list li:nth-child(3n) {
        margin-right: 0;
    }
    
    .p-estate-list a {
        display: block;
    }
    
    .p-estate-list__image {
        width: 310px;
        height: 200px;
    }
    
    .p-estate-list__type {
        top: 185px;
        left: 10px;
    }
}

/*
　お知らせ（PCのみ）
=================================*/
.main__newList {
    padding: 20px 5px 0 5px;
    border-top: solid 1px #000;
}

.main__newList:after {
    content: "";
    display: block;
    clear: both;
}

.main__newList dt {
    float: left;
    margin: 0 15px;
    font-size: 13px;
    padding: 4px 5px 2px 5px;
    color: #555;
}

.main__newList dd {
    margin-bottom: 15px;
    padding: 3px 0 20px 0;
    border-bottom: 1px solid #000;
}

.main__newList dd a {
    text-decoration: none;
    color: #000;
}

.main__newList dd a:hover {
    text-decoration: underline;
}


/*=================================

* 選ばれる理由

=================================*/

.p-reason-list {
    width: 100%;
    margin-bottom: 50px;
}

.p-reason-list__image {
    display: block;
    width: 100%;
    margin-bottom: 20px;
}

.p-reason-list__image img {
    width: 100%;
    height: auto;
}

.p-reason-list__text {
    display: block;
    width: 100%;
    padding: 0 10px;
    box-sizing: border-box;
}
    
h3.p-reason-list__tit {
    margin: 0 0 15px 0;
    padding: 0;
    font-size: 1.5rem;
    text-align: center;
    color: #ff1616;
    font-weight: bold;
}

/* PC */
@media screen and (min-width:768px) {    
    .p-reason-list {
        margin-bottom: 100px;
    }
    
    .p-reason-list::after {
        content: " ";
        display: block;
        clear: both;
    }
    
    .p-reason-list__image {
        float: right;
        width: 47%;
    }

    .p-reason-list__text {
        float: left;
        width: 53%;
        padding: 0 30px 0 0;
        font-size: 15px;
    }

    h3.p-reason-list__tit {
        text-align: left;
        font-size: 2rem;
    }
}

/*=================================

* プライバシーポリシー

=================================*/

.p-privacy-list {
    width: 100%;
    margin-bottom: 50px;
}

.p-privacy-list__text {
    display: block;
    width: 100%;
    padding: 0 10px;
    box-sizing: border-box;
}

h4.p-basics-list__tit {
    font-size: 1rem;
    font-weight: bold;
}
    
h4.p-privacy-list__tit {
    margin: 0 0 15px 0;
    padding: 0 8px;
    font-size: 1rem;
    font-weight: bold;
}

/* PC */
@media screen and (min-width:768px) {    
    .p-privacy-list {
        margin-bottom: 50px;
    }
    
    .p-privacy-list::after {
        content: " ";
        display: block;
        clear: both;
    }

    .p-privacy-list__text {
        float: left;
        padding: 0 30px 0 0;
        font-size: 15px;
    }

    h4.p-basics-list__tit {
        font-size: 16px;
        font-weight: bold;
    }

    h4.p-privacy-list__tit {
        text-align: left;
        font-size: 1.2rem;
    }
}


/*=================================

* 不動産投資について、マンション管理

=================================*/
.p-text__original {
    font-size: 16px;
}

/* PC */
@media screen and (min-width:768px) {
    .p-text__original {
        font-size: 20px;
    }
}


/*
　問合せ バナー
=================================*/
.p-inquiry {
    position: relative;
    width: 100%;
    margin: 0 auto 20px auto;
    padding: 10px;
    border : 3px solid #ff1616;
    border-bottom: 20px solid #ff1616;
    border-radius: 10px;
    box-sizing: border-box;
}

.p-inquiry__image {
    position: absolute;
    top: 10px;
    left: 10px;
}

.p-inquiry__image img {
    width: 80px;
    height: auto;
}

.p-inquiry__body {
    display: block;
    width: 100%;
}

/* tel */
.p-inquiry__tel {
    width: 100%;
    padding: 25px 0 25px 100px;
    color: #ff1616;
    font-size: 0.9rem;
}

.p-inquiry__telno {
    font-size: 1.8rem;
    font-weight: bold;
    color: #000;
    font-family: "Arial", sans-serif;
}

.p-inquiry__telno a {
    color: #000;
    text-decoration: none;
}

.p-inquiry__tel p {
    font-weight: bold;
}

/* mail */
.p-inquiry__mail {
    width: 100%;
    margin-bottom: 10px;
}

.p-inquiry__mail a {
    font-size: 1.3rem;
    background-color: #808080;
    color: #FFF;
    border: none;
    text-decoration: none;
    text-align: center;
    font-weight: bold;
    border-radius: 5px;
    padding: 10px 0;
    display: block;
}

.p-inquiry__mail a:hover {
    opacity: 0.7;
}

/* タブレット */
@media screen and (min-width:600px) {
    /* tel */
    .p-inquiry__tel {
        padding: 10px 0 10px 100px;
        font-size: 1.5rem;
    }
    
    .p-inquiry__telno {
        font-size: 3rem;
    }
}

/* PC */
@media screen and (min-width:768px) {
    .p-inquiry {
        width: 980px;
        height: 180px;
        padding: 0;
        margin-bottom: 50px;
    }
    
    .p-inquiry__body {
        display: flex;
        padding: 10px 0 0 200px;
        align-items: center;
        box-sizing: border-box;
    }
    
    .p-inquiry__image {
        position: absolute;
        width: 190px;
        top: -41px;
    }
    
    .p-inquiry__image img {
        width: 100%;
        height: auto;
    }
    
    /* tel */
    .p-inquiry__tel {
        width: 50%;
        padding: 10px;
        font-size: 1.3rem;
    }
    
    .p-inquiry__telno {
        font-size: 3rem;
        line-height: 1.2;
    }
    
    /* mail */
    .p-inquiry__mail {
        width: 50%;
        padding: 10px 20px 10px 10px;
    }
    
    .p-inquiry__mail a {
        font-size: 1.2rem;
        padding: 20px 0;
    }
    
    /* 営業時間・定休日 */
    .p-inquiry__openclose {
        position: absolute;
        bottom: 15px;
        left: 210px;
        font-size: 1.2rem;
    }
}

/* iPhone5 */
@media screen and (max-width:320px) {
    .p-inquiry__image {
        display: none;
    }
    
    .p-inquiry__tel {
        padding: 10px 0;
    }
}