@charset "UTF-8";

/* ━━━━━━━━━━━━━━━━

 ■初期化

━━━━━━━━━━━━━━━━ */

html {
    scroll-padding-top: 120px;
}

body {
    font-family: 'Noto Sans Japanese', sans-serif;
    min-width: auto !important;
}



/* ━━━━━━━━━━━━━━━━

 ■ユーティリティ

━━━━━━━━━━━━━━━━ */
.u-mr-5 {
    margin-right: 5px !important;
}

.u-mr-10 {
    margin-right: 10px !important;
}

.u-mb-0 {
    margin-bottom: 0 !important;
}

.u-mb-10 {
    margin-bottom: 10px !important;
}

.u-mb-20 {
    margin-bottom: 20px !important;
}

.u-mb-30 {
    margin-bottom: 30px !important;
}

.u-mb-40 {
    margin-bottom: 40px !important;
}

.u-mb-50 {
    margin-bottom: 50px !important;
}

.u-mb-80 {
    margin-bottom: 80px !important;
}

.u-pt-0 {
    padding-top: 0 !important;
}

.u-pb-0 {
    padding-bottom: 0 !important;
}

/*=================================

* media

=================================*/

@media screen and (max-width:767px) {
    .u-hidden-sp {
        display: none;
    }
}

@media screen and (min-width:768px) {
    .u-hidden-pc {
        display: none;
    }
}



/* ━━━━━━━━━━━━━━━━

 ■コンポーネント

━━━━━━━━━━━━━━━━ */


/*=================================

* コンテナ

=================================*/

.c-button-container {
    padding: 50px 0 0 0;
    text-align: center;
}

/*
　プライマリボタン
================================*/
.c-button--primary {
    display: block;
    width: 90%;
    padding: 15px 10px;
    margin: 0 auto;
    text-decoration: none;
    text-align: center;
    font-weight: bold;
    background-color: #006bb9;
    border: solid 1px transparent;
}

.c-button--primary i {
    margin-left: 10px;
    font-size: 21px;
    font-weight: bold;
}

.c-button--primary,
.c-button--primary:link,
.c-button--primary:visited {
    text-decoration: none;
    color: #fff;
}

.c-button--primary:hover {
    opacity: 1.0;
    color: #006bb9;
    background: #fff;
    border: solid 1px #006bb9;
}

@media screen and (min-width:768px) {
    .c-button--primary {
        width: 380px;
    }
}

/*
　標準ボタン
================================*/
.c-button {
    position: relative;
    display: block;
    width: 95%;
    margin: 0 auto;
    padding: 12px 5px;
    text-align: center;
    border-radius: 30px;
    border: 2px solid #006bb9;
    background-color: #FFF;
    box-sizing: border-box;
    cursor: pointer;
    transition: 0.3s cubic-bezier(0.45, 0, 0.55, 1);
    overflow: hidden;
    z-index: 1;
}
  
.c-button,
.c-button:link,
.c-button:visited {
    text-decoration: none;
    color: #006bb9;
    font-weight: bold;
}
  
.c-button::after {
    background: #006bb9;
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: 0.3s cubic-bezier(0.45, 0, 0.55, 1);
    z-index: -1;
}
  
.c-button:hover {
    color: #FFF;
}
  
.c-button:hover::after {
    transform: scale(1, 1);
}
  
@media screen and (min-width: 768px) {
    .c-button {
      width: 43%;
      padding: 15px 10px;
      font-size: 17px;
    }
}

/*
　H2タイトル
================================*/
h2.tit {
    margin: 0 auto 30px auto;
    padding: 5px 8px;
    line-height: 1.4;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    color: #333;
    background-color: transparent !important;
}

h2.tit::first-letter {
    color: #006bb9;
}

/* 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);
    }
}

/*
　シンプル-03・左寄せ
================================*/
.c-title-03 {
    position: relative;
    margin: 5px auto 30px auto;
    padding: 5px 8px;
    line-height: 1.4;
    font-size: 25px;
    font-weight: bold;
    color: #333;
    overflow: hidden;
}

.c-title-03::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 1px;
    display: block;
    width: 100%;
    height: .06em;
    background-color: #006bb9;
}

/* PC */
@media screen and (min-width:768px) {
    .c-title-03 {
        max-width: 1140px;
        margin: 5px auto 50px auto;
        font-size: clamp(28px, 36 / 768 * 100vw, 36px);
    }
}


/* ━━━━━━━━━━━━━━━━

 ■レイアウト

━━━━━━━━━━━━━━━━ */


/*=================================

* セクション

=================================*/

.l-section {
    padding: 50px 0;
}

.l-section.l-section--gray {
    background: #f5f5f5;
}

.l-section.l-section--blue {
    background: #eaf3f9;
}

.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;
    position: relative;
    top: 0;
    z-index: 2000;
    width: 100%;
    height: 80px;
    margin: 0 auto;
    background-color: #fff;
}

.l-header {
    width: 100%;
    padding: 5px 10px;
    box-sizing: border-box;
    background-color: #fff;
    position: fixed;
    z-index: 1000;
    top: 0;
}

.l-header h1 {
    margin-bottom: 10px;
    font-size: 14px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}
    
.l-header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
 
/* ロゴ */
.l-header__logo {
    max-width: 220px;
}
            
                
.l-header__logo a img {
    width: 100%;
}

/* ナビゲーション */
.l-header__nav {
    display: none;
}

/* ページタイトル */
.l-header__page-title {
    padding: 10px 8px;
    font-size: 13px;
}

.l-header__menu__button {
    position: absolute;
    right: 15px;
    display: block;
}

.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;
    transform: translateY(min(-100%,-1000px));
    transition: transform .5s;
    overflow-y: auto;
    background: #fefefe;
    z-index: -1;
}

.l-header__sp-menu ul li {
    width: 100%;
    height: auto;
    border-top: 1px solid #919191;
}

.l-header__sp-menu ul li:last-child {
    border-bottom: 1px solid #919191;
}

.l-header__sp-menu ul li:hover {
    background: #747474;
}

.l-header__sp-menu ul li a {
    display: block;
    width: 100%;
    height: 3em;
    margin-left: 1em;
    text-decoration: none;
    line-height: 3em;
    font-size: 1em;
    color: #0b3c5d;
}

.l-header__sp-menu ul li a:hover {
    color: #fff;
}

.l-header__sp-menu--tel a,
.l-header__sp-menu--mail a {
    display: block;
    text-align: center;
}

.l-header__sp-menu--mail a:hover {
    background: #070d59;
}

.l-header__sp-menu--tel a {
    margin-top: 50px;
    text-decoration: none;
    line-height: 1;
    font-family: "Arial", 'Noto Sans Japanese', sans-serif;
    font-size: 32px;
    font-weight: bold;
    color: #006bb9;
}

.l-header__sp-menu--tel p {
    text-align: center;
    font-size: 16px;
    color: #5f5f5f;
}

.l-header__sp-menu--mail a {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 450px;
    margin: 30px auto;
    padding: 30px;
    text-decoration: none;
    font-size: 16px;
    color: #FFF;
    background-color: #006bb9;
    box-sizing: border-box;
}

.l-header__sp-menu--mail a span {
    font-weight: bold;
    font-size: 25px;
}

.l-header__sp-menu.__open {
    transform: translateY(0);
    transition: transform .5s;
}

@media print {
    .l-header__sp-menu {
        display: none;
    }
}

/* PC */
@media screen and (min-width:768px) {
    header {
        height: 105px;
    }
    
    .l-header {
        padding: 2px 8px 15px 8px;
    }

    .l-header h1 {
        margin-bottom: 10px;
        text-align: right;
        font-size: 16px;
    }

    .l-header__wrapper {
        max-width: 1140px;
        margin: 0 auto;
    }

    .l-header__inner {
        align-items: baseline;
    }

    /* ロゴ */
    .l-header__logo {
        max-width: 270px;
    }
    
    .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: 0 12px;
    }

    .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-header__menu__button {
        display: none;
    }
}


