@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-40 {
    margin-bottom: 40px !important;
}

.u-mb-80 {
    margin-bottom: 80px !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;
}
  
/**
 * 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-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;
}

/**
 * Button
 */
/*==================================
* Button
==================================*/
.c-button-container {
    padding-top: 30px;
    text-align: center;
}

/*
　標準ボタン
================================*/
.c-button {
    position: relative;
    display: block;
    width: 95%;
    margin: 0 auto;
    padding: 12px 5px;
    text-align: center;
    border-radius: 30px;
    border: 2px solid #166a72;
    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: #166a72;
    font-weight: bold;
}

.c-button::after {
    background: #166a72;
    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;
    }
}

/*
　セカンダリボタン
================================*/
.c-button--secondary {
    display: block;
    width: 95%;
    margin: 0 auto;
    padding: 20px 10px;
    background-color: #f4883c;
    text-decoration: none;
    text-align: center;
    box-sizing: border-box;
}

.c-button--secondary,
.c-button--secondary:link,
.c-button--secondary:visited {
    text-decoration: none;
    color: #FFF;
}

.c-button--secondary:hover {
    background-color: #767171;
}

@media screen and (min-width: 768px) {
    .c-button--secondary {
        width: 35%;
        font-size: 17px;
    }
}

/*
　アウトラインボタン
================================*/
.c-button-outline {
    display: block;
    width: 95%;
    margin: 0 auto;
    padding: 15px 10px;
    text-align: center;
    font-weight: bold;
    border: 1.5px solid #111;
    box-sizing: border-box;
}

.c-button-outline,
.c-button-outline:link,
.c-button-outline:visited {
    text-decoration: none;
    color: #111;
}

.c-button-outline:hover {
    border-color: transparent;
    color: #FFF;
    background-color: #166a72;
}

/* PC */
@media screen and (min-width: 768px) {
    .c-button-outline {
        width: 43%;
        font-size: 18px;
    }
}

/*
　プライマリボタン
================================*/
.c-button--primary {
    width: 90%;
    display: block;
    margin: 0 auto;
    padding: 12px 5px;
    text-align: center;
    border-radius: 30px;
    border: 2px solid #166a72;
    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: #166a72;
    font-weight: bold;
}
  
