@charset "UTF-8";

/* ━━━━━━━━━━━━━━━━

 ■初期化

━━━━━━━━━━━━━━━━ */

body {
    font-family: 'Noto Sans Japanese', sans-serif;
    min-width: auto !important;
}



/* ━━━━━━━━━━━━━━━━

 ■ユーティリティ

━━━━━━━━━━━━━━━━ */


/*=================================

* media

=================================*/
@media screen and (max-width:767px) {
    .u-hidden-sp {
        display: none;
    }
}

@media screen and (min-width:768px) {
    .u-hidden-pc {
        display: none;
    }
}

@media print {
    .l-header__sp-menu {
        display: none;
    }
}



/* ━━━━━━━━━━━━━━━━

 ■コンポーネント

━━━━━━━━━━━━━━━━ */


/*=================================

* コンテナ

=================================*/

.c-button-container {
    padding: 50px 0 0 0;
    text-align: center;
}

/*
　プライマリボタン
================================*/
.c-button--primary {
    display: block;
    width: 90%;
    padding: 12px 10px;
    margin: 0 auto;
    text-decoration: none;
    text-align: center;
    font-weight: bold;
    color: #ec6b38;
    background-color: #fff;
    border: solid 2px #ec6b38;
    border-radius: 5px;
}

.c-button--primary i {
    margin-left: 10px;
}

.c-button--primary,
.c-button--primary:link,
.c-button--primary:visited {
    text-decoration: none;
    color: #ec6b38;
}

.c-button--primary:hover {
    opacity: 1.0;
    color: #fff;
    background: #ec6b38;
}

@media screen and (min-width:768px) {
    .c-button--primary {
        width: 380px;
    }
}

/*
　H2タイトル
================================*/
h2.tit {
    position: relative;
    margin: 0 auto 30px auto;
    padding: 5px 8px;
    text-align: center;
    line-height: 1.4;
    font-family: 'Noto Serif JP', serif;
    font-size: 24px;
    font-weight: bold;
    color: #333;
    background-color: transparent !important;
}

h2.tit::after {
    content: '';
    position: absolute;
    left: calc(50% - 23px);
    bottom: 0;
    display: block;
    width: 46px;
    border: 1px solid #ec6b38;
}

/* PC */
@media screen and (min-width:768px) {
    h2.tit {
        max-width: 1140px;
        margin: 0 auto 50px auto;
        padding: 5px 8px 7px 8px;
        font-size: clamp(28px, 32 / 1140 * 100vw, 32px);
    }
}



/* ━━━━━━━━━━━━━━━━

 ■レイアウト

━━━━━━━━━━━━━━━━ */


/*=================================

* セクション

=================================*/

.l-section {
    padding: 50px 0;
}

.l-section.l-section--gray {
    background: #f5f5f5;
}

.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;
    }
}


/*=================================

* ヘッダー

=================================*/

header {
    margin-bottom: 0;
}

.l-header {
    position: relative;
    width: 100%;
    height: 65px;
    margin: 0;
}

.l-header__wrapper {
    position: fixed;
    width: 100%;
    height: 65px;
    padding: 5px 10px;
    background-color: rgba(250, 250, 250, 0.9);
    box-shadow: 0 0 6px rgb(0 0 0 / 20%);
    z-index: 99;
    box-sizing: border-box;
}

.l-header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 55px;
}
 
/* ロゴ */
.l-header__logo {
    margin: 10px 0 10px 0;
}

.l-header__logo a {
    display: block;
    text-decoration: none;
}

.l-header__logo span {
    font-size: 18px !important;
    font-weight: 900;
    color: #333;
}
            
.l-header__logo img {
    display: block;
    max-width: 200px;
    height: auto;
}

/* 問合わせ */
.l-header__contact {
    display: none;
}

/* ナビゲーション */
.l-header__nav {
    display: none;
}

/* ハンバーガーメニュー */
.l-header__menu__button {
    display: block;
    padding-right: 10px;
}