/*=================================

* メインビジュアル

=================================*/
.l-main-visual {
    position: relative;
    background: url('../img/main-visual.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 70vh;
    overflow: hidden;
}

.l-main-visual__title {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 95%;
    margin: 0 auto;
    padding: 2em 1em;
    box-sizing: border-box;
}

.l-main-visual__title h2 {
    margin: 0 auto;
    line-height: 1.6;
    font-size: clamp(22px, 40 / 900 * 100vw, 40px);
    font-weight: 900;
    color: #333;
    letter-spacing: .08em;
    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__title h2 span {
    color: #006bb9;
    font-size: 1.5em;
    line-height: 1.4;
}

/* PC */
@media screen and (min-width:768px) {
    .l-main-visual {
        background-position: center center;
        height: 700px;
    }

    .l-main-visual__title {
        top: 28%;
        left: 20%;
        transform: translate(-20%, calc(-50% + 60px ));
        width: max-content;
        padding: 2em;
    }

    .l-main-visual__title h2 {
        font-size: clamp(30px, 48 / 1140 * 100vw, 48px);
    }
}

/*=================================

* フッター物件リクエスト

=================================*/
.l-footer-request {
    background: #4F9BA6;
    position: relative;
}

.l-footer-request__request {
    padding: 40px 30px;
    text-align: center;
    color: #fff;
}

.l-footer-request__request__announce {
    margin-bottom: 25px;
}

.l-footer-request__request__announce p {
    line-height: 1.6;
    font-weight: bold;
}

.l-footer-request__request__action h2 {
    margin-bottom: 15px;
    font-weight: bold;
    font-size: 26px;
}

.l-footer-request__request__action p {
    margin-bottom: 25px;
    font-weight: bold;
}

.l-footer-request__request__action p span {
    font-size: 20px;
    color: #f25c05;
}

.l-footer-request__request__action__button a {
    display: block;
    padding: 15px 10px;
    text-decoration: none;
    font-weight: bold;
    color: #fff;
    border: solid 1px #f25c05;
    background: #f25c05;
}

.l-footer-request__request__action__button a:hover {
    opacity: 1;
    border: solid 1px #fff;
    background: #006bb9;
}

/* PC */
@media screen and (min-width:768px) {
    .l-footer-request {
        width: 100%;
    }
      
    .l-footer-request__request {
        width: 100%;
        padding: 50px 10px;
        box-sizing: border-box;
    }

    .l-footer-request__request__announce p {
        font-size: 20px;
    }

    .l-footer-request__request__action h2 {
        margin-bottom: 20px;
        font-size: 32px;
    }

    .l-footer-request__request__action p {
        margin-bottom: 35px;
        font-size: 22px;
    }

    .l-footer-request__request__action p span {
        font-size: 26px;
    }
    
    .l-footer-request__request__action__button a {
        max-width: 380px;
        margin: 0 auto;
        font-size: 18px;
    }
}

/*=================================

* フッターコンタクト

=================================*/
.l-footer-main {
    position: relative;
    width: 100%;
    background-image: url(../img/footer__background.jpg);
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
    z-index: 1000;
}

.l-footer-main::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(31, 42, 52, 0.65);
    z-index: -1;
}

.l-footer__contact {
    position: relative;
    padding: 40px 20px;
    z-index: 10;
}

.l-footer__contact h2 {
    margin-bottom: 50px;
    text-align: center;
    font-size: 26px;
    font-weight: 900;
    color: #fff;
}

.l-footer__contact__inner {
    border-bottom: solid 1px #fff;
}

.l-footer__contact__tel {
    padding-bottom: 40px;
    text-align: center;
}

.l-footer__contact__tel a {
    font-size: 30px;
    font-weight: bold;
    color: #fff;
}

.l-footer__contact__mail {
    margin-bottom: 50px;
}

.l-footer__contact__mail a {
    display: block;
    max-width: 380px;
    width: 90%;
    margin: 0 auto;
    padding: 20px 0;
    text-align: center;
    font-weight: bold;
    color: #fff;
    border: solid 1px #fff;
}

.l-footer__bottom {
    position: relative;
    width: 90%;
    margin: 0 auto;
    padding: 0px 0px 65px 0px;
    text-align: center;
    color: #FFF;
    z-index: 10;
}

.l-footer__company {
    margin-bottom: 20px;
    line-height: 1.8;
}

.l-footer__company img {
    max-width: 320px;
    width: 80%;
    margin-bottom: 10px;
}
        
.l-footer__nav {
    display: none;
}

.l-footer__sns {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.l-footer__sns a:hover {
    opacity: 0.7;
}

.l-footer__sns img {
    width: 40px;
}

.l-footer__sns a:not(:first-child) {
    margin-left: 15px;
}

/* PC */
@media screen and (min-width:768px) {
    footer {
        border-top: none;
    }

    .l-footer__contact {
        max-width: 1140px;
        margin: 0 auto;
        padding: 70px 0px 30px 0;
    }

    .l-footer__contact h2 {
        font-size: 38px;
    }

    .l-footer__contact__inner {
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        padding-bottom: 70px;
    }

    .l-footer__contact__tel,
    .l-footer__contact__mail {
        width: 50%;
        margin-bottom: 0;
    }

    .l-footer__contact__tel {
        padding: 0;
    }

    .l-footer__contact__tel a,
    .l-footer__contact__mail a {
        text-decoration: none;
    }

    .l-footer__contact__mail a {
        width: 60%;
        margin: 0 auto;
    }

    .l-footer__contact__mail a:hover {
        background-color: #f25c05;
        border: solid 1px #f25c05;
    }

    .l-footer__bottom {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 30px 0;
        max-width: 1140px;
    }

    .l-footer__company {
        margin-bottom: 0;
        text-align: left;
        line-height: 2.0;
    }
    
    .l-footer__company img {
        margin-bottom: 0;
    }
                
    .l-footer__nav {
        display: block;
        width: 56%;
        margin-bottom: 0;
    }

    .l-footer__nav ul {
        display: flex;
        flex-wrap: wrap;
    }
                    
    .l-footer__nav li {
        margin-bottom: 0;
        padding: 5px 15px;
        font-size: 16px;
    }

    .l-footer__nav li a {
        position: relative;
        display: inline-block;
        text-decoration: none;
        color: #fff;
    }

    .l-footer__nav li a:hover {
        color: #f25c05;
    }
    
    .l-footer__sns {
        margin-top: 30px;
    }

    .l-footer__sns img {
        width: 45px;
    }

    .l-footer__sns a:not(:first-child) {
        margin-left: 15px;
    }
}


/*=================================

* Copyright

=================================*/

.copyright {
    background-color: #52575d !important;
    padding: 8px 0 !important;
    color: #fff;
}


/*=================================

* ページの先頭へ

=================================*/

/* SP */
@media screen and (max-width: 767px) {
    .btn__page_top {
      display: none !important;
    }
}



/* ━━━━━━━━━━━━━━━━

 ■プロジェクト

━━━━━━━━━━━━━━━━ */


/*=================================

* トップ

=================================*/

/*
物件リクエスト
================================*/
.p-page-link {
    position: relative;
}

.p-page-link__inner {
    max-width: 1140px;
    margin: 0 auto;
    width: 90%;
}

.p-page-link h2 {
    font-size: clamp(26px, 30/768*100vw, 30px);
    margin-bottom: 20px;
    font-family: "Noto Serif JP", serif;
    font-weight: 900;
    line-height: 1;
}

.p-page-link__text {
    margin-bottom: 20px;
}

.p-page-link__text p {
    line-height: 1.8;
    font-size: 16px;
}

.p-page-link__heading {
    width: 100%;
    position: relative;
}

.p-page-link__heading span {
    position: absolute;
    top: 3%;
    right: 2%;
    white-space: nowrap;
    font-weight: 700;
    font-style: italic;
    color: #cbcbcb;
    opacity: 0.2;
    font-size: clamp(45px, 60/768*100vw, 60px);
    line-height: 1;
}

.p-page-link__button a {
    display: block;
    max-width: 350px;
    margin: 0 auto;
    padding: 20px 10px;
    text-decoration: none;
    text-align: center;
    color: #fff;
    background-color: #006bb9;
    transition: .3s;
}

.p-page-link__button a i {
    margin-left: 10px;
    font-size: 21px;
    font-weight: bold;
}

.p-page-link__button:hover a {
    opacity: 1.0;
    color: #006bb9;
    background: #fff;
    border: solid 1px #006bb9;
}



/* PC */
@media screen and (min-width:1000px) {
    .p-page-link h2 {
        font-size: clamp(30px, 50/1140*100vw, 50px);
    }
    
    .p-page-link__block {
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
    }
    
    .p-page-link__text {
        flex-basis: 60%;
        margin-bottom: 0;
    }

    .p-page-link__text p {
        font-size: 17px;
    }

    .p-page-link__heading span {
        top: -7%;
        font-size: clamp(60px, 120/1140*100vw, 120px);
    }
      
    .p-page-link__button {
        flex-basis: 37%;
    }

    .p-page-link__button a:hover {
        opacity: .8;
    }
}

/*
　お知らせ-01
================================*/
.c-news-list-01__title h2 {
    margin-bottom: 30px;
    text-align: center;
    font-size: 1.4rem;
    font-weight: bold;
}

.c-news-list-01__list {
    padding: 0 10px;
}

.c-news-list-01__list li {
    position: relative;
    padding: 10px 0;
    border-bottom: solid 1px #dddddd;
}

.c-news-list-01__list li:first-child {
    border-top: solid 1px #dddddd;
}

.c-news-list-01__list li::after {
    content: "";
    display: block;
    position: absolute;
    top: calc(50% - 6px);
    right: 2px;
    width: 10px;
    height: 10px;
    border-top: solid 2px #333;
    border-right: solid 2px #333;
    transform: rotate(45deg);
}

.c-news-list-01__list a {
    display: block;
    color: #333;
    text-decoration: none;
}

.c-news-list-01__list__data {
    margin-bottom: 5px;
    font-size: 14px;
}

.c-news-list-01__list__text {
    width: 90%;
}

.c-news-list-01__button__pc {
    display: none;
}

.c-news-list-01__button__sp {
    padding: 30px 0 0 0;
    text-align: center;
}

.c-news-list-01__button__sp a {
    position: relative;
    display: block;
    width: 90%;
    padding: 20px 10px;
    margin: 0 auto;
    color: #ffffff;
    background-color: #006bb9;
    text-decoration: none;
    text-align: center;
}

.c-news-list-01__button__sp a,
.c-news-list-01__button__sp a:link,
.c-news-list-01__button__sp a:visited {
    text-decoration: none;
    color: #FFF;
}

.c-news-list-01__button__sp .fa {
    margin-left: 20px;
}

/* PC */
@media screen and (min-width:768px) {
    .c-news-list-01 {
        max-width: 1140px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .c-news-list-01__title {
        width: 30%;
    }
    
    .c-news-list-01__title h2 {
        margin-bottom: 20px;
        font-size: 1.7rem;
    }

    .c-news-list-01__list {
        width: 70%;
    }

    .c-news-list-01__list li {
        padding: 15px 10px;
        border-bottom: solid 1px #000;
    }
    
    .c-news-list-01__list li::after {
        display: none;
    }

    .c-news-list-01__list li:first-child {
        border-top: none;
    }

    .c-news-list-01__list li:last-child {
        border-bottom: none;
    }

    .c-news-list-01__list li a {
        display: flex;
        box-sizing: border-box;
    }

    .c-news-list-01__list li a:hover {
        color: #006bb9;
        text-decoration: underline;
    }

    .c-news-list-01__list__data {
        width: 25%;
        font-size: 16px;
    }

    .c-news-list-01__list__text {
        width: 75%;
    }

    .c-news-list-01__button__pc {
        display: block;
    }

    .c-news-list-01__button__pc a {
        position: relative;
        display: block;
        width: 130px;
        margin: 0 auto;
        padding: 10px;
        color: #ffffff;
        background-color: #006bb9;
        text-decoration: none;
        text-align: center;
    }

    .c-news-list-01__button__pc a,
    .c-news-list-01__button__pc a:link,
    .c-news-list-01__button__pc a:visited {
        text-decoration: none;
        color: #FFF;
    }

    .c-news-list-01__button__pc a:hover {
        background-color: #f25c05;
    }

    .c-news-list-01__button__pc .fa {
        margin-left: 10px;
    }

    .c-news-list-01__button__sp {
        display: none;
    }
}

/*
　事業内容
================================*/
.c-feature-col4-01  {
    padding: 0 8px;
}

.c-feature-col4-01__note  {
    margin-bottom: 2em;
    font-weight: 600;
    font-size: 16px;
}

.c-feature-col4-01 ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.c-feature-col4-01 ul li {
    width: 48%;
    margin-bottom: 50px;
}

.c-feature-col4-01 ul li a {
    display: block;
    margin: 20px auto 0;
    padding: 10px 0;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    background-color: #006bb9;
    color: #fff;
}

.c-feature-col4-01 ul li a:hover {
    opacity: 0.7;
}

.c-feature-col4-01__image {
    width: 100%;
}

.c-feature-col4-01__image img {
    width: 100%;
    aspect-ratio: 3/2;
    -o-object-fit: cover;
    object-fit: cover;
}

.c-feature-col4-01__text h3 {
    margin: 10px 0;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
}

/* スマホ */
@media screen and (max-width:428px) {
    .c-feature-col4-01 ul li {
        width: 100%;
    }
}

/* PC */
@media screen and (min-width:768px) {
    .c-feature-col4-01 {
        max-width: 1140px;
        margin: 0 auto;
        padding: 0;
    }

    .c-feature-col4-01 ul {
        justify-content: space-between;
    }

    .c-feature-col4-01 ul::after {
        content: '';
        display: block;
        width: 31%;
    }

    .c-feature-col4-01 ul li {
        width: 31%;
    }
    

    .c-feature-col4-01__note  {
        font-size: 18px;
    }
}

/*
　会社概要-03
================================*/
.c-company-03 {
    max-width: 450px;
    margin: 0 auto 10px auto;
}

.c-company-03__content__detail {
    margin-bottom: 30px;
}

.c-company-03__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;
}

.c-company-03__content__detail dl > div:last-child {
    border-bottom: dotted 1px #908a6a;
}

.c-company-03__content__detail dt {
    width: 25%;
    padding: 13px 5px;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
}

.c-company-03__content__detail dd {
    width: 73%;
    margin-left: 0;
    padding: 13px 5px 13px 20px;
    font-size: 16px;
    font-weight: bold;
}

.c-company-03__content__image {
    text-align: center;
}

.c-company-03__content__image img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    margin-bottom: 15px;
}

.c-company-03__content__image > div {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.c-company-03__content__image > div img {
    display: block;
    width: 48%;
    height: auto;
    margin-bottom: 0;
}

.c-company-03__map {
    height: 250px;
}

/* PC */
@media screen and (min-width:768px) {
    .c-company-03 {
        display: flex;
        justify-content: space-between;
        max-width: 1140px;
        margin: 0 auto 50px auto;
        padding: 0 8px;
    }

    .c-company-03__content {
        width: 60%;
    }

    .c-company-03__content dt {
        width: 22%;
        font-size: 16px;
    }

    .c-company-03__content dd {
        width: 70%;
        font-size: 16px;
    }

    .c-company-03__content__image {
        display: flex;
        justify-content: start;
    }

    .c-company-03__content__image img {
        display: block;
        width: 32%;
        margin-bottom: 0;
        margin-right: 15px;
    }

    .c-company-03__content__image > div {
        justify-content: space-evenly;
        margin-bottom: 0;
    }

    .c-company-03__content__image img:last-child {
        margin-right: 0;
    }

    .c-company-03__map {
        width: 37%;
        height: auto;
    }
}

/*
　バナー（２カラム）-03
=================================*/
.c-banner-col2-03 {
    width: 95%;
    margin: 0 auto;
}

.c-banner-col2-03 a {
    display: block;
    height: 100%;
    text-decoration: none;
    z-index: 21;
}

.c-banner-col2-03__voice,
.c-banner-col2-03__message {
    position: relative;
    height: 200px;
    outline: 1px solid #fff;
    outline-offset: -10px;
    z-index: 10;
}

.c-banner-col2-03__voice:hover,
.c-banner-col2-03__message:hover {
    opacity: 0.8;
}

.c-banner-col2-03__voice {
    background: url(../img/index-banner-col2--01.jpg) no-repeat center / cover;
}

.c-banner-col2-03__message {
    margin-top: 20px;
    background: url(../img/index-banner-col2--02.jpg) no-repeat center / cover;
}

.c-banner-col2-03__voice:after,
.c-banner-col2-03__message:after {
    position: absolute;
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.8;
    z-index: -11;
}

.c-banner-col2-03__voice:after {
    background: linear-gradient(53deg, #006bb9 41%, transparent 41%);
}

.c-banner-col2-03__message:after {
    background: linear-gradient(53deg, #f25c05 41%, transparent 41%);
}

.c-banner-col2-03 p,
.c-banner-col2-03 h2 {
    margin-left: 10px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    color: #fff;
    z-index: 20;
}

.c-banner-col2-03 p {
    display: inline-block;
    width: 140px;
    margin-top: 105px;
    padding-left: 13px;
    font-size: 20px;
    padding-bottom: 4px;
    border-bottom: 1px solid #fff;
}

.c-banner-col2-03 h2 {
    font-size: 21px;
    margin-top: 7px;
    padding-left: 13px;
}

/* PC */
@media screen and (min-width:768px) {
    .c-banner-col2-03 {
        display: flex;
        justify-content: space-between;
        width: 100%;
    }

    .c-banner-col2-03__voice,
    .c-banner-col2-03__message {
        width: 48%;
        height: 250px;
        margin-top: 0;
    }

    .c-banner-col2-03 p {
        width: 150px;
        margin-top: 142px;
    }

    .c-banner-col2-03 h2 {
        font-size: 30px;
        margin-top: 4px;
    }
}

/*
　物件情報-07
================================*/
.c-estate-list-col3-07 li {
    position: relative;
    width: 90%;
    margin:0 auto 50px auto;
    border: solid 1px #9c9c9c;
    background-color: #f5f5f5;
}

.l-section--gray .c-estate-list-col3-07 li {
    background-color: #fff;
}

.c-estate-list-col3-07 li:last-child {
    margin-bottom: 20px;
}

.c-estate-list-col3-07 a {
    display: block;
    text-decoration: none;
    color: #333;
}
                
.c-estate-list-col3-07__image {
    position: relative;
}

.c-estate-list-col3-07__image img:last-of-type {
    display: block;
    width: 100%;
    aspect-ratio: 3/2;
    object-fit: cover;
}
    
.c-estate-list-col3-07__label {
    position: absolute;
    bottom: 0;
    left: 0;
    display: inline-block;
    padding: 5px 10px;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.7);
}

.c-estate-list-col3-07__price {
    line-height: 1.3;
    font-size: 20px;
    font-weight: bold;
}

.c-estate-list-col3-07__price span {
    margin-left: 2px;
    font-size: 17px;
}
    
.c-estate-list-col3-07__textarea {
    padding: 15px 20px;
}
                    
.c-estate-list-col3-07__type {
    display: inline-block;
    margin-bottom: 10px;
    padding: 3px 10px;
    line-height: 1.6;
    font-size: 14px;
    color: #fff;
    background-color: #006bb9;
}

.c-estate-list-col3-07__type[data-type*="賃貸"]{
    background: #f25c05;
}

.c-estate-list-col3-07__address {
    margin-bottom: 10px;
    font-weight: bold;
}

.c-estate-list-col3-07__access {
    margin-bottom: 10px;
    font-size: 15px;
}
                        
.c-estate-list-col3-07__catchcopy {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-align: left;
    font-size: 15px;
    color: #006bb9;
}

/* PC */
@media screen and (min-width:768px) {
    .c-estate-list-col3-07 {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        padding: 0 8px;
    }

    .c-estate-list-col3-07::after {
        content: '';
        display: block;
        width: 30%;
    }

    .c-estate-list-col3-07 li {
        width: 30%;
        margin: 0 0 50px 0;
    }

    .c-estate-list-col3-07 li:last-child {
        margin-bottom: 50px;
    }

    .c-estate-list-col3-07 a {
        height: 100%;
    }

    .c-estate-list-col3-07 a:hover {
        opacity: 0.6;
    }

    .c-estate-list-col3-07__price {
        font-size: 22px;
    }

    .c-estate-list-col3-07__price span {
        font-size: 18px;
    }
}

/*
　挨拶-01
================================*/
.c-greeting-01__text h3 {
    font-family: "Noto Serif JP", serif;
    font-size: clamp(21px, 6vw, 36px);
    font-weight: 900;
    color: #006bb9;
}

.c-greeting-01__text p {
    margin-top: 35px;
    line-height: 2;
    font-size: 16px;
}

.c-greeting-01__ceo-name {
    font-size: 20px;
    font-weight: bold;
    text-align: right;
}


/* PC */
@media screen and (min-width:768px) {
    .c-greeting-01__text p {
        font-size: 18px;
    }

}

/*
　ページタイトル
================================*/
.c-page-title-01 {
    position: relative;
    width: 100%;
    height: 150px;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
    margin: 0 auto 30px auto;
}

.c-page-title-01__buy {
    background-image: url(../img/page-title__buy.jpg);
}

.c-page-title-01__rent {
    background-image: url(../img/page-title__rent.jpg);
}

.c-page-title-01__sell {
    background-image: url(../img/page-title__sell.jpg);
}

.c-page-title-01__souzoku {
    background-image: url(../img/page-title__souzoku.jpg);
}

.c-page-title-01__akiya {
    background-image: url(../img/page-title__akiya.jpg);
}

.c-page-title-01__management {
    background-image: url(../img/page-title__management.jpg);
}



.c-page-title-01::before {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    content: '';
    background-color: rgba(29, 39, 49, 0.6);
}

.c-page-title-01 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: 27px;
    font-weight: bold;
    text-shadow: 2px 2px 3px #000;
}

/* PC */
@media screen and (min-width:768px) {
    .c-page-title-01 {
        height: 300px;
        margin: 0 auto 80px auto;
    }
    
    .c-page-title-01 h2 {
        font-size: 60px;
    }
}

/*
　コンタクト-01
================================*/
.c-contact-01 {
    display: block;
    padding: 30px 0;
    background: #727a84;
}

/* mail */
.c-contact-01__mail {
    width: 95%;
    margin: 0 auto;
    border-bottom: 1px solid #FFF;
}

.c-contact-01__mail a {
    display: block;
    max-width: 380px;
    width: 90%;
    margin: 0 auto 30px auto;
    padding: 20px 0;
    text-align: center;
    text-decoration: none;
    font-size: 18px;
    color: #fff;
    border: solid 1px #fff;
}

.c-contact-01__mail a:hover {
    background-color: #FFF;
    color: #727a84;
}

.c-contact-01__mail a i {
    margin-right: 5px;
}

/* tel */
.c-contact-01__tel {
    padding-top: 20px;
    text-align: center;
    color: #fff;
}

.c-contact-01__tel__announce {
    font-size: 18px;
}

.c-contact-01__tel__no {
    text-decoration: none !important;
    font-size: 40px;
    font-weight: bold;
    color: #fff !important;
    font-family: "Arial", "Century Gothic", "Noto Sans Japanese", sans-serif;
}

.c-contact-01__tel__no i {
    margin-right: 5px;
}

/* PC */
@media screen and (min-width:768px) {
    .c-contact-01 {
        display: flex;
        align-items: center;
        padding: 20px 0;
    }

    /* mail */
    .c-contact-01__mail {
        width: 50%;
        padding: 25px 0;
        border-right: 1px solid #FFF;
        border-bottom: none;
    }

    .c-contact-01__mail a {
        width: 70%;
        margin: 0 auto;
    }
    
    /* tel */
    .c-contact-01__tel {
        width: 50%;
        padding-top: 0;
    }

    .c-contact-01__tel__announce {
        font-size: 20px;
    }
}

/*
　流れ-04
================================*/
.c-flow-04 {
    margin: 0 auto 40px auto;
}

.c-flow-04.c-flow-04__inner {
    margin-top: 25px;
}

.c-flow-04__step {
    position: relative;
    width: 270px;
    background: #006bb9;
    padding: 10px 10px 0 10px;
    text-align: center;
    color: #FFF;
    box-sizing: border-box;
    margin: 0 auto;
}

.c-flow-04__step p, 
.c-flow-04__step h3 {
    font-weight: 500;
    font-size: 18px;
    margin-bottom: 2px;
}

.c-flow-04__step:after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    bottom: -25px;
    left: 0;
    border-style: solid;
    border-color: #006bb9 transparent transparent transparent;
    border-width: 25px 135px 0 135px;
    z-index: 1;
}

.c-flow-04__text {
    padding: 40px 10px;
}

/* PC */
@media screen and (min-width:768px) {
    .c-flow-04 {
        margin-bottom: 80px;
    }

    .c-flow-04__block {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        padding: 20px 0;
        margin-bottom: 30px;
    }

    .c-flow-04__step {
        margin: 0;
    }

    .c-flow-04__text {
        width: calc(100% - 330px);
        padding: 0 0 0 60px;
        font-size: 16px;
    }
}

/*
　よくある質問-01
================================*/
.c-ques-list-01 {
    width: 90%;
    margin: 0 auto 30px auto;
}

.c-ques-list-01 dt,
.c-ques-list-01 dd {
    line-height: 1.7;
}

.c-ques-list-01 dt {
    margin-bottom: 10px;
}

.c-ques-list-01 dd {
    margin-bottom: 50px;
}

.c-ques-list-01 dt p,
.c-ques-list-01 dd p {
    display: inline-block;
    width: calc(100% - 60px);
    margin-left: 10px;
    padding: 8px;
    font-size: 16px;
    background-color: #FFFFFF;
    border: solid 1px #CCCCCC;
    border-radius: 5px;
    box-sizing: border-box;
}

.c-ques-list-01 dt:before,
.c-ques-list-01 dd:before {
    display: inline-block;
    content: "Q";
    width: 35px;
    height: 35px; 
    vertical-align: top;
    text-align: center;
    font-size: 24px;
    font-family: "Arial", sans-serif;
    font-weight: 500;
    color: #FFF;
    line-height: 35px;
    border-radius: 50%; 
    background-color: #006bb9; 
}

.c-ques-list-01 dd:before {
    content: "A";
    background-color: #CCC;
}

/* PC */
@media screen and (min-width:768px) {
    .c-ques-list-01 {
        width: 100%;
    }

    .c-ques-list-01 dt:before,
    .c-ques-list-01 dd:before {
        width: 45px;
        height: 45px; 
        font-size: 27px;
        line-height: 45px;
    }
}

/*
　コンタクト-10
================================*/
.c-contact-10 {
    background: #004a81;
    width: 100%;
    padding: 50px 0;
}

.c-contact-10__intro {
    position: relative;
    color: #fff;
    width: 80%;
    max-width: 500px;
    margin: 0 auto 50px auto;
}

.c-contact-10__text {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
}

.c-contact-10__text h3 {
    font-weight: bold;
}

.c-contact-10__telno {
    font-size: 40px;
    font-weight: bold;
    font-family: "Arial", sans-serif;
    margin-bottom: 10px;
}

.c-contact-10__telno a {
    color: #fff;
    text-decoration: none;
}

.c-contact-10__telno i {
    font-size: 30px;
    margin-right: 10px;
}

.c-contact-10__open {
    font-weight: bold;
    line-height: 1.5;
}

/* ボタン */
.c-contact-10__button {
    width: 80%;
    max-width: 500px;
    margin: 0 auto 30px auto;
}

.c-contact-10__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;
}

