@charset "UTF-8";


/* ━━━━━━━━━━━━━━━━

 ■初期化

━━━━━━━━━━━━━━━━ */
body {
  font-family: "Noto Sans JP", 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.5rem !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 #0b3c5d;
  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: #0b3c5d;
  font-weight: bold;
}

.c-button::after {
  background: #0b3c5d;
  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: #0b3c5d;
  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: #c6a15b;
  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: #2d2d2d;
}

@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: #0b3c5d;
}

/* 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: #0b3c5d;
}

/* 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: #0b3c5d;
  margin-bottom: 30px;
}

.c-title-02--color-2 {
  color: #c6a15b;
}

/* 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: #0b3c5d;
  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: #0b3c5d;
}

.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: #0b3c5d;
}

.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 #0b3c5d;
  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: #0b3c5d;
  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: #0b3c5d transparent transparent transparent;
}

.c-title-count-01 span {
  font-size: 50px;
  position: absolute;
  bottom: 0;
  right: -100px;
  display: block;
  padding-left: 16px;
  color: #0b3c5d;
  font-family: "Arial", "Noto Sans JP", 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: #0b3c5d;
  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 #0b3c5d;
  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: #0b3c5d;
}

.c-title-bg-01 h2,
.c-title-bg-01--color-2 h2,
.c-title-bg-01--sm h2,
.c-title-bg-01--color-2--sm h2,
.c-title-bg-01 h3,
.c-title-bg-01--color-2 h3,
.c-title-bg-01--sm h3,
.c-title-bg-01--color-2--sm h3 {
  font-size: clamp(27px, 4.1666666667vw, 32px);
  color: #fff;
  font-weight: 900;
  line-height: 1.5;
}

.c-title-bg-01--color-2,
.c-title-bg-01--color-2--sm {
  background: #c6a15b;
}

.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: #0b3c5d;
}

.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);
  }
}
/*
　ページタイトル-10
================================*/
.c-page-title-10 {
  position: relative;
  width: 100%;
  height: 180px;
  border-bottom: 1px solid #333;
}

.c-page-title-10__inner {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.c-page-title-10__inner p {
  margin-bottom: 5px;
  font-size: clamp(35px, 4.5572916667vw, 45px);
  font-weight: bold;
  font-family: "Noto Serif JP", serif;
  color: #333;
}

.c-page-title-10__inner h2 {
  font-size: clamp(18px, 2.34375vw, 27px);
  font-weight: normal;
  color: #333;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-page-title-10 {
    height: clamp(180px, 17.5438596491vw, 200px);
  }
  .c-page-title-10__inner p {
    margin-bottom: 0;
    font-size: clamp(45px, 3.9473684211vw, 55px);
  }
  .c-page-title-10__inner h2 {
    font-size: clamp(20px, 1.7543859649vw, 23px);
  }
}
/*
　会社概要-02
================================*/
.c-company-02__detail {
  width: 95%;
  max-width: 1140px;
  margin: 0 auto;
}

.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: #0b3c5d;
    border-radius: 3px;
    color: #FFF;
}

.c-company-02__detail__data-type {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.c-company-02__detail__data-type--buy span,
.c-company-02__detail__data-type--rent span {
    margin-right: 5px;
    padding: 2px 5px;
    font-size: 14px;
    background-color: #cc0000;
    border-radius: 3px;
    color: #FFF;
}

.c-company-02__detail__data-type--rent span {
    background-color: #0066cc;
}

/* 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;
    }

    .c-company-02__detail__data-type--buy span,
    .c-company-02__detail__data-type--rent span {
        margin-right: 7px;
        padding: 2px 10px 4px 10px;
        font-size: 16px;
    }
}

/*
　お知らせ-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: #0b3c5d;
  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: #0b3c5d;
    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: #0b3c5d;
    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: #c6a15b;
  }
  .c-news-list-01__button__pc .fa {
    margin-left: 10px;
  }
  .c-news-list-01__button__sp {
    display: none;
  }
}
/*
　概要-04
================================*/
.c-about-04 {
  padding: 80px 0;
  background: url(../img/about__background.svg);
  background-position: 20% 50%;
  background-size: cover;
}

.c-about-04__inner {
  display: block;
  padding: 0 5%;
}

.c-about-04__title {
  position: relative;
}

.c-about-04__title span {
  font-size: 40px;
  line-height: 1;
  letter-spacing: 0.06em;
}

.c-about-04__title h2 {
  margin-top: 15px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.42;
  letter-spacing: 0.24em;
}

.c-about-04__text {
  width: 100%;
  margin-top: 30px;
}

.c-about-04__text p {
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0.15em;
  font-weight: 500;
  margin-bottom: 15px;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-about-04 {
    padding: 120px 0 100px 0;
  }
  .c-about-04__inner {
    display: flex;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0;
  }
  .c-about-04__title {
    flex-shrink: 0;
    width: 33%;
    padding: 0 5% 0 1%;
    box-sizing: border-box;
  }
  .c-about-04__title span {
    font-size: 55px;
    letter-spacing: 0.1rem;
  }
  .c-about-04__title h2 {
    margin: 15px 0 40px 0;
    font-size: 17px;
    letter-spacing: 0.27em;
  }
  .c-about-04__text {
    margin-top: -8px;
  }
  .c-about-04__text p {
    font-size: 16px;
    line-height: 2.2;
  }
}
/*
　ボタン-01
================================*/
.c-button-01 {
  margin-top: 20px;
}

.c-button-01 a {
  position: relative;
  display: inline-block;
  margin-bottom: 10px;
  padding: 1em 2em;
  transition: all 0.2s ease;
  border: none;
  background: none;
  text-decoration: none;
}

.c-button-01 a:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  display: block;
  border-radius: 100vh;
  background: #F2EAD3;
  width: 3.3em;
  height: 3.3em;
  transition: all 0.3s ease;
}

.c-button-01 a span {
  position: relative;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #333;
  font-size: 16px;
}

.c-button-01 a svg {
  position: relative;
  top: -1px;
  margin-left: 10px;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke: #333;
  stroke-width: 2;
  transform: translateX(-5px);
  transition: all 0.3s ease;
}

.c-button-01 a:hover:before {
  width: calc(100% + 1em);
}

.c-button-01 a:hover svg {
  transform: translateX(0);
}

.c-button-01 a:active {
  transform: scale(0.95);
}