.l-header__menu__button a {
    display: block;
    text-align: center;
    text-decoration: none;
    color: #1f2a34;
}
                    
.l-header__menu__button i {
    font-size: 35px;
}

.l-header__sp-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 100px 20px 65px 20px;
    background: #fefefe;
    transform: translateY(min(-100%,-1000px));
    transition: transform .5s;
    z-index: 50;
}

.l-header__sp-menu.__open {
    transform: translateY(0);
    transition: transform .5s;
}

.l-header__sp-menu ul li {
    width: 100%;
    height: auto;
    border-top: 1px solid #919191;
}

.l-header__sp-menu ul li:hover {
    background: #747474;
}

.l-header__sp-menu ul li:last-child {
    border-bottom: 1px solid #919191;
}

.l-header__sp-menu ul li a {
    display: block;
    width: 100%;
    height: 3em;
    margin-left: 1em;
    line-height: 3em;
    text-decoration: none;
    font-size: 1em;
    color: #ec6b38;
}

.l-header__sp-menu ul li a:hover {
    color: #fff;
}

/* ページタイトル */
.l-header__page-title {
    padding: 10px 8px;
    font-size: 13px;
}

/* PC */
@media screen and (min-width:768px) {
    .l-header {
        height: auto;
    }

    .l-header__wrapper {
        position: relative;
        display: block;
        height: auto;
        padding: 0;
    }
    
    .l-header__inner {
        max-width: 1140px;
        height: auto;
        margin: 0 auto;
        padding: 13px 8px;
    }

    /* ロゴ */
    .l-header__logo {
        max-width: 300px;
        margin-left: 0;
    }

    .l-header__logo span {
        line-height: 40px;
        font-size: clamp(24px, 30 / 1140 * 100vw, 30px) !important;
    }

    .l-header__logo img {
        max-width: clamp(200px, 270 / 1140 * 100vw, 270px);
    }

    /* コンタクト */
    .l-header__contact {
        display: flex;
        justify-content: flex-end;
        flex-wrap: wrap;
        align-items: center;
        width: 55%;
    }

    .l-header__contact__tel {
        width: 60%;
        margin-right: 10px;
        line-height: 1.2;
        text-align: right;
        font-size: 26px;
        font-family: 'Century Gothic', "Arial", 'Noto Sans Japanese', sans-serif;
    }

    .l-header__contact__tel i {
        margin-right: 5px;
    }

    .l-header__contact__mail {
        width: 170px;
    }
    
    .l-header__contact__mail a {
        display: block;
        padding: 4px 25px 6px 25px;
        text-align: center;
        text-decoration: none;
        font-weight: 500;
        color: #fff;
        border-radius: 3px;
        background: #ec6b38;
    }

    .l-header__contact__mail a i {
        margin-right: 5px;
    }
    
    .l-header__contact__mail a:hover {
        background-color: #f4bd49;
    }
    
    /* ナビゲーション */
    .l-header__nav {
        display: block;
        border-bottom: 3px solid #ec6b38;
        border-top: 1px solid #ccc;
        background: #fff;
    }
                
    .l-header__nav ul {
        display: flex;
        align-items: center;
        justify-content: center;
        max-width: 1140px;
        height: auto;
        margin: 0 auto;
    }

    .l-header__nav ul li {
        width: 16.5%;
        border-left: solid 1px #ccc;
    }

    .l-header__nav ul li:last-child {
        border-right: solid 1px #ccc;
    }

    .l-header__nav ul li a {
        display: block;
        padding: 10px 5px;
        text-align: center;
        text-decoration: none;
        font-size: clamp(15px, 16 / 1140 * 100vw, 16px);
        color: #333;
    }

    .l-header__nav ul li a:hover {
        color: #fff;
        background-color: #ec6b38;
    }

    .l-header__menu__button {
        display: none;
    }

    .l-header__sp-menu {
        display: none;
    }

    /* ページタイトル */
    .l-header__page-title {
        max-width: 1140px;
        margin: 0 auto;
        padding: 10px 8px;
        font-size: 14px;
    }
}


