@charset "UTF-8";

/* ━━━━━━━━━━━━━━━━

 ■初期化

━━━━━━━━━━━━━━━━ */
body {
  font-family: "Noto Sans Japanese", sans-serif;
  min-width: auto !important;
}

/* ━━━━━━━━━━━━━━━━

 ■ユーティリティ

━━━━━━━━━━━━━━━━ */
/**
 * 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;
}

/**
 * Text
 */
/*==================================
* color
==================================*/
.u-fc-light {
  color: #ced4da !important;
}

.u-fc-dark {
  color: #343a40 !important;
}

.u-fc-blue {
  color: #345887 !important;
}

.u-fc-red {
  color: #dc3545 !important;
}

.u-fc-red-dark {
  color: #ad002d !important;
}

.u-fc-green {
  color: #03967a !important;
}

.u-fc-orange {
  color: #FF8C00 !important;
}

.u-fc-white {
  color: #fff !important;
}

.u-fc-yellow {
  color: #ffc107 !important;
}

/*==================================
* font-size
==================================*/
.u-fs-h1 {
  font-size: 2rem !important;
}

.u-fs-h2 {
  font-size: 1.3rem !important;
}

.u-fs-h3 {
  font-size: 1.1rem !important;
}

@media screen and (min-width: 768px) {
  .u-fs-h1 {
    font-size: 2.5rem !important;
  }
  .u-fs-h2 {
    font-size: 1.7rem !important;
  }
  .u-fs-h3 {
    font-size: 1.2rem !important;
  }
}
/*==================================
* font-weight
==================================*/
.u-fw-bold {
  font-weight: bold !important;
}

/*==================================
* align
==================================*/
.u-text-top {
  vertical-align: top !important;
}

.u-text-center {
  text-align: center !important;
}

.u-text-right {
  text-align: right !important;
}

.u-text-left {
  text-align: left !important;
}

.u-text-middle {
  vertical-align: middle !important;
}

.u-text-bottom {
  vertical-align: bottom !important;
}

@media screen and (min-width: 768px) {
  .u-text-pc-center {
    text-align: center;
  }
}

@media screen and (max-width: 767px) {
  .u-text-sp-center {
    text-align: left;
  }
}

@media screen and (max-width: 767px) {
  .u-text-sp-left {
    text-align: left !important;
  }
}

/*==================================
* マーカー
==================================*/
.u-text-marker {
  background: linear-gradient(transparent 70%, #FFF799 70%);
}

.u-text-marker--orange {
  background: linear-gradient(transparent 75%, #ffbf7f 75%);
}

/* ━━━━━━━━━━━━━━━━

 ■コンポーネント

━━━━━━━━━━━━━━━━ */
/**
 * Block
 */
/*==================================
* コンテナ
==================================*/
.c-block {
  margin: 0 auto;
  padding: 30px 0;
}

@media screen and (min-width: 768px) {
  .c-block {
    max-width: 1140px;
  }
}
/**
 * Button
 */
/*==================================
* 標準
==================================*/
.c-button {
  width: 90%;
  display: block;
  margin: 0 auto;
  padding: 12px 5px;
  text-align: center;
  border-radius: 30px;
  border: 2px solid #6eb92b;
  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,
.c-button:link,
.c-button:visited {
  text-decoration: none;
  color: #6eb92b;
  font-weight: bold;
}

.c-button::after {
  background: #6eb92b;
  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: 40%;
    padding: 15px 10px;
    font-size: 17px;
  }
}
/*
　プライマリボタン
================================*/
.c-button--primary {
  width: 90%;
  display: block;
  padding: 20px 10px;
  margin: 0 auto;
  background-color: #6eb92b;
  text-decoration: none;
  text-align: center;
}

.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: 30%;
    font-size: 17px;
  }
}
/*
　セカンダリボタン
================================*/
.c-button--secondary {
  width: 90%;
  display: block;
  padding: 20px 10px;
  margin: 0 auto;
  background-color: #f85959;
  text-decoration: none;
  text-align: center;
}

.c-button--secondary,
.c-button--secondary:link,
.c-button--secondary:visited {
  text-decoration: none;
  color: #FFF;
}

.c-button--secondary:hover {
  background-color: #616161;
}

@media screen and (min-width: 768px) {
  .c-button--secondary {
    width: 30%;
    font-size: 17px;
  }
}
/*
　アウトラインボタン
================================*/
.c-button-outline {
  width: 90%;
  padding: 15px 10px;
  display: block;
  text-align: center;
  font-weight: bold;
  border: 1.5px solid #111;
  margin: 0 auto;
}

.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: #6eb92b;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-button-outline {
    width: 40%;
    font-size: 20px;
  }
}
/*
　システム標準-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: #6eb92b;
}

/* 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: #6eb92b;
  margin-bottom: 30px;
}

.c-title-02--color-2 {
  color: #f85959;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-title-02,
  .c-title-02--color-2 {
    font-size: clamp(40px, 4.649122807vw, 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;
  }
}
/*
　ルビ付き-02
================================*/
.c-title-ruby-02 {
  position: relative;
  font-size: 1.8rem;
  font-weight: 500;
  border-bottom: 1px solid #333;
  margin-bottom: 30px;
  padding: 30px 0 10px 0;
}

.c-title-ruby-02 span {
  position: relative;
  line-height: 1.5;
  z-index: 2;
}

.c-title-ruby-02::before {
  content: attr(data-en);
  position: absolute;
  top: 20px;
  left: 10px;
  color: rgba(15, 10, 50, 0.1);
  font-size: 2rem;
  font-weight: bold;
  font-family: "Arial", sans-serif;
  z-index: 1;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-title-ruby-02 {
    font-size: 3rem;
    margin-bottom: 50px;
  }
  .c-title-ruby-02::before {
    top: 0;
    left: 20px;
    font-size: 4.3rem;
  }
}
/*
　ルビ付き-03
================================*/
.c-title-ruby-03 {
  width: 90%;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
  font-family: "Noto Serif JP", serif;
  color: #6eb92b;
  margin: 0 auto 30px auto;
}

.c-title-ruby-03 span {
  display: block;
  font-size: 16px;
  font-weight: 400;
  font-family: "Noto Serif JP", serif;
  color: #333;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-title-ruby-03 {
    width: 100%;
    font-size: 2.3rem;
    line-height: 1.5;
    margin: 0 auto 45px auto;
  }
}
/*
　ルビ付き-04
================================*/
.c-title-ruby-04 {
  width: 90%;
  font-size: 2rem;
  font-weight: 900;
  text-align: center;
  line-height: 1.4;
  margin: 0 auto 30px auto;
}

.c-title-ruby-04::first-letter {
  color: #6eb92b;
}

.c-title-ruby-04 span {
  display: block;
  font-size: 16px;
  font-weight: normal;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-title-ruby-04 {
    width: 100%;
    font-size: 2.8rem;
    line-height: 1.4;
    margin: 0 auto 45px auto;
  }
  .c-title-ruby-04 span {
    font-size: 18px;
  }
}
/*
　ルビ付き-05
================================*/
.c-title-ruby-05 {
  margin-bottom: 20px;
}

.c-title-ruby-05 span {
  font-size: 30px;
  font-weight: 900;
  line-height: 1.2;
}

.c-title-ruby-05 h2 {
  display: flex;
  align-items: center;
  font-size: 17px;
  font-weight: bold;
  margin-bottom: 10px;
}

.c-title-ruby-05 h2:before {
  content: "";
  width: 1.5em;
  border-top: 1px solid;
  margin-right: 0.5em;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-title-ruby-05 {
    margin-bottom: 50px;
  }
  .c-title-ruby-05 span {
    font-size: 40px;
  }
  .c-title-ruby-05 h2 {
    font-size: 18px;
    margin-bottom: 7px;
  }
}
/*
　ルビ付き-06
================================*/
.c-title-ruby-06 {
  width: 90%;
  margin: 0 auto 30px auto;
  text-align: center;
  line-height: 1.4;
}

.c-title-ruby-06 h2 {
  font-size: 26px;
  font-weight: bold;
  color: #333;
}

.c-title-ruby-06 span::first-letter {
  color: #6eb92b;
}

.c-title-ruby-06 span {
  display: block;
  font-size: 16px;
  font-weight: 900;
  color: #333;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-title-ruby-06 {
    width: 100%;
    margin: 0 auto 45px auto;
  }
  .c-title-ruby-06 h2 {
    font-size: 34px;
  }
  .c-title-ruby-06 span {
    font-size: 20px;
  }
}
/*
　下線付き-01
================================*/
.c-title-border-01 {
  position: relative;
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
  width: 90%;
  margin: 0 auto 50px auto;
}

.c-title-border-01::after {
  content: "";
  display: block;
  position: absolute;
  width: 45px;
  left: calc(50% - 30px);
  bottom: -15px;
  border: 2px solid #6eb92b;
  border-radius: 50px;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-title-border-01 {
    width: 100%;
    font-size: 2.3rem;
    line-height: 1.4;
    margin: 0 auto 70px auto;
  }
}
/*
　番号付き-01
================================*/
.c-title-count-01 {
  position: relative;
  height: 100px;
  margin-right: 100px;
  padding: 20px 0 10px 15px;
  color: #fff;
  background: #6eb92b;
  box-sizing: border-box;
  margin-bottom: 50px;
  font-weight: 900;
  font-size: 22px;
}

.c-title-count-01:after {
  position: absolute;
  top: 0;
  right: -60px;
  width: 0;
  height: 0;
  content: "";
  border-width: 100px 60px 0 0;
  border-style: solid;
  border-color: #6eb92b transparent transparent transparent;
}

