@charset "UTF-8";

/* ━━━━━━━━━━━━━━━━

 ■初期化

━━━━━━━━━━━━━━━━ */

body {
    font-family: 'Noto Sans Japanese', sans-serif;
    min-width: auto !important;
}



/* ━━━━━━━━━━━━━━━━

 ■ユーティリティ

━━━━━━━━━━━━━━━━ */


/*=================================

* media

=================================*/
@media screen and (max-width:767px) {
    .u-hidden-sp {
        display: none;
    }
}

@media screen and (min-width:768px) {
    .u-hidden-pc {
        display: none;
    }
}

@media print {
    .l-header__sp-menu {
        display: none;
    }
}

/**
 * margin
*/

.u-mr-5 {
    margin-right: 5px !important;
}
  
.u-mr-10 {
    margin-right: 10px !important;
}

.u-mb-0 {
    margin-bottom: 0 !important;
}

.u-mb-5 {
    margin-bottom: 5px !important;
}

.u-mb-10 {
    margin-bottom: 10px !important;
}

.u-mb-20 {
    margin-bottom: 20px !important;
}

.u-mb-30 {
    margin-bottom: 30px !important;
}

.u-mb-50 {
    margin-bottom: 50px !important;
}

.u-mb-80 {
    margin-bottom: 80px !important;
}
  
/**
 * Padding
*/

.u-pt-0 {
    padding-top: 0 !important;
}

.u-pt-50 {
    padding-top: 50px !important;
}

.u-pb-0 {
    padding-bottom: 0 !important;
}

/**
 * Text
*/

.u-text-marker {
    background: linear-gradient(transparent 60%, #FFF799 60%);
}

.u-text-center {
    text-align: center;
}

@media screen and (min-width:768px) {
    .u-text-pc-center {
        text-align: center;
    }
}



/* ━━━━━━━━━━━━━━━━

 ■コンポーネント

━━━━━━━━━━━━━━━━ */


/*=================================

* コンテナ

=================================*/

.c-button-container {
    padding: 50px 0 0 0;
    text-align: center;
}

/*
　プライマリボタン
================================*/
.c-button--primary {
    width: 90%;
    display: block;
    margin: 0 auto;
    padding: 12px 5px;
    text-align: center;
    border-radius: 30px;
    border: 2px solid #1d2d50;
    background-color: #FFF;
    cursor: pointer;
    transition: 0.3s cubic-bezier(0.45, 0, 0.55, 1);
    overflow: hidden;
    position: relative;
    z-index: 1;
}
  
.c-button--primary,
.c-button--primary:link,
.c-button--primary:visited {
    text-decoration: none;
    color: #1d2d50;
    font-weight: bold;
}
  
.c-button--primary::after {
    background: #1d2d50;
    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--primary:hover {
    color: #FFF;
}
  
.c-button--primary:hover::after {
    transform: scale(1, 1);
}
  
@media screen and (min-width: 768px) {
    .c-button--primary {
      width: 35%;
      padding: 15px 10px;
      font-size: 17px;
    }
}

/*
　H2タイトル
================================*/
h2.tit {
    width: 90%;
    margin: 0 auto 30px auto;
    font-size: 1.4rem;
    font-weight: 900;
    text-align: center;
    color: #000;
    background-color: transparent !important;
}

/* PC */
@media screen and (min-width:768px) {
    h2.tit {
        width: 100%;
        font-size: 2.3rem;
    }
}

/*
　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: #1d2d50;
}

/* 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;
    }
}

/*
　ルビ付き-06
================================*/
.c-title-ruby-06 {
    width: 90%;
    margin: 0 auto 30px auto;
    text-align: center;
    line-height: 1.4;
}

.c-title-ruby-06 h2 {
    font-size: 26px;
    font-weight: bold;
    color: #333;
}

.c-title-ruby-06 span::first-letter {
    color: #1d2d50;
}

.c-title-ruby-06 span {
    display: block;
    font-size: 16px;
    font-weight: 900;
    color: #333;
}

/* PC */
@media screen and (min-width:768px) {
    .c-title-ruby-06 {
        width: 100%;
        margin: 0 auto 45px auto;
    }
    
    .c-title-ruby-06 h2 {
        font-size: 34px;
    }

    .c-title-ruby-06 span {
        font-size: 20px;
    }
}



/* ━━━━━━━━━━━━━━━━

 ■レイアウト

━━━━━━━━━━━━━━━━ */


/*=================================

* セクション

=================================*/

.l-section {
    padding: 50px 0;
}

.l-section.l-section--gray {
    background: #f5f5f5;
}

.l-section.l-section--blue {
    background: #F1F5F8;
}

.l-section.l-section--yellow {
    background: #fbf9ee;
}

.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;
    }
}



/* ━━━━━━━━━━━━━━━━

 ■プロジェクト

━━━━━━━━━━━━━━━━ */


/*=================================

* ヘッダー-02

=================================*/
html {
    scroll-padding-top: 50px;
}

.l-header-02 {
    position: relative;
    width: 100%;
    height: 45px;
    margin: 0;
}

.l-header-02__wrapper,
.l-header-02__wrapper--glay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 45px;
    padding: 5px 10px;
    background-color: rgba(250, 250, 250, 0.9);
    z-index: 99;
    box-sizing: border-box;
}

.l-header-02__wrapper--glay {
    background-color: rgba(27, 26, 23, 0.9);
}