/* PC */
@media screen and (min-width: 769px) {
  .c-button-01 a {
    margin-bottom: 15px;
    margin-right: 25px;
    padding: 1em 1.5em;
  }
  .c-button-01 a span {
    font-size: 19px;
  }
  .c-button-01 a:before {
    width: 3.5em;
    height: 3.5em;
  }
}
/*
　メニュー-15
================================*/
.c-menu-15 ul li {
  width: 90%;
  margin: 0 auto;
}

.c-menu-15 ul li:not(:first-child) {
  margin-top: 50px;
}

.c-menu-15 ul li a {
  text-decoration: none;
  color: #000;
}

.c-menu-15__image {
  overflow: hidden;
  border-radius: clamp(22px, 9.765625vw, 75px);
  font-size: 0;
}

.c-menu-15__image img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 3/2;
  transition: 0.7s;
}

.c-menu-15 h3 {
  display: flex;
  align-items: center;
  margin-top: 20px;
  font-size: clamp(22px, 4.1666666667vw, 32px);
  font-weight: bold;
  transition: 0.7s;
  letter-spacing: 0.2em;
}

.c-menu-15__arrow {
  position: relative;
  width: 30px;
  height: 30px;
  margin-left: 15px;
  border: 2px solid #000;
  border-radius: 50%;
  box-sizing: border-box;
}

.c-menu-15__arrow i {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  left: 6px;
  font-size: 18px;
  transition: 0.7s;
}

.c-menu-15 p {
  margin-top: 15px;
  font-size: clamp(16px, 3.125vw, 24px);
  transition: 0.7s;
}

.c-menu-15 ul li:hover .c-menu-15__arrow {
  background-color: #0b3c5d;
  border: 2px solid #0b3c5d;
}

.c-menu-15 ul li:hover .c-menu-15__image img {
  transform: scale(1.2);
}

.c-menu-15 ul li:hover h3,
.c-menu-15 ul li:hover p {
  color: #0b3c5d;
}

.c-menu-15 ul li:hover .c-menu-15__arrow i {
  color: #fff;
  border-color: #0b3c5d;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-menu-15 {
    width: 95%;
    max-width: 1400px;
    margin: 0 auto 20px auto;
  }
  .c-menu-15 ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .c-menu-15 ul::after {
    content: "";
    display: block;
    width: 30%;
  }
  .c-menu-15 ul li {
    width: 30%;
    margin: 0;
  }
  .c-menu-15 ul li:not(:first-child) {
    margin-top: 0;
  }
  .c-menu-15 ul li:nth-child(n+4) {
    margin-top: 100px;
  }
  .c-menu-15__image {
    border-radius: 2rem;
  }
  .c-menu-15 h3 {
    margin-top: 25px;
    font-size: clamp(23px, 2.24vw, 28px);
  }
  .c-menu-15__arrow {
    width: 35px;
    height: 35px;
    margin-left: 20px;
  }
  .c-menu-15__arrow i {
    left: 7px;
    font-size: 20px;
  }
  .c-menu-15 p {
    font-size: clamp(16px, 1.44vw, 18px);
  }
}
/*
　ブログリスト-03
================================*/
.c-blog-list-03 li {
  margin: 30px auto;
}

.c-blog-list-03 li a {
  display: flex;
  justify-content: space-between;
}

.c-blog-list-03__image {
  width: 30%;
  position: relative;
  padding-top: 20%;
  overflow: hidden;
}

.c-blog-list-03__image img {
  position: absolute;
  top: 50%;
  width: 100%;
  height: auto;
  transform: translateY(-50%);
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-blog-list-03__text {
  width: 65%;
}

.c-blog-list-03__title {
  color: #111;
  margin-bottom: 10px;
  transition-duration: 0.2s;
}

.c-blog-list-03__date {
  font-size: 14px;
  color: #7F7F7F;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-blog-list-03 {
    margin-bottom: 30px;
  }
  .c-blog-list-03 li {
    margin: 0;
  }
  .c-blog-list-03 li:nth-child(1) {
    position: relative;
    width: 58%;
    float: left;
    margin-right: 30px;
  }
  .c-blog-list-03 li:nth-child(n+2) {
    width: 38%;
    float: right;
  }
  .c-blog-list-03 a {
    text-decoration: none;
  }
  .c-blog-list-03 a:hover {
    opacity: 0.7;
  }
  .c-blog-list-03 li:nth-child(n+2) a {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
  }
  .c-blog-list-03 li:nth-child(1) .c-blog-list-03__image {
    width: 100%;
    padding-top: 66%;
  }
  .c-blog-list-03 li:nth-child(1) .c-blog-list-03__text {
    position: absolute;
    right: 0;
    bottom: -10px;
    padding: 20px 30px;
    width: 75%;
    background-color: #FFF;
  }
  .c-blog-list-03 li:nth-child(1) .c-blog-list-03__title {
    font-size: clamp(16px, 1.4035087719vw, 18px);
    font-weight: 500;
  }
  .c-blog-list-03 li:nth-child(n+2) .c-blog-list-03__image {
    width: 28%;
    padding-top: 18%;
  }
  .c-blog-list-03 li:nth-child(n+2) .c-blog-list-03__text {
    width: 68%;
  }
  .c-blog-list-03__date {
    font-size: 13px;
  }
  .c-blog-list-03 li:nth-child(1) .c-blog-list-03__date {
    font-size: clamp(13px, 1.1403508772vw, 16px);
    font-weight: 500;
  }
  .c-blog-list-03::after {
    content: "";
    display: block;
    clear: both;
  }
}
/*
　特徴（交互）-02
================================*/
.c-feature-swap-02__inner {
  padding: 0 8px;
}

.c-feature-swap-02__card {
  margin-bottom: 50px;
}

.c-feature-swap-02__card__img {
  position: relative;
  width: 100%;
  max-height: 350px;
}

.c-feature-swap-02__card__img:before {
  content: "";
  display: block;
  padding-top: 51.22%;
}

.c-feature-swap-02__card__img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-feature-swap-02__card__text h3 {
  padding: 20px 0;
  text-align: center;
  color: #1b1464;
  font-size: 20px;
}

.c-feature-swap-02__card__text p {
  font-size: clamp(14px, 4vw, 16px);
}