.c-button--primary::after {
    background: #166a72;
    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 {
    position: relative;
    margin: 0 auto 30px auto;
    padding: 5px 8px;
    text-align: center;
    line-height: 1.4;
    font-size: 24px;
    font-weight: bold;
    color: #333;
    background-color: transparent !important;
}

h2.tit::after {
    content: '';
    position: absolute;
    left: calc(50% - 23px);
    bottom: -5px;
    display: block;
    width: 46px;
    border: 2px solid #166a72;
    border-radius: 50px;
}

/* PC */
@media screen and (min-width:768px) {
    h2.tit {
        max-width: 1140px;
        margin: 0 auto 50px auto;
        padding: 5px 8px 7px 8px;
        font-size: clamp(28px, 28 / 1140 * 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: #166a72;
}

/* PC */
@media screen and (min-width:768px) {
    h3.tit {
        max-width: 1140px;
        padding: 0 0 10px 0;
    }
}

/*
　ページタイトル
================================*/
.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__sell {
    background-image: url(../img/page-title__sell.jpg);
}

.c-page-title-01__akiya {
    background-image: url(../img/page-title__akiya.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 h1 {
    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 h1 {
        font-size: 60px;
    }
}

/*
　シンプル-02・テキストカラー
================================*/
.c-title-02,
.c-title-02--color-2 {
    font-size: 30px;
    font-weight: 900;
    line-height: 1.3;
    text-align: center;
    color: #166a72;
    margin-bottom: 30px;
}

.c-title-02--color-2 {
    color: #f4883c;
}

/* 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-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;
    }
}

/*
　コンタクト-10
================================*/
.c-contact-10 {
    background: #166a72;
    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: #8C031C;
    color: #fff;
}

.c-contact-10__button-inquiry a {
    background: #f4883c;
    color: #fff;
}

.c-contact-10__button-satei a span {
    border: solid 2px #8C031C;
}

.c-contact-10__button-inquiry a span {
    border: solid 2px #f4883c;
}

/* 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;
    }
}

/*
　チェックボックス付きリスト
=================================*/
.c-checkbox-list-01 {
    margin: 10px;
}

.c-checkbox-list-01 li {
    position: relative;
    padding-left: 30px;
    line-height: 1.5;
    margin-bottom: 20px;
    font-size: 17px;
}

.c-checkbox-list-01 li:before {
    position: absolute;
    top: 3px;
    margin-left: -30px;
    margin-right: 10px;
    content: url(../img/icon__check.png);
}

@media screen and (min-width: 768px) {
    .c-checkbox-list-01 {
        margin: 0;
    }

    .c-checkbox-list-01 li:before {
        top: 0;
    }
}

/*
　背景カラー-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: #166a72;
}

.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, 4.1666666667vw, 32px);
    color: #fff;
    font-weight: 900;
    line-height: 1.5;
}

.c-title-bg-01--color-2,
.c-title-bg-01--color-2--sm {
    background: #f4883c;
}

.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, 3.2552083333vw, 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, 6.5104166667vw, 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, 3.90625vw, 30px);
    }
}

/*
　流れ
================================*/
.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: #166a72;
    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: #166a72 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;
    }
}

/*
　お悩み-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%;
    }
}



/* ━━━━━━━━━━━━━━━━

 ■レイアウト

━━━━━━━━━━━━━━━━ */


/*=================================

* セクション

=================================*/

.l-section {
    padding: 35px 0;
}

.l-section.l-section--gray {
    background: #f5f5f5;
}

.l-section.l-section--blue {
    background: #F1F5F8;
}

.l-section.l-section--yellow {
    background: #fbf9ee;
}

.l-section.l-section--lightblue {
    background: #e6f5f5;
}

.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;
    border-bottom: none;
}

.l-header {
    position: relative;
    width: 100%;
    height: 60px;
    margin: 0;
}

.l-header__wrapper {
    position: fixed;
    width: 100%;
    height: 60px;
    padding: 5px 10px;
    background-color: rgba(250, 250, 250, 0.9);
    box-shadow: 0 0 6px rgb(0 0 0 / 20%);
    z-index: 99;
    box-sizing: border-box;
}

.l-header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
 
/* ロゴ */
.l-header__logo {
    margin: 3px 0 5px 0;
}

.l-header__logo a {
    display: block;
    text-decoration: none;
}

.l-header__logo span {
    font-size: 18px !important;
    font-weight: 900;
    color: #333;
}
            
.l-header__logo img {
    display: block;
    max-width: 220px;
}

/* 問合わせ */
.l-header__contact {
    display: none;
}

/* ナビゲーション */
.l-header__nav {
    display: none;
}

/* ハンバーガーメニュー */
.l-header__menu__button {
    display: block;
    padding-right: 10px;
}

.l-header__menu__button a {
    display: block;
    text-align: center;
    text-decoration: none;
    color: #1f2a34;
}
                    
.l-header__menu__button i {
    font-size: 35px;
}

.l-header__sp-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 100px 20px 65px 20px;
    background: #fefefe;
    transform: translateY(min(-100%,-1000px));
    transition: transform .5s;
    z-index: 50;
}

.l-header__sp-menu.__open {
    transform: translateY(0);
    transition: transform .5s;
}

.l-header__sp-menu ul li {
    width: 100%;
    height: auto;
    border-top: 1px solid #919191;
}

.l-header__sp-menu ul li:hover {
    background: #747474;
}

.l-header__sp-menu ul li:last-child {
    border-bottom: 1px solid #919191;
}

.l-header__sp-menu ul li a {
    display: block;
    width: 100%;
    height: 3em;
    margin-left: 1em;
    line-height: 3em;
    text-decoration: none;
    font-size: 1em;
    color: #166a72;
}

.l-header__sp-menu ul li a:hover {
    color: #fff;
}

.l-header__sp-menu--tel,
.l-header__sp-menu--mail {
    text-align: center;
}

.l-header__sp-menu--tel a {
    display: inline-block;
    margin-top: 50px;
    text-decoration: none;
    line-height: 1;
    font-family: "Arial", 'Noto Sans Japanese', sans-serif;
    font-size: 32px;
    font-weight: bold;
    color: #166a72;
}

.l-header__sp-menu--tel p {
    text-align: center;
    font-size: 16px;
    color: #5f5f5f;
}

.l-header__sp-menu--mail a {
    display: inline-block;
    margin: 30px auto;
    padding: 15px 40px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 16px;
    color: #FFF;
    background-color: #166a72;
    box-sizing: border-box;
}

.l-header__sp-menu--mail a i {
    margin-right: 5px;
}

/* ページタイトル */
.l-header__page-title {
    padding: 10px 8px;
    font-size: 13px;
}

/* PC */
@media screen and (min-width:768px) {
    .l-header {
        height: auto;
    }

    .l-header__wrapper {
        position: relative;
        display: block;
        height: auto;
        padding: 0;
    }
    
    .l-header__inner {
        align-items: flex-end;
        max-width: 1140px;
        margin: 0 auto;
        padding: 13px 8px;
    }

    /* ロゴ */
    .l-header__logo {
        margin: 0;
    }

    .l-header__logo span {
        line-height: 40px;
        font-size: clamp(24px, 30 / 1140 * 100vw, 30px) !important;
    }

    .l-header__logo img {
        max-width: clamp(200px, 350 / 1140 * 100vw, 350px);
    }

    /* コンタクト */
    .l-header__contact {
        display: flex;
        justify-content: flex-end;
        flex-wrap: wrap;
        align-items: center;
        width: 55%;
    }

    .l-header__contact__tel {
        width: 60%;
        margin-right: 10px;
        line-height: 1.2;
        text-align: right;
        font-size: 26px;
        font-family: 'Century Gothic', "Arial", 'Noto Sans Japanese', sans-serif;
    }

    .l-header__contact__tel i {
        margin-right: 5px;
    }

    .l-header__contact__mail {
        width: 170px;
    }
    
    .l-header__contact__mail a {
        display: block;
        padding: 4px 25px 6px 25px;
        text-align: center;
        text-decoration: none;
        font-weight: 500;
        color: #fff;
        border-radius: 3px;
        background: #166a72;
    }

    .l-header__contact__mail a i {
        margin-right: 5px;
    }
    
    .l-header__contact__mail a:hover {
        background-color: #f4883c;
    }
    
    /* ナビゲーション */
    .l-header__nav {
        display: block;
        border-bottom: 3px solid #166a72;
        border-top: 1px solid #ccc;
        background: #fff;
    }
                
    .l-header__nav ul {
        display: flex;
        align-items: center;
        max-width: 1140px;
        height: auto;
        margin: 0 auto;
    }

    .l-header__nav ul li {
        width: 16.5%;
        border-left: solid 1px #ccc;
    }

    .l-header__nav ul li:last-child {
        border-right: solid 1px #ccc;
    }

    .l-header__nav ul li a {
        display: block;
        padding: 10px 5px;
        text-align: center;
        text-decoration: none;
        font-size: clamp(15px, 16 / 1140 * 100vw, 16px);
        color: #333;
    }

    .l-header__nav ul li a:hover {
        color: #fff;
        background-color: #166a72;
    }

    .l-header__menu__button {
        display: none;
    }

    .l-header__sp-menu {
        display: none;
    }

    /* ページタイトル */
    .l-header__page-title {
        max-width: 1140px;
        margin: 0 auto;
        padding: 10px 8px;
        font-size: 14px;
    }
}


/*=================================

* メインビジュアル

=================================*/

.l-main-visual {
    min-height: 350px;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../img/main-visual.jpg);
    background-position: center;
}

.l-main-visual__inner {
    width: 93%;
    margin: 0 auto;
    padding: 30px 0;
}

.l-main-visual__areas {
    display: flex;
    flex-wrap: wrap;
    gap: 3px;
    margin-bottom: 5px;
}

.l-main-visual__areas span {
    padding: 8px 12px;
    font-size: 17px;
    font-weight: 900;
    background-color: rgba(255, 255, 255, 0.85);
    border: 2px solid #f4883c;
    border-radius: 50px;
    color: #f4883c;
    text-shadow: none;
    line-height: 1;
}

.l-main-visual__inner h1 {
    line-height: 1.4;
    font-family: "Noto Serif JP", serif;
    font-size: 24px;
    font-weight: 900;
    color: #222;
    text-shadow: 
    #fff 3px 3px 3px, #fff -3px -3px 3px, 
    #fff -3px 3px 3px, #fff 3px -3px 3px, 
    #fff 3px 0px 3px, #fff -3px 0px 3px, 
    #fff 0px 3px 3px, #fff 0px -3px 3px;
}

.l-main-visual__inner h1 em {
    display: block;
    font-size: clamp(35px, 35 / 768 * 100vw, 45px);
    font-style: normal;
    font-weight: 900;
    color: #f4883c;
}