.l-header-02__information {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.l-header-02__logo {
    width: calc(100% - 45px);
}

.l-header-02__logo a {
    text-decoration: none;
    color: #333;
    font-size: clamp(25px, 25 / 768 * 100vw, 35px);
    font-weight: 900;
    line-height: 1;
}

.l-header-02__wrapper--glay .l-header-02__logo a {
    color: #FFF;
}

.l-header-02__logo img {
    max-height: 28px;
}

.l-header-02__nav {
    display: none;
}

.l-header-02__inquiry--tel,
.l-header-02__inquiry--mail {
    display: none;
}

.open .l-header-02__nav {
    display: block;
    z-index: 15;
}

/* ハンバーガーメニュー */
.l-header-02__menu__button {
    display: block;
}

.l-header-02__menu__button a {
    display: block;
    text-align: center;
    text-decoration: none;
    color: #333;
}

.l-header-02__wrapper--glay .l-header-02__menu__button a {
    color: #FFF;
}

.l-header-02__menu__button i {
    font-size: 35px;
}

.l-header-02__sp-menu {
    position: fixed;
    top: 0;
    left: 0;
    transform: translateY(min(-100%,-1000px));
    width: 100%;
    height: 100%;
    padding: 80px 20px 65px 20px;
    transition: transform .5s;
    background: #fefefe;
    z-index: 50;
}

.l-header-02__sp-menu.__open {
    transform: translateY(0);
    transition: transform .5s;
}

.l-header-02__sp-menu ul li {
    width: 100%;
    height: auto;
    border-top: 1px solid #919191;
}

.l-header-02__sp-menu ul li:hover {
    background: #747474;
}

.l-header-02__sp-menu ul li:last-child {
    border-bottom: 1px solid #919191;
}

.l-header-02__sp-menu ul li a {
    display: block;
    width: 100%;
    height: 3em;
    margin-left: 1em;
    line-height: 3em;
    text-decoration: none;
    font-size: 1em;
    color: #133b5c;
}

.l-header-02__sp-menu ul li a:hover {
    color: #fff;
}

.l-header-02__sp-menu--tel a,.l-header-02__sp-menu--mail a {
    display: block;
    text-align: center;
}

.l-header-02__sp-menu--tel p {
    text-align: center;
    font-size: 16px;
    color:  #5f5f5f;
}

.l-header-02__sp-menu--tel a {
    margin-top: 50px;
    text-decoration: none;
    line-height: 1;
    font-family: "Arial", 'Noto Sans Japanese', sans-serif;
    font-weight: bold;
    font-size: 32px;
    color: #1d2d50;
}

.l-header-02__sp-menu--mail a {
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    max-width: 450px;
    width: 100%;
    margin: 30px auto;
    padding: 30px;
    text-decoration: none;
    font-size: 16px;
    color: #FFF;
    background-color: #133b5c;
}

.l-header-02__sp-menu--mail a span {
    font-size: 25px;
    font-weight: bold;
}

.l-header-02__sp-menu--mail a:hover {
    background: #1d2d50;
}

.p-page-title {
    padding: 10px 8px;
    font-size: 13px;
}

@media print {
    .l-header-02__sp-menu {
        display: none;
    }
}

/* PC */
@media screen and (min-width:768px) {
    html {
        scroll-padding-top: 100px;
    }

    .l-header-02 {
        height: 80px;
    }

    .l-header-02__wrapper {
        display: flex;
        justify-content: space-between;
        height: 80px;
        padding: 0 0 0 10px;
    }

    .l-header-02__inner {
        width: calc(100% - 190px);
        padding: 23px 0;
    }

    .l-header-02__logo {
        width: clamp(220px, 220 / 1140 * 100vw, 300px);
        margin: 0 auto 0 3px;
    }

    .l-header-02__logo a {
        font-size: clamp(25px, 25 / 1140 * 100vw, 35px);
    }

    .l-header-02__logo img {
        max-height: 50px;
    }

    /* 問合せ */
    .l-header-02__inquiry--mail {
        display: block;
    }

    .l-header-02__inquiry--mail {
        width: 165px;
    }

    .l-header-02__inquiry--mail a {
        display: block;
        width: 165px;
        height: 80px;
        padding: 15px 5px;
        text-align: center;
        text-decoration: none;
        font-size: 13px;
        color: #fff;
        background-color: #133b5c;
        box-sizing: border-box;
    }

    .l-header-02__inquiry--mail a span {
        display: flex;
        flex-direction: column;
        font-size: 18px;
    }

    .l-header-02__inquiry--mail a:hover {
        position: absolute;
        bottom: 0;
        background-color: #767171;
    }

    /* ハンバーガーメニュー */
    .l-header-02__menu__button {
        top: 60%;
        right: 200px;
    }

    .p-page-title {
        max-width: 1140px;
        margin: 0 auto;
        padding: 10px 0;
        font-size: 14px;
    }
}

/* PC */
@media screen and (min-width:1200px) {
    .l-header-02__inner {
        width: calc(100% - 150px);
        padding: 12px 0;
    }

    /* ナビゲーション */
    .l-header-02__nav {
        display: block;
    } 

    .l-header-02__nav ul {
        display: flex;
        justify-content: flex-end;
        margin-right: 10px;
    }
    
    .l-header-02__nav li {
        position: relative;
    }

    .l-header-02__nav li:before,
    .l-header-02__nav li:last-child:after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 1px;
        height: 90%;
        background-color: #ededed;
    }

    .l-header-02__wrapper--glay .l-header-02__nav li:before,
    .l-header-02__wrapper--glay .l-header-02__nav li:last-child:after {
        background-color: #f3f3f3;
    }
    
    .l-header-02__nav li a {
        position: relative;
        display: flex;
        flex-direction: column;
        padding: 5px 25px 10px 25px;
        text-align: center;
        text-decoration: none;
        font-size: 13px;
        color: #000;
    }

    .l-header-02__wrapper--glay .l-header-02__nav li a {
        color: #FFF;
    }

    .l-header-02__nav li a span {
        letter-spacing: 0.1em;
        font-size: 17px;
        font-size: clamp(16px, 17 / 1200 * 100vw, 18px);
        font-weight: bold;
    }

    .l-header-02__nav li a:hover {
        color: #133b5c;
    }

    .l-header-02__wrapper--glay .l-header-02__nav li a:hover {
        color: #b88f38;
    }

    .l-header-02__nav li a:hover:before {
        content: '';
        position: absolute;
        left: 0;
        bottom: -6px;
        width: 100%;
        height: 5px;
        background-color: #133b5c;
    }

    .l-header-02__wrapper--glay .l-header-02__nav li a:hover:before {
        background-color: #b88f38;
    }

    /* 問合せ */
    .l-header-02__inquiry--mail {
        width: 135px;
    }

    .l-header-02__inquiry--mail a {
        width: 135px;
    }
    
    /* ハンバーガーメニュー*/
    .l-header-02__menu__button {
        display: none;
    }
}