/* PC */
@media screen and (min-width: 768px) {
  .c-feature-swap-02 {
    overflow: hidden;
  }
  .c-feature-swap-02__inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0;
  }
  .c-feature-swap-02__card {
    display: flex;
    margin-bottom: 80px;
  }
  .c-feature-swap-02__flex-reverse {
    flex-direction: row-reverse;
  }
  .c-feature-swap-02__outside--right {
    flex: 1;
    margin-right: calc(50% - 50vw);
  }
  .c-feature-swap-02__outside--left {
    flex: 1;
    margin-left: calc(50% - 50vw);
  }
  .c-feature-swap-02__card__img {
    width: 50%;
    max-height: 382px;
  }
  .c-feature-swap-02__card__text {
    box-sizing: border-box;
    width: 50%;
    padding: 0 30px;
  }
  .c-feature-swap-02__card__text h3 {
    padding: 0 0 30px;
    text-align: left;
    font-size: 24px;
    font-weight: 600;
  }
  .c-feature-swap-02__card__text p {
    line-height: 1.9;
  }
}
/*
　物件情報-01
================================*/
.c-estate-list-col1-01 {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 24px;
}

.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: #0b3c5d;
  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 JP", 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);
  }
}
/*
　物件情報-02
================================*/
.c-estate-list-col3-02,
.c-estate-list-col3-02--gray {
  width: 95%;
  margin: 0 auto;
}

.c-estate-list-col3-02 li,
.c-estate-list-col3-02--gray li {
  position: relative;
  margin-bottom: 30px;
  border-radius: 10px;
}

/* テキスト部分の背景：白色 */
.c-estate-list-col3-02 li {
  background-color: #fff;
}

/* テキスト部分の背景：灰色 */
.c-estate-list-col3-02--gray li {
  background-color: #f5f5f5;
}

.c-estate-list-col3-02 a,
.c-estate-list-col3-02--gray a {
  display: block;
  height: 100%;
  text-decoration: none;
  color: #000;
}

.c-estate-list-col3-02__image {
  position: relative;
}

.c-estate-list-col3-02__image img {
  display: block;
  width: 100%;
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px 10px 0 0;
}

.c-estate-list-col3-02__type {
  position: absolute;
  bottom: -15px;
  left: 10px;
  display: inline-block;
  padding: 5px 10px;
  text-align: center;
  font-size: 15px;
  font-weight: bold;
  background: #0b3c5d;
  color: #fff;
}

.c-estate-list-col3-02__textarea {
  padding: 25px 20px 20px 20px;
}

.c-estate-list-col3-02__name {
  font-weight: bold;
  margin-bottom: 5px;
}