.c-title-count-01 span {
  font-size: 50px;
  position: absolute;
  bottom: 0;
  right: -100px;
  display: block;
  padding-left: 16px;
  color: #6eb92b;
  font-family: "Arial", "Noto Sans Japanese", sans-serif;
  font-weight: 700;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-title-count-01 {
    margin-right: 120px;
    margin-bottom: 60px;
    padding: 20px 0 10px 20px;
    font-size: 40px;
    font-size: clamp(33px, 3vw, 40px);
  }
  .c-title-count-01 span {
    font-size: 63px;
    top: 0;
    right: -120px;
    padding-top: 10px;
  }
}
/*
　番号付き-02
================================*/
.c-title-count-02 {
  display: flex;
  align-items: flex-start;
  line-height: 1;
  border-top: 3px solid #000;
  border-bottom: 3px solid #000;
  padding: 10px 0;
}

.c-title-count-02 p {
  font-size: clamp(35px, 9vw, 100px);
  font-weight: bold;
  color: #6eb92b;
  font-family: "Arial", sans-serif;
}

.c-title-count-02 h2 {
  margin-left: 3%;
  line-height: 1.4;
  font-size: clamp(20px, 6vw, 41px);
  font-weight: 900;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-title-count-02 {
    align-items: center;
    padding: 0;
  }
  .c-title-count-02 p {
    margin-top: -2.4%;
    margin-bottom: -2.7%;
    font-size: clamp(130px, 17vw, 205px);
  }
  .c-title-count-02 h2 {
    margin-left: 40px;
    font-size: clamp(30px, 3.5vw, 45px);
  }
}
/*
　付箋風-01
================================*/
.c-title-label-01 {
  font-size: 1.2rem;
  font-weight: bold;
  background-color: #f8f8f8;
  border-left: 15px solid #6eb92b;
  margin: 0 0 15px 0;
  padding: 15px 10px;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-title-label-01 {
    font-size: 2rem;
    padding: 11px 10px 11px 20px;
    letter-spacing: 0.04em;
  }
}
/*
　背景カラー-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: #6eb92b;
}

.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(26px, 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: #f85959;
}

.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);
  }
}
/*
　誘導型-01
================================*/
.c-title-induction-01 {
  width: 100%;
  padding-bottom: 35px;
  box-sizing: content-box;
  clip-path: polygon(0 0, 100% 0, 100% 75%, 50% 100%, 0 75%, 0 0);
  background-color: #6eb92b;
}

.c-title-induction-01__inner {
  display: flex;
  align-items: center;
  align-content: flex-start;
  justify-content: center;
  width: 90%;
  margin: 0 auto;
  padding: 4% 0 2% 0;
}

.c-title-induction-01__inner h2 {
  text-align: center;
  font-size: 20px;
  font-weight: 900;
  color: #fff;
  line-height: 1.4;
}

.c-title-induction-01 span {
  font-size: 24px;
  font-weight: 900;
  color: #fff;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-title-induction-01__inner {
    max-width: 1140px;
    padding: 25px 0 20px 0;
  }
  .c-title-induction-01__inner h2 {
    line-height: 1.3;
    font-size: clamp(36px, 2vw, 40px);
  }
  .c-title-induction-01__inner span {
    font-size: clamp(42px, 5vw, 53px);
  }
}
/*
　ルビ付き-06
================================*/
.c-title-ruby-06 {
  width: 90%;
  margin: 0 auto 30px auto;
  text-align: center;
  line-height: 1.4;
}

.c-title-ruby-06 h2 {
  font-size: 26px;
  font-weight: bold;
  color: #333;
}

.c-title-ruby-06 span::first-letter {
  color: #6eb92b;
}

.c-title-ruby-06 span {
  display: block;
  font-size: 16px;
  font-weight: 900;
  color: #333;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-title-ruby-06 {
    width: 100%;
    margin: 0 auto 45px auto;
  }
  .c-title-ruby-06 h2 {
    font-size: 34px;
  }
  .c-title-ruby-06 span {
    font-size: 20px;
  }
}
/*
　メニュー-05
================================*/
.c-menu-05 {
  background-color: #f5f5f5;
  padding: 30px 0;
}

.c-menu-05 ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 20px 40px;
  list-style: none;
  padding: 0;
  margin: 0 auto;
  width: 75%;
  max-width: 1140px;
}

.c-menu-05 a {
  display: block;
  text-decoration: none;
}

.c-menu-05__image {
  overflow: hidden;
  border-radius: 10px;
}

.c-menu-05__image img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}

.c-menu-05 p {
  color: #333;
  text-align: center;
  padding: 0.3em;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-menu-05 {
    padding: 50px 0 40px 0;
  }
  .c-menu-05 ul {
    gap: 30px;
    width: 85%;
  }
  .c-menu-05__image img {
    transition: 0.4s ease-in-out;
  }
  .c-menu-05 a:hover img {
    transform: scale(1.2, 1.2);
  }
  .c-menu-05 a:hover p {
    color: #6eb92b;
    text-decoration: none;
    font-weight: bold;
  }
}
/*
　物件情報-01
================================*/
.c-estate-list-col1-01 {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 30px;
}

.c-estate-list-col1-01__link {
  display: flex;
  flex-direction: column;
  border: 1px solid #ccc;
  background-color: #fff;
  text-decoration: none !important;
  transition: 0.3s;
}

.c-estate-list-col1-01__link:hover {
  opacity: 0.7;
}

.c-estate-list-col1-01__link:hover .c-estate-list-col1-01__image img {
  transform: scale(1.1);
}

.c-estate-list-col1-01__image {
  margin: 15px 15px 0 15px;
  overflow: hidden;
  box-sizing: border-box;
  font-size: 0;
}

.c-estate-list-col1-01__image img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 3/2;
  transition: 0.3s;
}

.c-estate-list-col1-01__header {
  border-bottom: 1px solid #ccc;
  padding: 15px 15px 10px 15px;
}

.c-estate-list-col1-01__body {
  padding: 15px;
}

.c-estate-list-col1-01__type {
  background-color: #6eb92b;
  color: #fff;
  margin-right: 10px;
  padding: 4px 8px;
  font-size: 14px;
  font-weight: bold;
  border-radius: 2px;
}

.c-estate-list-col1-01__address {
  display: block;
  margin-top: 10px;
  font-size: 16px;
  font-weight: bold;
  color: #333;
}

.c-estate-list-col1-01__price-block {
  margin-top: 5px;
  font-size: 20px;
  font-weight: bold;
}

.c-estate-list-col1-01__price {
  color: #d60000;
  margin-right: 8px;
  font-size: clamp(25px, 3.2552083333vw, 30px);
  color: #c00000;
  font-weight: bold;
  font-family: "Arial", "Century Gothic", sans-serif;
  line-height: 1.3;
}

.c-estate-list-col1-01__price span {
  font-size: clamp(17px, 2.2135416667vw, 25px);
  font-weight: 900;
  font-family: "Noto Sans Japanese", sans-serif;
}

.c-estate-list-col1-01__layout {
  color: #333;
}

.c-estate-list-col1-01__access {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.c-estate-list-col1-01__access-label {
  background-color: #ccc;
  padding: 2px 6px;
  font-size: 13px;
  font-weight: bold;
  color: #333;
}

.c-estate-list-col1-01__access-detail {
  font-size: 14px;
  color: #333;
}

.c-estate-list-col1-01__description {
  font-size: 14px;
  line-height: 1.6;
  color: #333;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-estate-list-col1-01__link {
    flex-direction: row;
  }
  .c-estate-list-col1-01__image {
    margin: 15px;
    flex-basis: 30%;
  }
  .c-estate-list-col1-01__header {
    padding: 20px 15px 10px 15px;
  }
  .c-estate-list-col1-01__info {
    flex: 1;
    border-left: 1px solid #ccc;
  }
  .c-estate-list-col1-01__address {
    display: inline-block;
    margin-top: 0;
    font-size: clamp(16px, 1.7543859649vw, 20px);
  }
  .c-estate-list-col1-01__price {
    font-size: clamp(28px, 2.8947368421vw, 33px);
  }
  .c-estate-list-col1-01__price span {
    font-size: clamp(20px, 1.9298245614vw, 22px);
  }
  .c-estate-list-col1-01__access-label {
    font-size: clamp(15px, 1.4035087719vw, 16px);
  }
  .c-estate-list-col1-01__access-detail {
    font-size: clamp(16px, 1.4912280702vw, 17px);
  }
  .c-estate-list-col1-01__description {
    font-size: clamp(16px, 1.4912280702vw, 17px);
  }
}
/*
　物件情報-07
================================*/
.c-estate-list-col3-07 li {
  position: relative;
  width: 90%;
  margin: 0 auto 50px auto;
  border: solid 1px #9c9c9c;
  background-color: #f5f5f5;
}

.l-section--gray .c-estate-list-col3-07 li {
  background-color: #FFF;
}

.c-estate-list-col3-07 li:last-child {
  margin-bottom: 20px;
}

.c-estate-list-col3-07 a {
  display: block;
  text-decoration: none;
  color: #333;
}

.c-estate-list-col3-07__image {
  position: relative;
}

.c-estate-list-col3-07__image img:last-of-type {
  display: block;
  width: 100%;
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-estate-list-col3-07__label {
  position: absolute;
  bottom: 0;
  left: 0;
  display: inline-block;
  padding: 5px 10px;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.7);
}

.c-estate-list-col3-07__price {
  line-height: 1.3;
  font-size: 20px;
  font-weight: bold;
}

.c-estate-list-col3-07__price span {
  margin-left: 2px;
  font-size: 17px;
}

.c-estate-list-col3-07__textarea {
  padding: 15px 20px;
}