/*=================================

* メインビジュアル

=================================*/

.l-main-visual {
    min-height: 250px;
    margin-bottom: 50px;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../img/main-visual.jpg);
    background-position: center;
}

.l-main-visual__inner {
    width: 90%;
    margin: 0 auto;
}

.l-main-visual__inner h1 {
    padding: 40px 0;
    line-height: 1.4;
    font-family: 'Noto Serif JP', serif;
    font-size: 24px;
    font-weight: 900;
    color: #ec6b38;
    text-shadow: 
    #fff 3px 3px 3px, #fff -3px -3px 3px, 
    #fff -3px 3px 3px, #fff 3px -3px 3px, 
    #fff 3px 0px 3px, #fff -3px 0px 3px, 
    #fff 0px 3px 3px, #fff 0px -3px 3px;
}

/* PC */
@media screen and (min-width:768px) {
    .l-main-visual {
        min-height: 550px;
        margin-bottom: 100px;
    }

    .l-main-visual__inner {
        max-width: 1140px;
        padding: 0 8px;
    }

    .l-main-visual__inner h1 {
        padding: 100px 0;
        font-size: clamp(44px, 54 / 1140 * 100vw, 54px);
    }
}


/*=================================

* フッター

=================================*/
.l-footer {
    width: 100%;
    background-color: #fff;
}

.l-footer__contact {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    background-image: url(../img/contact.jpg);
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
}

.l-footer__contact__block {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    padding: 5px 30px 35px 30px;
    background-color: rgba(255, 255, 255, 0.7);
    box-sizing: border-box;
}

.l-footer__contact__inner {
    text-align: center;
}

.l-footer__contact__tel {
    margin-bottom: 30px;
    font-size: 16px;
}

.l-footer__contact__tel a {
    display: inline-block;
    margin-bottom: 10px;
    text-decoration: none;
    font-family: 'Noto Serif JP', serif;
    font-size: 26px;
    font-weight: 900;
    color: #000;
}

.l-footer__contact__tel a i {
    margin-right: 10px;
}

.l-footer__contact__mail {
    margin: 0 auto;
}

.l-footer__contact__mail a {
    display: block;
    max-width: 250px;
    margin: 0 auto;
    padding: 20px;
    text-decoration: none;
    font-family: 'Noto Serif JP', serif;
    font-size: 16px;
    font-weight: bold;
    color: #000;
    border: solid 1px #000;
}

.l-footer__contact__mail a i {
    margin-right: 10px;
}

.l-footer__inner {
    margin: 0 auto;
    padding: 20px 0;
}

.l-footer__company {
    width: 90%;
    margin: 0 auto;
    text-align: center;
}

.l-footer__company span {
    font-size: 18px;
    font-weight: bold;
}
        
.l-footer__nav {
    display: none;
}

.l-footer__bottom__nav {
    position: fixed;
    box-sizing: border-box;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 10px;
    background-color: #ffffff;
    box-shadow: 0 0 6px rgb(0 0 0 / 20%);
    z-index: 50;
}

.l-footer__bottom__nav ul {
    display: flex;
    justify-content: space-around;
}

.l-footer__bottom__nav li {
    width: 20%;
}
                
.l-footer__bottom__nav a {
    display: block;
    text-align: center;
    text-decoration: none;
    color: #1f2a34;
}
                    
.l-footer__bottom__nav i {
    font-size: 30px;
}
        
.l-footer__bottom__nav span {
    display: block;
    font-size: 12px;
    font-weight: bold;
}