.c-contact-10__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);
}

.c-contact-10__button-satei {
    margin-bottom: 50px;
}

.c-contact-10__button a i {
    font-size: 25px;
    margin: -5px 10px 0 0;
    vertical-align: middle;
}

.c-contact-10__button a:hover {
    opacity: 0.7;
}

.c-contact-10__button-satei a {
    background: #B22222;
    color: #fff;
}

.c-contact-10__button-inquiry a {
    background: #f25c05;
    color: #fff;
}

.c-contact-10__button-satei a span {
    border: solid 2px #B22222;
}

.c-contact-10__button-inquiry a span {
    border: solid 2px #f25c05;
}

/* PC */
@media screen and (min-width:960px) {
    .c-contact-10__intro {
        width: 100%;
        max-width: 1140px;
        margin: 0 auto;
        margin-bottom: 40px;        
    }
    
    .c-contact-10__block {
        width: 100%;
        align-items: center;
        margin-bottom: 0;
        box-sizing: border-box;
    }
    
    .c-contact-10__text {
        font-size: 23px;
        margin: 0;
    }
    
    .c-contact-10__text h3 {
        font-weight: bold;
        text-align: left;
    }
    
    .c-contact-10__tel {
        width: 100%;
        margin: 0 auto 30px auto;
        display: flex;
        align-items: center;
    }
    
    .c-contact-10__telno {
        font-size: 80px;
        margin-bottom: 0;
    }

    .c-contact-10__telno i {
        font-size: 65px;
    }

    .c-contact-10__open {
        font-size: 18px;
        margin-left: 20px;
    }
    
    /* ボタン */
    .c-contact-10__button {
        display: flex;
        justify-content: space-between;
        width: 100%;
        max-width: 1140px;
        margin: 0 auto;
    }
    
    .c-contact-10__button-satei,
    .c-contact-10__button-inquiry {
        width: 48%;
    }

    .c-contact-10__button-satei {
        margin-bottom: 0;
    }

    .c-contact-10__button a {
        padding: 40px 40px 30px 40px;
        font-size: 32px;
    }

    .c-contact-10__button a i {
        font-size: 37px;
        margin: -7px 10px 0 0;
    }

    .c-contact-10__button a span {
        font-size: 21px;
        top: -25px;
        border-width: 3px;
        border-radius: 25px;
    }
}