.c-estate-list-col3-07__type {
  display: inline-block;
  margin-bottom: 10px;
  padding: 3px 10px;
  line-height: 1.6;
  font-size: 14px;
  color: #fff;
  background-color: #6eb92b;
}

.c-estate-list-col3-07__type[data-type*=賃貸] {
  background: #f85959;
}

.c-estate-list-col3-07__address {
  margin-bottom: 10px;
  font-weight: bold;
}

.c-estate-list-col3-07__access {
  margin-bottom: 10px;
  font-size: 15px;
}

.c-estate-list-col3-07__catchcopy {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-align: left;
  font-size: 15px;
  color: #6eb92b;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-estate-list-col3-07 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0 8px;
  }
  .c-estate-list-col3-07::after {
    content: "";
    display: block;
    width: 30%;
  }
  .c-estate-list-col3-07 li {
    width: 30%;
    margin: 0 0 50px 0;
  }
  .c-estate-list-col3-07 li:last-child {
    margin-bottom: 50px;
  }
  .c-estate-list-col3-07 a {
    height: 100%;
  }
  .c-estate-list-col3-07 a:hover {
    opacity: 0.6;
  }
  .c-estate-list-col3-07__price {
    font-size: 22px;
  }
  .c-estate-list-col3-07__price span {
    font-size: 18px;
  }
}
/*
　お知らせ-01
================================*/
.c-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: #6eb92b;
  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: #6eb92b;
    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: #6eb92b;
    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: #f85959;
  }
  .c-news-list-01__button__pc .fa {
    margin-left: 10px;
  }
  .c-news-list-01__button__sp {
    display: none;
  }
}
/*
　ページリンク-08
================================*/
.c-page-link-08 {
  padding-bottom: 0 !important;
  background-color: #eaf3f8;
  overflow: hidden;
}

.c-page-link-08__text {
  position: relative;
  width: 85%;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
  background-color: #FFF;
  z-index: 1;
}

.c-page-link-08__text h2 {
  margin-bottom: 15px;
  font-size: clamp(30px, 5.2083333333vw, 40px);
  font-weight: 900;
  color: #6eb92b;
}

.c-page-link-08__text p {
  margin-bottom: 15px;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.03em;
}

.c-page-link-08__button {
  width: 100%;
  display: block;
  margin: 0 auto;
  padding: 12px 5px;
  box-sizing: border-box;
  text-align: center;
  border: 2px solid #6eb92b;
  border-radius: 25px;
  background-color: #FFF;
  cursor: pointer;
  transition: 0.3s cubic-bezier(0.45, 0, 0.55, 1);
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.c-page-link-08__button,
.c-page-link-08__button:link,
.c-page-link-08__button:visited {
  text-decoration: none;
  color: #6eb92b;
  font-weight: bold;
}

.c-page-link-08__button::after {
  background: #6eb92b;
  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-page-link-08__button:hover {
  color: #FFF;
}

.c-page-link-08__button:hover::after {
  transform: scale(1, 1);
}

.c-page-link-08__image {
  margin: -50px 0 0;
}

.c-page-link-08__image img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* PC */
@media screen and (min-width: 1100px) {
  .c-page-link-08 {
    padding-top: 0 !important;
    padding-bottom: 50px !important;
    background-color: transparent;
  }
  .c-page-link-08::before {
    content: "";
    width: 305px;
    height: 590px;
    background-color: #eaf3f8;
    display: block;
    position: absolute;
    z-index: -999;
  }
  .c-page-link-08__inner {
    display: flex;
    align-items: center;
    max-width: 1680px;
    margin: 0 auto;
    padding-top: 60px;
  }
  .c-page-link-08__text {
    width: 100%;
    max-width: 650px;
    margin: 0 -120px 0 120px;
    padding: 50px;
  }
  .c-page-link-08__text h2 {
    margin-bottom: 20px;
    font-size: clamp(47px, 4.8245614035vw, 55px);
    line-height: 1.2;
  }
  .c-page-link-08__text p {
    margin-bottom: 25px;
    font-size: 18px;
  }
  .c-page-link-08__button {
    width: 70%;
    margin: 0;
    padding: 15px 10px;
    font-size: 17px;
    border-radius: 30px;
  }
  .c-page-link-08__image {
    flex: 1;
    margin: 0;
    height: 650px;
  }
  .c-page-link-08__image img {
    height: 650px;
  }
}
/*
　よくある質問-02
================================*/
.c-ques-list-02,
.c-ques-list-02::after,
.c-ques-list-02::before {
  box-sizing: border-box;
}

.c-ques-list-02 dl {
  margin-bottom: 25px;
}

.c-ques-list-02 dt,
.c-ques-list-02 dd {
  position: relative;
  margin: 0 45px 15px 45px;
  padding: 10px;
  border-radius: 5px;
}

.c-ques-list-02 dt {
  background: rgba(110, 185, 43, 0.2);
}

.c-ques-list-02 dd {
  background: rgba(204, 204, 204, 0.2);
}

.l-section--blue .c-ques-list-02 dd {
  background: rgba(255, 255, 255, 0.8);
}

.c-ques-list-02 dt::before,
.c-ques-list-02 dd::before {
  content: "";
  position: absolute;
  top: 10px;
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  z-index: 99;
}

.c-ques-list-02 dt::before {
  left: -8px;
  border-width: 5px 8px 5px 0;
  border-color: transparent rgba(110, 185, 43, 0.2) transparent transparent;
}

.c-ques-list-02 dd::before {
  right: -8px;
  border-width: 5px 0 5px 8px;
  border-color: transparent transparent transparent rgba(204, 204, 204, 0.2);
}

.l-section--blue .c-ques-list-02 dd::before {
  border-color: transparent transparent transparent rgba(255, 255, 255, 0.8);
}

.c-ques-list-02 dt::after,
.c-ques-list-02 dd::after {
  position: absolute;
  top: 0;
  display: inline-block;
  width: 20px;
  height: 20px;
  padding: 6px;
  line-height: normal;
  text-align: center;
  font-family: "Arial", sans-serif;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  border-radius: 50%;
}

.c-ques-list-02 dt::after {
  content: "Q";
  left: -44px;
  background: #6eb92b;
}

.c-ques-list-02 dd::after {
  content: "A";
  right: -44px;
  background: #ccc;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-ques-list-02 {
    max-width: 1000px;
    margin: 0 auto;
  }
  .c-ques-list-02 dl {
    margin-bottom: 30px;
  }
  .c-ques-list-02 dt,
  .c-ques-list-02 dd {
    margin: 0 55px 15px 55px;
    padding: 10px 15px;
  }
  .c-ques-list-02 dt::before,
  .c-ques-list-02 dd::before {
    top: 12px;
  }
  .c-ques-list-02 dt::before {
    left: -10px;
    border-width: 7px 10px 7px 0;
  }
  .c-ques-list-02 dd::before {
    right: -10px;
    border-width: 7px 0 7px 10px;
  }
  .c-ques-list-02 dt::after,
  .c-ques-list-02 dd::after {
    width: 25px;
    height: 25px;
    font-size: 22px;
  }
  .c-ques-list-02 dt::after {
    left: -55px;
  }
  .c-ques-list-02 dd::after {
    right: -55px;
  }
}
/*
　会社概要-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: 30%;
  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: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
  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: 20%;
    text-align: center;
  }
  .c-company-06__body__detail dd {
    width: 75%;
  }
  .c-company-06__body__map {
    width: 45%;
    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;
  }
}
/*
　コンタクト-10
================================*/
.c-contact-10 {
  background: #62a426;
  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: #f85959;
  color: #fff;
}

.c-contact-10__button-satei a span {
  border: solid 2px #B22222;
}

.c-contact-10__button-inquiry a span {
  border: solid 2px #f85959;
}

/* 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-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: #6eb92b;
}

.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;
  }
}
/*
　流れ
================================*/
.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: #6eb92b;
  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: #6eb92b 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-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-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-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;
  }
}
/*
　会社概要-02
================================*/
.c-company-02__detail__list {
  display: flex;
  align-items: flex-start;
  padding: 10px 0;
}

.c-company-02__detail__list:nth-child(even) {
  background: #FFF;
}

.c-company-02__detail__list dt {
  width: 25%;
  padding-left: 2%;
  box-sizing: border-box;
}

.c-company-02__detail__list dd {
  width: 75%;
  padding-right: 2%;
  box-sizing: border-box;
}

.c-company-02__detail__list dt,
.c-company-02__detail__list dd {
  font-size: 14px;
}

.c-company-02__detail__feature {
  display: flex;
  flex-wrap: wrap;
}

.c-company-02__detail__feature li {
  margin: 0 5px 5px 0;
  padding: 2px 5px;
  font-size: 14px;
  background-color: #6eb92b;
  border-radius: 3px;
  color: #FFF;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-company-02__detail__list {
    padding: 20px 0;
  }
  .c-company-02__detail__list dt {
    width: 19%;
  }
  .c-company-02__detail__list dd {
    width: 81%;
  }
  .c-company-02__detail__list dt,
  .c-company-02__detail__list dd {
    font-size: 16px;
  }
  .c-company-02__detail__feature li {
    margin: 0 7px 5px 0;
    padding: 2px 10px 4px 10px;
    font-size: 16px;
  }
}
/*
　ブログリスト-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;
}

.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: #6eb92b;
  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: #f85959;
}

/* 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__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;
}

/*
　バナー
================================*/
.c-banner-col1-01 {
  position: relative;
  width: 95%;
  height: 250px;
  margin: 30px auto;
}

.c-banner-col1-01 a {
  display: block;
  text-decoration: none;
}

.c-banner-col1-01 a::before {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(11, 60, 93, 0.7);
}