/* PC */
@media screen and (min-width:768px) {
    .l-main-visual {
        min-height: 550px;
    }

    .l-main-visual__inner {
        max-width: 1140px;
        padding: 75px 0 50px 0;
    }
    
    .l-main-visual__areas {
        justify-content: center;
        gap: 10px;
    }

    .l-main-visual__areas span {
        font-size: clamp(24px, 36 / 1140 * 100vw, 36px);
        padding: 10px 30px;
        border-radius: 50px;
    }
    
    .l-main-visual__inner h1 {
        font-size: clamp(38px, 48 / 1140 * 100vw, 54px);
        text-align: center;
        line-height: 1.35;
    }
    
    .l-main-visual__inner h1 em {
        display: inline-block;
        font-size: clamp(64px, 64 / 1140 * 100vw, 80px);
    }
}

/*=========================================

* フッター-08

==========================================*/
.l-footer {
    background-color: #F8F8F8;
    border-top: none;
}

.l-footer__inner {
    width: 90%;
    margin: 0 auto;
    padding: 20px 0;
}

.l-footer__logo {
    margin-bottom: 15px;
    font-size: clamp(28px, 28 / 768 * 100vw, 35px);
    font-weight: 900;
    line-height: 1;
    color: #000;
}

.l-footer__logo img {
    width: 80%;
    margin-bottom: 15px;
}

.l-footer__contact__sns {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.l-footer__contact__sns a:hover {
    opacity: 0.7;
}

.l-footer__contact__sns img {
    width: 35px;
}

.l-footer__contact {
    margin-top: 30px;
}

.l-footer__contact h3 {
    position: relative;
    width: 100%;
    height: 14px;
    text-align: center;
    border-bottom: 1px solid #000;
}

.l-footer__contact h3 span {
    padding: 0 10px;
    font-size: 18px;
    background-color: #f8f8f8;
}

.l-footer__contact__shop__info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.l-footer__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__contact__shop__tel i {
    margin-right: 5px;
}

.l-footer__contact__inquiry {
    margin-top: 15px;
}

.l-footer__contact__inquiry a {
    display: block;
    width: 100%;
    padding: 12px 0;
    color: #f4883c;
    text-align: center;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #f4883c;
}

.l-footer__contact__inquiry a:hover {
    color: #fff;
    background-color: #f4883c;
}

/* スマホ */
@media screen and (max-width: 400px) {
    .l-footer__info {
        text-align: center;
    }

    .l-footer__contact__shop__info {
        flex-direction: column-reverse;
        text-align: center;
    }
}

/* PC */
@media screen and (min-width: 768px) {
    .l-footer__inner {
        display: flex;
        justify-content: space-between;
        width: unset;
        max-width: 1140px;
        margin: 0 auto;
        padding: 20px 10px;
    }
    
    .l-footer__info {
        padding-top: 5px;
        width: 40%;
    }

    .l-footer__logo {
        font-size: clamp(25px, 25 / 1140 * 100vw, 35px);
    }

    .l-footer__logo img {
        width: 60%;
        margin-bottom: 0;
    }
    
    .l-footer__contact__sns {
        justify-content: flex-start;
        margin-top: 15px;
    }
    
    .l-footer-05__contact__sns img {
        width: 40px;
    }

    .l-footer__contact__shop__open {
        width: 45%;
    }

    .l-footer__info p {
        font-size: 17px;
    }

    .l-footer__contact__shop__tel a {
        font-size: clamp(30px, 35/1140*100vw, 40px);
    }
    
    .l-footer__contact {
        width: 50%;
        margin-top: 0;
    }

    .l-footer__contact__inquiry {
        margin-top: 10px;
    }

    .copyright {
        background-color: #166a72;
    }
}

/* フッターナビゲーション
==============================*/

.l-footer__nav {
    padding: 20px 10px;
    background-color: #fff;
}

.l-footer__nav__inner {
    padding: 0 8px
}

.l-footer__nav__inner ul {
    display: flex;
    flex-wrap: wrap;
}

.l-footer__nav__inner li:not(:last-child) {
    margin-right: 30px;
}

.l-footer__nav__inner li a {
    font-size: 15px;
    color: #000;
    text-decoration: none;
}

.l-footer__nav__inner li a::before {
    content: ">";
    margin-right: 3px;
}

/* PC */
@media screen and (min-width: 768px) { 
    .l-footer__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 .l-section__container {
    padding: 0;
}

.p-about__block {
    margin-bottom: 30px;
}

.p-about__image {
    margin-bottom: 30px;
}

.p-about__image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}
    
.p-about__text {
    padding: 0 15px;
    line-height: 1.6;
    font-size: 16px;
}

.p-about__ceo {
    margin-top: 1em;
    text-align: right;
}

/* PC */
@media screen and (min-width:768px) {
    .p-about {
        padding-bottom: 100px;
    }

    .p-about__block {
        display: flex;
        justify-content: space-between;
    }

    .p-about__text {
        order: 1;
        width: calc(100% - 480px);
        margin-right: 30px;
        padding: 0;
        font-size: 18px;
    }

    .p-about__image {
        order: 2;
        margin-bottom: 0;
    }

    .p-about__image img {
        width: 450px;
        height: 300px;
    }
}

/*
　概要-10　コンセプト
================================*/
.c-about-10 {
    padding-top: 30px;
    width: 90%;
    margin: 0 auto;
    max-width: 1200px;
}

.c-about-10__image {
    position: relative;
    width: 100%;
}

.c-about-10__image::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    bottom: -6%;
    right: -4%;
    background-color: #166a72;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    opacity: 0.3;
}

.c-about-10__image img {
    display: block;
    position: relative;
    max-width: 100%;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.c-about-10__title {
    margin-bottom: 20px;
}

.c-about-10__text {
    width: 100%;
    margin-bottom: 20px;
}

.c-about-10__label {
    position: relative;
    display: inline-block;
    font-size: 14px;
    color: #f4883c;
    font-family: "Arial", "Century Gothic", sans-serif;
    line-height: 1;
    letter-spacing: 1.5px;
}

.c-about-10__label::after {
    position: absolute;
    content: "";
    width: 75px;
    height: 1px;
    bottom: 0.5em;
    right: -90px;
    background-color: #f4883c;
}

.c-about-10 h2 {
    font-size: clamp(17px, calc(36 / 1140 * 100vw), 36px);
    font-weight: 500;
    color: #166a72;
    line-height: 1.8;
}

.c-about-10 p {
    font-size: 15px;
    line-height: 2;
    font-weight: 300;
}

@media screen and (min-width: 1000px) {
    .c-about-10__inner {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        position: relative;
    }

    .c-about-10__image {
        width: 65%;
        margin-bottom: 0;
        margin-left: -50%;
        z-index: -1;
    }

    .c-about-10__text {
        width: 60%;
        background-color: rgba(255,255,255,0.8);
        padding: 3em;
        padding-left: 0;
        margin-bottom: 0;
    }

    .c-about-10__label {
        font-size: 16px;
    }

    .c-about-10 h2 {
        margin-bottom: 40px;
        line-height: 1.5;
    }

    .c-about-10 p {
        font-size: 18px;
    }
}


/*
　特徴（３カラム）-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: #166a72;
    text-align: center;
}

.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,
.c-estate-list-col3-01--gray li {
    position: relative;
    margin-bottom:50px;
}

/* テキスト部分の背景：白色 */
.c-estate-list-col3-01 li {
    background-color: #fff;
}

/* テキスト部分の背景：灰色 */
.c-estate-list-col3-01--gray li {
    background-color: #f5f5f5;
}
            
.c-estate-list-col3-01 a,
.c-estate-list-col3-01--gray a {
    display: block;
    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: #166a72;
}

.c-estate-list-col3-01__type[data-type*="賃貸"]{
    background: #f4883c;
}

.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: #166a72;
}