/* iPhone5 */
@media screen and (max-width:320px) {   
    .c-contact-10__text {
        padding-left: 10px;
    }
    
    /* tel */
    .c-contact-10__telno {
        font-size: 30px;
    }
}

/*
　チェックボックス付きリスト-01
=================================*/
.c-checkbox-list-01,
.c-checkbox-list-01--center {
    width: 95%;
    margin: 0 auto;
}

.c-checkbox-list-01 li,
.c-checkbox-list-01--center li {
    position: relative;
    padding-left: 30px;
    line-height: 1.5;
    margin-bottom: 20px;
    font-size: 17px;
}

.c-checkbox-list-01 li::before,
.c-checkbox-list-01--center li::before {
    position: absolute;
    top: 2px;
    left: 0;
    width: 20px;
    height: 20px;
    content: url(../img/icon__check.png);
}

@media screen and (min-width:768px) {
    .c-checkbox-list-01,
    .c-checkbox-list-01--center {
        width: 100%;
    }

    .c-checkbox-list-01--center {
        display: flex;
        justify-content: center;
    }

    .c-checkbox-list-01 li,
    .c-checkbox-list-01--center li {
        font-size: 20px;
    }

    .c-checkbox-list-01 li::before,
    .c-checkbox-list-01--center li::before {
        width: 25px;
        height: 25px;
    }

    .c-checkbox-list-01 li,
    .c-checkbox-list-01--center li {
        padding-left: 33px;
    }

    .c-checkbox-list-01 li::before,
    .c-checkbox-list-01--center li::before {
        top: 0;
    }
}