.c-banner-col1-01__image img {
  display: block;
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-banner-col1-01__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 85%;
  color: #fff;
}

.c-banner-col1-01__content__text {
  line-height: 1.4;
  font-size: 16px;
}

.c-banner-col1-01__content__title {
  margin: 15px 0;
  text-align: center;
  font-size: 30px;
  font-weight: 900;
}

.c-banner-col1-01__content__button {
  display: block;
  max-width: 380px;
  margin: 0 auto;
  padding: 15px 10px;
  text-align: center;
  font-weight: bold;
  background: #f85959;
}

.c-banner-col1-01__content__button i {
  margin-left: 10px;
}

.c-banner-col1-01 a:hover {
  opacity: 0.8;
  background: #fff;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-banner-col1-01 {
    width: 100%;
    margin: 0 auto;
  }
  .c-banner-col1-01__content {
    width: 90%;
  }
  .c-banner-col1-01__content__title {
    text-align: left;
    font-size: 45px;
  }
  .c-banner-col1-01__content__text {
    font-size: 22px;
    font-weight: bold;
  }
  .c-banner-col1-01__content__button {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 40%;
    padding: 10px;
    font-size: 22px;
  }
}
/*
　ポイント（リスト）-02
================================*/
.c-point-list-02 {
  background: #fafafa;
  margin-bottom: 80px;
}

.c-point-list-02 ul {
  counter-reset: num; /* カウンターをリセット */
}

.c-point-list-02 li {
  position: relative;
  border-bottom: 1px dotted #000;
}

.c-point-list-02 li:last-child {
  border-bottom: none;
}

.c-point-list-02__cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  padding: 5px 0;
  background-color: #6eb92b;
}

.c-point-list-02__cover::before {
  display: block;
  color: #FFF;
  text-align: center;
  font-size: 32px;
  font-family: "Arial", "Noto Sans Japanese", sans-serif;
  font-weight: bold;
  counter-increment: num;
  content: counter(num);
}

.c-point-list-02__cover p {
  color: #FFF;
  text-align: center;
  font-size: 32px;
  font-family: "Arial", "Noto Sans Japanese", sans-serif;
  font-weight: bold;
}

.c-point-list-02 h3 {
  padding: 10px 0 10px 65px;
  font-size: 25px;
  font-weight: 500;
}

.c-point-list-02__text {
  padding: 10px 20px 20px 20px;
}

.c-point-list-02__text img {
  max-width: 100%;
  margin-bottom: 20px;
  text-align: center;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-point-list-02 {
    margin-bottom: 100px;
  }
  .c-point-list-02 ul {
    display: flex;
    flex-wrap: wrap;
  }
  .c-point-list-02 li {
    width: 50%;
    border-bottom: 1px dotted #000;
    border-right: 1px dotted #000;
    box-sizing: border-box;
  }
  .c-point-list-02 li:nth-last-child(2) {
    border-bottom: none;
  }
  .c-point-list-02 li:nth-child(2n) {
    border-right: none;
  }
  .c-point-list-02__cover {
    width: 70px;
    padding: 0;
  }
  .c-point-list-02__cover::before {
    font-size: 48px;
  }
  .c-point-list-02__cover p {
    font-size: 48px;
  }
  .c-point-list-02 h3 {
    padding: 15px 0 15px 85px;
    font-size: 28px;
  }
  .c-point-list-02__text {
    padding: 20px 30px 30px 30px;
  }
}
/*
 フォーム-03
================================*/
.c-form-03__inner {
  background: #FFF;
  box-sizing: border-box;
  padding: 40px 20px;
  margin-bottom: 20px;
  border-radius: 10px;
}

.c-form-03 h2 {
  width: 90%;
  font-size: 1.4rem;
  font-weight: 900;
  text-align: center;
  color: #000;
  margin: 0 auto 30px auto;
}

.c-form-03__field-group {
  margin-bottom: 20px;
}

.c-form-03__field-group,
.c-form-03__field {
  width: 100%;
  height: auto;
}

.c-form-03__field {
  margin-bottom: 20px;
}

.c-form-03__field__label {
  display: inline-block;
  font-size: 17px;
  font-weight: 500;
  color: #2B8666;
  max-width: 90%;
  margin-right: 20px;
  margin-bottom: 10px;
}

.c-form-03__field-group-required {
  font-size: 15px;
  color: #c1272d;
}

.c-form-03__field__detail span {
  position: relative;
  display: inline-block;
  font-size: 17px;
  font-weight: 500;
  color: #333;
  cursor: pointer;
}

.c-form-03__field__input {
  display: inline-block;
  box-sizing: border-box;
  width: 100%;
  height: 50px;
  line-height: 50px;
  background: #fff;
  font-size: 17px;
  border: 2px solid #98BCAE;
  border-radius: 10px;
  text-align: left;
  padding: 0 15px;
}

.c-form-03__field__textarea {
  box-sizing: border-box;
  width: 100%;
  height: 150px;
  background: #fff;
  font-size: 17px;
  border: 2px solid #98BCAE;
  border-radius: 10px;
  padding: 10px 15px;
}

.c-form-03__field__select {
  display: block;
  width: 100%;
  height: 50px;
  line-height: 50px;
  background: #fff;
  font-size: 18px;
  text-align: left;
  padding: 0 15px;
  cursor: pointer;
  border: 2px solid #98BCAE;
  border-radius: 10px;
  box-sizing: border-box;
}

.c-form-03__field__select:invalid {
  color: #969696;
}

.c-form-03__field__select option {
  color: #333;
}

.c-form-03__field__checkbox,
.c-form-03__field__radio {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: flex-start;
  gap: 1em;
  margin-top: 5px;
}

.c-form-03__field__checkbox label {
  display: flex;
  align-items: center;
  -moz-column-gap: 5px;
       column-gap: 5px;
  width: -moz-fit-content;
  width: fit-content;
  line-height: 1;
  cursor: pointer;
}

.c-form-03__field__checkbox:not(:last-of-type) {
  margin-bottom: 16px;
}

.c-form-03__field__checkbox label input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: relative;
  top: 1px;
  width: clamp(21px, 2.9947916667vw, 23px);
  height: clamp(21px, 2.9947916667vw, 23px);
  border: 2px solid #98BCAE;
  border-radius: 3px;
  cursor: pointer;
}

.c-form-03__field__checkbox label input:checked::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 3px;
  width: 12px;
  height: 6px;
  border-bottom: 2px solid #2B8666;
  border-left: 2px solid #2B8666;
  transform: rotate(-45deg);
}

.c-form-03__field__radio input {
  display: none;
}

.c-form-03__field__radio span {
  padding-left: clamp(35px, 5.2083333333vw, 40px);
}

.c-form-03__field__radio span::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: clamp(27px, 3.90625vw, 30px);
  height: clamp(27px, 3.90625vw, 30px);
  border: 1px solid #CCC;
  border-radius: 6px;
  background: #fff;
  border-radius: 50%;
  box-sizing: border-box;
}

.c-form-03__field__radio input:checked + span::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: clamp(27px, 3.90625vw, 30px);
  height: clamp(27px, 3.90625vw, 30px);
  border: 1px solid #CCC;
  border-radius: 6px;
  background: #6eb92b;
  border-radius: 50%;
  transform: scale(0.7);
  box-sizing: border-box;
}

.c-form-03__submit-btn {
  display: block;
  width: 100%;
  background: #2B8666;
  border-radius: 10px;
  font-size: 20px;
  color: #fff;
  font-weight: bold;
  text-align: center;
  margin: 40px auto 15px auto;
  padding: 15px;
  border: none;
}

.c-form-03__submit-btn:hover {
  background: #c1272d;
}

/* カレンダー */
.c-form-03__date {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.3em;
  margin-bottom: 20px;
}

.c-form-03__date p {
  margin-bottom: 5px;
  font-size: 17px;
  font-weight: bold;
  color: #333;
}

.c-form-03__date__calendar {
  display: inline-block;
  margin-bottom: 10px;
  padding: 0 15px;
  width: 100%;
  height: 50px;
  font-size: 18px;
  line-height: 50px;
  border: 2px solid #98BCAE;
  border-radius: 10px;
  box-sizing: border-box;
}

.c-form-03__date__time {
  display: flex;
  align-items: center;
}

.c-form-03__date__time-box {
  display: block;
  width: 30%;
  height: 50px;
  line-height: 50px;
  background: #fff;
  font-size: 18px;
  color: #000;
  text-align: left;
  margin-right: 5px;
  padding: 0 15px;
  border: 2px solid #98BCAE;
  border-radius: 10px;
  box-sizing: border-box;
}

.c-form-03__date__time:invalid {
  color: #969696;
}

.c-form-03__date__time option {
  color: #333;
}

.c-form-03__note {
  width: 95%;
  margin: 0 auto;
}