/* PC */
@media screen and (min-width:1400px) {
    .l-header-02__inquiry--tel {
        display: block;
    }

    .l-header-02__inquiry--tel a {
        line-height: 1;
        text-decoration: none;
        font-family: "Arial", 'Noto Sans Japanese', sans-serif;
        font-size: 28px;
        font-size: clamp(20px, 20 / 1200 * 100vw, 28px);
        font-weight: bold;
        color: #000;
    }

    .l-header-02__wrapper--glay .l-header-02__inquiry--tel a {
        color: #FFF;
    }

    .l-header-02__inquiry--tel i {
        margin-right: 5px;
    }

    .l-header-02__inquiry--tel p {
        text-align: center;
        font-size: 12px;
        color: #000;
    }

    .l-header-02__wrapper--glay .l-header-02__inquiry--tel p {
        color: #FFF;
    }
}

/*=================================

* メインビジュアル-02

=================================*/
.l-main-visual-02 {
    position: relative;
    margin: 0 auto;
    height: 80vh;
}

.l-main-visual-02__slide {
    width: 100%;
    height: 80vh;
    overflow: hidden;
}

.l-main-visual-02__slide::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.15);
}

.l-main-visual-02__text {
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: 100%;
    margin: 0 auto;
}

.l-main-visual-02__text h1 {
    margin-bottom: 5px;
    font-size: clamp(27px, 27 / 768 * 100vw, 35px);
    font-weight: 900;
    font-family: 'Noto Serif JP', serif;
    text-align: center;
    line-height: 1.3;
    color: #FFF;
    text-shadow: 0 0 5px #000;
}

/* PC */
@media screen and (min-width:768px) {
    .l-main-visual-02 {
        height: 85vh;
    }
    
    .l-main-visual-02__slide {
        height: 85vh;
    }

    .l-main-visual-02__text {
        top: 35%;
        max-width: 1140px;
    }

    .l-main-visual-02__text h1 {
        font-size: clamp(30px, 30 / 1140 * 100vw, 45px);
        text-shadow: 0 0 8px #000;
    }
}

/* アニメーション */
.vegas-animation-template {
    animation: template ease-out;
}

@keyframes template {
    0% {
        transform: scale(1.2) translate(0, 0);
    }
    100% {
        transform: scale(1) translate(0, 0);
    }
}

/*=========================================

* フッター-08

==========================================*/
.l-footer-08 {
    background-color: #F8F8F8;
    border-top: none;
}

.l-footer-08__inner {
    width: 90%;
    margin: 0 auto;
    padding: 20px 0;
}

.l-footer-08__logo {
    margin-bottom: 15px;
    font-size: clamp(28px, 28 / 768 * 100vw, 35px);
    font-weight: 900;
    line-height: 1;
    color: #000;
}

.l-footer-08__logo img {
    width: 70%;
    margin-bottom: 15px;
}

.l-footer-05__sns {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}
  
.l-footer-05__sns__item {
    width: 15%;
    max-width: 45px;
    margin-right: 13px;
}
  
.l-footer-05__sns__item a {
    display: block;
    width: 100%;
    height: 100%;
}
  
.l-footer-05__sns__item a:hover {
    opacity: 0.6;
}
  
.l-footer-05__sns__item img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
}

.l-footer-08__contact {
    margin-top: 30px;
}

.l-footer-08__contact h3 {
    position: relative;
    width: 100%;
    height: 14px;
    text-align: center;
    border-bottom: 1px solid #000;
}

.l-footer-08__contact h3 span {
    padding: 0 10px;
    font-size: 18px;
    background-color: #f8f8f8;
}

.l-footer-08__contact__shop__info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.l-footer-08__contact__shop__tel a {
    font-size: clamp(35px, 40/768*100vw, 40px);
    font-family: "Arial", sans-serif;
    color: #333;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
}

.l-footer-08__contact__shop__tel i {
    margin-right: 5px;
}

.l-footer-08__contact__inquiry {
    margin-top: 15px;
}