/*
　ブログリスト-02
================================*/
.c-blog-list-02 {
    margin-bottom: 40px;
}

.c-blog-list-02 li {
    max-width: 400px;
    margin: 0 auto 50px auto;
}

.c-blog-list-02 li:last-child {
    border-bottom: none;
}

.l-section--gray .c-blog-list-02 li,
.l-section--blue .c-blog-list-02 li,
.l-section--yellow .c-blog-list-02 li {
    background-color: #fff;
}

.c-blog-list-02 li a {
    display: block;
    text-decoration: none;
}

.c-blog-list-02__image img {
    display: block;
    width: 100%;
    max-width: 400px;
    height: 200px;
    object-fit: cover;
    margin: 0 auto;
}

.c-blog-list-02__content {
    padding-top: 10px;
    padding-bottom: 10px;
}

.l-section--gray .c-blog-list-02__content,
.l-section--blue .c-blog-list-02__content,
.l-section--yellow .c-blog-list-02__content {
    padding-left: 8px;
    padding-right: 8px;
}

.c-blog-list-02__content__inner { 
    padding-bottom: 10px;    
}

.c-blog-list-02__content__date {
    color: #666;
}

.c-blog-list-02__content__title {
    display: inline-block;
    margin-bottom: 5px;
    font-size: 20px;
    font-weight: bold;
    color: #006bb9;
    font-weight: bold;
}

.c-blog-list-02__content__text {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    color: #333;
}

.c-blog-list-02__tag span {
    display: inline-block;
    margin-bottom: 5px;
    padding: 5px 10px;
    font-size: 14px;
    color: #fff !important;
    background-color: #f25c05;
}

/* PC */
@media screen and (min-width:768px) {
    .c-blog-list-02 {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        max-width: 1140px;
        margin: 0 auto;
    }

    .c-blog-list-02::after {
        content: '';
        display: block;
        width: 31%;
    }

    .c-blog-list-02 li {
        width: 31%;
        margin: 0 0 50px 0;
        border-bottom: none;
    }

    .c-blog-list-02 a:hover {
        opacity: 0.7;
    }
}

/*
　シンプル-02・テキストカラー
================================*/
.c-title-02,
.c-title-02--color-2 {
    font-size: 30px;
    font-weight: 900;
    line-height: 1.3;
    text-align: center;
    color: #006bb9;
    margin-bottom: 30px;
}

.c-title-02--color-2 {
    color: #f25c05;
}

/* PC */
@media screen and (min-width:768px) {
    .c-title-02,
    .c-title-02--color-2 {
        font-size: 53px;
        margin-bottom: 50px;
    }
}

/*
　シンプル-01・中央寄せ
================================*/
.c-title-01 {
    width: 90%;
    font-size: 1.4rem;
    font-weight: 900;
    text-align: center;
    color: #000;
    margin: 0 auto 30px auto;
}

/* PC */
@media screen and (min-width:768px) {
    .c-title-01 {
        width: 100%;
        font-size: 2.5rem;
    }
}

/*
　背景カラー-01
================================*/
.c-title-bg-01,
.c-title-bg-01--color-2,
.c-title-bg-01--sm,
.c-title-bg-01--color-2--sm {
    margin-bottom: 30px;
    padding: 15px;
    background: #006bb9;
}

.c-title-bg-01 h2,
.c-title-bg-01--color-2 h2,
.c-title-bg-01--sm h2,
.c-title-bg-01--color-2--sm h2,
.c-title-bg-01 h3,
.c-title-bg-01--color-2 h3,
.c-title-bg-01--sm h3,
.c-title-bg-01--color-2--sm h3 {
    font-size: clamp(27px, 32/768*100vw, 32px);
    color: #fff;
    font-weight: 900;
    line-height: 1.5;
}