.c-form-03__note p {
  margin-bottom: 5px;
  font-size: 15px;
  color: #333;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-form-03__inner {
    padding: 50px 80px 40px 80px;
  }
  .c-form-03 h2 {
    width: 100%;
    font-size: 2.5rem;
  }
  .c-form-03__field-group {
    margin-top: 10px;
  }
  .c-form-03__field {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
  }
  .c-form-03__datebox-detail,
  .c-form-03__field__detail {
    width: 77%;
  }
  .c-form-03__field__detail span {
    font-size: 19px;
  }
  .c-form-03__field__label {
    display: inline-block;
    font-size: 17px;
    font-weight: bold;
    width: 23%;
    min-width: 200px;
    margin-right: 20px;
    margin-bottom: 0;
  }
  .c-form-03__field__input {
    width: 77%;
    height: 55px;
    line-height: 55px;
    padding: 0 15px;
  }
  .c-form-03__field__textarea {
    width: 77%;
    height: 200px;
    padding: 10px 15px;
  }
  .c-form-03__field__checkbox,
  .c-form-03__field__radio {
    flex-direction: row;
    gap: 1em 1.7em;
  }
  .c-form-03__field__checkbox label input:checked::after {
    top: 3px;
    border-bottom: 3px solid #2B8666;
    border-left: 3px solid #2B8666;
  }
  .c-form-03__submit-btn {
    width: 35%;
  }
  /* カレンダー */
  .c-form-03__date {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.7em;
  }
  .c-form-03__date p {
    margin-bottom: 0;
  }
  .c-form-03__date__calendar,
  .c-form-03__date__time {
    width: 38%;
    height: 55px;
    line-height: 55px;
    margin-right: 15px;
    margin-bottom: 0;
  }
  .c-form-03__date__time {
    width: 40%;
    height: 55px;
    line-height: 55px;
  }
  .c-form-03__date__time-box {
    height: 55px;
    line-height: 55px;
  }
  .c-form-03__note {
    width: 100%;
  }
  .c-form-03__note p {
    font-size: 16px;
  }
}
/* ━━━━━━━━━━━━━━━━

 ■レイアウト

━━━━━━━━━━━━━━━━ */
/*=========================================

* ヘッダー

==========================================*/
html {
  scroll-padding-top: 120px;
}

.l-header {
  position: relative;
  width: 100%;
  height: 120px;
  margin: 0;
  z-index: 1000;
}

.l-header__wrapper {
  position: fixed;
  width: 100%;
  top: 0;
  background-color: #fff;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
}

.l-header__title {
  padding: 3px 5px;
  font-size: 0.8em;
  color: #fff;
  background-color: #6eb92b;
}

.l-header__title h1 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}

.l-header__inquiry {
  display: none;
}

.l-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
}

.l-header__logo {
  max-width: 215px;
  margin-left: 10px;
}

.l-header__logo img {
  width: 100%;
}

.l-header__logo--color {
  display: none;
}

.l-header-child .l-header__logo--color {
  display: block;
}

.l-header-child .l-header__logo {
  display: none;
}

.l-header__nav {
  display: none;
}

.l-header__inquiry {
  display: none;
}

.l-header__info {
  display: none;
}

.l-header__inquiry__sp {
  display: flex;
  align-items: center;
}

.l-header__inquiry__sp__button {
  flex-basis: 50%;
}

.l-header__inquiry__sp__button--request a {
  background-color: #6eb92b;
}

.l-header__inquiry__sp__button--login a {
  background-color: #FFB200;
}

.l-header__inquiry__sp__button--mail a {
  background-color: #f85959;
  margin: 0 1em;
  border-radius: 3px;
}

.l-header__inquiry__sp__button a {
  display: block;
  height: 40px;
  padding: 12px 20px;
  line-height: 1;
  text-decoration: none;
  text-align: center;
  color: #FFF;
  font-size: 15px;
  box-sizing: border-box;
}

.l-header__inquiry__sp__button:hover {
  opacity: 0.5;
}

/* ハンバーガーメニュー
======================= */
.l-header__menu__button {
  display: block;
  position: relative;
  width: 30px;
  height: 30px;
  transition: all 0.5s;
  cursor: pointer;
  z-index: 3;
}

.l-header__menu__button span {
  display: block;
  position: absolute;
  right: 10px;
  width: 30px;
  height: 3px;
  background-color: #333;
  border-radius: 4px;
  transition: all 0.5s;
}

.l-header-child .l-header__menu__button span {
  background-color: #333;
}

.l-header__menu__button span:nth-child(1) {
  top: 4px;
}

.l-header__menu__button span:nth-child(2) {
  top: 14px;
}

.l-header__menu__button span:nth-child(3) {
  bottom: 4px;
}

.l-header__menu__button.is-open span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
  background-color: #777;
}

.l-header__menu__button.is-open span:nth-child(2) {
  opacity: 0;
  background-color: #777;
}

.l-header__menu__button.is-open span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
  background-color: #777;
}

.l-header__logo.is-open .l-header__logo--wt,
.l-header__logo.is-open .l-header__logo--color {
  display: none;
}

/*  スマホナビゲーション
======================= */
.l-header__sp-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  padding: 130px 20px 65px;
  overflow-y: auto;
  background: #fefefe;
  z-index: -1;
  pointer-events: none;
  transition: all 0.5s;
  opacity: 0;
  box-sizing: border-box;
}

.l-header__sp-menu.is-open {
  opacity: 1;
  pointer-events: auto;
}

.l-header__sp-menu__inquiry--info {
  margin-top: 30px;
  text-align: center;
}

.l-header__sp-menu__inquiry--info a {
  font-size: 36px;
  color: #555;
  text-decoration: none;
  font-family: "Arial", "Century Gothic", sans-serif;
}

.l-header__sp-menu__inquiry--info p {
  color: #555;
}

.l-header__sp-menu__inquiry {
  width: 85%;
  max-width: 300px;
  margin: 15px auto 20px auto;
  text-align: center;
  border: 1px solid #555;
  transition: all 0.3s;
}

.l-header__sp-menu__inquiry a {
  display: block;
  padding: 15px 30px;
  font-size: 18px;
  font-weight: bold;
  color: #555;
  text-decoration: none;
}

.l-header__sp-menu__inquiry:hover {
  background-color: #6eb92b;
}

.l-header__sp-menu__inquiry:hover a {
  color: #fff;
}

.l-header__sp-menu ul {
  margin-bottom: 30px;
}

.l-header__sp-menu ul li {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  height: auto;
  border-bottom: 1px solid #555;
}

.l-header__sp-menu ul li a {
  display: block;
  padding: 15px 0;
  position: relative;
  font-size: 1em;
  text-decoration: none;
  color: #0b3c5d;
  transition: all 0.2s ease;
}

.l-header__sp-menu__nav-child a::after {
  position: absolute;
  display: block;
  content: "";
  top: 50%;
  right: 5%;
  width: 7px;
  height: 7px;
  margin-top: -4px;
  border-top: solid 2px #777;
  border-right: solid 2px #777;
  transform: rotate(135deg);
}

.l-header__sp-menu__nav-child a.is-open {
  border-bottom: 1px dotted #777;
}

.l-header__sp-menu__nav-child a.is-open::after {
  transform: rotate(315deg);
}

.l-header__sp-menu__nav ul li ul {
  display: none;
}

.l-header__sp-menu__nav ul li ul.is-open {
  display: block;
}

.l-header__sp-menu__nav ul li ul li {
  width: 93%;
  margin: 0 0 0 auto;
  border-bottom: 1px dotted #777;
  border-top: none;
}

.l-header__sp-menu__nav ul li ul li:last-child {
  border-bottom: none;
}

.l-header__sp-menu__nav ul li ul li a {
  display: block;
  margin-left: 10px;
  padding: 15px 0;
  font-size: 1em;
  color: #0b3c5d;
}

.l-header__sp-menu__nav ul li ul li a::after {
  display: none;
}

.l-header__sp-menu__nav ul li ul li a.is-open ul {
  display: block;
}

.l-header__sp-menu__sns {
  margin-top: 30px;
  text-align: center;
}

.l-header__sp-menu__sns img {
  width: 40px;
  margin-right: 20px;
}

.l-header__sp-menu__sns a:last-child img {
  margin-right: 0;
}