/* PC */
@media screen and (min-width:768px) {
    .c-estate-list-col3-01,
    .c-estate-list-col3-01--gray {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        padding: 0 8px;
    }

    .c-estate-list-col3-01::after,
    .c-estate-list-col3-01--gray::after {
        content: '';
        display: block;
        width: 30%;
    }

    .c-estate-list-col3-01 li,
    .c-estate-list-col3-01--gray li {
        width: 30%;
        margin: 0 0 50px 0;
    }

    .c-estate-list-col3-01 a:hover,
    .c-estate-list-col3-01--gray a:hover {
        opacity: 0.6;
    }

    .c-estate-list-col3-01__price {
        font-size: 22px;
    }

    .c-estate-list-col3-01__price span {
        font-size: 18px;
    }
}

/*
　よくある質問-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: #166a72; 
}

.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;
    }
}


/*
　会社概要-06
================================*/
.c-company-06 {
    margin: 0 auto 10px auto;
}

.c-company-06__body {
    margin-bottom: 30px;
}

.c-company-06__body__detail {
    margin-bottom: 20px;
}

.c-company-06__body__detail dl > div {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 13px 10px;
    font-weight: bold;
    border-bottom: dotted 1px #908a6a;
    box-sizing: border-box;
}

.c-company-06__body__detail dl > div:last-child {
    border-bottom:none;
}

.c-company-06__body__detail dt {
    width: calc(100% - 70%);
    text-align: center;
}

.c-company-06__body__detail dd {
    width: 65%;
}

.c-company-06__body__map {
    height: 250px;
}