.c-title-bg-01--color-2,
.c-title-bg-01--color-2--sm {
    background: #f25c05;
}

.c-title-bg-01--sm,
.c-title-bg-01--color-2--sm {
    padding: 10px;
}

.c-title-bg-01--sm h2,
.c-title-bg-01--color-2--sm h2,
.c-title-bg-01--sm h3,
.c-title-bg-01--color-2--sm h3 {
    font-size: clamp(20px, 25/768*100vw, 25px);
}

/* PC */
@media screen and (min-width: 768px) {
    .c-title-bg-01,
    .c-title-bg-01--color-2,
    .c-title-bg-01--sm,
    .c-title-bg-01--color-2--sm {
        margin-bottom: 50px;
        padding: 30px 0;
        text-align: center;
    }
    
    .c-title-bg-01 h2,
    .c-title-bg-01--color-2 h2,
    .c-title-bg-01--sm h2,
    .c-title-bg-01--color-2--sm h2,
    .c-title-bg-01 h3,
    .c-title-bg-01--color-2 h3,
    .c-title-bg-01--sm h3,
    .c-title-bg-01--color-2--sm h3 {
        font-size: clamp(32px, 50/768*100vw, 50px);
        letter-spacing: 0.05em;
    }

    .c-title-bg-01--sm,
    .c-title-bg-01--color-2--sm {
        padding: 15px;
    }

    .c-title-bg-01--sm h2,
    .c-title-bg-01--color-2--sm h2,
    .c-title-bg-01--sm h3,
    .c-title-bg-01--color-2--sm h3 {
        font-size: clamp(25px, 30/768*100vw, 30px);
    }
}

/*
　システム標準-H3
================================*/
h3.tit {
    position: relative;
    border-bottom: 4px solid #ccc;
    margin: 0 0 20px 0;
    padding: 15px 10px 15px 0;
    font-size: 1.1rem;
    background: transparent;
    text-shadow: none;
    border-top: none;
}

h3.tit:after {
    position: absolute;
    bottom: -4px;
    left: 0;
    z-index: 2;
    content: '';
    width: 20%;
    height: 4px;
    background-color: #006bb9;
}

/* PC */
@media screen and (min-width:768px) {
    h3.tit {
        max-width: 1140px;
        margin: 0 auto 40px auto;
        padding: 0 0 10px 0;
        font-size: 1.3rem;
    }
}

/*
　お悩み-04
================================*/
.c-trouble-04__title {
    margin-bottom: 40px;
    text-align: center;
    font-size: 20px;
    font-weight: 900;
}

.c-trouble-04__list {
    display: flex;
    flex-wrap: wrap;
}

.c-trouble-04__list li {
    margin-bottom: 20px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    align-content: flex-start;
    width: 100%;
}

.c-trouble-04 img {
    width: 15%;
}

.c-trouble-04 p {
    font-size: 15px;
    font-weight: bold;
}

.c-trouble-04 p span {
    background: linear-gradient(transparent 60%, #FFF799 60%);
}

.c-trouble-04__comment {
    position: relative;
    display: inline-block;
    margin-left: 5px;
    padding: 10px 15px;
    text-align: left;
    background: #FFF;
    border-radius: 50px;
    box-sizing: border-box;
}

.c-trouble-04__comment:before {
    content: "";
    position: absolute;
    top: 50%;
    left: -23px;
    margin-top: -15px;
    border: 15px solid transparent;
    border-right: 20px solid #FFF;
    z-index: 0;
  }

/* PC */
@media screen and (min-width:768px) {
    .c-trouble-04__title {
        font-size: 35px;
        margin-bottom: 50px;
    }

    .c-trouble-04 img {
        width: 13%;
    }

    .c-trouble-04__comment {
        font-size: 27px;
    }
    
    .c-trouble-04__list li {
        margin-bottom: 25px;
        width: 50%;
    }
    
    .c-trouble-04 p {
        font-size: 20px;
    }

    .c-trouble-04__comment {
        padding: 10px 15px;
    }
}

/* iPhone5 */
@media screen and (max-width:320px) {
    .c-trouble-04 p {
        font-size: 11px;
    }
    
    .c-trouble-04 img {
        width: 10%;
    }
}

.c-trouble-04__text {
    line-height: 1.7;
}
  
/*
　2columnレイアウト
=================================*/
.c-column-2 {
  margin-bottom: 50px;
}

.c-column-2--text-center {
    text-align: center !important;
}

.c-column__col {
  margin-bottom: 15px;
}

.c-column__col h3 {
  margin-bottom: 5px;
  font-size: 18px;
}

.c-column__col img {
  max-width: 100%;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-column-2 {
    display: flex;
    justify-content: space-between;
  }
  .c-column__col {
    width: 48%;
  }
}

/*
　バナー（１カラム）-01
================================*/
.c-banner-col1-01 {
    position: relative;
    width: 95%;
    height: 250px;
    margin: 30px auto;
}

.c-banner-col1-01 a {
    display: block;
    text-decoration: none;
}

.c-banner-col1-01 a::before {
    position: absolute;
    content: '';
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(11, 60, 93, 0.7);
}

.c-banner-col1-01__image img {
    display: block;
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.c-banner-col1-01__content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85%;
    color: #fff;
}

.c-banner-col1-01__content__text {
    line-height: 1.4;
    font-size: 16px;
}

.c-banner-col1-01__content__title {
    margin: 15px 0;
    text-align: center;
    font-size: 30px;
    font-weight: 900;
}

.c-banner-col1-01__content__button {
    display: block;
    max-width: 380px;
    margin: 0 auto;
    padding: 15px 10px;
    text-align: center;
    font-weight: bold;
    background: #f25c05;
}

.c-banner-col1-01__content__button i {
    margin-left: 10px;
}

.c-banner-col1-01 a:hover {
    opacity: 0.8;
    background: #fff;
}

/* PC */
@media screen and (min-width:768px) {
    .c-banner-col1-01 {
        width: 100%;
        margin: 0 auto;
    }
    
    .c-banner-col1-01__content {
        width: 90%;
    }

    .c-banner-col1-01__content__title {
        text-align: left;
        font-size: 45px;
    }
    
    .c-banner-col1-01__content__text {
        font-size: 22px;
        font-weight: bold;
    }
    
    .c-banner-col1-01__content__button {
        position: absolute;
        right: 0;
        bottom: 0;
        width: 40%;
        padding: 10px;
        font-size: 22px;
    }
}

/*
　ポイント（リスト）-02
================================*/
.c-point-list-02 {
    background: #fafafa;
    margin-bottom: 80px;
}

.c-point-list-02 ul {
    counter-reset: num; /* カウンターをリセット */
}

.c-point-list-02 li {
    position: relative;
    border-bottom: 1px dotted #000;
}

.c-point-list-02 li:last-child {
    border-bottom: none;
}

.c-point-list-02__cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    padding: 5px 0;
    background-color: #006bb9;
}

.c-point-list-02__cover::before {
    display: block;
    color: #FFF;
    text-align: center;
    font-size: 32px;
    font-family: "Arial", 'Noto Sans Japanese', sans-serif;
    font-weight: bold;
    counter-increment: num;
    content: counter(num);
}

.c-point-list-02__cover p {
    color: #FFF;
    text-align: center;
    font-size: 32px;
    font-family: "Arial", 'Noto Sans Japanese', sans-serif;
    font-weight: bold;
}

.c-point-list-02 h3 {
    padding: 10px 0 10px 65px;
    font-size: 25px;
    font-weight: 500;
}

.c-point-list-02__text {
    padding: 10px 20px 20px 20px;
}

.c-point-list-02__text img {
    max-width: 100%;
    margin-bottom: 20px;
    text-align: center;
}

.c-point-list-02--orange {
    color: #FF8C00 !important;
    font-weight: bold !important;
}

/* PC */
@media screen and (min-width:768px) {
    .c-point-list-02 {
        margin-bottom: 100px;
    }

    .c-point-list-02 ul {
        display: flex;
        flex-wrap:wrap; 
    }
    
    .c-point-list-02 li {
        width: 50%;
        border-bottom: 1px dotted #000;
        border-right: 1px dotted #000;
        box-sizing: border-box;
    }

    .c-point-list-02 li:nth-last-child(2) {
        border-bottom: none;
    }
    
    .c-point-list-02 li:nth-child(2n) {
        border-right: none;
    }

    .c-point-list-02__cover {
        width: 70px;
        padding: 0;
    }

    .c-point-list-02__cover::before {
        font-size: 48px; 
    }
    
    .c-point-list-02__cover p {
        font-size: 48px;
    }
    
    .c-point-list-02 h3 {
        padding: 15px 0 15px 85px;
        font-size: 28px;
    }
    
    .c-point-list-02__text {
        padding: 20px 30px 30px 30px;
    }
}


