@charset "UTF-8";

/* ━━━━━━━━━━━━━━━━

 ■初期化

━━━━━━━━━━━━━━━━ */

body {
    font-family: 'Noto Sans JP', 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-footer__sp-menu {
        display: none;
    }
}



/* ━━━━━━━━━━━━━━━━

 ■コンポーネント

━━━━━━━━━━━━━━━━ */


/*=================================

* コンテナ

=================================*/

.c-button-container {
    padding: 50px 0 0 0;
    text-align: center;
}

/*
　プライマリボタン
================================*/
.c-button--primary {
    display: block;
    width: 90%;
    padding: 20px 10px;
    margin: 0 auto;
    text-decoration: none;
    text-align: center;
    font-weight: bold;
    background-color: #003f68;
    border: solid 1px transparent;
}

.c-button--primary i {
    margin-left: 10px;
}

.c-button--primary,
.c-button--primary:link,
.c-button--primary:visited {
    text-decoration: none;
    color: #fff;
}

.c-button--primary:hover {
    opacity: 1.0;
    color: #003f68;
    background: #fff;
    border: solid 1px #003f68;
}

@media screen and (min-width:768px) {
    .c-button--primary {
        width: 380px;
    }
}

/*
　H2タイトル
================================*/
h2.tit {
    position: relative;
    margin: 0 auto 30px auto;
    padding: 5px 8px;
    line-height: 1.4;
    font-size: 24px;
    font-weight: bold;
    color: #333;
    background-color: transparent !important;
}

h2.tit::after {
    content: '';
    position: absolute;
    left: 8px;
    bottom: 1px;
    display: block;
    width: 40px;
    height: 1px;
    background-color: #003f68;
}