@media print {
  .l-header__sp-menu {
    display: none;
  }
}
/* PC */
@media screen and (min-width: 1115px) {
  html {
    scroll-padding-top: 120px;
  }
  .l-header {
    height: 120px;
    margin: 0;
  }
  .l-header__wrapper {
    justify-content: flex-end;
    height: 120px;
    padding: 0;
    background-color: rgba(255, 255, 255, 0.9);
  }
  .l-header__title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 0 0 15px;
    height: 40px;
    font-size: 14px;
    box-sizing: border-box;
  }
  .l-header__title h1 {
    width: calc(100% - 540px);
  }
  .l-header__inquiry {
    display: flex;
    align-items: center;
  }
  .l-header__inquiry__button--reserve a {
    background-color: #616161;
  }
  .l-header__inquiry__button--login a {
    background-color: #FFB200;
  }
  .l-header__inquiry__button--request a {
    background-color: #6eb92b;
  }
  .l-header__inquiry__button a {
    display: block;
    height: 40px;
    padding: 12px 20px;
    line-height: 1;
    text-decoration: none;
    text-align: center;
    color: #FFF;
    font-size: 16px;
    box-sizing: border-box;
  }
  .l-header__inquiry__button a:hover {
    background-color: #f85959;
  }
  .l-header__inquiry__sp {
    display: none;
  }
  .l-header__inner {
    height: 80px;
    justify-content: space-between;
    padding: 0 15px;
  }
  .l-header__logo {
    max-width: clamp(180px, 17.5438596491vw, 330px);
    font-size: 0;
    margin-right: clamp(10px, 0.8771929825vw, 20px);
    margin-left: 0;
  }
  .l-header__logo img {
    width: 100%;
  }
  .l-header__nav {
    display: block;
    flex: 1 1 0%;
  }
  .l-header__nav ul {
    display: flex;
    align-items: center;
  }
  .l-header__nav ul li {
    position: relative;
    padding: 10px;
  }
  .l-header__nav ul li a {
    position: relative;
    display: inline-block;
    font-size: clamp(14px, 1.2280701754vw, 16px);
    font-weight: 500;
    color: #333;
    text-decoration: none;
    letter-spacing: 0.1em;
  }
  .l-header__nav ul li.l-header__nav-child {
    padding: 10px 23px 10px 15px;
  }
  .l-header__nav-child::after {
    position: absolute;
    display: block;
    content: "";
    top: 35%;
    right: 5%;
    width: 7px;
    height: 7px;
    border-top: solid 2px #333;
    border-right: solid 2px #333;
    transform: rotate(135deg);
  }
  .l-header-child .l-header__nav-child::after {
    border-top: solid 2px #000;
    border-right: solid 2px #000;
  }
  .l-header-child .l-header__nav ul li a {
    color: #333;
  }
  .l-header__nav ul li a::after,
  .l-header__nav ul .l-header__nav__accordion a::after {
    position: absolute;
    bottom: -4px;
    left: 0;
    content: "";
    width: 100%;
    height: 1px;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: transform 0.3s;
  }
  .l-header__nav ul li a::after {
    background: #333;
  }
  .l-header-child .l-header__nav ul li a::after {
    background: #333;
  }
  .l-header__nav ul .l-header__nav__accordion a::after {
    background: #000;
  }
  .l-header__nav ul li a:hover::after,
  .l-header__nav ul .l-header__nav__accordion:hover::after {
    transform: scale(1, 1);
  }
  .l-header__nav ul li ul {
    position: absolute;
    display: none;
    width: 250%;
    max-width: 330px;
    top: 45px;
    left: -10px;
    margin: 0;
    padding: 15px;
    background-color: #FFF;
    border: 1px solid #ccc;
    box-shadow: 0 2px 5px 1px rgba(118, 118, 118, 0.3);
    border-radius: 10px;
  }
  .l-header__nav ul li ul li {
    display: inline-block;
    padding: 5px 10px;
  }
  .l-header__nav ul li ul li a {
    display: block;
    padding: 0 15px;
    font-size: clamp(14px, 1.2280701754vw, 17px);
    font-weight: 500;
    color: #333;
    position: relative;
  }
  .l-header__nav ul li ul li a::before {
    position: absolute;
    display: block;
    content: "";
    top: 35%;
    left: -0.3em;
    width: 7px;
    height: 7px;
    border-top: solid 2px #333;
    border-right: solid 2px #333;
    transform: rotate(45deg);
  }
  .l-header__nav ul li ul li a:hover {
    opacity: 1;
  }
  .l-header__nav ul li:hover ul {
    display: block;
  }
  .l-header__info {
    display: flex;
  }
  .l-header__info--tel {
    display: none;
  }
  .l-header__info--mail a {
    display: block;
    height: 40px;
    padding: 12px 20px;
    line-height: 1;
    text-decoration: none;
    text-align: center;
    color: #FFF;
    font-size: 16px;
    box-sizing: border-box;
    background-color: #f85959;
    margin: 0 0 0 10px;
    border-radius: 3px;
  }
  .l-header__info--mail a:hover {
    background-color: #6eb92b;
  }
  /* ハンバーガーメニュー */
  .l-header__menu__button {
    display: none;
  }
}
@media screen and (min-width: 1400px) {
  .l-header__nav ul li {
    padding: 10px 15px;
  }
  .l-header__info--sns {
    display: block;
    font-size: 0;
  }
  .l-header__info--sns a:hover {
    opacity: 0.7;
  }
  .l-header__info--sns img {
    width: 40px;
  }
}
@media screen and (max-width: 1599px) {
  .l-header__info--sns {
    margin-left: auto;
  }
}
@media screen and (min-width: 1630px) {
  .l-header__info--tel {
    display: block;
    margin-left: auto;
    margin-right: 15px;
  }
  .l-header__info--tel a {
    display: block;
    font-size: 25px;
    letter-spacing: 0.05em;
    color: #333;
    text-decoration: none;
    line-height: 1;
    font-family: "Arial", "Century Gothic", sans-serif;
    margin-bottom: 2px;
  }
  .l-header__info--tel i {
    color: #333;
  }
  .l-header__info--tel p {
    color: #333;
    text-align: center;
    font-size: 14px;
    line-height: 1;
  }
}
/*=========================================

* メインビジュアル

==========================================*/
.l-main-visual {
  width: 100%;
  height: calc(100vh - 120px);
  margin: 0 auto;
  background-image: url(../img/main-visual.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 37% 50%;
  position: relative;
}

.l-main-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #f0f0f0;
  opacity: 0.9;
  clip-path: polygon(70% 0, 100% 0, 100% 100%, 40% 100%);
  z-index: 10;
}

.l-main-visual::after {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 15, 51, 0.3);
}

.l-main-visual__inner {
  width: 100%;
  height: 100%;
}

.l-main-visual__content {
  width: 95%;
  margin: 0 auto;
  padding: 2em 0;
  padding-left: 5px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 200;
}

.l-main-visual__title h2 {
  font-size: clamp(25px, 4.5572916667vw, 35px);
  font-weight: 900;
  text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.85);
  line-height: 1.3;
  color: #fff;
}

.l-main-visual__title h2 span {
  display: inline-block;
  margin-bottom: 8px;
  font-size: clamp(35px, 5.859375vw, 45px);
  font-weight: 900;
  color: #FFB200;
  letter-spacing: -0.1rem;
  line-height: 1.2;
  font-family: "Zen Maru Gothic", serif;
}

.l-main-visual__title h2 em {
  display: inline-block;
  font-size: 1.5em;
  font-size: clamp(33px, 5.2083333333vw, 40px);
  font-style: normal;
  font-weight: 900;
}

.l-main-visual__person {
  width: 50%;
  max-width: 220px;
  min-width: 120px;
  position: absolute;
  bottom: 0;
  right: 5px;
  z-index: 100;
}

/* PC */
@media screen and (min-width: 800px) {
  .l-main-visual {
    height: clamp(500px, 48.2456140351vw, 650px);
  }
  .l-main-visual::before {
    clip-path: polygon(70% 0, 100% 0, 100% 100%, 55% 100%);
  }
  .l-main-visual__inner {
    width: 90%;
    max-width: 1400px;
    height: 100%;
    margin: 0 auto;
    position: relative;
  }
  .l-main-visual__content {
    position: absolute;
    justify-content: center;
    height: auto;
    right: 60%;
    top: 50%;
    transform: translate(50%, -50%);
    padding: 0;
  }
  .l-main-visual__title h2 {
    font-size: clamp(30px, 3.0701754386vw, 55px);
  }
  .l-main-visual__title h2 span {
    font-size: clamp(60px, 5.701754386vw, 90px);
    line-height: 1.1;
  }
  .l-main-visual__title h2 em {
    font-size: clamp(45px, 4.3859649123vw, 70px);
  }
  .l-main-visual__person {
    width: 50%;
    max-width: clamp(260px, 26.3157894737vw, 400px);
    right: 0;
  }
}
@media screen and (min-width: 1400px) {
  .l-main-visual__content {
    width: auto;
    align-items: flex-start;
    text-align: left;
    left: 0;
    top: 45%;
    transform: translateY(-50%);
    width: 100%;
  }
}
/*=========================================

* フッター-08

==========================================*/
.l-footer-08 {
  background-color: #F8F8F8;
  border-top: none;
}

.l-footer-08__inner {
  width: 90%;
  margin: 0 auto;
  padding: 20px 0;
}

.l-footer-08__logo img {
  width: 70%;
  margin-bottom: 15px;
}

.l-footer-08__info p:nth-of-type(2) {
  margin-bottom: 20px;
}

.l-footer-08__contact__sns {
  display: flex;
  justify-content: center;
}

.l-footer-08__contact__sns a:hover {
  opacity: 0.7;
}

.l-footer-08__contact__sns img {
  width: 35px;
}

.l-footer-08__contact__sns a:not(:first-child) {
  margin-left: 15px;
}

.l-footer-08__operation {
  margin-top: 20px;
}

.l-footer-08__contact {
  margin-top: 30px;
}

.l-footer-08__contact h3 {
  position: relative;
  width: 100%;
  height: 14px;
  text-align: center;
  border-bottom: 1px solid #000;
}

.l-footer-08__contact h3 span {
  padding: 0 10px;
  font-size: 18px;
  background-color: #f8f8f8;
}

.l-footer-08__contact__shop__info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}

.l-footer-08__contact__shop__tel a {
  font-size: clamp(35px, 5.2083333333vw, 40px);
  font-family: "Arial", sans-serif;
  color: #333;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
}

.l-footer-08__contact__shop__tel i {
  margin-right: 5px;
}

.l-footer-08__contact__inquiry {
  margin-top: 15px;
}

.l-footer-08__contact__inquiry a {
  display: block;
  width: 100%;
  padding: 12px 0;
  color: #6eb92b;
  text-align: center;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #6eb92b;
}

.l-footer-08__contact__inquiry a:hover {
  color: #fff;
  background-color: #6eb92b;
}

/* スマホ */
@media screen and (max-width: 450px) {
  .l-footer-08__info {
    text-align: center;
  }
  .l-footer-08__contact__shop__info {
    flex-direction: column-reverse;
    text-align: center;
  }
}
/* PC */
@media screen and (min-width: 768px) {
  .l-footer-08__inner {
    display: flex;
    justify-content: space-between;
    width: unset;
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 10px;
  }
  .l-footer-08__info {
    padding-top: 5px;
    width: 42%;
  }
  .l-footer-08__logo img {
    width: 60%;
    margin-bottom: 10px;
  }
  .l-footer-08__info p:nth-of-type(2) {
    margin-bottom: 10px;
  }
  .l-footer-08__contact__sns {
    justify-content: flex-start;
  }
  .l-footer-08__contact__sns img {
    width: 40px;
  }
  .l-footer-08__contact__sns a:not(:first-child) {
    margin-left: 10px;
  }
  .l-footer-08__operation {
    margin-top: 15px;
    font-size: 15px;
  }
  .l-footer-08__contact__shop__open {
    width: 45%;
  }
  .l-footer-08__info p {
    font-size: 16px;
  }
  .l-footer-08__contact__shop__tel a {
    font-size: clamp(30px, 3.0701754386vw, 40px);
  }
  .l-footer-08__contact {
    width: 50%;
    margin-top: 0;
  }
  .l-footer-08__contact__inquiry {
    margin-top: 10px;
  }
}
/* フッターナビゲーション
==============================*/
.l-footer-08__nav {
  padding: 20px 10px;
  background-color: #fff;
}