.c-estate-list-col3-02__access {
  margin-bottom: 5px;
  font-size: 14px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.c-estate-list-col3-02__price {
  margin-bottom: 5px;
  font-size: 22px;
  font-weight: bold;
}

.c-estate-list-col3-02__price span {
  font-size: 17px;
}

.c-estate-list-col3-02__catchcopy {
  line-height: 1.3;
  font-size: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.c-estate-list-col3-02__label {
  position: absolute;
  top: 10px;
  right: 10px;
  display: block;
  padding: 14px 2px;
  text-align: center;
  width: 55px;
  height: 55px;
  background: #f4de51;
  border-radius: 50px;
  box-sizing: border-box;
}

.c-estate-list-col3-02__label span {
  color: #555;
  font-size: 12px;
  font-weight: bold;
}

.c-estate-list-col3-02__label span[data-label*=販売停止] {
  font-weight: bold;
  color: #ff0000;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-estate-list-col3-02,
  .c-estate-list-col3-02--gray {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
  }
  .c-estate-list-col3-02::after,
  .c-estate-list-col3-02--gray::after {
    content: "";
    display: block;
    width: 31%;
  }
  .c-estate-list-col3-02 li,
  .c-estate-list-col3-02--gray li {
    width: 31%;
    margin-bottom: 50px;
  }
  .c-estate-list-col3-02 a:hover,
  .c-estate-list-col3-02--gray a:hover {
    opacity: 0.6;
  }
  .c-estate-list-col3-02__type {
    left: 20px;
  }
  .c-estate-list-col3-02__textarea {
    padding: 30px 25px 25px 25px;
  }
  .c-estate-list-col3-02__name {
    font-size: 18px;
  }
  .c-estate-list-col3-02__access,
  .c-estate-list-col3-02__catchcopy {
    font-size: 16px;
  }
  .c-estate-list-col3-02__label {
    top: 12px;
    right: 12px;
    padding: 13px 2px;
  }
}
/* ━━━━━━━━━━━━━━━━

 ■レイアウト

━━━━━━━━━━━━━━━━ */
/*=========================================

* header-16

==========================================*/
html {
  scroll-padding-top: 80px;
}

.l-header-16 {
  position: relative;
  width: 100%;
  height: 70px;
  margin: 0;
}

.l-header-16__wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 70px;
  background-color: #fff;
  padding: 2px 5px 3px 5px;
  box-sizing: border-box;
  z-index: 99;
  transition: all 0.3s ease;
}
.l-header-16__wrapper.is-active {
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100%;
  transform: none;
}

.l-header-16 h1 {
  font-size: 12px;
  margin-bottom: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.l-header-16__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.l-header-16__logo {
  max-width: 200px;
}

.l-header-16__logo a {
  display: block;
  font-size: 0;
}

.l-header-16__logo img {
  width: 100%;
}

.l-header-16__menu {
  display: none;
}

/* ハンバーガーメニュー */
.l-header-16__menu__button {
  position: absolute;
  display: block;
  top: 55%;
  right: 15px;
  transform: translate(0, -50%);
  z-index: 99;
}

.l-header-16__menu__button a {
  display: block;
  text-align: center;
  text-decoration: none;
  color: #1f2a34;
}

.l-header-16__menu__button i {
  font-size: 35px;
}

.l-header-16__sp-menu {
  position: fixed;
  top: 0;
  left: 0;
  transform: translateY(min(-100%, -1000px));
  width: 100%;
  height: 100%;
  padding: 90px 20px 65px 20px;
  transition: transform 0.5s;
  background: #fefefe;
  z-index: 60;
  box-sizing: border-box;
  overflow: auto;
}

.l-header-16__sp-menu.__open {
  transform: translateY(0);
  transition: transform 0.5s;
}

.l-header-16__sp-menu ul li {
  width: 100%;
  height: auto;
  border-top: 1px solid #919191;
}

.l-header-16__sp-menu ul li:hover {
  background: #747474;
}

.l-header-16__sp-menu ul li:last-child {
  border-bottom: 1px solid #919191;
}

.l-header__sp-menu__mypage li {
    border-top: none !important;
}

.l-header-16__sp-menu ul li a {
  display: block;
  width: 100%;
  height: 3em;
  margin-left: 1em;
  line-height: 3em;
  text-decoration: none;
  font-size: 1em;
  color: #0b3c5d;
}

.l-header-16__sp-menu ul li a:hover {
  color: #fff;
}

.l-header-16__sp-menu--tel a,
.l-header-16__sp-menu--mail a {
  display: block;
  text-align: center;
}

.l-header-16__sp-menu--tel p {
  text-align: center;
  font-size: 16px;
  color: #5f5f5f;
}

.l-header-16__sp-menu--tel a {
  margin-top: 50px;
  text-decoration: none;
  line-height: 1;
  font-family: "Arial", "Noto Sans JP", sans-serif;
  font-weight: bold;
  font-size: 32px;
  color: #0b3c5d;
}

.l-header-16__sp-menu--mail a {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  max-width: 450px;
  width: 100%;
  margin: 30px auto;
  padding: 30px;
  text-decoration: none;
  font-size: 16px;
  color: #FFF;
  background-color: #0b3c5d;
}

.l-header-16__sp-menu--mail a span {
  font-size: 25px;
  font-weight: bold;
}

.l-header-16__sp-menu--mail a:hover {
  background: #2d2d2d;
}

@media print {
  .l-header-16__sp-menu {
    display: none;
  }
}
@media screen and (min-width: 900px) {
  html {
    scroll-padding-top: 140px;
  }
  .l-header-16 {
    height: 120px;
    /*&.is-active {
        height: 70px;
    }*/
  }
  .l-header-16__wrapper {
    height: 120px;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0;
  }
  .l-header-16__wrapper.is-active {
    position: fixed;
    height: 70px;
  }
  .l-header-16__wrapper.is-active .l-header-16__inner {
    padding: 10px;
  }
  .l-header-16__wrapper.is-active .l-header-16__logo {
    margin-top: 0;
    max-width: clamp(200px, 20.1754385965vw, 260px);
  }
  .l-header-16 h1 {
    margin-bottom: 10px;
    font-size: 14px;
  }
  .l-header-16 h1.is-active {
    display: none;
  }
  .l-header-16__logo {
    margin-top: 5px;
    max-width: clamp(280px, 28.0701754386vw, 320px);
  }
  .l-header-16__menu {
    display: block;
  }
  .l-header-16__menu__inner {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 5px;
  }
  .l-header-16__menu__inner.is-active {
    display: none;
  }
  .l-header-16__menu__info {
    display: flex;
    gap: 5px;
    justify-content: center;
    align-items: center;
    margin-top: 15px;
    margin-right: 10px;
  }
  .l-header-16__menu__info a {
    text-decoration: none;
    color: #FFF;
    padding: 6px 15px 5px 15px;
    font-size: 13px;
    display: inline-block;
    box-sizing: border-box;
    background: #0b3c5d;
  }
  .l-header-16__menu__info a:hover {
    opacity: 0.7;
  }
  .l-header-16__menu__tel {
    text-align: left;
  }
  .l-header-16__menu__tel p {
    margin-top: 0;
    font-size: 12px;
  }
  .l-header-16__menu__tel a {
    display: block;
    font-size: 30px;
    color: #000;
    text-decoration: none;
    letter-spacing: 1.5px;
    font-family: "Century Gothic", "arial", "Yu Gothic", "メイリオ", "Meiryo", sans-serif;
    line-height: 1;
  }
  .l-header-16__nav {
    display: flex;
    align-items: center;
  }
  .l-header-16__nav ul {
    display: flex;
  }
  .l-header-16__nav li a {
    padding: 0 15px;
    text-decoration: none;
    color: #000;
    font-size: clamp(14px, 1.2280701754vw, 16px);
  }
  .l-header-16__nav li:last-child a {
    padding-right: 0;
  }
  .l-header-16__nav li a:hover {
    color: #0b3c5d;
    text-decoration: underline;
  }
  .l-header-16__inquiry-button {
    display: none;
  }
  .l-header-16__inquiry-button.is-active {
    display: block;
  }
  .l-header-16__inquiry-button a {
    text-decoration: none;
    color: #fff;
    margin-left: 15px;
    padding: 6px 15px 5px 15px;
    font-size: clamp(14px, 1.2280701754vw, 16px);
    display: inline-block;
    box-sizing: border-box;
    background: #0b3c5d;
  }
  .l-header-16__inquiry-button:hover {
    opacity: 0.7;
  }
  /* ハンバーガーメニュー */
  .l-header-16__menu__button {
    display: none;
  }
}
/*=========================================

* main-visual

==========================================*/
.l-main-visual {
  position: relative;
  width: 100%;
  height: calc(100vh - 70px);
  background: url(../img/main-visual--01.jpg);
  background-repeat: no-repeat;
  background-position: 30%;
  background-size: cover;
}

.l-main-visual__text {
  position: absolute;
  width: 90%;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  text-shadow: 1px 2px 2px #000;
}

.l-main-visual__text h2 {
  font-size: clamp(24px, 3.6458333333vw, 28px);
  color: #fff;
  font-weight: bold;
  line-height: 1.5;
}

@media screen and (min-width: 768px) {
  .l-main-visual {
    height: 550px;
  }
  .l-main-visual__text {
    top: 90px;
  }
  .l-main-visual__text h2 {
    font-size: 28px;
    text-align: center;
  }
}
/**
 * Section
 */
/*==================================
* Section
==================================*/
.l-section {
  padding: 50px 0;
}

.l-section.l-section--gray {
  background: #F5F5F5;
}

.l-section.l-section--blue {
  background: #eaf3f9;
}

.l-section.l-section--yellow {
  background: #fbf9ee;
}

.l-section__container {
  padding: 0 8px;
}

/* PC */
@media screen and (min-width: 768px) {
  .l-section {
    padding: 80px 0;
  }
  .l-section__container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0;
  }
}
/*=========================================

* フッター-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__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: #c6a15b;
  text-align: center;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #c6a15b;
}

.l-footer-08__contact__inquiry a:hover {
  color: #fff;
  background-color: #c6a15b;
}

/* スマホ */
@media screen and (max-width: 450px) {
  .l-footer-08__info {
    text-align: center;
  }
  .l-footer-08__contact__shop__info {
    flex-direction: column-reverse;
    text-align: center;
  }
}
/* PC */
@media screen and (min-width: 768px) {
  .l-footer-08__inner {
    display: flex;
    justify-content: space-between;
    width: unset;
    max-width: 1140px;
    margin: 0 auto;
    padding: 20px 10px;
  }
  .l-footer-08__info {
    padding-top: 5px;
    width: 40%;
  }
  .l-footer-08__logo 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: 30px;
  }
  .l-footer-08__contact__sns a:not(:first-child) {
    margin-left: 10px;
  }
  .l-footer-08__contact__shop__open {
    width: 45%;
  }
  .l-footer-08__info p {
    font-size: 17px;
  }
  .l-footer-08__contact__shop__tel a {
    font-size: clamp(30px, 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;
}

/* PC */
@media screen and (min-width: 768px) {
  .l-footer-08__nav__inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0;
  }
}
/* SP */
@media screen and (max-width: 767px) {
  .btn__page_top {
    display: none !important;
  }
}
/* ━━━━━━━━━━━━━━━━

 ■プロジェクト

━━━━━━━━━━━━━━━━ */
/*=================================

* トップ

=================================*/
/*=================================

* 代表挨拶

=================================*/
/*
　代表挨拶タイトル
================================*/
.p-greeting-title {
  position: relative;
  text-align: center;
  font-weight: bold;
  margin-bottom: 30px;
  padding: 30px 0 20px 0;
}

.p-greeting-title span {
  position: relative;
  font-size: clamp(26px, 3.3854166667vw, 35px);
  letter-spacing: 0.05em;
  line-height: 1.5;
  z-index: 2;
}

.p-greeting-title::before {
  content: attr(data-en);
  position: absolute;
  top: 2px;
  left: 50%;
  transform: translateX(-50%);
  color: #0b3c5d;
  opacity: 0.1;
  font-size: clamp(47px, 6.1197916667vw, 60px);
  font-weight: normal;
  font-family: "Noto Serif JP", serif;
  font-style: italic;
  z-index: 1;
}

.p-greeting-title::after {
  position: absolute;
  content: "";
  width: 50px;
  height: 1px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #333;
}

/* PC */
@media screen and (min-width: 768px) {
  .p-greeting-title {
    margin-bottom: 60px;
  }
  .p-greeting-title span {
    font-size: clamp(25px, 2.1929824561vw, 35px);
  }
  .p-greeting-title::before {
    top: -40px;
    font-size: clamp(65px, 5.701754386vw, 85px);
    letter-spacing: -3px;
  }
}
/*
　メッセージ
================================*/
.p-greeting__message {
  position: relative;
  background: url(../img/greeting-title__image.jpg);
  background-repeat: no-repeat;
  background-position: 97% center;
  background-size: cover;
  height: 300px;
  margin-bottom: 130px;
  z-index: -1;
}

.p-greeting__message__inner {
  position: absolute;
  top: 300px;
  width: 100%;
  padding: 25px 10px;
  border-bottom: 1px solid #CCC;
  text-align: center;
  box-sizing: border-box;
}

.p-greeting__message__inner h3 {
  font-size: clamp(24px, 3.2552083333vw, 35px);
  letter-spacing: 0.05em;
  color: #fff;
  text-shadow: 0 0 8px #000;
  line-height: 1.5;
}

/* PC */
@media screen and (min-width: 768px) {
  .p-greeting__message {
    background-position: center 30%;
    max-width: 1250px;
    height: clamp(500px, 43.8596491228vw, 600px);
    margin: 0 auto -80px auto;
  }
  .p-greeting__message__inner {
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: clamp(800px, 70.1754385965vw, 1000px);
    text-align: left;
    border-bottom: none;
  }
  .p-greeting__message__inner h3 {
    font-size: clamp(35px, 3.0701754386vw, 45px);
    line-height: 1.8;
  }
}
/*
　インタビュー
================================*/
.p-greeting__block {
  width: 90%;
  margin: 0 auto;
  background-color: #FFF;
}

.p-greeting__text {
  width: 100%;
  margin: 0 auto 50px auto;
  letter-spacing: 0.1em;
}

.p-greeting__text:first-child {
  padding-top: 40px;
}

.p-greeting__text h2 {
  margin-bottom: 15px;
  font-size: clamp(20px, 2.6041666667vw, 25px);
  font-weight: bold;
  color: #0b3c5d;
  line-height: 1.4;
}

.p-greeting__text p {
  font-size: 15px;
  line-height: 1.8;
}

.p-greeting__name {
  width: 95%;
  margin: 0 auto;
  text-align: right;
  letter-spacing: 0.1em;
}

/* PC */
@media screen and (min-width: 768px) {
  .p-greeting__block {
    max-width: 1050px;
  }
  .p-greeting__text {
    max-width: 900px;
    margin: 0 auto 60px auto;
  }
  .p-greeting__text:first-child {
    padding-top: 60px;
  }
  .p-greeting__text h2 {
    font-size: clamp(20px, 1.7543859649vw, 25px);
  }
  .p-greeting__text p {
    font-size: 16px;
  }
  .p-greeting__name {
    max-width: 900px;
  }
}
/*
　プロフィール
================================*/
.p-greeting__profile {
  width: 90%;
  margin: 0 auto;
  padding: 20px;
  border: 5px solid #eeeef2;
  box-sizing: border-box;
}

.p-greeting__profile h2 {
  margin-bottom: 10px;
  font-size: 17px;
  font-weight: bold;
  color: #333;
  line-height: 1;
  letter-spacing: 0.1em;
}

.p-greeting__profile p {
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0.1em;
}

/* PC */
@media screen and (min-width: 768px) {
  .p-greeting__profile {
    max-width: 900px;
    padding: 30px;
  }
  .p-greeting__profile h2 {
    margin-bottom: 15px;
    font-size: clamp(16px, 1.4035087719vw, 17px);
  }
  .p-greeting__profile p {
    font-size: clamp(15px, 1.3157894737vw, 16px);
  }
}
/*=================================

* 会社案内

=================================*/
/*
　紹介文
================================*/
.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;
  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);
    text-align: center;
  }
  .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 #0b3c5d;
  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: #0b3c5d;
}