/* PC */
@media screen and (min-width:768px) {
    footer {
        border-top: none;
    }

    .l-footer {
        margin-bottom: 0;
    }

    .l-footer__contact {
        height: 450px;
    }

    .l-footer__contact__block {
        max-width: 1140px;
        padding: 40px 80px 25px 80px;
    }

    .l-footer__contact__block h2 {
        margin: 0;
    }
    
    .l-footer__contact__inner {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        align-items: center;
        max-width: 1140px;
        padding: 0;
    }

    .l-footer__contact__tel {
        width: 48%;
        margin: 0;
        padding: 0;
    }

    .l-footer__contact__tel a {
        margin-bottom: 0;
        font-size: 30px;
    }

    .l-footer__contact__mail {
        width: 48%;
        margin: 0;
        padding: 40px 0;
    }

    .l-footer__contact__mail p {
        font-size: 20px;
        font-weight: bold;
        color: #ffffff;
    }

    .l-footer__contact__mail a:hover {
        border-color: transparent;
        color: #ffffff;
        background-color: #f4bd49;
    }

    .l-footer__inner {
        display: flex;
        justify-content: space-between;
        align-items: center;
        max-width: 1140px;
        padding: 30px 8px;
    }

    .l-footer__company {
        max-width: 450px;
        margin: 0;
        text-align: left;
    }

    .l-footer__company span {
        font-size: clamp(18px, 24 / 1140 * 100vw, 24px);
    }

    .l-footer__nav {
        display: block;
        width: calc(100% - 500px);
        margin-bottom: 0;
        font-size: 16px;
    }

    .l-footer__nav ul {
        display: flex;
        flex-wrap: wrap;
    }
                    
    .l-footer__nav li {
        display: flex;
        padding: 5px 20px;
        width: auto;
    }

    .l-footer__nav li a {
        text-decoration: none;
        color: #333;
    }

    .l-footer__nav li a:hover {
        color: #f4bd49;
    }

    .l-footer__bottom__nav {
        display: none;
    }
}


/*=================================

* Copyright

=================================*/

.copyright {
    background-color: #ec6b38 !important;
    padding: 8px 0 75px 0 !important;
    color: #fff;
}

/* PC */
@media screen and (min-width:768px) {
    .copyright {
        padding: 8px 0 8px 0 !important;
    }
}


/*=================================

* ページの先頭へ

=================================*/

/* SP */
@media screen and (max-width: 767px) {
    .btn__page_top {
      display: none !important;
    }
}




/* ━━━━━━━━━━━━━━━━

 ■プロジェクト

━━━━━━━━━━━━━━━━ */


/*=================================

* トップ

=================================*/