.l-footer-08__nav__inner {
  padding: 0 8px;
}

.l-footer-08__nav__inner ul {
  display: flex;
  flex-wrap: wrap;
}

.l-footer-08__nav__inner li:not(:last-child) {
  margin-right: 30px;
}

.l-footer-08__nav__inner li a {
  font-size: 15px;
  color: #000;
  text-decoration: none;
}

.l-footer-08__nav__inner li a::before {
  content: ">";
  margin-right: 3px;
}

.l-footer-08__nav__inner li a:hover {
  color: #6eb92b;
}

/* PC */
@media screen and (min-width: 768px) {
  .l-footer-08__nav__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
  }
}
/* SP */
@media screen and (max-width: 767px) {
  .btn__page_top {
    display: none !important;
  }
}
/**
 * Section
 */
/*==================================
* Section
==================================*/
.l-section {
  padding: 50px 0;
}

.l-section.l-section--gray {
  background: #F5F5F5;
}

.l-section.l-section--blue {
  background: #f4faef;
}

.l-section.l-section--yellow {
  background: #fbf9ee;
}

.l-section.l-section--beige {
  background: #F5EFE6;
}

.l-section.l-section--stripe {
  background: repeating-linear-gradient(#fefcfa, #fefcfa 20px, #fff 20px, #fff 41px);
}

.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;
  }
}
/* ━━━━━━━━━━━━━━━━

 ■プロジェクト

━━━━━━━━━━━━━━━━ */
/*=================================

* トップ

=================================*/
/*=================================

* 不動産売却

=================================*/
/*
　タイトル（フォントサイズlg）
================================*/
.c-title--large {
  margin-bottom: 30px;
  font-size: 25px;
  font-weight: 900;
}

.c-title--large span {
  font-size: 33px;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-title--large {
    font-size: 40px;
    text-align: center;
  }
  .c-title--large span {
    font-size: 55px;
  }
}
/*
　横3つ並び枠
=================================*/
.p-sell__promise {
  width: 90%;
  margin: 0 auto 40px auto;
}

.p-sell__promise li {
  width: 100%;
  margin-bottom: 15px;
  border: 2px solid #6eb92b;
  box-sizing: border-box;
  padding: 15px;
  border-radius: 8px;
}

.p-sell__promise li h3 {
  font-size: 23px;
  margin-bottom: 10px;
  color: #6eb92b;
  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;
  }
}
/*=================================

* 会社案内

=================================*/
/*
　page-title
================================*/
.p-page-title__company {
  position: relative;
  width: 100%;
  height: 180px;
  border-bottom: 1px solid #333;
}

.p-page-title__company__inner {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.p-page-title__company__inner p {
  margin-bottom: 5px;
  font-size: clamp(35px, 4.5572916667vw, 45px);
  font-weight: bold;
  font-family: "Noto Serif JP", serif;
  color: #333;
}

.p-page-title__company__inner h2 {
  font-size: clamp(18px, 2.34375vw, 27px);
  font-weight: normal;
  color: #333;
}

/* PC */
@media screen and (min-width: 768px) {
  .p-page-title__company {
    height: clamp(180px, 17.5438596491vw, 200px);
  }
  .p-page-title__company__inner p {
    margin-bottom: 0;
    font-size: clamp(45px, 3.9473684211vw, 55px);
  }
  .p-page-title__company__inner h2 {
    font-size: clamp(20px, 1.7543859649vw, 23px);
  }
}
/*
　紹介文
================================*/
.p-company__introduction {
  position: relative;
  background: url(../img/company__introduction__bg.jpg) no-repeat center center/cover;
}

.p-company__introduction::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(248, 247, 247, 0.85);
}

.p-company__introduction__inner {
  position: relative;
  width: 85%;
  margin: 0 auto;
}

.p-company__introduction__inner h2 {
  margin-bottom: 15px;
  font-size: clamp(22px, 2.8645833333vw, 26px);
  font-weight: bold;
  text-align: center;
  color: #333;
}

.p-company__introduction__inner p {
  line-height: 1.8;
  letter-spacing: 0.05em;
}

/* PC */
@media screen and (min-width: 768px) {
  .p-company__introduction__inner {
    max-width: 960px;
  }
  .p-company__introduction__inner h2 {
    margin-bottom: 30px;
    font-size: clamp(23px, 2.0175438596vw, 30px);
  }
  .p-company__introduction__inner p {
    font-size: clamp(16px, 1.4035087719vw, 18px);
  }
}
/*
　共通タイトル
================================*/
.p-company-title {
  position: relative;
  width: 90%;
  margin: 0 auto 50px auto;
  font-size: clamp(22px, 2.8645833333vw, 26px);
  font-weight: bold;
  text-align: center;
  color: #333;
}

.p-company-title::after {
  content: "";
  display: block;
  position: absolute;
  left: calc(50% - 12px);
  bottom: -20px;
  width: 24px;
  border: 2px solid #6eb92b;
  border-radius: 50px;
}

/* PC */
@media screen and (min-width: 768px) {
  .p-company-title {
    width: 100%;
    margin: 0 auto 70px auto;
    font-size: clamp(23px, 2.0175438596vw, 30px);
  }
  .p-company-title::after {
    left: calc(50% - 17px);
    width: 34px;
  }
}
/*
　当社の特徴
================================*/
.p-company__feature {
  padding-top: 15px;
}

.p-company__feature__block {
  width: 90%;
  margin: 0 auto;
}

.p-company__feature__block li {
  position: relative;
  width: 100%;
  border: solid 1px #ccc;
}

.p-company__feature__block li:not(:first-child) {
  margin-top: 30px;
}

.p-company__feature__list-cover {
  position: absolute;
  top: -14px;
  left: 12px;
  width: 80px;
  padding: 8px 0;
  text-align: center;
  color: #fff;
  font-weight: bold;
  background-color: #6eb92b;
}

.p-company__feature__block-no {
  font-size: 1.7rem;
}

.p-company__feature__block li h3 {
  display: flex;
  align-items: center;
  margin-bottom: 0;
  padding: 10px 12px 10px 105px;
  min-height: 80px;
  font-size: clamp(20px, 2.6041666667vw, 25px);
  font-weight: 900;
  border-bottom: solid 1px #ccc;
  box-sizing: border-box;
  color: #222;
  line-height: 1.3;
}

.p-company__feature__list-text {
  padding: 20px;
}

.p-company__feature__list-text p {
  line-height: 1.6;
}

/* PC */
@media screen and (min-width: 768px) {
  .p-company__feature__block {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
  }
  .p-company__feature__block li {
    width: 31%;
    margin-top: 0;
  }
  .p-company__feature__block li:not(:first-child) {
    margin-top: 0;
  }
  .p-company__feature__block li:nth-child(n+4) {
    margin-top: 68px;
  }
  .p-company__feature ul::after {
    display: block;
    content: "";
    width: 31%;
  }
  .p-company__feature__list-cover {
    padding: 18px 0;
  }
  .p-company__feature__block li h3 {
    min-height: 100px;
    padding: 12px 12px 12px 110px;
  }
}
/*
　代表あいさつ
================================*/
.p-company__greeting {
  width: 95%;
  margin: 0 auto;
}

.p-company__greeting h3 {
  margin-bottom: 25px;
  font-size: clamp(24px, 3.125vw, 28px);
  font-weight: 900;
  color: #6eb92b;
  font-family: "Noto Serif JP", serif;
  line-height: 1.5;
}

.p-company__greeting__text p {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.8;
}

.p-company__greeting__img {
  width: 100%;
}

.p-company__greeting__img img {
  display: block;
  width: 100%;
  max-height: 350px;
  margin: 0 auto;
  -o-object-fit: contain;
     object-fit: contain;
}