.l-footer-08__contact__inquiry a {
    display: block;
    width: 100%;
    padding: 12px 0;
    color: #133b5c;
    text-align: center;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #133b5c;
}

.l-footer-08__contact__inquiry a:hover {
    color: #fff;
    background-color: #133b5c;
}

/* スマホ */
@media screen and (max-width: 450px) {
    .l-footer-08__info {
        text-align: center;
    }

    .l-footer-08__contact__shop__info {
        flex-direction: column-reverse;
        text-align: center;
    }
}

/* PC */
@media screen and (min-width: 768px) {
    .l-footer-08__inner {
        display: flex;
        justify-content: space-between;
        width: unset;
        max-width: 1140px;
        margin: 0 auto;
        padding: 20px 10px;
    }
    
    .l-footer-08__info {
        padding-top: 5px;
        width: 40%;
    }

    .l-footer-08__logo {
        font-size: clamp(25px, 25 / 1140 * 100vw, 35px);
    }

    .l-footer-08__logo img {
        width: 60%;
        margin-bottom: 0;
    }

    .l-footer-05__sns {
        justify-content: flex-start;
        margin-top: 15px;
    }

    .l-footer-05__sns__item {
        width: 12%;
        margin-right: 15px;
    }

    .l-footer-08__contact__shop__open {
        width: 45%;
    }

    .l-footer-08__info p {
        font-size: 17px;
    }

    .l-footer-08__contact__shop__tel a {
        font-size: clamp(30px, 35/1140*100vw, 40px);
    }
    
    .l-footer-08__contact {
        width: 50%;
        margin-top: 0;
    }

    .l-footer-08__contact__inquiry {
        margin-top: 10px;
    }

    .copyright {
        background-color: #1d2d50;
    }
}

/* フッターナビゲーション
==============================*/

.l-footer-08__nav {
    padding: 20px 10px;
    background-color: #fff;
}

.l-footer-08__nav__inner {
    padding: 0 8px
}

.l-footer-08__nav__inner ul {
    display: flex;
    flex-wrap: wrap;
}

.l-footer-08__nav__inner li:not(:last-child) {
    margin-right: 30px;
}

.l-footer-08__nav__inner li a {
    font-size: 15px;
    color: #000;
    text-decoration: none;
}

.l-footer-08__nav__inner li a::before {
    content: ">";
    margin-right: 3px;
}

/* PC */
@media screen and (min-width: 768px) { 
    .l-footer-08__nav__inner {
        max-width: 1140px;
        margin: 0 auto;
        padding: 0;
    }
}

/* SP */
@media screen and (max-width:767px) {
    .btn__page_top {
        display: none !important;
    }
}


/*=================================

* トップページ

=================================*/

/*
　当社について
=================================*/
.p-about__title {
    font-size: 22px !important;
}

.p-about__image {
    margin-bottom: 30px;
}

.p-about__image img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    object-position: 72% 50%;
}

.p-about p {
    line-height: 1.6;
}

/* PC */
@media screen and (min-width:768px) { 
    .p-about__title {
        font-size: 26px !important;
    }
    
    .p-about__image {
        margin-bottom: 30px;
    }

    .p-about__image img {
        height: 250px;
    }

    .p-about p {
        line-height: 1.8;
    }
}

/*
　特徴（３カラム）-06
================================*/
.c-feature-col3-06 {
    width: 95%;
    margin: 0 auto;
}

.c-feature-col3-06 ul {
    display: flex;
    flex-direction: column;
}

.c-feature-col3-06 li {
    margin-bottom: 50px;
}

.c-feature-col3-06 li:last-child {
    margin-bottom: 0;
}

.c-feature-col3-06__image {
    border: 1px solid #B6BBC4;
    background-color: #FFF;
    border-radius: 5px;
    margin-bottom: 20px;
    padding: 7px;
    box-sizing: border-box;
    filter: drop-shadow(2px 2px 2px rgba(160, 160, 160, 0.7));
    font-size: 0;
}

.c-feature-col3-06__image img {
    width: 100%;
    aspect-ratio: 3/2;
    object-fit: cover;
}

.c-feature-col3-06 h3 {
    margin-bottom: 10px;
    font-size: clamp(25px, 25 / 768 * 100vw, 30px);
    font-weight: bold;
    color: #1d2d50;
    text-align: center;
    font-family: 'Noto Serif JP', serif;
}

.c-feature-col3-06 p {
    line-height: 1.6;
}

/* PC */
@media screen and (min-width:768px) {
    .c-feature-col3-06 {
        width: 100%;
    }

    .c-feature-col3-06 ul {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        width: 100%;
    }

    .c-feature-col3-06 li {
        width: 30%;
    }

    .c-feature-col3-06 h3 {
        font-size: clamp(25px, 25 / 1140 * 100vw, 28px);
    }
}

/*
　物件情報-01
================================*/
.c-estate-list-col3-01 li {
    position: relative;
    margin-bottom:50px;
    background-color: #f5f5f5;
}

/* テキスト部分の背景：白色 */
.l-section--gray .c-estate-list-col3-01 li {
    background-color: #fff;
}
            
.c-estate-list-col3-01 a {
    display: block;
    height: 100%;
    text-decoration: none;
    color: #333;
}
                
.c-estate-list-col3-01__image {
    position: relative;
}

.c-estate-list-col3-01__image img:last-of-type {
    display: block;
    width: 100%;
    aspect-ratio: 3/2;
    object-fit: cover;
}
    