.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: #0b3c5d;
    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__ceo-signature {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}

.p-company__greeting__ceo-title {
    font-size: 16px;
    margin-top: 6px;
}

.p-company__greeting__ceo-signature img {
    width: 100px;
}

.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: 70%;
    }

    .p-company__greeting__inner {
        display: flex;
        justify-content: center;
        align-items: flex-start;
    }

    .p-company__greeting h3 {
        margin-bottom: 30px;
        font-size: clamp(25px, 2.1929824561vw, 36px);
        text-align: center;
    }

    .p-company__greeting__text p {
        margin-bottom: 0;
        font-size: clamp(16px, 1.4035087719vw, 17px);
    }
    
     .p-company__greeting__ceo-title {
        margin-top: 24px;
    }
    
    .p-company__greeting__ceo-signature img {
        width: 150px;
    }

    .p-company__greeting__img {
        width: 65%;
    }

    .p-company__greeting__img img {
        max-height: 500px;
        -o-object-fit: cover;
        object-fit: cover;
    }
    
    .p-company__greeting .c-button-01 {
        text-align: right;
    }
    
    .p-company__greeting .c-button-01 a {
        margin-right: 0;
    }
}

/*
　スタッフ紹介バナー
================================*/
.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: #0b3c5d;
  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-service {
  width: 90%;
  margin: 0 auto;
}