/*=================================

* 下層ページ

=================================*/

/*=================================
* 物件リクエスト
=================================*/
/*
　導入
================================*/
.p-request__intro {
    position: relative;
    width: 95%;
    margin: 0 auto;
    text-align: center;
}

.p-request__intro::before {
    content: '';
    position: absolute;
    width: 150px;
    height: 131px;
    top: 0;
    left: 0;
    background: url(../img/request-01__icon--01.svg);
    background-repeat: no-repeat;
}

.p-request__intro::after {
    content: '';
    position: absolute;
    width: 150px;
    height: 121px;
    bottom: 0;
    right: 0;
    background: url(../img/request-01__icon--02.svg);
    background-repeat: no-repeat;
}

.p-request__intro__title {
    position: relative;
    margin-bottom: 20px;
    z-index: 50;
}

.p-request__intro__title span {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
    padding: 7px 15px 8px 15px;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    border-radius: 7px;
    background: #006bb9;
}

.p-request__intro__title span::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 7px solid transparent;
    border-top: 12px solid #006bb9;
}

.p-request__intro__title h2 {
    line-height: 1.5;
    text-shadow: #fff 2px 2px 2px, #fff -2px -2px 2px, #fff -2px 2px 2px, #fff 2px -2px 2px, #fff 2px 0px 2px, #fff -2px 0px 2px, #fff 0px 2px 2px, #fff 0px -2px 2px;
    font-size: 22px;
    font-weight: bold;
}

.p-request__intro__title h2 em {
    font-style: normal;
    font-size: 24px;
    font-weight: 900;
}

.p-request__intro__body {
    position: relative;
    z-index: 50;
}

.p-request__intro__body__note {
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: bold
}

.p-request__intro__body__detail {
    line-height: 1.6;
    text-align: left;
    text-shadow: #fff 2px 2px 2px, #fff -2px -2px 2px, #fff -2px 2px 2px, #fff 2px -2px 2px, #fff 2px 0px 2px, #fff -2px 0px 2px, #fff 0px 2px 2px, #fff 0px -2px 2px;
}

/* PC */
@media screen and (min-width:768px) {
    .p-request__intro {
        max-width: 900px;
    }

    .p-request__intro::before {
        width: 200px;
        height: 177px;
    }
    
    .p-request__intro::after {
        width: 200px;
        height: 161px;
    }
    
    .p-request__intro__title {
        margin-bottom: 40px;
    }
    
    .p-request__intro__title span {
        margin-bottom: 25px;
        padding: 7px 25px 8px 25px;
        font-size: 24px;
    }
    
    .p-request__intro__title h2 {
        line-height: 1.5;
        font-size: 28px;
    }
    
    .p-request__intro__title h2 em {
        font-size: 38px;
    }
    
    .p-request__intro__body__note {
        margin-bottom: 40px;
        font-size: 24px;
    }
    
    .p-request__intro__body__detail {
        display: flex;
        justify-content: center;
        text-align: center;
        font-size: 18px;
    }
}

/*
　概要
================================*/
.p-request__description h2 {
    margin-bottom: 35px;
    text-align: center;
    line-height: 1.5;
    font-size: 22px;
    font-weight: bold;
}

.p-request__description h2 span {
    font-weight: bold;
    background: linear-gradient(transparent 65%, #ffd1a3 65%);
}

.p-request__description__step {
    width: 95%;
    margin: 0 auto;
}

.p-request__description__step__unit {
    margin-bottom: 30px;
    padding: 20px;
    background: #fff;
    border: solid 1px #006bb9;
    border-radius: 5px;
    box-sizing: border-box;
}

.p-request__description__step__unit:last-child {
    margin-bottom: 0;
}
    
.p-request__description__step__unit__head {
    margin-bottom: 10px;
}

.p-request__description__step__unit__head span {
    display: block;
    margin-bottom: 15px;
    padding: 5px 10px 3px;
    text-align: center;
    font-family: Arial, sans-serif;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    background: #006bb9;
    border-radius: 50px;
}

.p-request__description__step__unit__head h3 {
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    color: #333;
}

.p-request__description__step__unit__body img {
    display: block;
    object-fit: cover;
    width: 35%;
    height: auto;
    margin: 0 auto 10px auto;
}

.p-request__description__step__unit__body p {
    line-height: 1.5;
}

/* PC */
@media screen and (min-width:768px) {
    .p-request__description h2 {
        margin-bottom: 50px;
        font-size: 28px;
    }

    .p-request__description__step {
        width: 100%;
        padding: 0 8px;
        box-sizing: border-box;
    }

    .p-request__description__step ul {
        display: flex;
        justify-content: space-between;
    }

    .p-request__description__step__unit {
        width: 31%;
        margin-bottom: 0;
        padding: 25px 20px;
    }

    .p-request__description__step__unit__head h3 {
        font-size: 22px;
    }

    .p-request__description__step__unit__body img {
        width: 45%;
        margin-bottom: 15px;
    }

    .p-request__description__step__unit__body p {
        line-height: 1.6;
    }
}

/*
　流れ
================================*/
.l-section.p-request__flow {
    padding-bottom: 20px;
}

.p-request__flow__detail {
    width: 95%;
    margin: 0 auto;
}

.p-request__flow__detail h2 {
    margin-bottom: 35px;
    text-align: center;
    font-size: 22px;
    font-weight: bold;
}

.p-request__flow__wrapper {
    margin-bottom: 50px;
}

.p-request__flow_unit {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 30px;
}

.p-request__flow_unit:last-child {
    margin-bottom: 0;
}

.p-request__flow_unit__image {
    position: relative;
}

.p-request__flow_unit__image span {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    line-height: 25px;
    text-align: center;
    font-family: "Arial", sans-serif;
    font-size: 16px;
    font-weight: bold;
    background: #006bb9;
    color: #fff;
}

.p-request__flow_unit__image img {
    display: block;
    width: 100px;
    height: auto;
}

.p-request__flow_unit__body {
    margin-left: 15px;
}

.p-request__flow_unit__body h3 {
    margin-bottom: 7px;
    font-size: 18px;
    font-weight: bold;
}

.p-request__flow__catch {
    margin: 0 auto;
    padding: 7px 5px 33px 5px;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    clip-path: polygon(0 0, 100% 0, 100% 60%, 50% 95%, 0 60%, 0 0);
    background: #006bb9;
}

/* PC */
@media screen and (min-width:768px) {
    .p-request__flow__detail {
        width: 100%;
        padding: 0 8px;
        box-sizing: border-box;
    }

    .p-request__flow__detail h2 {
        margin-bottom: 50px;
        font-size: 28px;
    }

    .p-request__flow__wrapper {
        display: flex;
        justify-content: center;
        gap: 50px;
    }

    .p-request__flow_unit {
        display: block;
        width: 26%;
        margin-bottom: 0;
    }

    .p-request__flow_unit__image {
        width: 150px;
        margin: 0 auto 15px auto;
    }

    .p-request__flow_unit__image span {
        width: 35px;
        height: 35px;
        line-height: 35px;
        font-size: 22px;
    }

    .p-request__flow_unit__image img {
        width: 150px;
    }

    .p-request__flow_unit__body {
        margin-left: 0;
        text-align: center;
    }

    .p-request__flow_unit__body h3 {
        margin-bottom: 10px;
        font-size: 20px;
    }

    .p-request__flow_unit__body p {
        font-size: 18px;
    }

    .p-request__flow__catch {
        max-width: 550px;
        padding: 10px 10px 45px 10px;
        font-size: 24px;
        clip-path: polygon(0 0, 100% 0, 100% 50%, 50% 90%, 0 50%, 0 0);
    }
}

/*
　CTA
================================*/
.l-section.p-request__action {
    background: #eaf0fa;
}


/*=================================
* 代表あいさつページ
=================================*/
/*
　代表あいさつ
================================*/
.p-greeting__img {
    width: 100%;
    margin-bottom: 30px;
}
  
.p-greeting__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.p-greeting__label {
    position: relative;
    margin-bottom: 20px;
}

.p-greeting__label:before {
    display: block;
    content: "";
    position: absolute;
    left: 0;
    top: 12px;
    width: 90%;
    height: 1px;
    background-color: #4a4a4a;
}

.p-greeting__label span {
    position: relative;
    padding-right: 20px;
    font-size: 1.1rem;
    letter-spacing: 0.07em;
    color: #4a4a4a;
    background-color: #fff;
    line-height: 1;
    font-family: "Roboto Condensed", "Arial", sans-serif;
}

.p-greeting__title {
    width: 95%;
    margin: 0 auto;
}

.p-greeting__title h3 {
    font-size: clamp(30px, 3vw, 35px);
    font-weight: bold;
    color: #006bb9;
    line-height: 1.4;
    font-family: "Noto Serif JP", serif;
}

.p-greeting__text {
    margin-top: 30px;
    padding: 20px;
    background-color: #eaf3f9;
    font-family: 'Noto Serif JP', serif;
}

.p-greeting__text p {
    font-size: 16px;
    line-height: 2;
}

.p-greeting__name{
    font-weight: bold;
    font-size: 18px;
    margin-top: 20px;
    text-align: right;
}

/* PC */
@media screen and (min-width: 900px) {
    .p-greeting {
        display: flex;
        flex-direction: row-reverse;
        justify-content: space-between;
        align-items: center;
    }

    .p-greeting__img {
        width: 55%;
        margin-bottom: 0;
    }

    .p-greeting__img img {
        height: 420px;
    }

    .p-greeting__title {
        width: 40%;
        margin: 0;
    }

    .p-greeting__label {
        margin-bottom: 30px;
    }

    .p-greeting__label span {
        font-size: 1.3rem;
    }

    .p-greeting__title h3 {
        line-height: 1.6;
    }

    .p-greeting__text {
        margin-top: -60px;
        padding: 80px 20px 40px 20px;
    }

    .p-greeting__text__inner {
        width: 100%;
        max-width: 1140px;
        margin: 0 auto;
    }

    .p-greeting__text p {
        font-size: 18px;
    }
}

/*=================================

* 不動産売却

=================================*/

/*
　タイトル（フォントサイズlg）
================================*/
.c-title--large {
    margin-bottom: 30px;
    font-size: 25px;
    font-weight: 900;
}

.c-title--large span {
    font-size: 33px;
}

.c-title--large--center {
    text-align: center;
}

/* PC */
@media screen and (min-width:768px) {
    .c-title--large  {
        font-size: 40px;
    }
    
    .c-title--large span {
        font-size: 55px;
    }
}

/* PC */
@media screen and (min-width:768px) {
    .p-sell__main--pc {
        text-align: center;
    }
}


/*
　横3つ並び枠
=================================*/
.p-sell__promise {
    width: 90%;
    margin: 0 auto 40px auto;
}

.p-sell__promise li {
    width: 100%;
    margin-bottom: 15px;
    border: 2px solid #006bb9;
    box-sizing: border-box;
    padding: 15px;
    border-radius: 8px;
}

.p-sell__promise li h3 {
    font-size: 23px;
    margin-bottom: 10px;
    color: #006bb9;
    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;
    }
}