/* PC */
@media screen and (min-width:768px) {
    h2.tit {
        max-width: 1140px;
        margin: 0 auto 50px auto;
        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 {
    display: block;
    width: 100%;
    box-sizing: border-box;
}
    
.l-header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
 
/* ロゴ */
.l-header__logo {
    margin: 10px 0 10px 10px;
}
            
.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__nav {
    display: none;
}

/* ページタイトル */
.l-header__page-title {
    padding: 10px 8px;
    font-size: 13px;
}

/* PC */
@media screen and (min-width:768px) {
    .l-header {
        max-width: 1140px;
        margin: 0 auto;
        padding: 20px 8px;
    }

    /* ロゴ */
    .l-header__logo {
        margin: 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__nav {
        display: block;
    }
                
    .l-header__nav ul {
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }
                    
    .l-header__nav li {
        padding: 10px;
    }

    .l-header__nav li:last-child {
        padding-right: 0;
    }

    .l-header__nav a {
        position: relative;
        display: inline-block;
        text-align: center;
        text-decoration: none;
        font-size: clamp(14px, 16 / 1140 * 100vw, 16px);
        font-weight: bold;
        color: #000;
    }

    .l-header__nav a::after {
        position: absolute;
        content: '';
        width: 100%;
        height: 1px;
        bottom: -4px;
        left: 0;
        background: #000;
        transform: scale(0, 1);
        transform-origin: left top;
        transition: transform .3s;
    }

    .l-header__nav a:hover::after {
        transform: scale(1, 1);
    }

    /* ページタイトル */
    .l-header__page-title {
        max-width: 1140px;
        margin: 0 auto;
        padding: 10px 8px;
        font-size: 14px;
    }
}


/*=================================

* メインビジュアル

=================================*/
.l-main-visual {
    min-height: 200px;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../img/main-visual.jpg);
    background-position: center;
}

.l-main-visual__wrapper {
    width: 90%;
    margin: 0 auto;
    padding: 40px 0;
}

.l-main-visual__title h1 {
    margin-bottom: 30px;
    line-height: 1.4;
    font-size: 24px;
    font-weight: 900;
    color: #003f68;
    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;
}

.l-main-visual__inner {
    width: 85%;
    margin: 0 auto;
}

.l-main-visual__inquiry {
    padding: 20px;
    color: #fff;
    background-color: #636466;
}

.l-main-visual__inquiry h3 {
    margin-bottom: 15px;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
}

.l-main-visual__inquiry__tel {
    margin-bottom: 10px;
    text-align: center;
}

.l-main-visual__inquiry__tel span {
    font-size: 30px;
    font-weight: bold;
    color: #f9ce00;
    font-family: 'Century Gothic', 'arial', "Yu Gothic", sans-serif;
    line-height: 1;
}

.l-main-visual__inquiry__tel span i {
    margin-right: 5px;
}

.l-main-visual__inquiry__tel span a {
    text-decoration: none;
    color: #f9ce00;
}

.l-main-visual__inquiry__info {
    margin-bottom: 20px;
}

.l-main-visual__inquiry__info p  {
    margin-bottom: 5px;
}

.l-main-visual__inquiry__button a {
    display: block;
    padding: 10px 5px;
    text-decoration: none;
    text-align: center;
    font-weight: bold;
    color: #333;
    background-color: #fff;
}

.l-main-visual__inquiry__button a i {
    margin-right: 5px;
}

.l-main-visual__inquiry__button a:hover {
    color: #fff;
    background-color: #f9ce00;
}

/* PC */
@media screen and (min-width:768px) {
    .l-main-visual__wrapper {
        display: flex;
        justify-content: space-between;
        max-width: 1140px;
        width: 100%;
        padding: 100px 8px;
        box-sizing: border-box;
    }

    .l-main-visual__title {
        width: 60%;
    }
    
    .l-main-visual__title h1 {
        margin-bottom: 0;
        font-size: clamp(38px, 48 / 1140 * 100vw, 42px);
    }

    .l-main-visual__inner {
        max-width: 350px;
        width: 100%;
        margin: 0 0 0 auto;
    }

    .l-main-visual__inquiry {
        padding: 20px 40px 40px 40px;
    }

    .l-main-visual__inquiry h3 {
        margin-bottom: 10px;
        font-size: 35px;
    }

    .l-main-visual__inquiry__tel {
        margin-bottom: 10px;
    }

    .l-main-visual__inquiry__tel span {
        font-size: 35px;
    }

    .l-main-visual__inquiry__button a {
        padding: 15px 5px;
    }
}


/*=================================

* フッター

=================================*/
.l-footer {
    background: #003f68;
}

.l-footer__contact {
    padding: 40px 30px;
    text-align: center;
    color: #fff;
}

.l-footer__contact__logo {
    margin-bottom: 20px;
}

.l-footer__contact__logo span {
    font-size: 24px;
    font-weight: 900;
}

.l-footer__contact__info {
    margin-bottom: 20px;
}

.l-footer__contact__tel {
    margin-bottom: 10px;
    font-size: 34px;
    font-weight: bold;
}

.l-footer__contact__tel i {
    margin-right: 5px;
}

.l-footer__contact__tel a {
    text-decoration: none;
    color: #fff;
}

.l-footer__contact__open {
    margin-bottom: 30px;
}

.l-footer__contact__mail {
    max-width: 300px;
    margin: 0 auto;
}

.l-footer__contact__mail a {
    display: block;
    padding: 13px 5px;
    text-decoration: none;
    font-weight: bold;
    color: #fff;
    background: #f9ce00;
    box-sizing: border-box;
}

.l-footer__contact__mail a i {
    margin-right: 5px;
}

.l-footer__contact__mail a:hover {
    opacity: 1.0;
    color: #003f68;
    background: #fff;
}

.l-footer__map iframe {
    display: block;
}

.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;
}

/* ハンバーガーメニュー */
.l-footer__sp-menu {
    width: 100%;
    height: 100%;
    background: #fefefe;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    padding: 72px 20px 65px 20px;
    transform: translateY(min(-100%,-1000px));
    transition: transform .5s;
}

.l-footer__sp-menu.__open {
    transform: translateY(0);
    transition: transform .5s;
}

.l-footer__sp-menu ul li {
    width: 100%;
    height: auto;
    border-top: 1px solid #919191;
}

.l-footer__sp-menu ul li:hover {
    background: #747474;
}

.l-footer__sp-menu ul li:last-child {
    border-bottom: 1px solid #919191;
}

.l-footer__sp-menu ul li a {
    margin-left: 1em;
    text-decoration: none;
    font-size: 1em;
    line-height: 3em;
    color: #003f68;
    display: block;
    width: 100%;
    height: 3em;
}

.l-footer__sp-menu ul li a:hover {
    color: #fff;
}

/* PC */
@media screen and (min-width:768px) {
    footer {
        border-top: none;
    }
    
    .l-footer {
        width: 100%;
    }
    
    .l-footer__inner {
        display: flex;
        align-items: center;
    }
    
    .l-footer__contact {
        width: 50%;
        padding: 50px 10px;
        box-sizing: border-box;
    }
    
    .l-footer__map {
        width: 50%;
    }
    
    .l-footer__contact__logo {
        margin-bottom: 10px;
    }

    .l-footer__contact__logo span {
        font-size: 30px;
    }
    
    .l-footer__contact__tel {
        font-size: 40px;
    }

    .l-footer__contact__mail i {
        font-size: 20px;
    }

    .l-footer__nav {
        display: block;
        padding: 7px 0;
        text-align: center;
    }
    
    .l-footer__nav ul {
        max-width: 1140px;
        display: flex;
        justify-content: center;
        margin: 0 auto;
    }
    
    .l-footer__nav li {
        margin: 0 20px;
    }
    
    .l-footer__nav a {
        color: #fff;
        text-decoration: none;
    }
    
    .l-footer__nav a:hover {
        opacity: 1.0;
        color: #f9ce00;
    }

    .l-footer__bottom__nav {
        display: none;
    }

    .l-footer__sp-menu {
        display: none;
    }
}

/* フッターSNS
==============================*/
.l-footer__contact__sns {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.l-footer__contact__sns a:hover {
    opacity: 0.7;
}

.l-footer__contact__sns img {
    width: 35px;
}


/*=================================

* Copyright

=================================*/

.copyright {
    background-color: #52575d !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;
    }
}



/* ━━━━━━━━━━━━━━━━

 ■プロジェクト

━━━━━━━━━━━━━━━━ */


/*=================================

* トップ

=================================*/

/*
　あいさつ-01
================================*/
.sc-greeting-01 {
    padding: 40px 30px 50px 30px;
    background: #fff;
    border-radius: 7px;
}

.sc-greeting-01__image {
    margin-bottom: 20px;
}

.sc-greeting-01__image img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
    object-fit: cover;
}
    