.c-company-06__foot__image {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.c-company-06__foot__image img {
    display: block;
    width: 49%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    margin-bottom: 7px;
}

/* PC */
@media screen and (min-width:768px) {
    .c-company-06 {
        margin: 0 auto 30px auto;
        padding: 0 8px;
    }

    .c-company-06__body {
        display: flex;
        justify-content: space-between;
        box-sizing: border-box;
        margin-bottom: 20px;
    }

    .c-company-06__body__detail {
        width: 55%;
        margin-right: 30px;
        margin-bottom: 0;
    }

    .c-company-06__body__detail dt {
        width: calc(100% - 80%);
        text-align: center;
    }
    
    .c-company-06__body__detail dd {
        width: 75%;
    }

    .c-company-06__body__map {
        width: calc(100% - 55%);
        height: 400px;
    }

    .c-company-06__foot__image {
        display: flex;
        justify-content: flex-start;
        box-sizing: border-box;
    }

    .c-company-06__foot__image img {
        width: 23%;
        margin: 0 11px 10px 11px;
    }
}


/*=================================

* 下層ページ

=================================*/

/*
　お知らせ-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: #166a72;
    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: #166a72;
        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: #166a72;
        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: #f4883c;
    }

    .c-news-list-01__button__pc .fa {
        margin-left: 10px;
    }

    .c-news-list-01__button__sp {
        display: none;
    }
}

/*
　ブログリスト-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: #166a72;
    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: #f4883c;
}

/* 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;
    }
}


/*
　施工事例-01
================================*/
.c-reform-list-01 {
    width: 95%;
    margin: 0 auto;
}

.c-reform-list-01 li {
    margin-bottom: 30px;
    background-color: #fff;
}

.c-reform-list-01 li a {
    display: block;
    text-decoration: none;
    color: #000;
}

.c-reform-list-01 li a:hover {
    opacity: 0.7;
}

.c-reform-list-01__image {
    width: 100%;
    height: 230px;
}

.c-reform-list-01__image img {
    width: 100%;
    height: 230px;
    object-fit: cover;
}

.c-reform-list-01__text {
    padding: 15px;
}

.c-reform-list-01__text h3 {
    font-size: 17px;
    font-weight: bold;
    margin-bottom: 7px;
}

.c-reform-list-01__label {
    display: inline-block;
    padding: 3px 10px 5px 10px;
    font-size: 14px;
    color: #fff;
    background-color: #767171;
}


/* PC */
@media screen and (min-width:768px) {
    .c-reform-list-01 {
        width: 100%;
    }

    .c-reform-list-01 ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .c-reform-list-01 ul::after {
        content: '';
        display: block;
        width: 31%;
    }

    .c-reform-list-01 li {
        width: 31%;
    }

    .c-reform-list-01__image, 
    .c-reform-list-01__image img {
        height: 250px;
    }

    .c-reform-list-01__text {
        padding: 10px 20px 15px 20px;
    }

}



/*
　LINE-03
================================*/
.c-banner-line-03 {
    display: flex;
    flex-direction: column;
    position: relative;
    padding: 40px 10px 0;
    background: #fff;
    border: 3px solid #00b900;
}

.c-banner-line-03:hover {
    opacity: 0.7;
}

.c-banner-line-03__logo {
    width: 200px;
    max-width: 90%;
    margin: 0 auto;
}

.c-banner-line-03__logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.c-banner-line-03__text {
    margin-top: 30px;
    line-height: 1.8;
    text-align: center;
}

.c-banner-line-03__text p {
    font-weight: 900;
        font-size: 14px;
}

.c-banner-line-03__text p:first-child {
    font-size: clamp(17px, 17/320*100vw, 20px);
    color: #00b900;
}

.c-banner-line-03__btn {
    display: inline-block;
    margin-top: 20px;
    padding: 5px 30px;
    box-sizing: border-box;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    background: #00b900;
}

.c-banner-line-03__btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.c-banner-line-03__img {
    width: 200px;
    max-width: 90%;
    margin: 30px auto 0;
}

.c-banner-line-03__img img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* PC */
@media screen and (min-width: 768px) {
    .c-banner-line-03 {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        margin: 0 auto;
        padding: 0;
    }

    .c-banner-line-03__logo {
        flex: 1;
        text-align: center;
        padding-left: clamp(10px, 40/1101*100vw, 15px);
    }

    .c-banner-line-03__logo img {
        width: 75%;
    }

    .c-banner-line-03__text {
        width: 50%;
        margin-top: 0;
        padding: clamp(20px, 20/1101*100vw, 30px) 0;
    }

    .c-banner-line-03__text p {
        font-size: clamp(11px, 11/1101*100vw, 20px);
    }

    .c-banner-line-03__text p:first-child {
        font-size: clamp(20px, 20/1101*100vw, 35px);
    }

    a.c-banner-line-03__btn {
        display: inline-block;
        margin-top: 15px;
        padding: 8px 70px;
        box-sizing: border-box;
        text-decoration: none;
        font-size: clamp(14px, 14/1101*100vw, 20px);
        font-weight: bold;
        color: #fff;
    }

    .c-banner-line-03__img {
        flex: 1;
        align-self: flex-end;
        margin: 0;
        padding-right: clamp(10px, 40/1101*100vw, 20px);
        text-align: center;
    }

    .c-banner-line-03__img img {
        width: 100%;
        min-width: 170px;
        vertical-align: bottom;
    }
}

/*
　お客様の声（アンケート）-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-accordion-menu-01 {
    width: 100%;
    margin: 0 auto 30px auto;
}

.c-accordion-menu-01 li {
    display: block;
    background: #fff;
    border-top: 1px solid #dcdcdc;
    border-right: 1px solid #dcdcdc;
    border-left: 1px solid #dcdcdc;
}

.c-accordion-menu-01 li:last-child {
    border-bottom: 1px solid #dcdcdc;
}

.c-accordion-menu-01__check {
    display: none;
}

.c-accordion-menu-01__check:checked + .c-accordion-menu-01__question + .c-accordion-menu-01__answer {
    padding: 10px;
    height: auto;
    opacity: 1;
    visibility: visible;
}

.c-accordion-menu-01__check:checked + .c-accordion-menu-01__question::after {
    content: "－";
}

.c-accordion-menu-01__question {
    position: relative;
    display: block;
    padding: 15px 50px 15px 20px;
    font-size: 18px;
    font-weight: bold;
    color: #345887;
    background: #fff;
}

.c-accordion-menu-01__question::after {
    position: absolute;
    display: block;
    top: 50%;
    transform: translate(0, -50%);
    right: 0;
    padding: 15px;
    box-sizing: border-box;
    content: "＋";
}

.c-accordion-menu-01__answer {
    padding: 0 10px;
    height: 0;
    opacity: 0;
    visibility: hidden;
    border-top: 1px solid #dcdcdc;
    transition: 0.5s;
    background-color: #f5f5f5;
}

.c-accordion-menu-01__answer p {
    width: 95%;
    margin: 0 auto;
    line-height: 1.4;
    font-size: 16px;
    word-break: break-word;
}

@media screen and (min-width: 768px) {
    .c-accordion-menu-01 {
        margin-bottom: 50px;
    }

    .c-accordion-menu-01__question {
        padding-right: 70px;
        font-size: 22px;
        cursor: pointer;
    }

    .c-accordion-menu-01__question::after {
        padding: 20px;
    }

    .c-accordion-menu-01__answer p {
        width: 98%;
        line-height: 1.6;
    }
}

/*
　流れ-03
================================*/
.c-flow-03__schedule li {
    margin-bottom: 16px;
    width: 100%;
    padding-bottom: 32px;
    border-bottom: 1px dotted #767171;
    margin-bottom: 32px;
}

.c-flow-03__schedule__head {
    display: flex;
    align-items: center;
}

.c-flow-03__schedule__label {
    position: relative;
    width: 50px;
    height: 50px;
    color: #fff;
    font-weight: bold;
    font-size: 30px;
    line-height: 1.7;
    background: #166a72;
    box-sizing: border-box;
    font-family: "Arial", sans-serif;
    text-align: center;
}

.c-flow-03__schedule__label::before {
    content: "";
    position: absolute;
    right: -19%;
    bottom: 30%;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 7px 0 7px 10px;
    border-color: transparent transparent transparent #166a72;
}

.c-flow-03__schedule h3 {
    padding-left: 16px;
    font-size: 20px;
    font-weight: bold;
    color: #767171;
}

.c-flow-03__schedule li p {
    padding-top: 16px;
}

@media screen and (min-width: 768px) {
    .c-flow-03__schedule h3 {
        padding-left: 28px;
        font-size: 25px;
    }

    .c-flow-03__schedule li p {
        padding: 24px 0 0 72px;
    }
}

/*
　シンプル-04
================================*/
.c-title-04 {
    width: 95%;
    margin: 0 auto 15px auto;
    text-align: center;
}

.c-title-04 span {
    position: relative;
    display: inline-block;
    align-items: center;
    font-size: clamp(23px, 23/768*100vw, 30px);
    font-weight: bold;
    color: #f4883c;
}

.c-title-04 span::before,
.c-title-04 span::after {
    position: absolute;
    content: "";
    width: 3px;
    height: 35px;
    top: 3px;
    background: #f4883c;
}

.c-title-04 span::before {
    left: -20px;
    transform: rotate(-40deg);
}

.c-title-04 span::after {
    right: -20px;
    transform: rotate(40deg);
}

.c-title-04 h2 {
    margin-top: 10px;
    font-size: clamp(30px, 33/768*100vw, 40px);
    font-weight: 900;
    color: #166a72;
}

/* PC */
@media screen and (min-width:768px) {
    .c-title-04 {
        width: 100%;
    }

    .c-title-04 span {
        font-size: 24px;
        font-size: clamp(25px, 25/1140*100vw, 35px);
    }

    .c-title-04 span::before,
    .c-title-04 span::after {
        height: 45px;
        top: 7px;
    }

    .c-title-04 span::before {
        left: -30px;
    }

    .c-title-04 span::after {
        right: -30px;
    }
        
    .c-title-04 h2 {
        margin-top: 0;
        font-size: clamp(35px, 35/1140*100vw, 50px);
    }
}

/*
　背景メインカラー
================================*/
.c-catchcopy-bg-01,
.c-catchcopy-bg-01--color-2 {
    margin-bottom: 30px;
    padding: 15px;
    background: #166a72;
}

.c-catchcopy-bg-01 h2,
.c-catchcopy-bg-01--color-2 h2 {
    font-size: clamp(27px, 32/768*100vw, 32px);
    color: #fff;
    font-weight: 900;
    line-height: 1.5;
    text-align: center;
}

.c-catchcopy-bg-01--color-2 {
    background: #f4883c;
}

/* PC */
@media screen and (min-width: 768px) {
    .c-catchcopy-bg-01,
    .c-catchcopy-bg-01--color-2 {
        margin-bottom: 50px;
        padding: 30px 0;
        text-align: center;
    }
    .c-catchcopy-bg-01 h2,
    .c-catchcopy-bg-01--color-2 h2 {
        font-size: clamp(32px, 50/768*100vw, 50px);
        letter-spacing: 0.05em;
    }
}

/*
　概要-11
================================*/
.c-about-11__title {
    width: 90%;
    margin: 0 auto 30px auto;
    text-align: center;
    line-height: 1.4;
}

.c-about-11 h2,
.c-about-11 h3 {
    font-size: clamp(22px, 26/768*100vw, 32px);
    font-weight: bold;
    text-align: center;
    line-height: 1.3;
}

.c-about-11__wrapper {
    margin-top: 20px;
    margin-bottom: 50px;
}

.c-about-11__text {
    padding: 10px 5px;
}

.c-about-11__text p {
    font-weight: 500;
    letter-spacing: 0.03rem;
    line-height: 1.8;
}

.c-about-11__image {
    margin-top: 30px;
}

.c-about-11__image img {
    width: 100%;
}

.c-about-11__point {
    margin-top: 50px;
}

.c-about-11__point__card h4 {
    font-size: clamp(18px, 6vw, 23px);
    font-weight: 900;
    color: #166a72;
    background: #fff;
    padding: 13px 0;
    border-radius: 15px 15px 0 0;
    text-align: center;
    border: solid 2px #166a72;
}

.c-about-11__point__card__text {
    position: relative;
    padding: 5px 20px;
    min-height: 85px;
    border-radius: 0 0 15px 15px;
    background: #166a72;
}

.c-about-11__point__card li:not(:first-child) {
    margin-top: 20px;
}

.c-about-11__point__card__text p {
    width: 100%;
    font-size: clamp(16px, 20/768*100vw, 20px);
    color: #fff;
    line-height: 1.4;
}

/* PC */
@media screen and (min-width: 768px) {
    .c-about-11__title {
        width: 100%;
        margin: 0 auto 45px auto;
    }

    .c-about-11 h2,
    .c-about-11 h3 {
        font-size: clamp(36px, 40/1140*100vw, 40px);
    }

    .c-about-11__wrapper {
        display: flex;
        justify-content: space-between;
        margin-top: 45px;
    }

    .c-about-11__text {
        width: 58%;
    }

    .c-about-11__text p {
        font-size: clamp(16px, 18/768*100vw, 18px);
    }

    .c-about-11__image {
        width: 37%;
        margin-top: 0;
    }

    .c-about-11__point__card {
        display: flex;
        justify-content: space-between;
        margin-top: 15px;
    }

    .c-about-11__point__card li {
        width: 32%;
    }

    .c-about-11__point__card li:not(:first-child) {
        margin-top: 0;
    }

    .c-about-11__point__card li h4 {
        font-size: clamp(18px, 23/1140*100vw, 23px);
        padding: 15px 0;
        border: solid 3px #166a72;
    }

    .c-about-11__point__card__text {
        min-height: 110px;
        padding: 10px 20px;
    }

    .c-about-11__point__card__text p {
        font-size: clamp(16px, 18/1140*100vw, 18px);
    }
}


/*
 特徴（１カラム）-05
=================================*/
.feature-col1-05 {
    background-color: #d7ebf8;
    padding: 2em 0;
}

.feature-col1-05__inner {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
}

.feature-col1-05__title {
    width: 90%;
    text-align: center;
    line-height: 1.4;
    margin: 0px auto 30px;
}

.feature-col1-05__title h2 {
    font-size: clamp(24px, calc(30/768*100vw), 30px);
    color: rgb(51, 51, 51);
    line-height: 1.5;
    font-weight: bold;
}

.feature-col1-05__content {
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
    width: 95%;
    margin: 0 auto;
    background-color: #fff;
    padding-bottom: 2em;
}

.feature-col1-05__image {
    text-align: center;
}

.feature-col1-05__image img {
    width: 100%;
    max-width: 400px;
}

.feature-col1-05__text {
    box-sizing: border-box;
    background-color: #fff;
    padding: 2em 1em;
}

.feature-col1-05__text h3 {
    font-size: clamp(19px, calc(22/768*100vw), 22px);
    color: #166a72;
    margin-bottom: 15px;
    line-height: 1.4;
    font-weight: bold;
}

.feature-col1-05__text p {
    font-size: 16px;
    line-height: 1.7;
}

@media screen and (min-width: 768px) {
    .feature-col1-05 {
        padding: 4em 0;
    }

    .feature-col1-05__content {
        flex-direction: row;
        width: 100%;
        padding-bottom: 0;
    }

    .feature-col1-05__title h2 {
        font-size: clamp(28px, calc(34/1140*100vw), 34px);
    }

    .feature-col1-05__image {
        display: flex;
        align-items: center;
        flex: 1;
    }

    .feature-col1-05__text {
        display: flex;
        flex-direction: column;
        justify-content: center;
        flex-basis: 64%;
        padding: 2em;
    }

    .feature-col1-05__text h3 {
        font-size: clamp(19px, calc(25/1140*100vw), 25px);
    }

    .feature-col1-05__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 #166a72;
    box-sizing: border-box;
    padding: 15px;
    border-radius: 8px;
}

.p-sell__promise li h3 {
    font-size: 23px;
    margin-bottom: 10px;
    color: #166a72;
    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) {
    .p-sell__commitment {
        display: flex;
        justify-content: center;
    }

    .p-sell__commitment li {
        font-size: 20px;
    }
}

/*=================================

* 空き家

=================================*/


/*
　空家の問題点
=================================*/
.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;
    }
}