/*
　あいさつ-02
================================*/
.sc-greeting-02 {
    padding: 50px 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.sc-greeting-02__inner {
    width: 90%;
    margin: 0 auto;
    padding: 50px 25px;
    background-color: rgba(255, 255, 255, 0.9); 
    box-shadow: 0 5px 10px rgb(0 0 0 / 10%);
    box-sizing: border-box;
}

.sc-greeting-02__inner h2 {
    margin-bottom: 30px;
    text-align: center;
    font-family: 'Noto Serif JP', serif;
    font-size: 20px;
    font-weight: bold;
}

.sc-greeting-02__inner p {
    line-height: 1.6;  
}

@media screen and (min-width: 768px) {
    .sc-greeting-02 {
        padding: 80px 0;
    }
    
    .sc-greeting-02__inner {
        max-width: 1140px;
        padding: 50px 110px;
    }
    
    .sc-greeting-02__inner h2 {
        font-size: 30px;
    }
}

/*
　特徴3カラム-02
================================*/
.sc-feature-col3-02 li {
    width: 95%;
    margin: 0 auto 50px auto;
}

.sc-feature-col3-02 li:last-child {
    margin-bottom: 0;
}

.sc-feature-col3-02__image {
    margin-bottom: 20px;
}

.sc-feature-col3-02__image img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.sc-feature-col3-02__text {
    display: block;
    width: 100%;
    padding: 0 10px;
    box-sizing: border-box;
}

.sc-feature-col3-02 h3 {
    margin: 0 0 15px 0;
    padding: 0;
    text-align: center;
    font-size: 22px;
    font-weight: bold;
}

/* PC */
@media screen and (min-width:768px) {
    .sc-feature-col3-02 {
        margin-bottom: -50px;
        padding: 0 8px;
    }

    .sc-feature-col3-02 ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .sc-feature-col3-02 ul::after {
        content: '';
        display: block;
        width: 30%;
    }

    .sc-feature-col3-02 li {
        width: 30%;
        margin: 0 0 50px 0;
    }

    .sc-feature-col3-02 li:last-child {
        margin-bottom: 50px;
    }

    .sc-feature-col3-02 h3 {
        text-align: center;
        font-size: 24px;
    }
}

/*
　お知らせ-01
================================*/
.sc-news-list-01 {
    width: 95%;
    margin: 0 auto;
}

.sc-news-list-01__unit {
    padding: 10px 0;
    border-bottom: dotted 1px #9e9e9e;
}

.sc-news-list-01__unit:first-child {
    border-top: dotted 1px #9e9e9e;
}

.sc-news-list-01__unit a {
    display: block;
    color: #333;
    text-decoration: none;
}

.sc-news-list-01__unit__data {   
    margin-bottom: 5px;
    font-size: 14px;
}

.sc-news-list-01__unit a:hover {
    opacity: 1.0;
    color: #ec6b38;
    text-decoration: underline;
}

/* PC */
@media screen and (min-width:768px) {
    .sc-news-list-01__unit {
        padding: 17px 10px;
    }

    .sc-news-list-01__unit:first-child {
        border-top: none;
    }

    .sc-news-list-01__unit:last-child {
        border-bottom: none;
    }

    .sc-news-list-01__unit a {
        display: flex;
        box-sizing: border-box;
    }

    .sc-news-list-01__unit__data {
        width: calc(100% - 80%);
        margin-bottom: 0;
        font-size: 16px;
    }

    .sc-news-list-01__unit__text {
        width: 80%;
    }
}

/*
　新着物件3カラム-01
================================*/
.sc-estate-new-col3-01 li {
    position: relative;
    width: 90%;
    margin:0 auto 50px auto;
    border: solid 1px #9c9c9c;
    background-color: #f5f5f5;
}

.sc-estate-new-col3-01 li:last-child {
    margin-bottom: 0;
}

.sc-estate-new-col3-01 a {
    display: block;
    text-decoration: none;
    color: #333;
}
                
.sc-estate-new-col3-01__image {
    position: relative;
}

.sc-estate-new-col3-01__image img {
    display: block;
    width: 100%;
    height: 200px;
    object-fit: cover;
}
    
.sc-estate-new-col3-01__label {
    position: absolute;
    bottom: 0;
    left: 0;
    display: inline-block;
    padding: 5px 10px;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.7);
}

.sc-estate-new-col3-01__price {
    line-height: 1.3;
    font-size: 20px;
    font-weight: bold;
}

.sc-estate-new-col3-01__price span {
    margin-left: 2px;
    font-size: 17px;
}
    
.sc-estate-new-col3-01__textarea {
    padding: 15px 20px;
}
                    
.sc-estate-new-col3-01__type {
    display: inline-block;
    margin-bottom: 10px;
    padding: 3px 10px;
    line-height: 1.6;
    font-size: 14px;
    color: #fff;
    background-color: #ec6b38;
}

.sc-estate-new-col3-01__type[data-type*="賃貸"]{
    background: #f4bd49;
}

.sc-estate-new-col3-01__address {
    margin-bottom: 10px;
    font-weight: bold;
}

.sc-estate-new-col3-01__access {
    margin-bottom: 10px;
    font-size: 15px;
}
                        
.sc-estate-new-col3-01__catchcopy {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-align: left;
    font-size: 15px;
    color: #ec6b38;
}