.sc-greeting-01__text {
    line-height: 1.6;
}

/* PC */
@media screen and (min-width:768px) {
    .sc-greeting-01 {
        margin: 0 8px;
        padding: 40px 45px 45px 45px;
    }

    .sc-greeting-01__block {
        display: flex;
        justify-content: space-between;
    }
    
    .sc-greeting-01__image {
        order: 2;
        max-width: 450px;
        margin-bottom: 0;
    }

    .sc-greeting-01__text {
        order: 1;
        width: calc(100% - 20%);
        margin-right: 30px;
    }
}

/*
　特徴3カラム-01
================================*/
.sc-feature-col3-01 li {
    width: 95%;
    margin:0 auto 50px auto;
}

.sc-feature-col3-01 li:last-child {
    margin-bottom: 0;
}

.sc-feature-col3-01__image {
    margin-bottom: 20px;
}

.sc-feature-col3-01__image img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.sc-feature-col3-01__text {
    display: block;
    width: 100%;
    padding: 0 10px;
    text-align: center;
    box-sizing: border-box;
}

.sc-feature-col3-01 h3 {
    padding: 0;
    font-size: 22px;
    font-weight: bold;
}

/* PC */
@media screen and (min-width:768px) {
    .sc-feature-col3-01 {
        margin-bottom: -50px;
        padding: 0 8px;
    }
    
    .sc-feature-col3-01 ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        box-sizing: border-box;
    }

    .sc-feature-col3-01 ul::after {
        content: '';
        display: block;
        width: 30%;
    }

    .sc-feature-col3-01 li {
        width: 30%;
        margin: 0 0 50px 0;
    }

    .sc-feature-col3-01 li:last-child {
        margin-bottom: 50px;
    }

    .sc-feature-col3-01 h3 {
        text-align: center;
        font-size: 24px;
    }
}

/*
　新着物件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: #003f68;
}

.sc-estate-new-col3-01__type[data-type*="賃貸"]{
    background: #f9ce00;
}

.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: #003f68;
}

/* 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;
    }
}

/*
　会社概要-03
================================*/
.sc-company-03 {
    width: 95%;
    margin: 0 auto;
    padding: 50px 30px;
    background: #fff;
    border-radius: 7px;
    box-sizing: border-box;
}

.sc-company-03__content {
    margin: 0 auto 30px auto;
}

.sc-company-03__content dl > div {
    display: flex;
    justify-content: space-between;
    font-weight: bold;
    box-sizing: border-box;
}

.sc-company-03__content dt {
    width: 28%;
    padding: 13px 5px;
    text-align: center;
    border-top: solid 1px #908a6a;
}

.sc-company-03__content dl > div:last-child dt {
    border-bottom: solid 1px #908a6a;
}

.sc-company-03__content dd {
    width: 70%;
    padding: 13px 5px 13px 15px;
    border-top: solid 1px #c5c5c5;
}

.sc-company-03__content dl > div:last-child dd {
    border-bottom: solid 1px #c5c5c5;
}

.sc-company-03__image {
    text-align: center;
}

.sc-company-03__image img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

/* PC */
@media screen and (min-width: 768px) {
    .sc-company-03 {
        padding: 45px;
    }
    
    .sc-company-03__wrapper {
        display: flex;
        justify-content: space-between;
    }

    .sc-company-03__content {
        width: calc(100% - 420px);
        margin: 0 50px 0 0;
    }

    .sc-company-03__content dt {
        width: 25%;
    }

    .sc-company-03__content dd {
        width: 65%;
    }

    .sc-company-03__image {
        max-width: 370px;
        margin-bottom: 0;
    }
}