@charset "UTF-8";

/* ━━━━━━━━━━━━━━━━

 ■ユーティリティ

━━━━━━━━━━━━━━━━ */
/**
 * Display
 */
/*==================================
* media
==================================*/
@media screen and (min-width: 768px) {
  .u-hidden-pc {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  .u-hidden-sp {
    display: none !important;
  }
}

/**
 * margin
 */
.u-mr-5 {
  margin-right: 5px !important;
}

.u-mr-10 {
  margin-right: 10px !important;
}

.u-ml-5 {
  margin-left: 5px !important;
}

.u-ml-10 {
  margin-left: 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-15 {
  margin-bottom: 15px !important;
}

.u-mb-20 {
  margin-bottom: 20px !important;
}

.u-mb-30 {
  margin-bottom: 30px !important;
}

.u-mb-40 {
  margin-bottom: 40px !important;
}

.u-mb-50 {
  margin-bottom: 50px !important;
}

.u-mb-80 {
  margin-bottom: 80px !important;
}

/**
 * Padding
 */
.u-pt-0 {
  padding-top: 0 !important;
}

.u-pt-10 {
  padding-top: 10px !important;
}

.u-pt-50 {
  padding-top: 50px !important;
}

.u-pb-0 {
  padding-bottom: 0 !important;
}

.u-pb-50 {
  padding-bottom: 50px !important;
}

.u-pd-0 {
  padding: 0 !important;
}

/*==================================
* Section
==================================*/
.l-section {
    padding: 50px 0;
}

.l-section.l-section--gray {
    background: #F5F5F5;
}

.l-section.l-section--blue {
    background: #eaf3f9;
}

.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;
        padding: 0;
    }
}


/**
 * 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 #040406;
  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: #040406;
  font-weight: bold;
}

.c-button::after {
  background: #040406;
  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--primary {
  display: block;
  width: 95%;
  padding: 20px 10px;
  margin: 0 auto;
  background-color: #040406;
  text-decoration: none;
  text-align: center;
  box-sizing: border-box;
}

.c-button--primary,
.c-button--primary:link,
.c-button--primary:visited {
  text-decoration: none;
  color: #FFF;
}

.c-button--primary:hover {
  opacity: 0.8;
}

@media screen and (min-width: 768px) {
  .c-button--primary {
    width: 35%;
    font-size: 17px;
  }
}
/*
　セカンダリボタン
================================*/
.c-button--secondary {
  display: block;
  width: 95%;
  margin: 0 auto;
  padding: 20px 10px;
  background-color: #DC143C;
  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: #4D4D4D;
}

@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: #040406;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-button-outline {
    width: 43%;
    font-size: 18px;
  }
}


/*
　システム標準-H2
================================*/
/*h2.tit {
    width: 90%;
    text-align: center;
    color: #000;
    font-size: 1.4rem;
    font-weight: bold;
    margin: 0 auto 30px auto;
    padding: 0;
    background-color: transparent !important;
}*/

/* PC */
/*@media screen and (min-width:768px) {
    h2.tit {
        width: 100%;
        font-size: 2rem;
    }
}*/

/*
　システム標準-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: #040406;
}

/* 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;
    }
}


/*
　シンプル-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: #040406;
    margin-bottom: 30px;
}

.c-title-02--color-2 {
    color: #DC143C;
}

/* PC */
@media screen and (min-width:768px) {
    .c-title-02,
    .c-title-02--color-2 {
        font-size: 53px;
        margin-bottom: 50px;
    }
}


/*
　ルビ付き-01
================================*/
.c-title-ruby-01 {
    margin: 0 auto 20px auto;
    text-align: center;
}

.c-title-ruby-01 h2 {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.c-title-ruby-01 span {
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.c-title-ruby-01 span:before,
.c-title-ruby-01 span:after {
    content: "";
    width: 2em;
    border-top: 1px solid;
}

.c-title-ruby-01 span:before {
    margin-right: 0.7em;
}

.c-title-ruby-01 span:after {
    margin-left: 0.7em;
}

/* PC */
@media screen and (min-width:768px) {
    .c-title-ruby-01 {
        margin: 0 auto 50px auto;
    }

    .c-title-ruby-01 h2 {
        font-size: 2.5rem;
        margin-bottom: 7px;
    }

    .c-title-ruby-01 span {
        font-size: 1.2rem;
    }
}

/*
　背景カラー-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: #040406;
}

.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: #DC143C;
}

.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);
  }
}


/*
　メニュー-14
=================================*/
.c-menu-14 {
    width: 90%;
    margin: 0 auto;
}

.c-menu-14 ul {
    display: flex;
    flex-direction: column;
}

.c-menu-14 li {
    position: relative;
    margin-bottom: 70px;
}

.c-menu-14 li:last-child {
    margin-bottom: 0;
}

.c-menu-14 li a {
    display: block;
    text-decoration: none;
    color: #000;
}

.c-menu-14__image {
    cursor: pointer;
    position: relative;
    margin-bottom: 25px;
    background: #000;
    font-size: 0;
}

.c-menu-14__image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    filter: drop-shadow(3px 3px 2px rgba(160, 160, 160, 0.9));
}

.c-menu-14__image__hover-mask {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .2);
    color: #fff;
    width: 100%;
    height: auto;
    text-align: center;
    opacity: 0;
    transition: opacity .6s ease;
}