.c-estate-list-col3-01__label {
    display: inline-block;
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 5px 10px;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.7);
}

.c-estate-list-col3-01__price {
    font-size: 20px;
    font-weight: bold;
    line-height: 1.3;
}

.c-estate-list-col3-01__price span {
    margin-left: 2px;
    font-size: 17px;
}
    
.c-estate-list-col3-01__textarea {
    padding: 20px;
}
                    
.c-estate-list-col3-01__type {
    display: inline-block;
    margin-bottom: 10px;
    padding: 3px 10px;
    line-height: 1.6;
    font-size: 14px;
    color: #FFF;
    background-color: #1d2d50;
}

.c-estate-list-col3-01 a[href*="/ebm/"] .c-estate-list-col3-01__type {
    background: #1E7C76;
}

.c-estate-list-col3-01 a[href*="/ebl/"] .c-estate-list-col3-01__type {
    background: #703030;
}

.c-estate-list-col3-01 a[href*="/ebb/"] .c-estate-list-col3-01__type {
    background: #73693B;
}

.c-estate-list-col3-01 a[href*="/ebi/"] .c-estate-list-col3-01__type {
    background: #F28705;
}

.c-estate-list-col3-01__type[data-type*="賃貸"] {
    background: #133b5c;
}

.c-estate-list-col3-01__address {
    margin-bottom: 10px;
    font-weight: bold;
}

.c-estate-list-col3-01__access {
    margin-bottom: 10px;
    font-size: 15px;
}
                        
.c-estate-list-col3-01__catchcopy {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-align: left;
    font-size: 15px;
    color: #1d2d50;
}

/* PC */
@media screen and (min-width:768px) {
    .c-estate-list-col3-01 {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .c-estate-list-col3-01::after {
        content: '';
        display: block;
        width: 30%;
    }

    .c-estate-list-col3-01 li {
        width: 30%;
        margin: 0 0 50px 0;
    }

    .c-estate-list-col3-01 a:hover {
        opacity: 0.6;
    }

    .c-estate-list-col3-01__price {
        font-size: 22px;
    }

    .c-estate-list-col3-01__price span {
        font-size: 18px;
    }
}

/*
　お客様の声（アンケート）-01
================================*/
.c-survey-list-01 li,
.c-survey-list-01--gray li {
    margin-bottom: 30px;
}

.c-survey-list-01 li {
    background-color: #FFF;
}

.c-survey-list-01--gray li {
    background-color: #f8f8f8; 
}

.c-survey-list-01 li a,
.c-survey-list-01--gray li a {
    display: block;
    margin: 0 auto;
    text-decoration: none;
}

.c-survey-list-01__image {
    width: 90%;
    margin: 0 auto 15px auto;
}

.c-survey-list-01__image img {
    width: 100%;
    height: 225px;
    margin-top: 20px;
    object-fit: cover;
}

.c-survey-list-01__name {
    width: 90%;
    margin: 0 auto 10px auto;
    font-size: 17px;
    color: #000;
    font-weight: bold;
}

.c-survey-list-01__tag {
    display: flex;
    align-items: center;
    width: 90%;
    margin: 0 auto 15px auto;
    font-size: 16px;
    color: #333;
}

.c-survey-list-01__tag--area, 
.c-survey-list-01__tag--type {
    margin-right: 10px;
    padding: 3px 5px;
}

.c-survey-list-01__tag--area {
    background-color: #ede5cb;
}

.c-survey-list-01__tag--type {
    background-color: #EEEEEE;
}

.c-survey-list-01__detail {
    width: 90%;
    margin: 0 auto;
    padding-bottom: 20px;
    font-size: 16px;
    line-height: 1.3;
    color: #333;
    overflow: hidden;
}

.c-survey-list-01__detail p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}