/* PC */
@media screen and (min-width: 768px) {
  .p-company__greeting {
    width: 100%;
  }
  .p-company__greeting__inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
  }
  .p-company__greeting h3 {
    margin-bottom: 30px;
    font-size: clamp(25px, 2.1929824561vw, 40px);
  }
  .p-company__greeting__text p {
    margin-bottom: 0;
    font-size: clamp(16px, 1.4035087719vw, 17px);
  }
  .p-company__greeting__img {
    width: 100%;
  }
  .p-company__greeting__img img {
    max-height: 500px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
/*
　スタッフ紹介バナー
================================*/
.p-company__banner-staff {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: url(../img/company__banner-staff.jpg) no-repeat center center/cover;
}

.p-company__banner-staff::before {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(12, 55, 94, 0.7);
}

.p-company__banner-staff__inner {
  position: relative;
  width: 90%;
  text-align: center;
}

.p-company__banner-staff__title {
  font-size: clamp(32px, 4.1666666667vw, 40px);
  font-weight: 900;
  color: #fff;
}

.p-company__banner-staff__text {
  margin-top: 20px;
  line-height: 1.6;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}

a.p-company__banner-staff__button {
  display: block;
  max-width: 330px;
  margin: 30px auto 0;
  padding: 10px 10px;
  font-size: clamp(18px, 2.34375vw, 22px);
  font-weight: bold;
  text-decoration: none;
  color: #6eb92b;
  background: #fedb39;
}

a.p-company__banner-staff__button:hover {
  opacity: 0.8;
}

/* PC */
@media screen and (min-width: 768px) {
  .p-company__banner-staff__inner {
    width: 100%;
  }
  .p-company__banner-staff__title {
    font-size: clamp(30px, 2.6315789474vw, 45px);
  }
  .p-company__banner-staff__text {
    font-size: clamp(16px, 1.4035087719vw, 18px);
  }
  a.p-company__banner-staff__button {
    font-size: clamp(17px, 1.4912280702vw, 22px);
  }
}
/* 店舗写真
======================= */
.p-company__image__img {
  width: 100%;
}

.p-company__image__img:not(:first-child) {
  margin-top: 20px;
}

.p-company__image__img img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (min-width: 768px) {
  .p-company__image {
    display: flex;
    justify-content: center;
  }
  .p-company__image__img {
    width: auto;
    margin: 0 10px;
    max-width: 30%;
    min-width: 23%;
  }
  .p-company__image__img:not(:first-child) {
    margin-top: unset;
  }
}
/*
　沿革
================================*/
.p-company__history__list {
  display: flex;
  align-items: flex-start;
  padding: 10px 0;
}

.p-company__history__list:nth-child(even) {
  background: #FFF;
}

.p-company__history__list dt {
  width: 28%;
  padding-left: 2%;
}

.p-company__history__list dd {
  width: 81%;
  padding-right: 2%;
}

.p-company__history__list dt,
.p-company__history__list dd {
  font-size: 14px;
}

/* PC */
@media screen and (min-width: 768px) {
  .p-company__history__list {
    padding: 20px 0;
  }
  .p-company__history__list dt {
    width: 19%;
  }
  .p-company__history__list dt,
  .p-company__history__list dd {
    font-size: 16px;
  }
}
/*
　アクセス
================================*/
.p-company__access {
  padding-bottom: 0 !important;
  font-size: 0;
}

.p-company__access__lead {
  width: 90%;
  margin: 0 auto 30px auto;
  font-size: 16px;
}

/* PC */
@media screen and (min-width: 768px) {
  .p-company__access__lead {
    max-width: 1140px;
    margin: 0 auto 40px auto;
    text-align: center;
  }
}
/*=================================

* マイページ物件リクエスト

=================================*/
/*
　吹き出し付き見出し
================================*/
.p-request__title-balloon {
  margin-bottom: 30px;
  text-align: center;
}

.p-request__title-balloon__inner {
  width: 85%;
  margin: 0 auto;
}

.p-request__title-balloon__inner p {
  position: relative;
  display: inline-block;
  margin-bottom: 30px;
  padding: 12px 25px;
  text-align: center;
  font-size: clamp(16px, 5vw, 28px);
  font-weight: bold;
  color: #fff;
  background: #6eb92b;
  border-radius: 10px;
}

.p-request__title-balloon__inner p::before {
  position: absolute;
  content: "";
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 10px solid transparent;
  border-top: 20px solid #6eb92b;
}

.p-request__title-balloon h2 {
  font-size: clamp(26px, 8.125vw, 35px);
  font-weight: 900;
  color: #000;
}

.p-request__title-balloon h2 em {
  display: inline-block;
  margin-left: 10px;
  font-size: clamp(30px, 9.375vw, 43px);
  font-weight: 900;
  font-style: unset;
  color: #c30d24;
}

/* PC */
@media screen and (min-width: 768px) {
  .p-request__title-balloon {
    margin-bottom: 40px;
  }
  .p-request__title-balloon__inner {
    width: 100%;
  }
  .p-request__title-balloon__inner p {
    font-size: 28px;
  }
  .p-request__title-balloon h2 {
    font-size: clamp(45px, 5.859375vw, 50px);
    line-height: 1.1;
  }
  .p-request__title-balloon h2 em {
    font-size: clamp(55px, 7.1614583333vw, 60px);
  }
}
/*
　概要
================================*/
.p-request__lead {
  width: 95%;
  margin: 0 auto;
}

.p-request__lead h3 {
  margin-bottom: 30px;
  text-align: center;
  font-size: clamp(20px, 6.25vw, 25px);
  font-weight: 900;
  color: #f85959;
}

.p-request__lead p {
  font-weight: bold;
  line-height: 1.7;
}

/* PC */
@media screen and (min-width: 768px) {
  .p-request__lead {
    width: 100%;
  }
  .p-request__lead h3 {
    margin-bottom: 30px;
    font-size: clamp(25px, 2.1929824561vw, 30px);
  }
  .p-request__lead p {
    font-size: 18px;
    text-align: center;
  }
}
/*
　ステップ
================================*/
.p-request__step {
  background-color: #f5f4ef;
}

.p-request__step__inner {
  width: 90%;
  margin: 0 auto 20px auto;
}

.p-request__step__title {
  margin-bottom: 30px;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.3;
  text-align: center;
}

.p-request__step ul li {
  display: flex;
  flex-direction: column;
}

.p-request__step ul li:not(:first-child) {
  margin-top: 30px;
}

.p-request__step__label {
  position: relative;
  padding: 7px;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  background-color: #6eb92b;
  border-radius: 10px;
}

.p-request__step__label::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  border-style: solid;
  border-width: 15px 10px 0 10px;
  border-color: #6eb92b transparent transparent transparent;
  z-index: 10;
}

.p-request__step__card-body {
  flex: 1;
  height: auto;
  margin-top: 25px;
  padding: 30px 20px 20px 20px;
  border-radius: 10px;
  background-color: #FFF;
  box-sizing: border-box;
}

.p-request__step__card_title {
  font-size: clamp(23px, 2.9947916667vw, 30px);
  font-weight: 900;
  text-align: center;
  color: #6eb92b;
}

.p-request__step__card-body img {
  display: block;
  margin: 20px auto;
  width: 80px;
  height: 80px;
}

.p-request__step__card_text {
  font-size: 16px;
  line-height: 1.7;
}

/* PC */
@media screen and (min-width: 768px) {
  .p-request__step__inner {
    width: 100%;
    max-width: 1200px;
  }
  .p-request__step__title {
    margin-bottom: 50px;
    font-size: clamp(25px, 2.1929824561vw, 35px);
  }
  .p-request__step ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .p-request__step ul li {
    width: 31.5%;
  }
  .p-request__step ul li:not(:first-child) {
    margin-top: 0;
  }
  .p-request__step__card-body {
    padding: 30px 25px 25px 25px;
  }
  .p-request__step__card_title {
    font-size: clamp(20px, 1.7543859649vw, 27px);
  }
  .p-request__step__card-body img {
    margin: 20px auto 30px auto;
  }
}
/*
　ご登録の流れ
================================*/
.p-request__flow-title {
  margin-bottom: 30px;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.3;
  text-align: center;
}

.p-request__flow {
  width: 95%;
  margin: 0 auto;
}

.p-request__flow__unit {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin: 25px auto 50px auto;
}

.p-request__flow__unit:not(:first-child)::before {
  content: "\f078";
  position: absolute;
  top: -60%;
  left: 50%;
  font-family: FontAwesome;
  font-size: 32px;
  font-weight: normal;
  color: #333;
}

.p-request__flow__unit__image {
  display: block;
  width: 100px;
}

.p-request__flow__unit__image img {
  width: 100px;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-request__flow__unit__text {
  width: calc(100% - 115px);
}

.p-request__flow__unit__text h3 {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 900;
  color: #6eb92b;
}

.p-request__flow__unit__text p {
  font-size: 16px;
}

/* PC */
@media screen and (min-width: 768px) {
  .p-request__flow-title {
    margin-bottom: 50px;
    font-size: clamp(25px, 2.1929824561vw, 35px);
  }
  .p-request__flow {
    width: 100%;
  }
  .p-request__flow ul {
    display: flex;
    justify-content: space-between;
  }
  .p-request__flow__unit {
    display: block;
    width: 25%;
    margin: 0 auto;
  }
  .p-request__flow__unit__image {
    width: 100%;
    margin-bottom: 20px;
    text-align: center;
  }
  .p-request__flow__unit__image img {
    width: clamp(135px, 11.8421052632vw, 180px);
    height: clamp(135px, 11.8421052632vw, 180px);
  }
  .p-request__flow__unit:not(:first-child)::before {
    content: "\f054";
    top: 23%;
    left: -17%;
  }
  .p-request__flow__unit__text {
    width: 100%;
    margin: 0 auto;
  }
  .p-request__flow__unit__text h3 {
    text-align: center;
    font-size: 22px;
  }
}
/*
　希望条件登録
================================*/
.p-request__induction {
  width: 100%;
  margin-bottom: 30px;
  padding-bottom: 20px;
  box-sizing: content-box;
  clip-path: polygon(0 0, 100% 0, 100% 75%, 50% 100%, 0 75%, 0 0);
  background-color: #6eb92b;
}

.p-request__induction__inner {
  display: flex;
  align-items: center;
  align-content: flex-start;
  justify-content: center;
  width: 90%;
  margin: 0 auto;
  padding: 4% 0 2% 0;
}

.p-request__induction__inner h2 {
  text-align: center;
  font-size: 24px;
  font-weight: 900;
  color: #fff;
}

/* PC */
@media screen and (min-width: 768px) {
  .p-request__induction {
    margin-bottom: 50px;
    padding-bottom: 30px;
  }
  .p-request__induction__inner {
    max-width: 1140px;
    padding: 25px 0 15px 0;
  }
  .p-request__induction__inner h2 {
    font-size: clamp(35px, 5vw, 45px);
  }
}