@charset "UTF-8";

/* ━━━━━━━━━━━━━━━━

 ■初期化

━━━━━━━━━━━━━━━━ */

body {
    font-family: 'Noto Sans JP', 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-40 {
    margin-bottom: 40px !important;
}

.u-mb-50 {
    margin-bottom: 50px;
}

.u-mb-80 {
    margin-bottom: 80px !important;
}

.u-text-center {
    text-align: center;
}

.u-text-marker {
    background: linear-gradient(transparent 60%, #FFF799 60%);
}

.u-fs-h3 {
    font-size: 16px;
}

@media screen and (min-width:768px) {
    .u-fs-h3 {
        font-size: 21px;
    }
    
    .u-text-pc-center {
        text-align: center;
    }
}


/*=================================

* media

=================================*/
@media screen and (max-width:767px) {
    .u-hidden-sp {
        display: none;
    }
}

@media screen and (min-width:768px) {
    .u-hidden-pc {
        display: none;
    }
}


/* ━━━━━━━━━━━━━━━━

 ■コンポーネント

━━━━━━━━━━━━━━━━ */


/*=================================

* コンテナ

=================================*/

.c-block {
    margin-bottom: 50px;
    padding: 30px 0;
}

@media screen and (min-width:768px) {
    .c-block {
        max-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タイトル（中央寄せ/ゴシック）
================================*/
.c-title--gothic {
    margin-bottom: 30px;
    text-align: center;
    font-size: 22px;
    font-weight: 900;
}

/* PC */
@media screen and (min-width:768px) {
    .c-title--gothic {
        margin-bottom: 40px;
        font-size: 30px;
    }
}

/*
　H2タイトル（メインカラー）
================================*/
.c-title__color-1 {
    font-size: 30px;
    color: #e50012;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 900;
    line-height: 1.3;
}

/* PC */
@media screen and (min-width:768px) {
    .c-title__color-1 {
        font-size: 55px;
        margin-bottom: 50px;
    }
}

/*
　H2タイトル（背景カラー付）
================================*/
.c-title__bg-color-1,
.c-title__bg-color-2 {
    font-size: 23px;
    color: #FFF;
    font-weight: bold;
    background: #e50012;
    margin-bottom: 20px;
    padding: 10px 15px;
}

.c-title__bg-color-2 {
    background: #0b3c5d;
}

/* PC */
@media screen and (min-width:768px) {
    .c-title__bg-color-1,
    .c-title__bg-color-2 {
        font-size: 30px;
        margin-bottom: 30px;
    }
}

/*
　タイトル（フォントサイズlg）
================================*/
.c-title--large {
    margin-bottom: 30px;
    font-size: 25px;
    font-weight: 900;
}

.c-title--large span {
    font-size: 33px;
}

/* PC */
@media screen and (min-width:768px) {
    .c-title--large  {
        font-size: 40px;
        text-align: center;
    }
    
    .c-title--large span {
        font-size: 55px;
    }
}

/*
    H3タイトル
================================*/

/* スマホ*/
@media screen and (max-width:767px) {
    h3.tit {
        margin: 0 0 15px 0;
        padding: 6px 10px;
        background: #e50012;
        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;
    }
}

/*
　H3タイトル（下線あり）
================================*/
.c-title--underline {
    position: relative;
    margin-bottom: 10px;
    padding-bottom: 5px;
    padding-left: 0;
    text-shadow: none;
    border-top: none;
    border-bottom: 4px solid #ccc;
    background: none;
}

.c-title--underline:after {
    position: absolute;
    bottom: -4px;
    left: 0;
    z-index: 2;
    content: '';
    width: 20%;
    height: 4px;
    background-color: #e50012;
}

/* PC */
@media screen and (min-width:768px) {
    .c-title--underline {
        max-width: 1140px;
        margin: 20px auto;
        font-size: 20px;
    }
}



/* ━━━━━━━━━━━━━━━━

 ■レイアウト

━━━━━━━━━━━━━━━━ */


/*=================================

* セクション

=================================*/

.l-section {
    padding: 50px 0;
}

.l-section.l-section--gray {
    background: #F5F5F5;
}

.l-section.l-section--blue {
    background: #eaf3f9;
}

.l-section.l-section--lightblue {
    background: #e6f5f5;
}

.l-section.l-section--yellow {
    background: #FEFBF5;
}

.l-section__container {
    padding: 0 8px;
}

/* PC */
@media screen and (min-width:768px) {
    .l-section {
        padding: 80px 0;
    } 

    .l-section__container {
        max-width: 1140px;
        margin: 0 auto;
        padding: 0;
    }
}


/*=================================

* メインビジュアル

=================================*/

.l-jumbotron {
    position: relative;
    margin: 0 auto 20px auto;
    height: 220px;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
    background-image: url(/img/jumbotron__image.jpg);
}

.l-jumbotron::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(255,255,255,0.2);
}

.l-jumbotron__inner {
    position: relative;
    margin: 0 auto;
    width: 95%;
    height: 220px;
}

.l-jumbotron__inner h2 {
    position: absolute;
    top: 52%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
    text-align: center;
    line-height: 1.5;
    font-size: 1.1rem;
    font-weight: 800;
    color: #000;
    text-shadow: 
        #FFF 2px 0px, #FFF -2px 0px, 
        #FFF 0px -2px, #FFF 0px 2px, 
        #FFF 2px 2px, #FFF -2px 2px, 
        #FFF 2px -2px, #FFF -2px -2px, 
        #FFF 1px 2px, #FFF -1px 2px, 
        #FFF 1px -2px, #FFF -1px -2px, 
        #FFF 2px 1px, #FFF -2px 1px, 
        #FFF 2px -1px, #FFF -2px -1px;
}

.l-jumbotron__inner h2 i {
    display: inline-block;
    margin: 0 10px 10px 0;
    padding: 8px;
    line-height: 1;
    background: #e50012;
    text-shadow: none;
    color: #fff;
    font-size: 2.5rem;
    font-style: normal;
}

.l-jumbotron__inner h2 em {
    display: inline-block;
    font-size: 1.3rem;
    font-style: normal;
    line-height: 1;
    padding-top: 10px;
}

/* PC */
@media screen and (min-width:768px) {
    .l-jumbotron {
        height: 450px;
    }

    .l-jumbotron__inner {
        width: 980px;
        height: 450px;
    }
    
    .l-jumbotron__inner h2 {
        font-size: 2.5rem;
        font-weight: 900;
    }

    .l-jumbotron__inner h2 i {
        padding: 13px 18px 20px 18px;;
        margin: 0 10px 20px 10px;
        font-size: 6rem;
    }
    
    .l-jumbotron__inner h2 em {
        font-size: 3.2rem;
        font-weight: 900;
    }
}

/* iPhone5 */
@media screen and (max-width:320px) {
    .l-jumbotron__inner h2 i {
        font-size: 2rem;
    }
    
    .l-jumbotron__inner h2 em {
        font-size: 1.1rem;
    }  
}




/* ━━━━━━━━━━━━━━━━

 ■プロジェクト

━━━━━━━━━━━━━━━━ */


/*=================================

* トップ

=================================*/
/*
　事業内容
=================================*/
.p-business-list {
    width: 100%;
    margin-bottom: 50px;
}

.p-business-list__image {
    display: block;
    width: 100%;
    margin-bottom: 20px;
}

.p-business-list__image img {
    width: 100%;
    height: auto;
}

.p-business-list__text {
    display: block;
    width: 100%;
    padding: 0 10px;
    box-sizing: border-box;
}
    
h3.p-business-list__tit {
    margin: 0 0 15px 0;
    padding: 0;
    font-size: 1.5rem;
    text-align: center;
    color: #e50012;
    font-weight: bold;
}

/* PC */
@media screen and (min-width:768px) {    
    .p-business-list {
        margin-bottom: 100px;
    }
    
    .p-business-list::after {
        content: " ";
        display: block;
        clear: both;
    }
    
    .p-business-list__image {
        float: right;
        width: 47%;
    }

    .p-business-list__text {
        float: left;
        width: 53%;
        padding: 0 30px 0 0;
    }

    h3.p-business-list__tit {
        text-align: left;
        font-size: 2rem;
    }
}



/*
　スタッフ紹介
=================================*/
.p-staff-list {
    width: 90%;
    margin: 0 auto;
}

.p-staff-list li {
    margin-bottom: 50px;
}

.p-staff-list li:last-child {
    margin-bottom: 0;
}

.p-staff-list__image {
    text-align: center;
}

.p-staff-list__image img {
    max-width: 100%;
}

.p-staff-list__image img:hover {
    opacity: 0.7;
}

.p-staff-list__info {
    margin-bottom: 20px;
}

.p-staff-list__info h2 {
    font-size: 35px;
    margin-bottom: 20px;
}

.p-staff-list__info h3 {
    border-bottom: 1px solid #CCC;
    padding-bottom: 5px;
    margin-bottom: 20px;
}

.p-staff-list__info p {
    line-height: 1.5;
}

.p-staff-list__post {
    font-size: 18px;
}

/* PC */
@media screen and (min-width:768px) {
    .p-staff-list {
        width: 100%;
    }
    
    .p-staff-list li {
        margin-bottom: 80px;
    }
    
    .p-staff-list li::after {
        content: " ";
        display: block;
        clear: both;
    }
    
    .p-staff-list__info {
        width: 550px;
        float: left;
        margin-bottom: 0;
    }

    .p-staff-list__image {
        width: 400px;
        float: right;
    }
    
    .p-staff-list__info h2 {
        font-size: 48px;
        margin-bottom: 30px;
    }

    .p-staff-list__info h3 {
        font-size: 18px;
    }
    
    .p-staff-list__info p {
        font-size: 16px;
    }

    .p-staff-list__post {
        font-size: 20px;
    }
}

/*
　お客様の声
=================================*/
.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;
}
/*
　動画
=================================*/
.youtube-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9の比率 */
  margin-bottom: 80px;
}

.youtube-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/* PC */
@media screen and (min-width:768px) {
    .youtube-wrap {
        margin-bottom: 123px;
    }
}
/*
　よくある質問
=================================*/
.p-ques-list {
    width: 90%;
    margin: 0 auto;
}

.p-ques-list dt,
.p-ques-list dd {
    line-height: 1.7;
    position: relative;
}

.p-ques-list dt {
    margin-bottom: 10px;
}

.p-ques-list dd {
    margin-bottom: 50px; 
    margin-left: 0;
}
.p-ques-list dl:nth-last-of-type(1) dd{
    margin-bottom: 20px; 
}
.p-ques-list__text {
    width: calc(100% - 60px);
    margin: 0 0 0 60px;
    padding: 8px;
    background-color: #FFFFFF;
    border: solid 1px #CCCCCC;
    display: inline-block;
    border-radius: 5px;
    font-size: 15px;
}

.p-ques-list__icon-question:before {
    top: 3px;
    left: 0;
    width: 40px;
    position: absolute;
    height: 43px;
    display: inline-block;
    content: url(/img/ques__icon__question.svg);
}

.p-ques-list__icon-answer:before {
    top: 3px;
    left: 0;
    width: 40px;
    position: absolute;
    height: 43px;
    display: inline-block;
    content: url(/img/ques__icon__answer.svg); 
}

/* PC */
@media screen and (min-width:768px) {
    .p-ques-list {
        width: 100%;
    }
    
    .p-ques-list__text {
        /*width: 92%;*/
        font-size: 16px;
    }
}


/* PC */
@media screen and (min-width:768px) {
    .p-estate-list {
        width: 100%;
    }
  
}


/*=================================

* 仲介手数料無料ページ

=================================*/

/*
　左右レイアウト
=================================*/
.p-layout--col2 {
    width: 90%;
    margin: 0 auto 80px auto;
}

.p-layout--lt {
    width: 100%;
    margin-bottom: 20px;
}

.p-layout--rt,
.p-layout--rt.p-layout--lg,
.p-layout--lt.p-layout--sm {
    width: 100%;
}

.p-layout--col2 p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.p-layout--col2 p span {
    color: #e50012;
}

.p-layout--col2 img {
    width: 100%;
}

.p-layout--col2 span {
    font-size: 17px;
    font-weight: bold;
}

.p-layout--col2 h3 {
    color: #767171;
    font-size: 1.7rem;
    font-weight: bold;
    margin-bottom: 25px;
    display: inline-block;
    border-bottom: 1px solid #0b3c5d;
    padding-bottom: 5px;
}

.p-layout--col2 h4 {
    margin-bottom: 15px;
}

.p-layout--col2 h4 span {
    color: #FFF;
    font-size: 1.2rem;
    font-weight: bold;
    font-family: "Arial", sans-serif;
    background-color: #0b3c5d;
    padding: 3px 15px;
    border-radius: 20px;
}

/* PC */
@media screen and (min-width:768px) {
    .p-layout--col2 {
        width: 100%;
        margin: 30px auto 80px auto;
    }
    
    .p-layout--col2:after {
        content: "";
        display: block;
        clear: both;
    }
    
    .p-layout--lt {
        width: 570px;
        float: left;
        display: inline-block;
    }

    .p-layout--rt {
        width: 370px;
        float: right;
        display: inline-block;
    }

    .p-layout--rt.p-layout--lg {
        width: 570px;
    }

    .p-layout--lt.p-layout--sm {
        width: 370px;
    }
    
    .p-layout--col2 p {
        margin-bottom: 25px;
    }
    
    .p-layout--col2 h3 {
        padding-bottom: 0;
    }
    
    .p-layout--col2 h4 {
        margin-bottom: 5px;
    }
}

/*
　ポータルサイトリスト
=================================*/
.p-layout--col2 ul:after {
    content: "";
    display: block;
    clear: both;
}

.p-layout--col2 li {
    width: 23%;
    display: inline-block;
    margin-right: 10%;
    vertical-align: middle;
}

.p-layout--col2 li:nth-child(3n) {
    margin-right: 0;
}

/*
　矢印
=================================*/
.p-arrow-bottom {
    width: 90%;
    margin: 0 auto 80px auto;
    text-align: center;
}

.p-arrow-bottom img {
    width: 30%;
}

/* PC */
@media screen and (min-width:768px) {
    .p-arrow-bottom {
        width: 100%;
    }
    
    .p-arrow-bottom img {
        width: 12%;
    }
}

/*
　お問い合わせ
=================================*/
.p-zero__inquiry img {
    margin-bottom: 10px;
}

.p-zero__inquiry img:hover {
    opacity: 0.7;
}

/* PC */
@media screen and (min-width:768px) {
    .p-zero__inquiry img {
        width: 65%;
    }
}

/*
　購入スケジュール
=================================*/
.p-schedule {
    width: 90%;
    margin: 0 auto 30px auto;
    padding-bottom: 35px;
    border-bottom: 1px dotted #767171
}

.p-schedule__step {
    margin-bottom: 20px;
}

.p-schedule__step dl:after {
    content: "";
    display: block;
    clear: both;
}

.p-schedule__step dt {
    position: relative;
    float: left;
    width: 50px;
    height: 50px;
    text-align: center;
    color: #FFF;
    font-weight: bold;
    font-size: 30px;
    background: #0b3c5d;
    box-sizing: border-box;
    line-height: 1.7;
    font-family: "Arial", sans-serif;
}

.p-schedule__step dt:before {
    content: "";
    position: absolute;
    right: -20%;
    bottom: 35%;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: 10px solid #0b3c5d;
}

.p-schedule__step dd {
    padding-left: 75px;
}

.p-schedule__step dd h3 {
    font-size: 23px;
    margin: 0 0 10px 0;
    padding-top: 10px;
    font-weight: bold;
    color: #767171;
}

/* PC */
@media screen and (min-width:768px) {
    .p-schedule {
        width: 100%;
    }
    
    .p-schedule__step {
        margin-bottom: 10px;
    }
    
    .p-schedule__step dd h3 {
        font-size: 25px;
        padding-top: 5px;
    }
    
    .p-schedule__text {
        padding-left: 75px;
        font-size: 16px;
    }
}

/*
　お客様の声
=================================*/
.p-survey-list {
    width: 90%;
    margin: 0 auto 80px auto;
}

.p-survey-list ul:after {
    content: "";
    display: block;
    clear: both;
}

.p-survey-list li {
    width: 100%;
    margin: 0 0 20px 0;
    padding: 15px;
    display: inline-block;
    box-sizing: border-box;
    vertical-align: top;
    border: 1px solid #ebe7dc;
}

.p-survey-list a {
    text-decoration: none;
    color: #000;
}

.p-survey-list li a:hover {
    opacity: 0.8;
    display: block;
}

.p-survey-list__image {
    max-width: 35%;
    float: left;
}

.p-survey-list__image img {
    width: 100%;
}

.p-survey-list__tag,
.p-survey-list__detail{
    width: 63%;
    float: right;
}

.p-survey-list__area {
    background-color: #135fb6;
    margin-bottom: 10px;
    color: #FFF;
    padding: 2px 10px;
    display: inline-block;
    text-align: center;
    font-size: 13px;
}

.p-survey-list__type {
    background-color: #ff8426;
    margin-bottom: 10px;
    color: #FFF;
    padding: 2px 10px;
    display: inline-block;
    text-align: center;
    font-size: 13px;
}

.p-survey-list__detail {
    height: auto;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

/* PC */
@media screen and (min-width:768px) {
    .p-survey-list {
        width: 100%;
    }

    .p-survey-list ul {
        font-size: 0;
    }

    .p-survey-list li {
        width: 230px;
        margin: 0 20px 20px 0;
        font-size: 14px;
    }

    .p-survey-list li:last-child {
        margin-right: 0px;
    }
    
    .p-survey-list__image {
        max-width: 100%;
    }

    .p-survey-list__tag,
    .p-survey-list__detail{
        width: 100%;
    }

    .p-survey-list__image img {
        display: block;
        margin-bottom: 10px;
    }

    .p-survey-list__detail {
        height: 65px;
    }

    .p-survey-list__detail:hover {
        text-decoration: underline;
    }
}


/*=================================

* 不動産売却ページ

=================================*/

/*
　sub-visual
================================*/
.p-sub-visual {
    width: 100%;
    height: 150px;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
    position: relative;
    margin: 0 auto 50px auto;
    filter: saturate(200%);
}

.p-sub-visual::before {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    content: '';
    background-color: rgba(29, 39, 49, 0.6);
}

.p-sub-visual.p-sub-visual__sell {
    background-image: url(/img/sub-visual__sell.jpg);
}

.p-sub-visual h2 {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #FFF;
    line-height: 1.4;
    font-size: 28px;
    font-weight: 700;
}

/* PC */
@media screen and (min-width:768px) {
    .p-sub-visual {
        height: 250px;
        margin: -25px auto 80px auto;
    }

    
    .p-sub-visual h2 {
        font-size: 60px;
    }
}

/*
　横3つ並び枠
=================================*/
.p-sell__promise {
    width: 90%;
    margin: 0 auto 40px auto;
}

.p-sell__promise li {
    width: 100%;
    margin-bottom: 15px;
    border: 2px solid #e50012;
    box-sizing: border-box;
    padding: 15px;
    border-radius: 8px;
}

.p-sell__promise li h3 {
    font-size: 23px;
    margin-bottom: 10px;
    color: #e50012;
    text-align: center;
    line-height: 1.2;
    font-weight: 900;
}

/* PC */
@media screen and (min-width:768px) {
    .p-sell__promise {
        margin: 0 auto 70px auto;
        width: 100%;
    }

    .p-sell__promise ul {
        display: flex;
        justify-content: space-between;
    }
    
    .p-sell__promise li {
        width: 32%;
        margin-right: 2%;
        margin-bottom: 0;
        padding: 20px;
    }
    
    .p-sell__promise li:last-child {
        margin-right: 0%;
    }
    
    .p-sell__promise:after {
        content: "";
        display: block;
        clear: both;
    }
    
    .p-sell__promise li h3 {
        font-size: 27px;
    }
}

/*
　チェックボックス付きリスト
=================================*/
.c-checkbox-list {
    margin: 10px;
}

.c-checkbox-list li {
    position: relative;
    padding-left: 30px;
    line-height: 1.5;
    margin-bottom: 20px;
    font-size: 17px;
}

.c-checkbox-list li:before {
    position: absolute;
    top: 3px;
    margin-left: -30px;
    margin-right: 10px;
    content: url(/img/icon__check.png);
}

@media screen and (min-width:768px) {
    .c-checkbox-list {
        margin: 0;
    }

    .c-checkbox-list li:before {
        top: 0;
    }
}

/*
　こだわりリスト
=================================*/
.c-checkbox-list.p-sell__commitment {
    margin-bottom: 50px;
}

/* PC */
@media screen and (min-width:768px) {
    .c-checkbox-list.p-sell__commitment {
        display: flex;
        justify-content: center;
    }
    
    .c-checkbox-list.p-sell__commitment li {
        font-size: 18px;
    }
}

/*
　流れ
=================================*/
.p-flow {
    margin: 0 auto 40px auto;
}

.p-flow__step {
    position: relative;
    width: 270px;
    background: #0b3c5d;
    padding: 10px 10px 0 10px;
    text-align: center;
    color: #FFF;
    box-sizing: border-box;
    margin: 0 auto;
}

.p-flow__step p,
.p-flow__step h3 {
    font-weight: 500;
    font-size: 18px;
    margin-bottom: 2px;
}

.p-flow__step:after{
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    bottom: -25px;
    left: 0;
    border-style: solid;
    border-color: #0b3c5d transparent transparent transparent;
    border-width: 25px 135px 0 135px;
    z-index: 1;
}

.p-flow__text {
    padding: 40px 10px;
}

/* PC */
@media screen and (min-width:768px) {
    .p-flow {
        margin-bottom: 80px;
    }
    
    .p-flow__block {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        padding: 20px 0;
        margin-bottom: 30px;
    }
    
    .p-flow__step {
        margin: 0;
    }
    
    .p-flow__text {
        width: calc(100% - 330px);
        padding: 0 0 0 60px;
        font-size: 16px;
    }
}

/*
　コンタクト
================================*/
.c-contact {
    margin: 0 auto;
    background: #727A84;
}

.c-contact .c-contact__block {
    display: block;
}

.c-contact .c-contact__block li:first-child {
    border-right: 1px solid #FFF;
}

/* mail */
.c-contact .c-contact__mail {
    padding: 30px 50px;
    border-bottom: 1px solid #FFF;
}   

.c-contact .c-contact__mail a {
    display: block;
    padding: 15px 0;
    font-size: 16px;
    color: #FFF;
    border: 1px solid #FFF;
    text-align: center;
    text-decoration: none;
}

.c-contact .c-contact__mail a:hover {
    background: #F5F5F5;
    border: 1px solid #F5F5F5;
    color: #727A84;
}

/* tel */
.c-contact .c-contact__tel {
    padding: 30px 0;
    text-align: center;
    color: #FFF;
}

.c-contact .c-contact__tel p {
    font-size: 16px;
    margin-bottom: 10px;
}

.c-contact .c-contact__tel a {
    text-decoration: none;
    color: #FFFFFF;
}

.c-contact .c-contact__telno {
    font-size: 30px !important;
    font-weight: bold;
    margin-bottom: 10px;
}

/* PC */
@media screen and (min-width:768px) {
    .c-contact .c-contact__block {
        display: flex;
        margin: 0 auto;
        align-items: center;
    }

    /* mail */
    .c-contact .c-contact__mail {
        width: 45%;
        padding: 30px 50px;
        border: none;
        border-right: 1px solid #FFF;
        border-bottom: none;
    }

    .c-contact .c-contact__mail a {
        font-size: 19px;
    }
    
    /* tel */
    .c-contact .c-contact__tel {
        width: 55%;
    }

    .c-contact .c-contact__tel p {
        margin-bottom: 0;
    }
    
    .c-contact .c-contact__teltext {
        font-size: 19px !important;
    }
    
    .c-contact .c-contact__telno {
        margin-bottom: 0;
        font-size: 42px !important;
    }
}

/*
　CTA バナー
=================================*/
.p-sell__contact {
    background: #0b3c5d;
    width: 100%;
    padding: 50px 0;
}

.p-sell__contact__intro {
    position: relative;
    color: #fff;
    width: 80%;
    max-width: 500px;
    margin: 0 auto 50px auto;
}

.p-sell__contact__text {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
}

.p-sell__contact__text h3 {
    font-weight: bold;
}

.p-sell__contact__telno {
    font-size: 40px;
    font-weight: bold;
    font-family: "Arial", sans-serif;
    margin-bottom: 10px;
}

.p-sell__contact__telno a {
    color: #fff;
    text-decoration: none;
}

.p-sell__contact__telno i {
    font-size: 30px;
    margin-right: 10px;
}

.p-sell__contact__open {
    font-weight: bold;
    line-height: 1.5;
}

/* ボタン */
.p-sell__contact__button {
    width: 80%;
    max-width: 500px;
    margin: 0 auto 30px auto;
}

.p-sell__contact__button a {
    font-size: 20px;
    position: relative;
    padding: 35px 15px 15px 15px;
    border-radius: 10px;
    box-sizing: border-box;
    display: block;
    text-align: center;
    font-weight: bold;
    text-decoration: none;
}

.p-sell__contact__button a span {
    position: absolute;
    font-size: 16px;
    color: #000;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    width: 80%;
    padding: 5px 0;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0px 1px 3px -1px rgba(0,0,0,0.5);
}

.p-sell__contact__button-satei {
    margin-bottom: 50px;
}

.p-sell__contact__button a i {
    font-size: 25px;
    margin: -5px 10px 0 0;
    vertical-align: middle;
}

.p-sell__contact__button a:hover {
    opacity: 0.7;
}

.p-sell__contact__button-satei a {
    background: #e50012;
    color: #fff;
}

.p-sell__contact__button-inquiry a {
    background: #328cc1;
    color: #fff;
}

.p-sell__contact__button-satei a span {
    border: solid 2px #e50012;
}

.p-sell__contact__button-inquiry a span {
    border: solid 2px #328cc1;
}

/* PC */
@media screen and (min-width:960px) {
    .p-sell__contact__intro {
        width: 100%;
        max-width: 1140px;
        margin: 0 auto;
        margin-bottom: 40px;
        
    }
    
    .p-sell__contact__block {
        width: 100%;
        align-items: center;
        margin-bottom: 0;
        box-sizing: border-box;
    }
    
    .p-sell__contact__text {
        font-size: 23px;
        margin: 0;
    }
    
    .p-sell__contact__text h3 {
        font-weight: bold;
        text-align: left;
    }
    
    .p-sell__contact__tel {
        width: 100%;
        margin: 0 auto 30px auto;
        display: flex;
        align-items: center;
    }
    
    .p-sell__contact__telno {
        font-size: 80px;
        margin-bottom: 0;
    }

    .p-sell__contact__telno i {
        font-size: 65px;
    }

    .p-sell__contact__open {
        font-size: 18px;
        margin-left: 20px;
    }
    
    /* ボタン */
    .p-sell__contact__button {
        display: flex;
        justify-content: space-between;
        width: 100%;
        max-width: 1140px;
        margin: 0 auto;
    }
    
    .p-sell__contact__button-satei,
    .p-sell__contact__button-inquiry {
        width: 48%;
    }

    .p-sell__contact__button-satei {
        margin-bottom: 0;
    }

    .p-sell__contact__button a {
        padding: 40px 40px 30px 40px;
        font-size: 32px;
    }

    .p-sell__contact__button a i {
        font-size: 37px;
        margin: -7px 10px 0 0;
    }

    .p-sell__contact__button a span {
        font-size: 21px;
        top: -25px;
        border-width: 3px;
        border-radius: 25px;
    }
}

/* iPhone5 */
@media screen and (max-width:320px) {   
    .p-sell__contact__text {
        padding-left: 10px;
    }
    
    /* tel */
    .p-sell__contact__telno {
        font-size: 30px;
    }
}



/*
　物件情報-01
================================*/
.c-estate-list-col3-01 li,
.c-estate-list-col3-01--gray li {
    position: relative;
    margin-bottom:50px;
}

/* テキスト部分の背景：白色 */
.c-estate-list-col3-01 li {
    background-color: #fff;
}

/* テキスト部分の背景：灰色 */
.c-estate-list-col3-01--gray li {
    background-color: #f5f5f5;
}
            
.c-estate-list-col3-01 a,
.c-estate-list-col3-01--gray a {
    display: block;
    text-decoration: none;
    color: #333;
}
                
.c-estate-list-col3-01__image {
    position: relative;
}

.c-estate-list-col3-01__image img:last-of-type {
    display: block;
    width: 100%;
    height: 250px;
    object-fit: cover;
}
    
.c-estate-list-col3-01__label {
    display: inline-block;
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 5px 10px;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.7);
}

.c-estate-list-col3-01__price {
    font-size: 20px;
    font-weight: bold;
    line-height: 1.3;
}

.c-estate-list-col3-01__price span {
    margin-left: 2px;
    font-size: 17px;
}
    
.c-estate-list-col3-01__textarea {
    padding: 20px;
}
                    
.c-estate-list-col3-01__type {
    display: inline-block;
    margin-bottom: 10px;
    padding: 3px 10px;
    line-height: 1.6;
    font-size: 14px;
    color: #FFF;
    background-color: #e50012;
}

.c-estate-list-col3-01__type[data-type*="賃貸"]{
    background: #0b3c5d;
}

.c-estate-list-col3-01__address {
    margin-bottom: 10px;
    font-weight: bold;
}

.c-estate-list-col3-01__access {
    margin-bottom: 10px;
    font-size: 15px;
}
                        
.c-estate-list-col3-01__catchcopy {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-align: left;
    font-size: 15px;
    color: #e50012;
}

/* PC */
@media screen and (min-width:768px) {
    .c-estate-list-col3-01,
    .c-estate-list-col3-01--gray {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .c-estate-list-col3-01::after,
    .c-estate-list-col3-01--gray::after {
        content: '';
        display: block;
        width: 30%;
    }

    .c-estate-list-col3-01 li,
    .c-estate-list-col3-01--gray li {
        width: 30%;
        margin: 0 0 50px 0;
    }

    .c-estate-list-col3-01 a:hover,
    .c-estate-list-col3-01--gray a:hover {
        opacity: 0.6;
    }

    .c-estate-list-col3-01__price {
        font-size: 22px;
    }

    .c-estate-list-col3-01__price span {
        font-size: 18px;
    }
}

/* 20260219 パンくずリスト */
.scn-breadcrumbs {
    width: calc(100% - 20px);
    margin: 0 auto;
}
@media screen and (min-width:768px) {
    .scn-breadcrumbs{
        width: 100%;
        margin-bottom: 40px;
    }
}
.scn-breadcrumbs .scn-inner{
    max-width: 980px;
    width: 100%;
    margin: 0 auto;
}
.scn-breadcrumbs ul{
    display: inline-flex;
    justify-content: flex-start;
    align-items: center;
    gap:20px;
}
.scn-breadcrumbs ul li{
    position: relative;
    font-size: 0.8rem;
}
.scn-breadcrumbs ul li:not(:last-child):after{
    content:"";
    display: inline-block;
    position: absolute;
    top:53%;
    left: calc(100% + 6px );
    width: 5px;
    height: 5px;
    border-top: solid 2px #000;
    border-right: solid 2px #000;
    transform: translateY(-50%) rotate(45deg);
}
.scn-breadcrumbs ul li a{
    text-decoration: none;
    color: #000;
}
.scn-breadcrumbs ul li a:hover{
    color: #0b3c5d;
}
@media screen and (max-width: 767px) {
    .scn-breadcrumbs ul{
        width: calc(100% - 10px);
    }
    .scn-breadcrumbs ul li {
		white-space: nowrap;
	}
    .scn-breadcrumbs ul li:last-child{
        min-width: 0;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
}
/*--20260311 新規 金沢区ページ作成・磯子区ページ作成・港南区ページ作成--*/
.survey__list .scn-survey__list__inner{
    text-align: center;
}
.survey__list .scn-survey__list__inner ._image{
    text-align: center;
}
.survey__list .scn-survey__list__inner ._image img{
    display: inline;
}

/* 20260407 zero 会社情報 */
.scn-footer-company {
    white-space: nowrap;
    margin-top: 10px;
}