/* PC */
@media screen and (min-width:768px) {
    .c-survey-list-01,
    .c-survey-list-01--gray {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .c-survey-list-01 li,
    .c-survey-list-01--gray li {
        width: 31%;
    }

    .c-survey-list-01 a:hover,
    .c-survey-list-01--gray a:hover {
        opacity: 0.7;
    }

    .c-survey-list-01::after,
    .c-survey-list-01--gray::after {
        content: '';
        display: block;
        width: 31%;
    }
}

/*
　よくある質問-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: #1d2d50; 
}

.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;
    }
}

/*
　ブログリスト-01
================================*/
.c-blog-list-01 li {
    margin-bottom: 50px;
}

.c-blog-list-01 li:last-child {
    margin-bottom: 20px;
}

.c-blog-list-01 li a {
    display: block;
    text-decoration: none;
}

.c-blog-list-01__image {
    margin-bottom: 15px;
}

.c-blog-list-01__image img {
    display: block;
    width: 100%;
    max-width: 400px;
    height: 200px;
    object-fit: cover;
    margin: 0 auto;
    border-radius: 13px;
}

.c-blog-list-01__content {
    margin-bottom: 15px;
}

.c-blog-list-01__content__title {
    display: inline-block;
    margin-bottom: 5px;
    font-size: 18px;
    font-weight: bold;
    color: #333;
    font-weight: bold;
}

.c-blog-list-01__content__text {
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    color: #333;
}

.c-blog-list-01__content__tag {
    margin-bottom: 10px;
}

.c-blog-list-01__content__tag span {
    display: inline-block;
    margin-bottom: 5px;
    padding: 5px 10px;
    font-size: 14px;
    color: #fff !important;
    background-color: #1d2d50;
}

.c-blog-list-01__content__date {
    font-size: 14px;
    color: #666;
}

/* PC */
@media screen and (min-width:768px) {
    .c-blog-list-01 {
        max-width: 1140px;
        margin: 0 auto 15px auto;
    }

    .c-blog-list-01 li {
        margin-bottom: 0;
        padding: 30px 0;
        border-bottom: solid 1px #dfdfdf;
    }

    .c-blog-list-01 li:last-child {
        border-bottom: none;
    }
    
    .c-blog-list-01 li a {
        display: flex;
        justify-content: space-between;
    }

    .c-blog-list-01 li a:hover {
        opacity: 0.7;
    }

    .c-blog-list-01__image {
        width: 350px;
        margin-bottom: 0;
        margin-right: 50px;
        padding: 0;
    }

    .c-blog-list-01__image img {
        height: 180px;
    }

    .c-blog-list-01__content {
        width: calc(100% - 400px);
        margin-bottom: 0;
        padding: 0;
    }
}


/*=================================

* 下層ページ（共通）

=================================*/

/*
　サブビジュアル
================================*/
.c-page-title-02 {
    position: relative;
    height: 250px;
    margin-bottom: 35px;
}

.c-page-title-02::before {
    position: absolute;
    content: '';
    top: 35px;
    left: 0;
    width: 90%;
    height: 250px;
    background: #1d2d50;
}

.c-page-title-02__img {
    position: relative;
    width: 90%;
    height: 100%;
    margin-left: auto;
    background: url(../img/page-title__buy.jpg) no-repeat center center / cover;
}

.c-page-title-02__img__service {
    background: url(../img/page-title__service.jpg) no-repeat center center / cover;
}

.c-page-title-02__img__company {
    background: url(../img/page-title__company.JPG) no-repeat 60% center / cover;
}

.c-page-title-02__img__sell {
    background: url(../img/page-title__sell.jpg) no-repeat center center / cover;
}

.c-page-title-02__img__buy {
    background: url(../img/page-title__buy.jpg) no-repeat center center / cover;
}

.c-page-title-02__img__rent {
    background: url(../img/page-title__rent.jpg) no-repeat center center / cover;
}

.c-page-title-02__img::before {
    position: absolute;
    content: '';
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.2);
}

.c-page-title-02__img.c-page-title-02__img__buy::before,
.c-page-title-02__img.c-page-title-02__img__company::before {
    position: unset;
}

.c-page-title-02__img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.c-page-title-02__text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    color: #FFF;
    text-align: center;
    text-shadow: 2px 2px 2px #000;
}

.c-page-title-02 h1 {
    margin-bottom: 10px;
    font-size: clamp(30px, 8vw ,35px);
    font-weight: 900;
    font-family: 'Noto Serif JP', serif;
}

.c-page-title-02 h2 {
    font-size: clamp(15px, 2vw ,18px);
    font-weight: bold;
}

/* PC */
@media screen and (min-width:768px) {
    .c-page-title-02 {
        height: 350px;
        margin-bottom: 100px;
    }

    .c-page-title-02::before {
        height: 350px;
        top: 60px;
    }

    .c-page-title-02 h1 {
        margin-bottom: 0;
        font-size: clamp(40px, 40 / 1140 * 100vw, 55px);
    }

    .c-page-title-02 h2 {
        font-size: clamp(18px, 18 / 1140 * 100vw, 23px);
    }
}


/*=================================

* 事業内容

=================================*/

/*
　特徴（交互）-02
================================*/
.c-feature-swap-02__inner {
    padding: 0 8px;
}

.c-feature-swap-02__card {
    margin-bottom: 50px;
}

.c-feature-swap-02__card:last-child {
    margin-bottom: 0;
}

.c-feature-swap-02__card__img { 
    position: relative;
    width: 100%;
    max-height: 350px;
}

.c-feature-swap-02__card__img:before {
    content:"";
    display: block;
    padding-top: 51.22%
}