.c-menu-14__image__hover-mask:hover {
    opacity: 1;
}

.c-menu-14__image__hover-mask p {
    width: 80%;
    font-size: 25px;
    font-weight: 900;
}

.c-menu-14 li a:hover .c-menu-14__image img {
    opacity:0.5;
    transition:0.3s;
}

.c-menu-14__text {
    padding: 20px 0;
    border-top: 2px solid #222;
    border-bottom: 2px solid #222;
}

.c-menu-14 li a:hover .c-menu-14__text  {
    opacity:0.7;
}

.c-menu-14__number {
    margin-bottom: 10px;
    font-size: 20px;
    font-family: "Arial", 'Noto Sans Japanese', sans-serif;
    font-weight: bold;
    line-height: 1;
}

.c-menu-14__text h3 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
    padding: 0 10px 12px 0;
    font-size: 35px;
    font-size: clamp(28px, 30/768*100vw, 30px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0.05em;
    border-bottom: 1px solid #222;
}

.c-menu-14__text h3 span {
    background: #040406;
    border-radius: 50%;
    display: block;
    width: 27px;
    height: 27px;
    position: relative;
}
  
.c-menu-14__text h3 span::before {
    content: "";
    position: absolute;
    bottom: 45%;
    left: 50%;
    transform: translateX(-50%);
    width: 15px;
    height: 1px;
    background: #fff;
}
  
.c-menu-14__text h3 span::after {
    content: "";
    position: absolute;
    top: 46%;
    right: 6px;
    width: 5px;
    height: 1px;
    background: #fff;
    transform: rotate(35deg);
}

.c-menu-14__text h3 small {
    font-size: 70%;
    display: contents;
}

.c-menu-14 a:hover span {
    transform: scale(1.2, 1.2);
    transition: all 0.3s;
}

/* PC */
@media screen and (min-width:900px) {
    .c-menu-14 {
        max-width: 1300px;
        width: 100%;
    }

    .c-menu-14 ul {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .c-menu-14 ul::after {
        content: '';
        display: block;
        width: 48%;
    }

    .c-menu-14 li {
        margin-bottom: 20px;
        width: 48%;
    }

    .c-menu-14__image img {
        height: 300px;
    }

    .c-menu-14__number {
        font-size: 23px;
    }
}


/*
　ページタイトル
================================*/
.c-page-title-01 {
  position: relative;
  width: 100%;
  height: 150px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  margin: 0 auto 30px auto;
}

.c-page-title-01__buy {
  background-image: url(../img/page-title__buy.jpg);
}

.c-page-title-01__sell {
  background-image: url(../img/page-title__sell.jpg);
}

.c-page-title-01__management {
  background-image: url(../img/page-title__management.jpg);
}

.c-page-title-01__akiya {
  background-image: url(../img/page-title__akiya.jpg);
}

.c-page-title-01__souzoku {
  background-image: url(../img/page-title__souzoku.jpg);
}

.c-page-title-01__ninbai {
  background-image: url(../img/page-title__ninbai.jpg);
}

.c-page-title-01__line {
  background-image: url(../img/page-title__line.jpg);
}

.c-page-title-01__request {
  background-image: url(../img/page-title__request.jpg);
}

.c-page-title-01__buy-flow {
  background-image: url(../img/page-title__buy-flow.jpg);
}

.c-page-title-01::before {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  content: "";
  background-color: rgba(29, 39, 49, 0.6);
}

.c-page-title-01 h2 {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #FFF;
  line-height: 1.4;
  font-size: 27px;
  font-weight: bold;
  text-shadow: 2px 2px 3px #000;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-page-title-01 {
    height: 300px;
    margin: 0 auto 80px auto;
  }
  .c-page-title-01 h2 {
    font-size: 60px;
  }
}

/*
　コンタクト-01
================================*/
.c-contact-01 {
  display: block;
  padding: 30px 0;
  background: #727a84;
}

/* mail */
.c-contact-01__mail {
  width: 95%;
  margin: 0 auto;
  border-bottom: 1px solid #FFF;
}