.p-service ul li {
  margin-bottom: 30px;
}

.p-service__text {
  padding: 20px;
  background-color: #fff;
}

.p-service__image {
  width: 100%;
  min-height: 250px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 10% 40%;
}

.p-service__image.p-service__buy {
  background-image: url(../img/service__buy.jpg);
}

.p-service__image.p-service__buyback {
  background-image: url(../img/service__buyback.jpg);
}

.p-service__image.p-service__management {
  background-image: url(../img/service__management.jpg);
}

.p-service__image.p-service__akiya {
  background-image: url(../img/service__akiya.jpg);
}

.p-service__image.p-service__souzoku {
  background-image: url(../img/service__souzoku.jpg);
}

@media screen and (min-width: 900px) {
  .p-service {
    width: 95%;
    max-width: 1250px;
  }
  .p-service ul li {
    display: flex;
    margin-bottom: 40px;
    min-height: 360px;
  }
  .p-service__text {
    width: 55%;
    padding: 25px 40px;
  }
  .p-service__image {
    width: 45%;
    background-repeat: no-repeat;
    background-size: cover;
  }
}

/*=================================

* AI査定

=================================*/

/*
　ヒーローセクション
================================*/
.p-ai-satei__hero {
    background: #fff;
}

.p-ai-satei__hero-inner {
    max-width: 1140px;
    padding: 3.5rem 8px;
    width: 90%;
    margin: 0 auto;
    overflow: hidden;
}

.p-ai-satei__hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
}

.p-ai-satei__hero-text {
    width: 100%;
}