/* PC */
@media screen and (min-width:768px) {
    .sc-estate-new-col3-01 {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        margin-bottom: -50px;
        padding: 0 8px;
    }

    .sc-estate-new-col3-01::after {
        content: '';
        display: block;
        width: 30%;
    }

    .sc-estate-new-col3-01 li {
        width: 30%;
        margin: 0 0 50px 0;
    }

    .sc-estate-new-col3-01 li:last-child {
        margin-bottom: 50px;
    }

    .sc-estate-new-col3-01 a {
        height: 100%;
    }

    .sc-estate-new-col3-01 a:hover {
        opacity: 0.6;
    }

    .sc-estate-new-col3-01__price {
        font-size: 22px;
    }

    .sc-estate-new-col3-01__price span {
        font-size: 18px;
    }
}

/*
　スタッフ紹介-01
================================*/
.sc-staff-list-01 li {
    width: 95%;
    margin: 0 auto 50px auto;
}

.sc-staff-list-01 li:last-child {
    margin-bottom: 0;
}

.sc-staff-list-01__image {
    margin-bottom: 20px;
    text-align: center;
}

.sc-staff-list-01__image a {
    display: block;
    overflow:hidden;
}

.sc-staff-list-01__image img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition:1s all;
}

.sc-staff-list-01__image a img:hover {
    opacity: 1.0;
    transform:scale(1.2,1.2);
}

.sc-staff-list-01__text {
    text-align: center;
    font-size: 20px;
    font-weight: bold;
}

/* PC */
@media screen and (min-width:768px) {
    .sc-staff-list-01 {
        margin-bottom: -50px;
        padding: 0 8px;
    }
    
    .sc-staff-list-01 ul {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .sc-staff-list-01 ul::after {
        content: '';
        display: block;
        width: 30%;
    }

    .sc-staff-list-01 li {
        width: 30%;
        margin: 0 0 50px 0;
    }

    .sc-staff-list-01 li:last-child {
        margin-bottom: 50px;
    }
}

/*
　会社概要-04
================================*/
.sc-company-04 {
    width: 95%;
    margin: 0 auto;
    box-sizing: border-box;
}

.sc-company-04__content__detail {
    margin-bottom: 30px;
}

.sc-company-04__content__detail dl > div {
    display: flex;
    justify-content: space-between;
    box-sizing: border-box;
    margin-top: 0;
    margin-bottom: 0;
    border-top: dotted 1px #908a6a;
}

.sc-company-04__content__detail dl > div:last-child {
    border-bottom: dotted 1px #908a6a;
}

.sc-company-04__content__detail dt {
    width: 25%;
    padding: 13px 5px;
    text-align: center;
    font-weight: bold;
}

.sc-company-04__content__detail dd {
    width: 73%;
    margin-left: 0;
    padding: 13px 10px 13px 20px;
    font-weight: bold;
}

.sc-company-04__content__image {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin: 0 auto 15px auto;
    box-sizing: border-box;
}

.sc-company-04__content__image img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
    object-fit: cover;
}

.sc-company-04__content__image img:nth-child(2),
.sc-company-04__content__image img:nth-child(3) {
    width: 48%;
}

.sc-company-04__map {
    height: 250px;
}

/* PC */
@media screen and (min-width:768px) {
    .sc-company-04 {
        display: flex;
        justify-content: space-between;
        width: 100%;
        padding: 0 8px;
    }

    .sc-company-04__content {
        width: 60%;
    }

    .sc-company-04__content dt {
        width: 22%;
    }

    .sc-company-04__content dd {
        width: 70%;
    }

    .sc-company-04__content__image {
        display: flex;
        justify-content: space-between;
        gap: 0;
        margin-bottom: 0;
    }

    .sc-company-04__content__image::after {
        content: '';
        display: block;
        width: 31%;
    }

    .sc-company-04__content__image > img {
        width: 31%;
    }

    .sc-company-04__content__image img:nth-child(2),
    .sc-company-04__content__image img:nth-child(3) {
        width: 31%;
    }

    .sc-company-04__map {
        width: 37%;
        height: auto;
    }
}