.c-feature-swap-02__card__img img {
    position: absolute;
    top:50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.c-feature-swap-02__card__text h3 {
    padding: 20px 0;
    text-align: center;
    color: #1d2d50;
    font-size: clamp(27px, 27 / 768 * 100vw, 33px);
    font-weight: 900;
}

.c-feature-swap-02__card__text p {
    font-size: clamp(16px, 16 / 768 * 100vw, 18px);
    line-height: 1.7;
}

.c-feature-swap-02__card__text a {
    display: block;
    margin-top: 15px;
    padding: 10px 15px;
    text-decoration: none;
    text-align: center;
    color: #1d2d50;
    font-size: clamp(16px, 16 / 768 * 100vw, 18px);
    font-weight: 500;
    border: 2px solid #1d2d50;
    background-color: #FFF;
}

.c-feature-swap-02__card__text a:hover {
    background-color: #1d2d50;
    border: 2px solid #1d2d50;
    color: #FFF;
}

/* PC */
@media screen and (min-width: 768px) {
    .c-feature-swap-02 {
        overflow: hidden;
    }

    .c-feature-swap-02__inner {
        max-width: 1140px;
        margin: 0 auto;
        padding: 0;
    }

    .c-feature-swap-02__card {
        display: flex;
        margin-bottom: 80px;
    }

    .c-feature-swap-02__flex-reverse {
        flex-direction: row-reverse;
    }
    
    .c-feature-swap-02__outside--right {
        flex: 1;
        margin-right: calc(50% - 50vw);
    }

    .c-feature-swap-02__outside--left {
        flex: 1;
        margin-left: calc(50% - 50vw);
    }

    .c-feature-swap-02__card__img {
        width: 50%;
        max-height: 400px;
    }

    .c-feature-swap-02__card__text {
        box-sizing: border-box;
        width: 50%;
        margin-top: 10px;
        padding: 0 30px;
    }

    .c-feature-swap-02__card__text h3 {
        padding: 0 0 30px;
        text-align: left;
        font-size: clamp(25px, 25 / 1140 * 100vw, 40px);
    }

    .c-feature-swap-02__card__text p {
        font-size: clamp(16px, 16 / 1140 * 100vw, 19px);
        line-height: 1.9;
    }

    .c-feature-swap-02__card__text a {
        width: 60%;
        margin-top: 20px;
        padding: 10px 15px;
        font-size: clamp(16px, 16 / 1140 * 100vw, 19px);
    }
}  


/*=================================

* 会社紹介

=================================*/

/*
　経営理念
================================*/
.p-company-philosophy {
    width: 95%;
    margin: 0 auto;
}

.p-company-philosophy h2 {
    margin-bottom: 25px;
    font-size: clamp(28px, 28 / 768 * 100vw, 33px);
    font-weight: bold;
    letter-spacing: 0.2em;
    color: #1d2d50;
    text-align: center;
}

.p-company-philosophy p {
    font-size: clamp(20px, 20 / 768 * 100vw, 23px);
    font-weight: bold;
    font-family: "Noto Serif JP", serif;
    line-height: 1.6;
    color: #333;
}

/* PC */
@media screen and (min-width:768px) {
    .p-company-philosophy {
        width: 100%;
    }

    .p-company-philosophy h2 {
        font-size: clamp(33px, 33 / 1140 * 100vw, 45px);
    }

    .p-company-philosophy p {
        font-size: clamp(23px, 23 / 1140 * 100vw, 30px);
        text-align: center;
    }
}

/*
　ポイント（３カラム）-08
================================*/
.c-point-col3-08 {
    width: 95%;
    margin: 0 auto;
    box-sizing: border-box;
}

.c-point-col3-08__unit {
    margin-bottom: 50px;
    background: #fff;
    border: solid 1px #1d2d50;
    border-radius: 5px;
    box-sizing: border-box;
}

.c-point-col3-08__unit:last-child {
    margin-bottom: 0;
}

.c-point-col3-08__head {
    position: relative;
}

.c-point-col3-08__head span{
    position: absolute;
    top: 0;
    left: 0;
    padding: 6px;
    font-family: "Arial", sans-serif;
    font-size: 22px;
    font-weight: 900;
    color: #fff;
    background: #1d2d50;
    border-radius: 3px 0 5px 0;
}

.c-point-col3-08__head h3 {
    padding: 52px 20px 0 20px;
    line-height: 1.5;
    font-size: 20px;
    font-weight: bold;
    color: #333;
}

.c-point-col3-08__body {
    padding: 15px 20px 20px 20px;
}

.c-point-col3-08__body p {
    line-height: 1.6;
    font-size: 16px;
}

/* PC */
@media screen and (min-width:768px) {
    .c-point-col3-08 {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        width: 100%;
        padding: 0 8px;
    }

    .c-point-col3-08__unit {
        display: flex;
        flex-direction: column;
        width: 30%;
        margin-bottom: 0;
    }

    .c-point-col3-08__head span {
        padding: 10px;
        font-size: 24px;
    }

    .c-point-col3-08__head h3 {
        padding: 65px 25px 0 25px;
    }

    .c-point-col3-08__body {
        padding: 25px 25px 30px 25px;
    }
}

/*
　挨拶-07
================================*/
.c-greeting-07 {
    padding: 0 10px;
}

.c-greeting-07__img {
    width: 100%;
    margin: 0 auto;
    margin-bottom: 30px;
    max-width: 400px;
}

.c-greeting-07__img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.c-greeting-07__label {
    position: relative;
    margin-bottom: 20px;
}

.c-greeting-07__label:before {
    display: block;
    content: "";
    position: absolute;
    left: 0;
    top: 12px;
    width: 100%;
    height: 1px;
    background-color: #767171;
}

.c-greeting-07__label span {
    position: relative;
    padding-right: 1em;
    font-size: 18px;
    letter-spacing: 0.07em;
    color: #767171;
    background-color: #fff;
    line-height: 1;
    font-family: "Roboto Condensed", "Arial", sans-serif;
}

.c-greeting-07__title h3 {
    font-size: clamp(28px, calc(31 / 900 * 100vw), 31px);
    font-weight: bold;
    color: #1d2d50;
    line-height: 1.4;
    font-family: "Noto Serif JP", serif;
}

.c-greeting-07__text {
    margin-top: 30px;
    padding: 20px;
    background-color: #eaf3f9;
    font-family: 'Noto Serif JP', serif;
}

.c-greeting-07__text__inner {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
}

.c-greeting-07__text p {
    font-size: 16px;
    line-height: 1.8;
}

.c-greeting-07__name {
    font-weight: bold;
    font-size: 16px;
    margin-top: 20px;
    text-align: right;
}

/* PC */
@media screen and (min-width: 900px) {
    .c-greeting-07 {
        display: flex;
        flex-direction: row-reverse;
        justify-content: space-between;
        align-items: center;
    }

    .c-greeting-07__img {
        flex-basis: 48%;
        max-width: none;
        margin: 0;
        height: 400px;
    }

    .c-greeting-07__title {
        flex-basis: 50%;
        margin: 0;
    }

    .c-greeting-07__label {
        margin-bottom: 30px;
    }

    .c-greeting-07__label span {
        font-size: 20px;
    }

    .c-greeting-07__title h3 {
        font-size: clamp(31px, calc(35 / 1140 * 100vw), 35px);
        line-height: 1.6;
    }

    .c-greeting-07__text {
        margin-top: 0;
        padding: 80px 20px 40px 20px;
    }

    .c-greeting-07__text p {
        font-size: 18px;
    }

    .c-greeting-07__name {
        font-size: 18px;
    }
}

/*
　バナー（１カラム）-05
================================*/
.c-banner-col1-05 {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: url(../img/company-staff__image.jpg) no-repeat 45% center / cover;
}

.c-banner-col1-05::before {
    position: absolute;
    content: '';
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(11, 60, 93, 0.7);
}

.c-banner-col1-05__content {
    position: relative;
    width: 90%;
    text-align: center;
}

.c-banner-col1-05__content__title {
    font-size: clamp(32px, 10vw, 45px);
    font-weight: bold;
    color: #fff;
}

.c-banner-col1-05__content__text {
    margin-top: 15px;
    line-height: 1.4;
    font-size: 16px;
    color: #fff;
}

a.c-banner-col1-05__content__button {
    display: block;
    max-width: 330px;
    margin: 30px auto 0;
    padding: 10px 10px;
    font-size: clamp(18px, 5.6vw, 22px);
    font-weight: bold;
    text-decoration: none;
    color: #1d2d50;
    background: #fedb39;
}

a.c-banner-col1-05__content__button:hover {
    opacity: 0.8;
}

/* PC */
@media screen and (min-width:768px) {
    .c-banner-col1-05__content {
        width: 100%;
    }

    .c-banner-col1-05__content__title {
        font-size: 45px;
    }

    .c-banner-col1-05__content__text {
        font-size: 20px;
    }

    a.c-banner-col1-05__content__button {
        font-size: 22px;
    }
}

/*
　会社概要-02
================================*/
.c-company-02__detail__list {
    display: flex;
    align-items: flex-start;
    padding: 10px 0;
}

.c-company-02__detail__list:nth-child(even) {
    background: #FFF;
}

.c-company-02__detail__list dt {
    width: 28%;
    padding-left: 2%;
}

.c-company-02__detail__list dd {
    width: 81%;
}

.c-company-02__detail__list dt,
.c-company-02__detail__list dd {
    font-size: 14px;
}

/* PC */
@media screen and (min-width: 768px) {
    .c-company-02__detail__list {
        padding: 20px 0;
    }

    .c-company-02__detail__list dt {
        width: 19%;
    }

    .c-company-02__detail__list dt,
    .c-company-02__detail__list dd {
        font-size: 16px;
    }
}

/* 店舗写真
 ======================= */
 .p-company__image__img {
    width: 100%;
}

.p-company__image__img:not(:first-child) {
    margin-top: 20px;
}

.p-company__image__img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media screen and (min-width: 768px) {
    .p-company__image {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
    }

    .p-company__image__img {
        width: 32%;
    }

    .p-company__image__img:not(:first-child) {
        margin-top: unset;
    }
}

/* アクセス
 ======================= */
.p-company-access {
    font-size: 0;
}


/*=================================

* 不動産売却

=================================*/

/*
　シンプル-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;
    }
}

/*
　シンプル-02・テキストカラー
================================*/
.c-title-02,
.c-title-02--color-2 {
    font-size: 30px;
    font-weight: 900;
    line-height: 1.3;
    text-align: center;
    color: #1d2d50;
    margin-bottom: 30px;
}

.c-title-02--color-2 {
    color: #133b5c;
}

/* PC */
@media screen and (min-width:768px) {
    .c-title-02,
    .c-title-02--color-2 {
        font-size: 53px;
        margin-bottom: 50px;
    }
}

/*
　背景カラー-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: #1d2d50;
}

.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: #133b5c;
}

.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);
    }
}

/*
　タイトル（フォントサイズlg）
================================*/
.c-title--large {
    margin-bottom: 30px;
    font-size: 25px;
    font-weight: 900;
}

.c-title--large span {
    font-size: 33px;
}

/* PC */
@media screen and (min-width:768px) {
    .c-title--large  {
        font-size: 40px;
        text-align: center;
    }
    
    .c-title--large span {
        font-size: 55px;
    }
}

/*
　横3つ並び枠
=================================*/
.p-sell__promise {
    width: 90%;
    margin: 0 auto 40px auto;
}

.p-sell__promise li {
    width: 100%;
    margin-bottom: 15px;
    border: 2px solid #1d2d50;
    box-sizing: border-box;
    padding: 15px;
    border-radius: 8px;
}

.p-sell__promise li h3 {
    font-size: 23px;
    margin-bottom: 10px;
    color: #1d2d50;
    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;
    }
}

/*
　コンタクト-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: #1d2d50;
    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: #1d2d50 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;
    }
}

/*
　コンタクト-10
================================*/
.c-contact-10 {
    background: #1d2d50;
    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: #133b5c;
    background: #b88f38;
    color: #fff;
}

.c-contact-10__button-satei a span {
    border: solid 2px #B22222;
}

.c-contact-10__button-inquiry a span {
    border: solid 2px #133b5c;
    border: solid 2px #b88f38;
}

/* 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.svg);
}

@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;
    }
}