.c-contact-01__mail a {
  display: block;
  max-width: 380px;
  width: 90%;
  margin: 0 auto 30px auto;
  padding: 20px 0;
  text-align: center;
  text-decoration: none;
  font-size: 18px;
  color: #fff;
  border: solid 1px #fff;
}

.c-contact-01__mail a:hover {
  background-color: #FFF;
  color: #727a84;
}

.c-contact-01__mail a i {
  margin-right: 5px;
}

/* tel */
.c-contact-01__tel {
  padding-top: 20px;
  text-align: center;
  color: #fff;
}

.c-contact-01__tel__announce {
  font-size: 18px;
}

.c-contact-01__tel__no {
  text-decoration: none !important;
  font-size: 40px;
  font-weight: bold;
  color: #fff !important;
  font-family: "Arial", "Century Gothic", "Noto Sans Japanese", sans-serif;
}

.c-contact-01__tel__no i {
  margin-right: 5px;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-contact-01 {
    display: flex;
    align-items: center;
    padding: 20px 0;
  }
  /* mail */
  .c-contact-01__mail {
    width: 50%;
    padding: 25px 0;
    border-right: 1px solid #FFF;
    border-bottom: none;
  }
  .c-contact-01__mail a {
    width: 70%;
    margin: 0 auto;
  }
  /* tel */
  .c-contact-01__tel {
    width: 50%;
    padding-top: 0;
  }
  .c-contact-01__tel__announce {
    font-size: 20px;
  }
}


/*
　流れ
================================*/
.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: #040406;
  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: #040406 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;
  }
}


/*
　よくある質問①
================================*/
.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: #040406;
}

.c-ques-list-01 dd:before {
  content: "A";
  background-color: #CCC;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-ques-list-01 {
    width: 100%;
  }
  .c-ques-list-01 dt:before,
  .c-ques-list-01 dd:before {
    width: 45px;
    height: 45px;
    font-size: 27px;
    line-height: 45px;
  }
}


/*
　コンタクト-10
================================*/
.c-contact-10 {
  background: #040406;
  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: #DC143C;
  color: #fff;
}

.c-contact-10__button-satei a span {
  border: solid 2px #B22222;
}

.c-contact-10__button-inquiry a span {
  border: solid 2px #DC143C;
}

/* 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;
  }
}


/*
　ブログリスト-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;
  -o-object-fit: cover;
     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: #040406;
  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: #DC143C;
}

/* 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;
  }
}

/*
　吹き出し
================================*/
.c-trouble-04--mb-20 {
  margin-bottom: 20px !important;
}

.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%;
  }
}


/*=================================

* 不動産売却

=================================*/
/*
　タイトル（フォントサイズ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 #040406;
  box-sizing: border-box;
  padding: 15px;
  border-radius: 8px;
}

.p-sell__promise li h3 {
  font-size: 23px;
  margin-bottom: 10px;
  color: #040406;
  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;
  }
}


/*=================================

* 空き家管理

=================================*/
/*
　セクション
=================================*/
.l-section.l-section--lightblue {
  background: #e6f5f5;
}

/*
　空家の問題点
=================================*/
.p-akiya__caption {
  margin-bottom: 50px;
  font-size: 23px;
  font-weight: 900;
  text-align: center;
  line-height: 1.3;
}

.p-akiya__caption--fw {
  font-weight: bold !important;
}

.p-akiya__caption--orange {
  color: #FF8C00 !important;
}

.p-akiya__caption strong {
  font-size: 35px;
}

.p-akiya__problem-list li {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: bold;
}

.p-akiya__problem-list li::before {
  content: "■";
  margin-right: 5px;
}

@media screen and (min-width: 768px) {
  .p-akiya__caption {
    margin-bottom: 80px;
    font-size: 35px;
  }
  .p-akiya__caption strong {
    font-size: 55px;
  }
  .p-akiya__text {
    margin-bottom: 30px;
    font-size: 30px;
    text-align: center;
  }
  .p-akiya__problem-list li {
    font-size: 30px;
  }
}
/*
　空家の解決策
=================================*/
.p-akiya-kaiketsu h2 {
  font-size: 30px;
  font-weight: 900;
  text-align: center;
  margin-bottom: 50px;
}

.p-akiya-kaiketsu h2 span {
  font-size: 35px;
  color: #FF8426;
}

.p-akiya-kaiketsu ul li {
  width: 100%;
  margin: 0 auto 50px auto;
}

.p-akiya-kaiketsu__image {
  width: 30%;
  min-width: 180px;
  margin: 0 auto 20px auto;
}

.p-akiya-kaiketsu__image img {
  width: 100%;
  -o-object-fit: cover;
     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;
  }
}