/*
　こだわりリスト
=================================*/

/* PC */
@media screen and (min-width:768px) {
    .c-checkbox-list-01.p-sell__commitment {
        display: flex;
        justify-content: center;
    }
    
    .c-checkbox-list-01.p-sell__commitment li {
        font-size: 20px;
    }
}

/*=================================

* 相続相談

=================================*/
.p-souzoku__action {
    box-sizing: border-box;
    margin: 10px;
}

.p-souzoku__action-list {
    margin-bottom: 30px;
    text-align: center;
}

.p-souzoku__action-list li {
    margin: 10px 0;
    padding: 10px;
    line-height: 1.5;
    background-color: #1e5b85;
    color: #FFF;
}

.p-souzoku__actionpoint-list {
    padding: 10px;
    border: 2px solid #1e5b85;
    border-radius: 4px;
    background-color: #FFF;
}

.p-souzoku__actionpoint-list li {
    margin: 7px 0;
}

.p-souzoku__actionpoint-list li::before {
    margin-right: 3px;
    padding: 10px 5px;
    content: "□";
}

.p-souzoku__service-list li {
    font-size: 17px;
    margin-bottom: 10px;
}

.p-souzoku__service-list li::before {
    content: "◆";
    margin-right: 5px;
}

.p-souzoku__service {
    font-size: 1.1rem !important; 
}



/* PC */
@media screen and (min-width:768px) {
    .p-souzoku__action-list {
        display: flex;
        justify-content: space-between;
    }
    
    .p-souzoku__action-list li {
        width: 32%;
        padding: 10px 25px;
        box-sizing: border-box;
    }
    
    .p-souzoku__actionpoint-list {
        display: flex;
        flex-wrap: wrap;
        align-content: space-between;
    }
    
    .p-souzoku__actionpoint-list li {
        margin-right: 15px;
    }
    
    .p-souzoku__actionpoint-list li::before {
        margin-right: 0;
    }
    
    .p-souzoku__service-list li {
        font-size: 18px;
    }

    .p-souzoku__service {
        font-size: 1.2rem !important; 
    }
}

/*=================================

* 空き家管理

=================================*/

/*
　セクション
=================================*/
.l-section.l-section--lightblue {
    background: #e6f5f5;
}

/*
　空家の問題点
=================================*/
.p-akiya__caption {
    margin-bottom: 50px;
    font-size: 23px;
    font-weight: 900;
    text-align: center; 
    line-height: 1.3;
}

.p-akiya__caption--fw {
    font-weight: bold !important;
}

.p-akiya__caption--orange {
    color: #FF8C00 !important;
}

.p-akiya__caption  strong {
    font-size: 35px;
}

.p-akiya__problem-list li {
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: bold;
}

.p-akiya__problem-list li::before {
    content: "■";
    margin-right: 5px;
}

@media screen and (min-width:768px) {
    .p-akiya__caption  {
        margin-bottom: 80px;
        font-size: 35px;
    }

    .p-akiya__caption  strong {
        font-size: 55px;
    }

    .p-akiya__text {
        margin-bottom: 30px;
        font-size: 30px;
        text-align: center;
    }
    
    .p-akiya__problem-list li {
        font-size: 30px;
    }
}

/*
　空家の解決策
=================================*/
.p-akiya-kaiketsu h2 {
    font-size: 30px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 50px;
}

.p-akiya-kaiketsu h2 span {
    font-size: 35px;
    color: #FF8426;
}

.p-akiya-kaiketsu ul li {
    width: 100%;
    margin: 0 auto 50px auto;
}

.p-akiya-kaiketsu__image  {
    width: 30%;
    min-width: 180px;
    margin: 0 auto 20px auto;
}

.p-akiya-kaiketsu__image img {
    width: 100%;
    object-fit: cover;
}

.p-akiya-kaiketsu__text p {
    font-weight: 900;
    text-align: center;
    font-size: 30px;
    line-height: 1.3;
}

.p-akiya-kaiketsu__text p span {
    color: #FF8426;
}

@media screen and (min-width:768px) {
    .p-akiya-kaiketsu h2 {
        font-size: 40px;
    }

    .p-akiya-kaiketsu h2 span {
        font-size: 55px;
    }

    .p-akiya-kaiketsu ul {
        display: flex;
        justify-content: space-between;
    }

    .p-akiya-kaiketsu ul li {
        margin-bottom: 0;
    }

    .p-akiya-kaiketsu__text p {
        font-size: 35px;
    }
    
    .p-akiya-kaiketsu ul li:first-child .p-akiya-kaiketsu__text p {
        padding-top: 20px;
    }
}

/*
　家を貸し出すメリット
=================================*/
.c-checkbox-list-01.p-akiya__merit {
    margin-bottom: 50px;  
}

.p-akiya__merit__text {
    text-align: center;
}

.p-akiya__merit__text p {
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 700;
}

.p-akiya__merit__text p span {
    margin-bottom: 30px;
    font-size: 25px;
    font-weight: 900;
    color: #FF7F00;
}

/* PC */
@media screen and (min-width:768px) {
    .c-checkbox-list-01.p-akiya__merit {
        display: flex;
        justify-content: center;
    }
    
    .c-checkbox-list-01.p-akiya__merit li {
        font-size: 22px;
        line-height: 1.7;
    }

    .p-akiya__merit__text p {
        text-align: center;
        font-size: 28px;
    }

    .p-akiya__merit__text p span {
        font-size: 40px;
        text-align: center;
    }
}

/*
　空き家サービスメニュー
=================================*/
.p-akiya-service {
    margin-bottom: 40px;
}

.p-akiya-service--mb-20 {
    margin-bottom: 20px !important;
}

.p-akiya-service--mb-0 {
    margin-bottom: 0 !important;
}

.p-akiya-service__table.tbl.w100p th,
.p-akiya-service__table.tbl.w100p td {
    font-size: 16px;
}

.p-akiya-service__text span {
    color: #ff0000;
}

/* PC */
@media screen and (min-width:768px) {
    .p-akiya-service {
        margin-bottom: 80px;
    }
}

/*=================================

* 不動産管理

=================================*/


.p-management__lead {
    font-size: 1.1rem !important; 
}


/* PC */
@media screen and (min-width:768px) {

    .p-management__lead {
        font-size: 1.2rem !important; 
        text-align: center;
    }

}