/*=================================

* 仲介手数料最大無料

=================================*/

/*
　sub-visual
=================================*/
.p-zero__sub-visual {
    width: 100%;
    background-color: #166a72;
}

.p-zero__sub-visual__inner {
    width: 100%;
    padding: 30px 10px;
}

.p-zero__sub-visual__text {
    max-width: 530px;
    width: 100%;
    margin: 0 auto;
}

.p-zero__sub-visual__text h1 {
    font-size: clamp(40px, 10vw, 60px);
    font-weight: 900;
    color: #fff;
    line-height: 1.2;
}

.p-zero__sub-visual__text h2 {
    display: inline-block;
    margin: 15px 0;
    padding: 10px 5px;
    font-size: clamp(20px, 36/768*100vw, 36px);
    font-weight: bold;
    color: #fff;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;   
}

.p-zero__sub-visual__text p {
    font-size: clamp(16px, 22/768*100vw, 22px);
    font-weight: bold;
    color: #fff;
    line-height: 1.3;
}

.p-zero__sub-visual__underline {
    font-weight: bold;    
    background:linear-gradient(transparent 70%,#e7b400 0%);
}

.p-zero__sub-visual__text span em {
    display: inline;
    padding: 0 2px;
    font-size: 37px;
    font-weight: bold;
    font-style: normal;
    font-family: "Arial", "Century Gothic", sans-serif;
}

.p-zero__sub-visual__image {
    max-width: 350px;
    width: 100%;
    margin: 20px auto 0;
}

.p-zero__sub-visual__image img {
    width: 100%;
}

/* PC */
@media screen and (min-width:768px) {
    .p-zero__sub-visual__inner {
        display: flex;
        flex-direction: row-reverse;
        max-width: 1140px;
        margin: 0 auto;
        padding: 45px 0 50px; 
    }
    
    .p-zero__sub-visual__text {
        white-space: nowrap;
        width: 60%;
    }

    .p-zero__sub-visual__text h1 {
        font-size: clamp(55px, 70/1140*100vw, 70px);
     }

     .p-zero__sub-visual__text h2 {
        font-size: clamp(22px, 28/1140*100vw, 28px);
        padding: 10px;
    }

    .p-zero__sub-visual_text p {
        font-size: clamp(16px, 22/1140*100vw, 22px);
    }

    .p-zero__sub-visual__text span em {
        font-size: clamp(30px, 35/1140*100vw, 40px);
    }
    .p-zero__sub-visual__image {
        max-width: 425px; 
        width: 100%;    
        margin: auto 1% auto 3%;
    }
}

/*
　見出し
=================================*/
.p-zero__title {
    width: 95%;
    margin: 0 auto 30px auto;
    font-size: 1.5rem;
    font-weight: 900;
    text-align: center;
    color: #000;
}

/* PC */
@media screen and (min-width:768px) {
    .p-zero__title {
        width: 100%;
        font-size: 2.2rem;
    }
}

/*
　左右レイアウト(仲介手数料)
=================================*/
.p-zero__column-2 {
    width: 95%;
    margin: 0 auto;
}

.p-zero__column-2__text {
    width: 100%;
}

.p-zero__column-2__text p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.p-zero__column-2__text p:last-child {
    margin-bottom: 0;
}

.p-zero__column-2__text p span {
    font-size: 17px;
    font-weight: bold;
    color: #e50012;
}

.p-zero__column-2__image {
    width: 100%;
    margin-top: 30px;
}

.p-zero__column-2__image img {
    width: 100%;
    max-width: 400px;
}

/* PC */
@media screen and (min-width:768px) {
    .p-zero__column-2 {
        display: flex;
        width: 100%;
        justify-content: space-between; 
        margin: 40px auto 0 auto;
    }

    .p-zero__column-2__reverse {
        flex-direction: row-reverse;
    }

    .p-zero__column-2__text {
        width: 60%;
    }
    
    .p-zero__column-2 p {
        margin-bottom: 25px;
        font-size: 17px;
    }

    .p-zero__column-2__image {
        width: 36%;
        margin-top: 0;
    }
} 

/*
　サービスのご利用手順
=================================*/
.p-zero__step {
    width: 90%;
    margin: 0 auto 20px auto;
}

.p-zero__step__text {
    width: 100%;
}

.p-zero__step__label {
    display: block;
    width: 88px;
    margin-bottom: 15px;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    font-family: "Arial", sans-serif;
    color: #FFF;
    border-radius: 20px;
    background-color: #166a72;
} 

.p-zero__step h3 {
    display: inline-block;
    margin-bottom: 25px;
    padding-bottom: 5px;
    font-size: 26px;
    font-weight: bold;
    color: #58585a;
    border-bottom: 1px solid #767171;
}

.p-zero__step p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.5;
}