.p-ai-satei__hero-title {
    font-size: clamp(36px, 70 / 768 * 100vw, 60px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #333;
}

.p-ai-satei__hero-title-accent {
    font-size: clamp(22px, 40 / 768 * 100vw, 40px);
    font-weight: 800;
    color: #0d9488;
}

.p-ai-satei__hero-description {
    color: #333;
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.p-ai-satei__hero-labels {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 2rem 0;
    justify-content: center;
}

.p-ai-satei__hero-label {
    padding: 10px;
    text-align: center;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: #0d9488;
    display: flex;
    justify-content: center;
    align-items: center;
}

.p-ai-satei__hero-label span {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}

.p-ai-satei__hero-cta {
    display: block;
    background-color: #4f46e5;
    color: #fff !important;
    text-decoration: none !important;
    font-weight: 700;
    font-size: 16px;
    padding: 25px 30px;
    border-radius: 10px;
    transition: background-color 0.2s ease;
    box-shadow: 0 10px 15px -3px rgba(29, 45, 80, 0.2);
    text-align: center;
    max-width: 300px;
    margin: 0 auto;
}

.p-ai-satei__hero-cta:hover {
    background-color: #4338ca;
}

.p-ai-satei__cta-arrows {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    margin-left: 10px;
    vertical-align: middle;
    top: -20px;
}

.p-ai-satei__cta-arrows .p-ai-satei__cta-arrow {
    position: absolute;
    width: 30px;
    height: 4px;
    opacity: 0;
    transform: scale(0.3);
    animation: arrow-move 3s ease-out infinite;
}

.p-ai-satei__cta-arrows .p-ai-satei__cta-arrow:first-child {
    animation: arrow-move 3s ease-out 0s infinite;
}

.p-ai-satei__cta-arrows .p-ai-satei__cta-arrow:nth-child(2) {
    animation: arrow-move 3s ease-out 1s infinite;
}

.p-ai-satei__cta-arrows .p-ai-satei__cta-arrow:nth-child(3) {
    animation: arrow-move 3s ease-out 2s infinite;
}

.p-ai-satei__cta-arrows .p-ai-satei__cta-arrow:before,
.p-ai-satei__cta-arrows .p-ai-satei__cta-arrow:after {
    position: absolute;
    content: '';
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 100%;
    background: #fff;
    border-radius: 1px;
}

.p-ai-satei__cta-arrows .p-ai-satei__cta-arrow:before {
    left: 1px;
    transform: skewY(30deg);
}

.p-ai-satei__cta-arrows .p-ai-satei__cta-arrow:after {
    right: 1px;
    transform: skewY(-30deg);
}

@keyframes arrow-move {
    25% {
        opacity: 0.6;
    }
    43% {
        transform: translateY(12px);
        opacity: 0.8;
    }
    62% {
        transform: translateY(24px);
        opacity: 1;
    }
    100% {
        transform: translateY(36px) scale(0.5);
        opacity: 0;
    }
}

.p-ai-satei__hero-cta-icon {
    width: 1.25rem;
    height: 1.25rem;
    margin-left: 0.5rem;
}

.p-ai-satei__hero-image {
    width: 100%;
    display: flex;
    justify-content: center;
    filter: drop-shadow(2px 2px 4px #999);
    max-width: 230px;
    margin-bottom: -120px;
}

.p-ai-satei__hero--02 {
    background: linear-gradient(135deg, #0f766e 0%, #0d9488 50%, #4f46e5 100%);
}

.p-ai-satei__hero--02 .p-ai-satei__hero-title,
.p-ai-satei__hero--02 .p-ai-satei__hero-title-accent,
.p-ai-satei__hero--02 .p-ai-satei__hero-description{
    color: #fff;
}

.p-ai-satei__hero--02 .p-ai-satei__hero-label {
    background-color: #F2DEA0;
}

.p-ai-satei__hero--02 .p-ai-satei__hero-label span {
    color: #0d9488;
}

.p-ai-satei__hero--02 .p-ai-satei__hero-cta {
    background-color: #0F50A6;
}

.p-ai-satei__hero--02  .p-ai-satei__hero-cta:hover {
    background-color: #0a3874;
}

.p-ai-satei__hero--02 .p-ai-satei__hero-image,
.p-ai-satei__hero--03 .p-ai-satei__hero-image {
    filter: drop-shadow(2px 2px 4px #CCC);
}

.p-ai-satei__hero--03 {
    background-image: url(../img/ai-satei__hero--bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.p-ai-satei__hero--03 .p-ai-satei__hero-title,
.p-ai-satei__hero--03 .p-ai-satei__hero-title-accent,
.p-ai-satei__hero--03 .p-ai-satei__hero-description{
    color: #fff;
}

.p-ai-satei__hero--03 .p-ai-satei__hero-title-accent {
    color: #F2E30F;
}

.p-ai-satei__hero--03 .p-ai-satei__hero-label {
    background-color: #FFF;
}

.p-ai-satei__hero--03 .p-ai-satei__hero-label span {
    color: #0d54a6;
}

.p-ai-satei__hero--03 .p-ai-satei__hero-cta {
    background-color: #8C0E03;
}

.p-ai-satei__hero--03  .p-ai-satei__hero-cta:hover {
    background-color: #700b02;
}

/* PC */
@media screen and (min-width: 768px) {
    .p-ai-satei__hero-inner {
        padding: 5rem 8px;
    }

    .p-ai-satei__hero-content {
        flex-direction: row;
        gap: 30px;
    }

    .p-ai-satei__hero-text {
        width: 63%;
        text-align: left;
    }

    .p-ai-satei__hero-description {
        font-size: 18px;
    }

    .p-ai-satei__hero-cta {
        margin: 0;
        font-size: 20px;
    }

    .p-ai-satei__hero-labels {
        justify-content: flex-start;
    }

    .p-ai-satei__hero-label {
        width: 140px;
        height: 140px;
    }

    .p-ai-satei__hero-label span {
        font-size: 20px;
    }

    .p-ai-satei__hero-title {
        font-size: clamp(40px, 65 / 1140 * 100vw, 60px);
        letter-spacing: 0.01px;
        line-height: 1.1;
    }
    
    .p-ai-satei__hero-title-accent {
        font-size: clamp(24px, 40 / 1140 * 100vw, 40px);
        letter-spacing: 0.01px;
        line-height: 1.1;
    }
    
    .p-ai-satei__hero-image {
        width: 100%;
        max-width: 300px;
        margin-bottom: 0;
    }

}

/*
　セクションタイトル
================================*/
.p-ai-satei__title {
    margin: 0 auto 30px auto;
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    color: #000;
    background-color:  transparent !important;
}

@media screen and (min-width: 768px) {
    .p-ai-satei__title {
        width: 100%;
        font-size: 2.3rem;
    }
}
    
/*
　特徴セクション
================================*/
.p-ai-satei__features {
    background-color: #ffffff;
}

.p-ai-satei__features-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 8px;
}

.p-ai-satei__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1rem;
}

.p-ai-satei__features-card {
    background-color: #fbfcfd;
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid #eef0f2;
    display: grid;
    grid-template-columns: 3rem 1fr;
    column-gap: 1rem;
    align-items: start;
}

.p-ai-satei__features-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    align-self: center;
}

.p-ai-satei__features-card-icon img {
    width: 40px;
    aspect-ratio: 1 / 1;
    height: 40px;
    object-fit: contain;
}

.p-ai-satei__features-card-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 0;
    color: #333;
    line-height: 1.3;
    align-self: center;
}

.p-ai-satei__features-card-description {
    font-size: 16px;
    color: #333;
    line-height: 1.4;
    grid-column: 1 / -1;
    margin-top: 0.75rem;
}

@media screen and (min-width: 500px) {

    .p-ai-satei__features-card {
        display: block;
        padding: 30px 15px 20px;
    }

    .p-ai-satei__features-card-icon {
        width: 4rem;
        height: 4rem;
        margin: 0 auto 1rem;
    }

    .p-ai-satei__features-card-icon img {
        width: 60px;
        height: 60px;
    }

    .p-ai-satei__features-card-title {
        font-size: 17px;
        margin-bottom: 10px;
        text-align: center;
    }
}

/* PC */
@media screen and (min-width: 768px) {
    .p-ai-satei__features-grid {
        gap: 1.5rem;
    }

    .p-ai-satei__features-card-description {
        font-size: 16px;
        margin-top: 0;
        line-height: 1.6;
    }

    .p-ai-satei__features-card-title {
        font-size: clamp(16px, 19 / 1140 * 100vw, 19px);
        margin-bottom: 15px;
        text-align: center;
    }
}

/*
　ステップセクション
================================*/
.p-ai-satei__steps {
    max-width: 1140px;
    margin: 0 auto;
    padding: 4rem 8px;
}

.p-ai-satei__steps-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap:  2em 0;
    position: relative;
    margin: 0 auto;
    max-width: 550px;
}

.p-ai-satei__steps-line {
    display: none;
}

.p-ai-satei__step {
    position: relative;
}

.p-ai-satei__step-circle {
    width: 6rem;
    height: 6rem;
    background-color: #0d9488;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 10;
}

.p-ai-satei__step-circle-inner {
    text-align: center;
    line-height: 1.1;
}

.p-ai-satei__step-label {
    font-size: 14px;
    font-weight: 600;
}

.p-ai-satei__step-number {
    font-size: 24px;
    font-weight: 700;
}

.p-ai-satei__step-title {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
}

.p-ai-satei__step-description {
    font-size: 16px;
    color: #333;
    line-height: 1.5;
    display: flex;
    justify-content: center;
}


/* PC */
@media screen and (min-width: 768px) {
    .p-ai-satei__steps-list {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap:  2em 0;
        position: relative;
        margin: 0 auto;
        max-width: none;
    }

    .p-ai-satei__steps-line {
        display: block;
        position: absolute;
        top: 3rem;
        left: 16%;
        right: 16%;
        height: 2px;
        background-color: #e5e7eb;
    }
}

/*
  フォームセクション
================================*/
.p-ai-satei__form {
    background: #f8fafc;
}

/*
　マイページセクション
================================*/
.p-ai-satei__mypage {
    background-color: #ffffff;
    border-radius: 1rem;
    padding: 30px 15px;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    border: 1px solid #f3f4f6;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.p-ai-satei__mypage-text {
    width: 100%;
}

.p-ai-satei__mypage-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.p-ai-satei__mypage-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    color: #333;
}

.p-ai-satei__mypage-feature-title {
    font-weight: 700;
    font-size: 18px;
}

.p-ai-satei__mypage-feature-title::before {
    font-family: "FontAwesome";
    content: "\f058";
    margin-right: 0.4em;
    color: #0d9488;
}

.p-ai-satei__mypage-feature-description {
    font-size: 16px;
}

.p-ai-satei__mypage-note {
    margin-top: 20px;
    font-size: 15px;
    color: #333;
}

.p-ai-satei__mypage-demo {
    width: 100%;
}

/* PC */
@media screen and (min-width: 768px) {
    .p-ai-satei__mypage {
        flex-direction: row;
        padding: 40px 30px;
    }

    .p-ai-satei__mypage-title {
        font-size: clamp(20px, 24 / 1140 * 100vw, 24px);
        margin-bottom: 20px;
    }

    .p-ai-satei__mypage-text {
        width: 50%;
    }

    .p-ai-satei__mypage-demo {
        width: 50%;
    }
}

/*
　チャットデモ
================================*/
.p-ai-satei__chat {
    background-color: #f8fafc;
    padding: 10px;
    border-radius: 1em;
    border: 1px solid #e5e7eb;
}

.p-ai-satei__chat-header {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 0.75rem;
    margin-bottom: 1rem;
}

.p-ai-satei__chat-avatar {
    width: 2.25rem;
    height: 2.25rem;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.p-ai-satei__chat-avatar img {
    width: 20px;
    height: 20px;
}

.p-ai-satei__chat-title {
    font-size: 20px;
    font-weight: 700;
    color: #333;
}

.p-ai-satei__chat-messages {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.p-ai-satei__chat-message {
    padding: 0.75rem;
    border-radius: 0.75rem;
    font-size: 15px;
    width: 80%;
}

.p-ai-satei__chat-message--user {
    background-color: #ccfbf1;
    color: #134e4a;
    border-top-left-radius: 0.25rem;
}

.p-ai-satei__chat-message--agent {
    background-color: #ffffff;
    color: #333;
    border: 1px solid #f3f4f6;
    border-top-right-radius: 0.25rem;
    margin-left: auto;
}

.p-ai-satei__chat-message--input {
    background-color: #f1f5f9;
    color: #333;
    display: flex;
    align-items: center;
    width: 100%;
    border: none;
    outline: none;
    font-family: inherit;
    font-size: inherit;
    box-sizing: border-box;
    cursor: default;
}

/*
　AI簡易査定-01
================================*/
.c-banner-ai-satei-01 {
    display: block;
    max-width: 500px;
    margin: 0 auto;
    padding: 0 8px;
    text-decoration: none !important;
    color: inherit;
}

.c-banner-ai-satei-01__inner {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 1rem;
    overflow: hidden;
    padding: 1.5rem 1.25rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.c-banner-ai-satei-01:hover .c-banner-ai-satei-01__inner {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(79, 70, 229, 0.15);
}

.c-banner-ai-satei-01__content {
    display: flex;
    flex-direction: column;
    gap: 2em 1em;
}

.c-banner-ai-satei-01__lead {
    font-size: 19px;
    font-weight: bold;
    line-height: 1.4;
    color: #6b7280;
}

.c-banner-ai-satei-01__title {
    font-size: 40px;
    line-height: 1.3;
    font-weight: 900;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.c-banner-ai-satei-01__title span {
    font-size: 1.15em;
    display: inline-block;
    vertical-align: text-bottom;
}

.c-banner-ai-satei-01__description {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 10px;
}

.c-banner-ai-satei-01__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.c-banner-ai-satei-01__tag {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 700;
    color: #4f46e5;
    background-color: #eef2ff;
    border-radius: 2rem;
    padding: 0.25rem 0.75rem;
}

.c-banner-ai-satei-01__image {
    min-height: 190px;
    max-width: 200px;
    order: 2;
    width: 90%;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    display: flex;
    align-items: end;
}

.c-banner-ai-satei-01__image img {
    width: 100%;
    filter: drop-shadow(3px 3px 4px #777);
    margin-bottom: -100%;
}

.c-banner-ai-satei-01__action {
    margin-top: 1rem;
}

.c-banner-ai-satei-01__button {
    display: inline-flex;
    align-items: center;
    padding: 0.6rem 1.5rem;
    background: #4f46e5;
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 700;
    text-decoration: none !important;
    border: none;
    border-radius: 0.5rem;
    transition: 0.3s ease;
}

.c-banner-ai-satei-01__button::after {
    font-family: 'FontAwesome';
    content: '\f105';
    margin-left: 0.3rem;
    font-weight: normal;
}

.c-banner-ai-satei-01:hover .c-banner-ai-satei-01__button {
    background: #eef2ff;
    color: #4f46e5;
}

/* PC */
@media screen and (min-width: 768px) {
    .c-banner-ai-satei-01 {
        max-width: 800px;
    }

    .c-banner-ai-satei-01__inner {
        padding: 1.75rem 1.75rem 0;
    }

    .c-banner-ai-satei-01__content {
        flex-direction: row;
        align-items: stretch;
        justify-content: space-between;
        gap: 2rem;
    }

    .c-banner-ai-satei-01__text {
        flex: 1;
        padding-bottom: 1.75rem;
    }

    .c-banner-ai-satei-01__lead {
        font-size: 23px;
    }

    .c-banner-ai-satei-01__title {
        font-size: clamp(40px, 50/1140*100vw, 50px);
        line-height: 1.1;
        margin-bottom: 10px;
    }

    .c-banner-ai-satei-01__title span {
        font-size: 1.2em;
        display: inline-block;
        line-height: 0.9;
        vertical-align: bottom;
    }

    .c-banner-ai-satei-01__description {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .c-banner-ai-satei-01__button {
        font-size: 16px;
    }

    .c-banner-ai-satei-01__image {
        display: flex;
        flex-shrink: 0;
        align-items: flex-end;
        width: 220px;
        overflow: hidden;
        align-self: stretch;
        min-height: 250px;
        max-width: 300px;
    }

    .c-banner-ai-satei-01__image img {
        width: 200px;
        margin-bottom: -65%;
    }
}