.p-zero__step p span {
    color: #000;
}

.p-zero__step__button {
    width: 100%;
    margin: 0 auto 30px auto;
}

.p-zero__step__tel, 
.p-zero__step__mail { 
    position: relative;
    margin-bottom: 10px;
}

.p-zero__step__image {
    width: 100%;
}

.p-zero__step__image img {
    width: 100%;
    max-width: 400px;
}

/* PC */
@media screen and (min-width:768px) {
    .p-zero__step {
        display: flex;
        flex-direction: row-reverse;
        width: 100%;
        justify-content: space-between; 
        margin: 30px auto 20px auto;
    }

    .p-zero__step__text {
        display: inline-block;
        width: 60%;
    }

    .p-zero__step p {
        margin-bottom: 30px;
    }
    
    .p-zero__step__button {
        width: 400px;
        margin-left: 0;
    }
       
    .p-zero__step__tel {
        margin-bottom: 30px;
    }

    .p-zero__step__mail {
        margin-bottom: 0;
    }

    .p-zero__step__tel .p-zero__button__tel, 
    .p-zero__step__mail .p-zero__button__mail {
        color: #fff;
        text-decoration: none;
    }

    .p-zero__step__image {
        width: 36%;
    }
 
} 

/*
　ポータルサイトリスト
=================================*/
.p-zero__step__list {
    width: 100%;
    margin-bottom: 20px;
}

.p-zero__step__list li {
    display: inline-block;
    width: 25%;
    margin-right: 10%;
    vertical-align: middle;
}

.p-zero__step__list li:nth-child(3n) {
    margin-right: 0;
}

.p-zero__step__list li img {
    width: 100%;
} 

@media screen and (min-width:768px) {
    .p-zero__step__list {
        margin-bottom: 20px;
    }

    .p-zero__step__list li {
        display: inline-block;
        width: 23%;
        margin-right: 10%;
        vertical-align: middle;
    }
}

/*
　お問い合わせボタン
=================================*/
.p-zero__button__tel, 
.p-zero__button__mail {
    position: relative;
    display: block;
    box-sizing: border-box;
    padding: 3% 0 3% 25%;
    font-size: clamp(12px, 28/768*100vw, 28px);
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    letter-spacing: 0.1em;
    text-decoration: none;
    background-color: #f4883c;
    transition: all 0.3s;
}

.p-zero__button__tel:hover, 
.p-zero__button__mail:hover { 
    background-color: #166a72;
}

.p-zero__button__tel span { 
    font-size: clamp(18px, 48/768*100vw, 48px);
    line-height: 1;
} 

.p-zero__button__mail span { 
    font-size: clamp(14px, 38/768*100vw, 38px);
} 

.p-zero__button__tel .fa,
.p-zero__button__mail .fa {
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    padding: 3% 2% 3% 3%;   
    color: #f4883c;
    letter-spacing: 0.2em;
    border-radius: 50%;
    background: #fff;
    z-index: 1;
}

.p-zero__button__tel:hover .fa, 
.p-zero__button__mail:hover .fa { 
    color: #166a72;
}

.p-zero__button__tel .fa {
    display: inline-block;  
    font-size: clamp(14px, 50/768*100vw, 50px);
    padding: 3% 2% 2% 3%; 
}

.p-zero__button__mail .fa {
    font-size: clamp(14px, 41/768*100vw, 41px);
}

@media screen and (min-width:768px) {
    .p-zero__button__tel, 
    .p-zero__button__mail {
        font-size: 16px;
    }

    .p-zero__button__tel span { 
        font-size: 32px;
        line-height: 1.1;
    } 

    .p-zero__button__mail span { 
        font-size: 24px;
        line-height: 1.4;
    } 

    .p-zero__button__tel .fa {
        font-size: clamp(14px, 40/1140*100vw, 40px);
    }

    .p-zero__button__mail .fa {
        font-size: clamp(14px, 36/1140*100vw, 36px);
    }
}

/*
　矢印
=================================*/
.p-zero__step__arrow {
    width: 90%;
    margin: 0 auto 80px auto;
    text-align: center;
}

.p-zero__step__arrow img {
    width: 30%;
}

/* PC */
@media screen and (min-width:768px) {
    .p-zero__step__arrow {
        width: 100%;
    }
    
    .p-zero__step__arrow img {
        width: 10%;
    }
}

/*
　スケジュール
=================================*/
.p-zero__schedule__image {
    margin: 0 auto;
    padding: 30px 0;
}

.p-zero__schedule__image img {
    width: 100%;
    max-width: 900px;
}

/* PC */
@media screen and (min-width:768px) {
    .p-zero__schedule__image {
        width: 90%;
    }
}

/*
　お問い合わせ
=================================*/
.p-zero__contact {
    width: 95%;
    margin: 0 auto 30px auto;
}

.p-zero__contact__text p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.p-zero__contact__text p span {
    font-size: 17px;
    font-weight: bold;
    color: #e50012;
}

.p-zero__contact__image {
    width: 100%;
    margin-bottom: 30px;
}

.p-zero__contact__image img {
    width: 100%;
    max-width: 376px;
}

.p-zero__contact__button {
    display: block;
    width: 100%;
    margin: 0 auto 30px auto;
}

.p-zero__contact__tel, 
.p-zero__contact__mail { 
    position: relative;
    margin-bottom: 30px;
}

.p-zero__contact__tel .p-zero__button__tel, 
.p-zero__contact__mail .p-zero__button__mail { 
    padding: 3% 0 3% 20%;
    font-size: clamp(16px, 28/768*100vw, 28px);
}

.p-zero__contact__tel .p-zero__button__tel span { 
    font-size: clamp(30px, 48/768*100vw, 48px);
} 

.p-zero__contact__mail .p-zero__button__mail span { 
    font-size: clamp(23px, 38/768*100vw, 38px);
} 

/* PC */
@media screen and (min-width:768px) {
    .p-zero__contact {
        width: 100%;
        display: flex;
        justify-content: space-between;
    }
    
    .p-zero__contact__text {
        width: 65%;
    }

    .p-zero__contact__text p {
        font-size: 17px;
        line-height: 1.7;
    }

    .p-zero__contact__image {
        width: 33%;
    }

    .p-zero__contact__button {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin: 0;
    }

    .p-zero__contact__tel,
    .p-zero__contact__mail {
        width: 48%; 
        margin: 0;   
    }

    .p-zero__contact__tel .p-zero__button__tel, 
    .p-zero__contact__mail .p-zero__button__mail {
        font-size: clamp(16px, 20/1140*100vw, 20px);
        color: #fff;
        text-decoration: none;
    }

    .p-zero__contact__tel .p-zero__button__tel span { 
        font-size: clamp(35px, 45/1140*100vw, 45px);
    } 
    
    .p-zero__contact__mail .p-zero__button__mail span { 
        font-size: clamp(28px, 35/1140*100vw, 35px);
        letter-spacing: 0;
        line-height: 1.5;
    } 

    .p-zero__contact__tel .p-zero__button__tel .fa {
        font-size: clamp(14px, 36/1140*100vw, 36px);
    }

    .p-zero__contact__mail .p-zero__button__mail .fa {
        font-size: clamp(14px, 30/1140*100vw, 30px);
    }
}

/*
　よくある質問（アコーディオン）-02
================================*/
.c-accordion-menu-02 {
    width: 100%;
    margin: 0 auto 30px auto;
}

.c-accordion-menu-02 li {
    display: block;
    background: #fff;
    box-shadow: 1px 1px 6px #dcdcdc;
    margin-bottom: 20px;
    overflow: hidden;
}

.c-accordion-menu-02__check {
    display: none;
}

.c-accordion-menu-02__check:checked + .c-accordion-menu-02__question + .c-accordion-menu-02__answer {
    padding: 15px 30px 15px 30px;
    height: auto;
    opacity: 1;
    visibility: visible;
}

.c-accordion-menu-02__check:checked + .c-accordion-menu-02__question::after {
    content: "－";
}

.c-accordion-menu-02__question {
    position: relative;
    display: block;
    padding: 15px 50px 15px 30px;
    font-size: 15px;
    font-weight: bold;
    background: #fff;
}

.c-accordion-menu-02__question::before {
    position: absolute;
    display: block;
    top: 12px;
    left: 8px;
    box-sizing: border-box;
    content: "Q";
    color: #166a72;
    font-size: 19px;
}

.c-accordion-menu-02__question::after {
    position: absolute;
    display: block;
    top: 50%;
    transform: translate(0, -50%);
    right: 0;
    padding: 15px;
    box-sizing: border-box;
    content: "＋";
    color: #166a72;
}

.c-accordion-menu-02__answer {
    padding: 0 30px;
    height: 0;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
}

.c-accordion-menu-02__answer p {
    margin: 0 auto;
    line-height: 1.6;
    font-size: 15px;
    word-break: break-word;
    position: relative;
}

.c-accordion-menu-02__answer p::before {
    position: absolute;
    display: block;
    top: -4px;
    left: -19px;
    box-sizing: border-box;
    content: "A";
    color: #f4883c;
    font-weight: bold;
    font-size: 20px;
}

.c-accordion-menu-02__button {
    text-align: right;
}

@media screen and (min-width: 768px) {
    .c-accordion-menu-02 {
        margin-bottom: 50px;
    }

    .c-accordion-menu-02__question {
        padding-right: 70px;
        padding-left: 40px;
        font-size: 18px;
        cursor: pointer;
    }

    .c-accordion-menu-02__question::before {
        left: 18px;
    }

    .c-accordion-menu-02__question::after {
        padding: 20px;
    }

    .c-accordion-menu-02__answer {
        padding: 0 30px 0 40px;
    }

    .c-accordion-menu-02__check:checked + .c-accordion-menu-02__question + .c-accordion-menu-02__answer {
        padding: 15px 70px 15px 40px;
    }

    .c-accordion-menu-02__answer p {
        font-size: 16px;
        line-height: 1.6;
    }
}
