@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-dark {
  color: #343a40 !important;
}

.u-fc-red {
  color: #dc3545 !important;
}

.u-fc-orange {
  color: #FF8C00 !important;
}

/*==================================
* font-weight
==================================*/
.u-fw-bold {
  font-weight: bold !important;
}

/*==================================
* align
==================================*/
.u-text-center {
  text-align: center !important;
}

.u-text-right {
  text-align: right !important;
}

.u-text-left {
  text-align: left !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%);
}

/* ━━━━━━━━━━━━━━━━

 ■コンポーネント

━━━━━━━━━━━━━━━━ */
/**
 * Block
 */
/*==================================
* コンテナ
==================================*/
.c-block {
  margin: 0 auto;
  padding: 30px 0;
}

@media screen and (min-width: 768px) {
  .c-block {
    max-width: 1140px;
  }
}
/**
 * Button
 */
/*==================================
* Button
==================================*/
.c-button-container {
  padding: 50px 0 0 0;
  text-align: center;
}

/*
　標準ボタン
================================*/
.c-button {
  width: 90%;
  display: block;
  margin: 0 auto;
  padding: 12px 5px;
  text-align: center;
  border-radius: 30px;
  border: 2px solid #25a1aa;
  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: #25a1aa;
  font-weight: bold;
}

.c-button::after {
  background: #25a1aa;
  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 {
  position: relative;
  display: block;
  width: 90%;
  padding: 20px 10px;
  margin: 0 auto;
  background-color: #25a1aa;
  text-decoration: none;
  text-align: center;
  font-weight: bold;
}

.c-button--primary::after {
  content: "";
  position: absolute;
  display: block;
  top: calc(50% - 6px);
  right: 20px;
  width: 10px;
  height: 10px;
  border-top: solid 3px #ffffff;
  border-right: solid 3px #ffffff;
  transform: rotate(45deg);
}

.c-button--primary,
.c-button--primary:link,
.c-button--primary:visited {
  text-decoration: none;
  color: #FFF;
}

@media screen and (min-width: 768px) {
  .c-button--primary {
    width: 380px;
    font-size: 17px;
  }
  .c-button--primary:hover {
    color: #ffffff;
    opacity: 0.8;
  }
}
/*
　アウトラインボタン
================================*/
.c-button--outline {
  position: relative;
  display: block;
  width: 90%;
  margin: 0 auto;
  padding: 20px 10px;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  color: #25a1aa;
  border: solid 1px #25a1aa;
}

.c-button--outline::after {
  content: "";
  position: absolute;
  display: block;
  top: calc(50% - 6px);
  right: 20px;
  width: 10px;
  height: 10px;
  border-top: solid 3px #25a1aa;
  border-right: solid 3px #25a1aa;
  transform: rotate(45deg);
}

.c-button--outline,
.c-button--outline:link,
.c-button--outline:visited {
  text-decoration: none;
  color: #25a1aa;
}

@media screen and (min-width: 768px) {
  .c-button--outline {
    width: 380px;
    font-size: 17px;
  }
  .c-button--outline:hover {
    color: #ffffff;
    background-color: #25a1aa;
  }
  .c-button--outline:hover::after {
    border-top-color: #ffffff;
    border-right-color: #ffffff;
  }
}
/*
　システム標準-H2
================================*/
h2.tit {
  width: 95%;
  margin: 30px auto 20px auto;
  padding: 8px 10px 10px 0px;
  font-size: 24px;
  font-weight: 700;
  color: #25a1aa;
  background-color: #ffffff !important;
}

/* PC */
@media screen and (min-width: 768px) {
  h2.tit {
    width: 100%;
    max-width: 1140px;
    margin: 50px auto;
    padding: 0;
    font-size: 32px;
    border-bottom: 2px dotted #333;
  }
}
/*
　システム標準-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: #25a1aa;
}

/* 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-border-01 {
  position: relative;
  width: 90%;
  margin: 0 auto 50px auto;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  color: #333;
  line-height: 1.4;
}

.c-title-border-01::after {
  content: "";
  display: block;
  position: absolute;
  width: 46px;
  left: calc(50% - 23px);
  bottom: -15px;
  border: 2px solid #25a1aa;
  border-radius: 50px;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-title-border-01 {
    width: 100%;
    margin: 0 auto 70px auto;
    font-size: clamp(28px, 2.4561403509vw, 30px);
  }
}

/*
　ルビ付き-02
================================*/
.c-title-ruby-02 {
  position: relative;
  font-size: 1.8rem;
  font-weight: 500;
  border-bottom: 1px solid #333;
  margin-bottom: 30px;
  padding: 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: 0;
  left: 10px;
  color: rgba(15, 10, 50, 0.1);
  font-size: 2.3rem;
  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;
    padding: 30px 0 10px 0;
  }
  .c-title-ruby-02::before {
    left: 20px;
    font-size: 4.3rem;
  }
}

/*
　ルビ付き-05
================================*/
.c-title-ruby-05 {
  margin-bottom: 20px;
}

.c-title-ruby-05 span {
  font-size: 30px;
  font-weight: 900;
}

.c-title-ruby-05 h3 {
  display: flex;
  align-items: center;
  font-size: 17px;
  font-weight: bold;
  margin-bottom: 10px;
}

.c-title-ruby-05 h3:before {
  content: "";
  width: 1.5em;
  border-top: 1px solid;
  margin-right: 0.5em;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-title-ruby-05 span {
    font-size: 35px;
  }
  .c-title-ruby-05 h3 {
    font-size: 20px;
    margin-bottom: 7px;
  }
}

/*
　セクションタイトル-08
================================*/
.c-section-title-08 {
  position: relative;
  width: 100%;
  height: 280px;
  padding: 50px 0 40px 0;
  box-sizing: border-box;
  overflow: hidden;
}

.c-section-title-08::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.c-section-title-08__image img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 280px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 65%;
     object-position: 50% 65%;
}

.c-section-title-08__inner {
  position: relative;
  width: 90%;
  margin: 0 auto;
  color: #FFF;
  z-index: 10;
}

.c-section-title-08__inner p {
  margin-bottom: 20px;
  font-weight: bold;
}

.c-section-title-08__inner p span {
  display: block;
  font-size: clamp(70px, 9.1145833333vw, 100px);
  font-family: "Helvetica Neue", Arial, "Noto Sans JP", sans-serif;
  line-height: 1;
}

.c-section-title-08__inner p span::first-letter {
  color: #f3e600;
}

.c-section-title-08__inner h2 {
  font-size: clamp(25px, 3.2552083333vw, 35px);
  font-weight: 900;
  text-shadow: 1px 2px 3px #333;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-section-title-08 {
    height: 300px;
  }
  .c-section-title-08__image img {
    height: 300px;
  }
  .c-section-title-08__inner {
    max-width: 1140px;
  }
  .c-section-title-08__inner p {
    margin-bottom: 10px;
    font-size: 20px;
  }
  .c-section-title-08__inner p span {
    font-size: clamp(70px, 6.1403508772vw, 100px);
  }
  .c-section-title-08__inner h2 {
    font-size: clamp(30px, 3.90625vw, 40px);
  }
}

/*
　セクションタイトル-08
================================*/
.c-section-title-08 {
  position: relative;
  width: 100%;
  height: 280px;
  padding: 50px 0 40px 0;
  box-sizing: border-box;
  overflow: hidden;
}

.c-section-title-08::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.c-section-title-08__image img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 280px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 65%;
     object-position: 50% 65%;
}

.c-section-title-08__inner {
  position: relative;
  width: 90%;
  margin: 0 auto;
  color: #FFF;
  z-index: 10;
}

.c-section-title-08__inner p {
  margin-bottom: 20px;
  font-weight: bold;
}

.c-section-title-08__inner p span {
  display: block;
  font-size: clamp(70px, 9.1145833333vw, 100px);
  font-family: "Helvetica Neue", Arial, "Noto Sans JP", sans-serif;
  line-height: 1;
}

.c-section-title-08__inner p span::first-letter {
  color: #f3e600;
}

.c-section-title-08__inner h2 {
  font-size: clamp(25px, 3.2552083333vw, 35px);
  font-weight: 900;
  text-shadow: 1px 2px 3px #333;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-section-title-08 {
    height: 300px;
  }
  .c-section-title-08__image img {
    height: 300px;
  }
  .c-section-title-08__inner {
    max-width: 1140px;
  }
  .c-section-title-08__inner p {
    margin-bottom: 10px;
    font-size: 20px;
  }
  .c-section-title-08__inner p span {
    font-size: clamp(70px, 6.1403508772vw, 100px);
  }
  .c-section-title-08__inner h2 {
    font-size: clamp(30px, 3.90625vw, 40px);
  }
}

/*
　シンプル-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: #25a1aa;
  margin-bottom: 30px;
}

.c-title-02--color-2 {
  color: #25a1aa;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-title-02,
  .c-title-02--color-2 {
    font-size: 53px;
    margin-bottom: 50px;
  }
}

/*
　背景カラー-01
================================*/
.c-title-bg-01,
.c-title-bg-01--color-2,
.c-title-bg-01--sm,
.c-title-bg-01--color-2--sm {
  margin-bottom: 30px;
  padding: 15px;
  background: #25a1aa;
}

.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: #25a1aa;
}

.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);
  }
}

/*
　ページリンク-02
================================*/
.c-page-link-02 {
  width: 90%;
  margin: 20px auto 0 auto;
}

.c-page-link-02__title {
  margin-bottom: 30px;
  text-align: center;
  line-height: 1.4;
  font-size: 20px;
  font-weight: 900;
  color: #333;
}

.c-page-link-02__title span {
  font-size: 32px;
  color: #25a1aa;
}

.c-page-link-02__content__image {
  margin-bottom: 30px;
}

.c-page-link-02__content__image img {
  display: block;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
}

.c-page-link-02__content__button a {
  display: block;
  max-width: 350px;
  margin: 0 auto;
  padding: 20px 10px;
  text-decoration: none;
  text-align: center;
  color: #fff;
  background-color: #25a1aa;
}

.c-page-link-02__content__button a i {
  margin-left: 15px;
  font-size: 20px;
  font-weight: bold;
}

.c-page-link-02__content__button a:hover {
  background-color: #767171;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-page-link-02 {
    position: relative;
    width: 100%;
    max-width: 1140px;
    margin-top: 50px;
  }
  .c-page-link-02__title {
    width: calc(100% - 330px);
    text-align: left;
    font-size: 36px;
  }
  .c-page-link-02__title span {
    font-size: 46px;
  }
  .c-page-link-02__content__image {
    position: absolute;
    right: 0;
    top: 0;
    margin-bottom: 0;
  }
  .c-page-link-02__content {
    width: calc(100% - 330px);
  }
  .c-page-link-02__content__button a {
    margin: 0 0 0 auto;
  }
}

/*
　メニュー-05
================================*/
.c-menu-05 {
  margin-bottom: 30px;
}

.c-menu-05 ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.c-menu-05 li {
  width: 50%;
  margin-bottom: 25px;
  text-align: center;
}

.c-menu-05 a {
  display: block;
  text-decoration: none;
}

.c-menu-05__image {
  width: clamp(135px, 32.5520833333vw, 250px);
  height: clamp(135px, 32.5520833333vw, 250px);
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 10px;
  border-radius: 50%;
  overflow: hidden;
}

.c-menu-05__image img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1;
}

.c-menu-05 p {
  color: #333;
  font-weight: bold;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-menu-05 li {
    width: 16%;
  }
  .c-menu-05__image {
    width: 100%;
    height: auto;
    max-width: 150px;
  }
  .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 p {
    font-size: 17px;
  }
  .c-menu-05 a:hover p {
    color: #25a1aa;
    text-decoration: none;
  }
}

/*
　メニュー-10
================================*/
.c-menu-10 {
  position: relative;
  margin: 0 auto;
  padding: 50px 0;
  background: #f2fbfb;
}

.c-menu-10::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.2);
}

.c-menu-10__inner {
  position: relative;
  margin: 0 auto;
  width: 90%;
  padding: 0;
}

.c-menu-10__title {
  margin: 0 auto 20px auto;
  text-align: center;
}

.c-menu-10__title h2 {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.c-menu-10__title span {
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.c-menu-10__title span:before,
.c-menu-10__title span:after {
  content: "";
  width: 2em;
  border-top: 1px solid;
}

.c-menu-10__title span:before {
  margin-right: 0.7em;
}

.c-menu-10__title span:after {
  margin-left: 0.7em;
}

.c-menu-10__block a {
  display: block;
  padding: 30px 20px;
  text-decoration: none;
  color: #000;
}

.c-menu-10__agency,
.c-menu-10__buyback {
  text-align: center;
  background-color: #FFF;
  border-top: 5px solid #25a1aa;
}

.c-menu-10__agency {
  margin-bottom: 40px;
  border-top: 5px solid #25a1aa;
}

.c-menu-10__block img {
  height: 60px;
}

.c-menu-10__agency h3,
.c-menu-10__buyback h3 {
  margin: 25px 0;
  font-size: clamp(18px, 5vw, 20px);
  font-weight: 900;
}

.c-menu-10__agency h3 span,
.c-menu-10__buyback h3 span {
  font-size: clamp(23px, 7vw, 25px);
  line-height: 1.4;
  color: #349fda;
}

.c-menu-10__buyback h3 span {
  color: #f29417;
}

.c-menu-10__block p {
  margin-bottom: 20px;
  font-size: 15px;
  text-align: left;
}

.c-menu-10__agency .c-menu-10__button {
  background-color: #25a1aa;
}

.c-menu-10__buyback .c-menu-10__button {
  background-color: #25a1aa;
}

.c-menu-10__button h4 {
  margin-bottom: 0;
  padding: 20px;
  text-align: center;
  color: #FFF;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-menu-10 {
    margin: 0 auto;
    padding: 80px 0;
  }
  .c-menu-10__inner {
    max-width: 1140px;
    width: 100%;
  }
  .c-menu-10__title {
    margin: 0 auto 50px auto;
  }
  .c-menu-10__title h2 {
    font-size: 2.8rem;
    margin-bottom: 7px;
  }
  .c-menu-10__title span {
    font-size: 1.2rem;
  }
  .c-menu-10__block {
    display: flex;
    justify-content: space-between;
  }
  .c-menu-10__block a {
    padding: 40px 45px;
  }
  .c-menu-10__agency,
  .c-menu-10__buyback {
    margin: 0;
    width: 48%;
    background-color: #FFF;
  }
  .c-menu-10__block img {
    height: 80px;
  }
  .c-menu-10__agency h3,
  .c-menu-10__buyback h3 {
    font-size: clamp(21px, 2vw, 25px);
    margin: 35px 0;
  }
  .c-menu-10__agency h3 span,
  .c-menu-10__buyback h3 span {
    font-size: clamp(24px, 3vw, 30px);
  }
  .c-menu-10__block p {
    margin-bottom: 25px;
    line-height: 1.6;
  }
  .c-menu-10__agency:hover {
    background-color: #f1f3f9;
  }
  .c-menu-10__buyback:hover {
    background-color: #faf5f6;
  }
  .c-menu-10__button h4 {
    font-size: 20px;
  }
}

/*
　ポイント（３カラム）-09
================================*/
.c-point-col3-09 {
  position: relative;
  margin-bottom: 20px;
  padding: 60px 0 100px;
}

.c-point-col3-09:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
}

.c-point-col3-09:after {
  content: "";
  width: 100%;
  height: 200px;
  background: url(../img/point-col3-09__bg.jpg) center center no-repeat #333;
  background-size: cover;
  background-blend-mode: overlay;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.c-point-col3-09__inner {
  width: 90%;
  margin: 0 auto;
}

.c-point-col3-09__title {
  position: relative;
}

.c-point-col3-09__title:before {
  display: inline-block;
  content: "Reason";
  color: #0abab5;
  border-top: 1px solid #0abab5;
  font-size: 1.3rem;
  font-weight: bold;
  line-height: 2.5;
}

.c-point-col3-09__title p {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.6;
  color: #3a5369;
}

.c-point-col3-09__title h2 {
  font-size: 1.8rem;
  margin-top: 10px;
  line-height: 1.2;
}

.c-point-col3-09__card-list {
  position: relative;
  margin-top: 40px;
}

.c-point-col3-09__card {
  width: 100%;
  margin-bottom: 40px;
  background: #fff;
  border-radius: 8px 8px 0px 0px;
}

.c-point-col3-09__card h3 {
  padding: 10px;
  background: #25a1aa;
  font-size: 1.3rem;
  font-weight: bold;
  color: #fff;
  text-align: center;
  border-radius: 8px 8px 0px 0px;
  position: relative;
}

.c-point-col3-09__card h3:before {
  content: "";
  border-style: solid;
  border-width: 14px 10px 0 10px;
  border-color: #25a1aa transparent transparent transparent;
  position: absolute;
  left: 50%;
  bottom: -14px;
  margin-left: -10px;
}

.c-point-col3-09__card img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-point-col3-09__card p {
  padding: 20px;
  line-height: 1.6;
}

/* PC */
@media screen and (min-width: 769px) {
  .c-point-col3-09 {
    margin-bottom: 80px;
    padding: 90px 0 140px;
  }
  .c-point-col3-09:after {
    height: 45%;
  }
  .c-point-col3-09__inner {
    width: 100%;
    max-width: 1200px;
  }
  .c-point-col3-09__title {
    padding-left: 120px;
  }
  .c-point-col3-09__title:before {
    position: absolute;
    top: 20px;
    left: 0;
  }
  .c-point-col3-09__title p {
    font-size: 1.6rem;
    line-height: 1.8;
  }
  .c-point-col3-09__title h2 {
    font-size: 2.8rem;
    font-weight: 500;
    margin-top: 0;
  }
  .c-point-col3-09__card-list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-bottom: 100px;
  }
  .c-point-col3-09__card {
    width: 30.5%;
  }
  .c-point-col3-09__card:nth-child(2) {
    transform: translateY(50px);
  }
  .c-point-col3-09__card:nth-child(3) {
    transform: translateY(100px);
  }
  .c-point-col3-09__card p {
    padding: 20px 25px;
  }
}

/*
　ポイント（リスト）-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: #25a1aa;
}

.c-point-list-02__cover::before {
  display: block;
  color: #FFF;
  text-align: center;
  font-size: 32px;
  font-family: "Arial", "Noto Sans JP", 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 JP", 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;
}

.c-point-list-02--orange {
  color: #FF8C00 !important;
  font-weight: bold !important;
}

/* 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;
  }
}

/*
　2columnレイアウト-01
=================================*/
.c-column-2-01 {
  margin-bottom: 50px;
}

.c-column-2--text-center {
  text-align: center !important;
}

.c-column__col {
  margin-bottom: 15px;
}

.c-column__col h3 {
  margin-bottom: 5px;
  font-size: 18px;
}

.c-column__col img {
  max-width: 100%;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-column-2-01 {
    display: flex;
    justify-content: space-between;
  }
  .c-column__col {
    width: 48%;
  }
}

/*
　特徴（３カラム）-06
================================*/
.c-feature-col3-06 {
  width: 95%;
  margin: 0 auto;
}

.c-feature-col3-06 ul {
  display: flex;
  flex-direction: column;
}

.c-feature-col3-06 li {
  margin-bottom: 50px;
}

.c-feature-col3-06 li:last-child {
  margin-bottom: 0;
}

.c-feature-col3-06__image {
  border: 1px solid #B6BBC4;
  background-color: #FFF;
  border-radius: 5px;
  margin-bottom: 20px;
  padding: 7px;
  box-sizing: border-box;
  filter: drop-shadow(2px 2px 2px rgba(160, 160, 160, 0.7));
  font-size: 0;
}

.c-feature-col3-06__image img {
  width: 100%;
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-feature-col3-06 h3 {
  margin-bottom: 10px;
  font-size: clamp(25px, 3.2552083333vw, 30px);
  font-weight: bold;
  color: #25a1aa;
  text-align: center;
}

.c-feature-col3-06 p {
  line-height: 1.6;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-feature-col3-06 {
    width: 100%;
  }
  .c-feature-col3-06 ul {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
  }
  .c-feature-col3-06 li {
    width: 30%;
    margin-bottom: 0;
  }
  .c-feature-col3-06 h3 {
    font-size: clamp(25px, 2.1929824561vw, 28px);
  }
}

/*
　流れ
================================*/
.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: #25a1aa;
  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: #25a1aa 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;
  }
}

/*
　物件情報-01
================================*/
.c-estate-list-col3-01 li,
.c-estate-list-col3-01--gray li {
  position: relative;
  margin-bottom: 50px;
}

/* テキスト部分の背景：白色 */
.c-estate-list-col3-01 li {
  background-color: #fff;
}

/* テキスト部分の背景：灰色 */
.c-estate-list-col3-01--gray li {
  background-color: #f5f5f5;
}

.c-estate-list-col3-01 a,
.c-estate-list-col3-01--gray a {
  display: block;
  height: 100%;
  text-decoration: none;
  color: #333;
}

.c-estate-list-col3-01__image {
  position: relative;
}

.c-estate-list-col3-01__image img:last-of-type {
  display: block;
  width: 100%;
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-estate-list-col3-01__label {
  display: inline-block;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 5px 10px;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.7);
}

.c-estate-list-col3-01__price {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.3;
}

.c-estate-list-col3-01__price span {
  margin-left: 2px;
  font-size: 17px;
}

.c-estate-list-col3-01__textarea {
  padding: 20px;
}

.c-estate-list-col3-01__type {
  display: inline-block;
  margin-bottom: 10px;
  padding: 3px 10px;
  line-height: 1.6;
  font-size: 14px;
  color: #FFF;
  background-color: #25a1aa;
}

.c-estate-list-col3-01__type[data-type*=賃貸] {
  background: #25a1aa;
}

.c-estate-list-col3-01__address {
  margin-bottom: 10px;
  font-weight: bold;
}

.c-estate-list-col3-01__access {
  margin-bottom: 10px;
  font-size: 15px;
}

.c-estate-list-col3-01__catchcopy {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-align: left;
  font-size: 15px;
  color: #1d2d50;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-estate-list-col3-01,
  .c-estate-list-col3-01--gray {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0 8px;
  }
  .c-estate-list-col3-01::after,
  .c-estate-list-col3-01--gray::after {
    content: "";
    display: block;
    width: 30%;
  }
  .c-estate-list-col3-01 li,
  .c-estate-list-col3-01--gray li {
    width: 30%;
    margin: 0 0 50px 0;
  }
  .c-estate-list-col3-01 a:hover,
  .c-estate-list-col3-01--gray a:hover {
    opacity: 0.6;
  }
  .c-estate-list-col3-01__price {
    font-size: 22px;
  }
  .c-estate-list-col3-01__price span {
    font-size: 18px;
  }
}
/*
　よくある質問-01
================================*/
.c-ques-list-01 {
  width: 90%;
  margin: 0 auto 30px auto;
}

.c-ques-list-01 dt,
.c-ques-list-01 dd {
  line-height: 1.7;
}

.c-ques-list-01 dt {
  margin-bottom: 10px;
}

.c-ques-list-01 dd {
  margin-bottom: 50px;
}

.c-ques-list-01 dt p,
.c-ques-list-01 dd p {
  display: inline-block;
  width: calc(100% - 60px);
  margin-left: 10px;
  padding: 8px;
  font-size: 16px;
  background-color: #FFFFFF;
  border: solid 1px #CCCCCC;
  border-radius: 5px;
  box-sizing: border-box;
}

.c-ques-list-01 dt:before,
.c-ques-list-01 dd:before {
  display: inline-block;
  content: "Q";
  width: 35px;
  height: 35px;
  vertical-align: top;
  text-align: center;
  font-size: 24px;
  font-family: "Arial", sans-serif;
  font-weight: 500;
  color: #FFF;
  line-height: 35px;
  border-radius: 50%;
  background-color: #25a1aa;
}

.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;
  }
}
/*
　ブログリスト-02
================================*/
.c-blog-list-02 {
  margin-bottom: 40px;
}

.c-blog-list-02 li {
  max-width: 400px;
  margin: 0 auto 50px auto;
}

.c-blog-list-02 li:last-child {
  border-bottom: none;
}

.l-section--gray .c-blog-list-02 li,
.l-section--blue .c-blog-list-02 li,
.l-section--yellow .c-blog-list-02 li {
  background-color: #fff;
}

.c-blog-list-02 li a {
  display: block;
  text-decoration: none;
}

.c-blog-list-02__image img {
  display: block;
  width: 100%;
  max-width: 400px;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0 auto;
}

.c-blog-list-02__content {
  padding-top: 10px;
  padding-bottom: 10px;
}

.l-section--gray .c-blog-list-02__content,
.l-section--blue .c-blog-list-02__content,
.l-section--yellow .c-blog-list-02__content {
  padding-left: 8px;
  padding-right: 8px;
}

.c-blog-list-02__content__inner {
  padding-bottom: 10px;
}

.c-blog-list-02__content__date {
  color: #666;
}

.c-blog-list-02__content__title {
  display: inline-block;
  margin-bottom: 5px;
  font-size: 20px;
  font-weight: bold;
  color: #25a1aa;
  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: #25a1aa;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-blog-list-02 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1140px;
    margin: 0 auto;
  }
  .c-blog-list-02::after {
    content: "";
    display: block;
    width: 31%;
  }
  .c-blog-list-02 li {
    width: 31%;
    margin: 0 0 50px 0;
    border-bottom: none;
  }
  .c-blog-list-02 a:hover {
    opacity: 0.7;
  }
}

/*
　吹き出し
================================*/
.c-trouble-04--mb-20 {
  margin-bottom: 20px !important;
}

.c-trouble-04__title {
  margin-bottom: 40px;
  text-align: center;
  font-size: 20px;
  font-weight: 900;
}

.c-trouble-04__list {
  display: flex;
  flex-wrap: wrap;
}

.c-trouble-04__list li {
  margin-bottom: 20px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  align-content: flex-start;
  width: 100%;
}

.c-trouble-04 img {
  width: 15%;
}

.c-trouble-04 p {
  font-size: 15px;
  font-weight: bold;
}

.c-trouble-04 p span {
  background: linear-gradient(transparent 60%, #FFF799 60%);
}

.c-trouble-04__comment {
  position: relative;
  display: inline-block;
  margin-left: 5px;
  padding: 10px 15px;
  text-align: left;
  background: #FFF;
  border-radius: 50px;
  box-sizing: border-box;
}

.c-trouble-04__comment:before {
  content: "";
  position: absolute;
  top: 50%;
  left: -23px;
  margin-top: -15px;
  border: 15px solid transparent;
  border-right: 20px solid #FFF;
  z-index: 0;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-trouble-04__title {
    font-size: 35px;
    margin-bottom: 50px;
  }
  .c-trouble-04 img {
    width: 13%;
  }
  .c-trouble-04__comment {
    font-size: 27px;
  }
  .c-trouble-04__list li {
    margin-bottom: 25px;
    width: 50%;
  }
  .c-trouble-04 p {
    font-size: 20px;
  }
  .c-trouble-04__comment {
    padding: 10px 15px;
  }
}
/* iPhone5 */
@media screen and (max-width: 320px) {
  .c-trouble-04 p {
    font-size: 11px;
  }
  .c-trouble-04 img {
    width: 10%;
  }
}
.c-trouble-04__text {
  line-height: 1.7;
}

/*
　チェックボックス付きリスト
=================================*/
.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 JP", sans-serif;
}

.c-contact-01__tel__no i {
  margin-right: 5px;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-contact-01 {
    display: flex;
    align-items: center;
    padding: 20px 0;
  }
  /* mail */
  .c-contact-01__mail {
    width: 50%;
    padding: 25px 0;
    border-right: 1px solid #FFF;
    border-bottom: none;
  }
  .c-contact-01__mail a {
    width: 70%;
    margin: 0 auto;
  }
  /* tel */
  .c-contact-01__tel {
    width: 50%;
    padding-top: 0;
  }
  .c-contact-01__tel__announce {
    font-size: 20px;
  }
}

/*
　コンタクト-10
================================*/
.c-contact-10 {
  background: #25a1aa;
  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: #f29417;
  color: #fff;
}

.c-contact-10__button-satei a span {
  border: solid 2px #B22222;
}

.c-contact-10__button-inquiry a span {
  border: solid 2px #f29417;
}

/* 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;
  }
}

/*
　会社概要-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: #25a1aa;
  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;
  }
}
/*
　会社概要-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;
  }
}
/*
　アコーディオンメニュー-01
================================*/
.c-accordion-menu-01 {
  width: 100%;
  margin: 0 auto 30px auto;
}

.c-accordion-menu-01 li {
  display: block;
  background: #fff;
  border-top: 1px solid #dcdcdc;
  border-right: 1px solid #dcdcdc;
  border-left: 1px solid #dcdcdc;
}

.c-accordion-menu-01 li:last-child {
  border-bottom: 1px solid #dcdcdc;
}

.c-accordion-menu-01__check {
  display: none;
}

.c-accordion-menu-01__check:checked + .c-accordion-menu-01__question + .c-accordion-menu-01__answer {
  padding: 10px;
  height: auto;
  opacity: 1;
  visibility: visible;
}

.c-accordion-menu-01__check:checked + .c-accordion-menu-01__question::after {
  content: "－";
}

.c-accordion-menu-01__question {
  position: relative;
  display: block;
  padding: 15px 50px 15px 20px;
  font-size: 18px;
  font-weight: bold;
  color: #345887;
  background: #fff;
}

.c-accordion-menu-01__question::after {
  position: absolute;
  display: block;
  top: 50%;
  transform: translate(0, -50%);
  right: 0;
  padding: 15px;
  box-sizing: border-box;
  content: "＋";
}

.c-accordion-menu-01__answer {
  padding: 0 10px;
  height: 0;
  opacity: 0;
  visibility: hidden;
  border-top: 1px solid #dcdcdc;
  transition: 0.5s;
  background-color: #f5f5f5;
}

.c-accordion-menu-01__answer p {
  width: 95%;
  margin: 0 auto;
  line-height: 1.4;
  font-size: 16px;
  word-break: break-word;
}

@media screen and (min-width: 768px) {
  .c-accordion-menu-01 {
    margin-bottom: 50px;
  }
  .c-accordion-menu-01__question {
    padding-right: 70px;
    font-size: 22px;
    cursor: pointer;
  }
  .c-accordion-menu-01__question::after {
    padding: 20px;
  }
  .c-accordion-menu-01__answer p {
    width: 98%;
    line-height: 1.6;
  }
}
/*
　ポイント（３カラム）-08
================================*/
.c-point-col3-08 {
  width: 95%;
  margin: 0 auto;
  box-sizing: border-box;
}

.c-point-col3-08__unit {
  margin-bottom: 50px;
  background: #fff;
  border: solid 1px #25a1aa;
  border-radius: 5px;
  box-sizing: border-box;
}

.c-point-col3-08__head {
  position: relative;
}

.c-point-col3-08__head span {
  position: absolute;
  top: 0;
  left: 0;
  padding: 6px;
  font-family: "Arial", sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: #fff;
  background: #25a1aa;
  border-radius: 3px 0 5px 0;
}

.c-point-col3-08__head h3 {
  padding: 52px 20px 0 20px;
  line-height: 1.5;
  font-size: 20px;
  font-weight: bold;
  color: #333;
}

.c-point-col3-08__body {
  padding: 15px 20px 20px 20px;
}

.c-point-col3-08__body p {
  line-height: 1.6;
  font-size: 16px;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-point-col3-08 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    padding: 0 8px;
  }
  .c-point-col3-08__unit {
    display: flex;
    flex-direction: column;
    width: 30%;
  }
  .c-point-col3-08__head span {
    padding: 10px;
    font-size: 24px;
  }
  .c-point-col3-08__head h3 {
    padding: 65px 25px 0 25px;
  }
  .c-point-col3-08__body {
    padding: 25px 25px 30px 25px;
  }
}
/*
　ページタイトル-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 h1 {
  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 h1 {
    font-size: clamp(20px, 1.7543859649vw, 23px);
  }
}
/*
　挨拶-03
================================*/
.c-greeting-03__image {
  max-width: 100%;
  text-align: center;
}

.c-greeting-03__image img {
  display: inline-block;
  aspect-ratio: 5/4;
  -o-object-fit: contain;
     object-fit: contain;
}

.c-greeting-03__body {
  position: relative;
  width: 90%;
  margin: -20px auto 0 auto;
  padding: 25px;
  background: rgba(255, 255, 255, 0.9);
  box-sizing: border-box;
  z-index: 50;
}

.c-greeting-03__body h3 {
  margin-bottom: 25px;
  font-size: clamp(22px, 3.125vw, 28px);
  font-weight: 900;
  color: #25a1aa;
  font-family: "Noto Serif JP", serif;
  line-height: 1.5;
}

.c-greeting-03__body__text {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.6;
}

.c-greeting-03__body__title {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.c-greeting-03__body__post {
  margin-right: 10px;
  font-size: 15px;
}

.c-greeting-03__body__name {
  font-size: 18px;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-greeting-03 {
    max-width: 1140px;
    margin: 0 auto;
  }
  .c-greeting-03__image {
    width: 40%;
    text-align: center;
  }
  .c-greeting-03__image img {
    aspect-ratio: auto;
    width: auto;
    object-fit: none;
    display: inline-block;
  }
  .c-greeting-03__body {
    width: 68%;
    margin: -300px 0 0 auto;
    padding: 40px;
  }
  .c-greeting-03__body h3 {
    margin-bottom: 30px;
    font-size: clamp(25px, 2.1929824561vw, 40px);
  }
  .c-greeting-03__body__text {
    margin-bottom: 15px;
    font-size: 18px;
  }
  .c-greeting-03__body__post {
    margin-right: 15px;
    font-size: 16px;
  }
  .c-greeting-03__body__name {
    font-size: 20px;
  }
}
/* ━━━━━━━━━━━━━━━━

 ■レイアウト

━━━━━━━━━━━━━━━━ */
/*=================================

* ヘッダー

=================================*/
html {
  scroll-padding-top: 70px;
}

header {
  margin-bottom: 0;
  border-bottom: none;
}

.l-header {
  position: relative;
  width: 100%;
  height: 65px;
  margin: 0;
}

.l-header__wrapper {
  position: fixed;
  width: 100%;
  height: 65px;
  padding: 5px 10px;
  background-color: rgba(250, 250, 250, 0.9);
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
  z-index: 99;
  box-sizing: border-box;
}

.l-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 55px;
}

/* ロゴ */
.l-header__logo {
  margin: 10px 0 10px 0;
  width: 200px;
}

.l-header__logo a {
  display: block;
  text-decoration: none;
}

.l-header__logo span {
  font-size: 18px !important;
  font-weight: 900;
  color: #333;
}

.l-header__logo img {
  display: block;
  max-width: 200px;
  max-height: 50px;
}

/* 問合わせ */
.l-header__contact {
  display: none;
}

/* ナビゲーション */
.l-header__nav {
  display: none;
}

/* ハンバーガーメニュー */
.l-header__menu__button {
  display: block;
  padding-right: 10px;
}

.l-header__menu__button a {
  display: block;
  text-align: center;
  text-decoration: none;
  color: #1f2a34;
}

.l-header__menu__button i {
  font-size: 35px;
}

.l-header__sp-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 100px 20px 65px 20px;
  background: #fefefe;
  transform: translateY(min(-100%, -1000px));
  transition: transform 0.5s;
  z-index: 50;
}

.l-header__sp-menu.__open {
  transform: translateY(0);
  transition: transform 0.5s;
}

.l-header__sp-menu ul li {
  width: 100%;
  height: auto;
  border-top: 1px solid #919191;
}

.l-header__sp-menu ul li:hover {
  background: #747474;
}

.l-header__sp-menu ul li:last-child {
  border-bottom: 1px solid #919191;
}

.l-header__sp-menu ul li a {
  display: block;
  width: 100%;
  height: 3em;
  margin-left: 1em;
  line-height: 3em;
  text-decoration: none;
  font-size: 1em;
  color: #25a1aa;
}

.l-header__sp-menu ul li a:hover {
  color: #fff;
}

.l-header__sp-menu__mypage li {
    border-top: none !important;
}

.l-header__sp-menu--tel,
.l-header__sp-menu--mail {
  text-align: center;
}

.l-header__sp-menu--tel a {
  display: inline-block;
  margin-top: 50px;
  text-decoration: none;
  line-height: 1;
  font-family: "Arial", "Noto Sans JP", sans-serif;
  font-size: 32px;
  font-weight: bold;
  color: #25a1aa;
}

.l-header__sp-menu--tel p {
  text-align: center;
  font-size: 16px;
  color: #5f5f5f;
}

.l-header__sp-menu--mail a {
  display: inline-block;
  margin: 30px auto;
  padding: 15px 40px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 16px;
  color: #FFF;
  background-color: #25a1aa;
  box-sizing: border-box;
}

.l-header__sp-menu--mail a i {
  margin-right: 5px;
}

/* ページタイトル */
.l-header__page-title {
  padding: 10px 8px;
  font-size: 13px;
}

@media print {
  .l-header__sp-menu {
    display: none;
  }
}
/* PC */
@media screen and (min-width: 768px) {
  .l-header {
    height: auto;
  }
  .l-header__wrapper {
    position: relative;
    display: block;
    height: auto;
    padding: 0;
  }
  .l-header__inner {
    max-width: 1140px;
    height: auto;
    margin: 0 auto;
    padding: 13px 8px;
  }
  /* ロゴ */
  .l-header__logo {
    width: 300px;
    margin-left: 0;
  }
  .l-header__logo span {
    line-height: 40px;
    font-size: clamp(24px, 2.6315789474vw, 30px) !important;
  }
  .l-header__logo img {
    max-width: clamp(200px, 23.6842105263vw, 270px);
    max-height: 60px;
  }
  /* コンタクト */
  .l-header__contact {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    align-items: center;
    width: 55%;
  }
  .l-header__contact__tel {
    margin-right: 10px;
    line-height: 1.2;
    text-align: right;
    font-size: 26px;
    font-family: "Century Gothic", "Arial", "Noto Sans JP", sans-serif;
  }
  .l-header__contact__tel i {
    margin-right: 5px;
  }
  .l-header__contact__mail {
    margin-right: 10px;
  }
  .l-header__contact__mail a {
    display: block;
    padding: 4px 16px 6px 16px;
    text-align: center;
    text-decoration: none;
    font-weight: 500;
    color: #fff;
    border-radius: 3px;
    background: #25a1aa;
  }
  .l-header__contact__mail a i {
    margin-right: 5px;
  }
  .l-header__contact__mail a:hover {
    background-color: #25a1aa;
  }
  .l-header__contact__mypage a {
    display: block;
    padding: 4px 16px 6px 16px;
    text-align: center;
    text-decoration: none;
    font-weight: 500;
    color: #fff;
    border-radius: 3px;
    background: #25a1aa;
  }  
  .l-header__contact__mypage a i {
    margin-right: 5px;
  }
  
  /* ナビゲーション */
  .l-header__nav {
    display: block;
    border-bottom: 3px solid #25a1aa;
    border-top: 1px solid #ccc;
    background: #fff;
  }
  .l-header__nav ul {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1140px;
    height: auto;
    margin: 0 auto;
  }
  .l-header__nav ul li {
    width: 16.5%;
    border-left: solid 1px #ccc;
  }
  .l-header__nav ul li:last-child {
    border-right: solid 1px #ccc;
  }
  .l-header__nav ul li a {
    display: block;
    padding: 10px 5px;
    text-align: center;
    text-decoration: none;
    font-size: clamp(15px, 1.4035087719vw, 16px);
    color: #333;
  }
  .l-header__nav ul li a:hover {
    color: #fff;
    background-color: #25a1aa;
  }
  .l-header__menu__button {
    display: none;
  }
  .l-header__sp-menu {
    display: none;
  }
  /* ページタイトル */
  .l-header__page-title {
    max-width: 1140px;
    margin: 0 auto;
    padding: 10px 8px;
    font-size: 14px;
  }
}
/*=================================

* メインビジュアル

=================================*/
.l-main-visual {
  min-height: 300px;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../img/main-visual.jpg);
  background-position: 55% 20%;
}

.l-main-visual__inner {
  width: 90%;
  margin: 0 auto;
}

.l-main-visual__inner h1 {
  padding: 30px 0;
  line-height: 1.4;
  text-align: left;
  font-family: "Noto Serif JP", serif;
  font-size: 24px;
  font-weight: 700;
  color: #25a1aa;
  text-shadow: #fff 3px 3px 3px, #fff -3px -3px 3px, #fff -3px 3px 3px, #fff 3px -3px 3px, #fff 3px 0px 3px, #fff -3px 0px 3px, #fff 0px 3px 3px, #fff 0px -3px 3px;
}

/* PC */
@media screen and (min-width: 768px) {
  .l-main-visual {
    min-height: 550px;
  }
  .l-main-visual__inner {
    max-width: 1140px;
    padding: 0 8px;
  }
  .l-main-visual__inner h1 {
    padding: 60px 0;
    font-size: clamp(44px, 4.7368421053vw, 54px);
  }
}
/*=========================================

* フッター-08

==========================================*/
.l-footer {
  background-color: #F8F8F8;
  border-top: none;
}

.l-footer__inner {
  width: 90%;
  margin: 0 auto;
  padding: 20px 0;
}

.l-footer__logo {
  margin-bottom: 15px;
  font-size: clamp(28px, 3.6458333333vw, 35px);
  font-weight: 900;
  line-height: 1;
  color: #000;
}

.l-footer__logo img {
  width: 70%;
  margin-bottom: 15px;
}

.l-footer__sns {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.l-footer__sns a:hover {
  opacity: 0.7;
}

.l-footer__sns img {
  width: 40px;
}

.l-footer__sns a:not(:first-child) {
  margin-left: 15px;
}

.l-footer__contact {
  margin-top: 30px;
}

.l-footer__contact h3 {
  position: relative;
  width: 100%;
  height: 14px;
  text-align: center;
  border-bottom: 1px solid #000;
}

.l-footer__contact h3 span {
  padding: 0 10px;
  font-size: 18px;
  background-color: #f8f8f8;
}

.l-footer__contact__shop__info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}

.l-footer__contact__shop__tel a {
  font-size: clamp(35px, 5.2083333333vw, 40px);
  font-family: "Arial", sans-serif;
  color: #333;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
}

.l-footer__contact__shop__tel i {
  margin-right: 5px;
}

.l-footer__contact__inquiry {
  margin-top: 15px;
}

.l-footer__contact__inquiry a {
  display: block;
  width: 100%;
  padding: 12px 0;
  color: #25a1aa;
  text-align: center;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #25a1aa;
}

.l-footer__contact__inquiry a:hover {
  color: #fff;
  background-color: #25a1aa;
}

/* スマホ */
@media screen and (max-width: 400px) {
  .l-footer__info {
    text-align: center;
  }
  .l-footer__contact__shop__info {
    flex-direction: column-reverse;
    text-align: center;
  }
}
/* PC */
@media screen and (min-width: 768px) {
  .l-footer__inner {
    display: flex;
    justify-content: space-between;
    width: unset;
    max-width: 1140px;
    margin: 0 auto;
    padding: 20px 10px;
  }
  .l-footer__info {
    padding-top: 5px;
    width: 40%;
  }
  .l-footer__logo {
    font-size: clamp(25px, 2.1929824561vw, 35px);
  }
  .l-footer__logo img {
    width: 60%;
    margin-bottom: 0;
  }
  .l-footer__sns {
    justify-content: flex-start;
    margin-top: 15px;
  }
  .l-footer__sns img {
    width: 40px;
  }
  .l-footer__sns a:not(:first-child) {
    margin-left: 10px;
  }
  .l-footer__contact__shop__open {
    width: 45%;
  }
  .l-footer__info p {
    font-size: 17px;
  }
  .l-footer__contact__shop__tel a {
    font-size: clamp(30px, 3.0701754386vw, 40px);
  }
  .l-footer__contact {
    width: 50%;
    margin-top: 0;
  }
  .l-footer__contact__inquiry {
    margin-top: 10px;
  }
  .copyright {
    background-color: #25a1aa;
  }
}
/* フッターナビゲーション
==============================*/
.l-footer__nav {
  padding: 20px 10px;
  background-color: #fff;
}

.l-footer__nav__inner {
  padding: 0 8px;
}

.l-footer__nav__inner ul {
  display: flex;
  flex-wrap: wrap;
}

.l-footer__nav__inner li:not(:last-child) {
  margin-right: 30px;
}

.l-footer__nav__inner li a {
  font-size: 15px;
  color: #000;
  text-decoration: none;
}

.l-footer__nav__inner li a::before {
  content: ">";
  margin-right: 3px;
}

/* PC */
@media screen and (min-width: 768px) {
  .l-footer__nav__inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0;
  }
}
/* SP */
@media screen and (max-width: 767px) {
  .btn__page_top {
    display: none !important;
  }
}
/**
 * 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;
  }
}
/* ━━━━━━━━━━━━━━━━

 ■プロジェクト

━━━━━━━━━━━━━━━━ */
/*=================================

* トップ

=================================*/
/*
　当社について
=================================*/
.p-about {
  background: #f2fbfb;
}

.p-about .l-section__container {
  padding: 0;
}

.p-about__image {
  margin-bottom: 30px;
}

.p-about__image img {
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-about__text {
  padding: 0 15px;
  line-height: 1.6;
  font-size: 16px;
}

/* PC */
@media screen and (min-width: 768px) {
  .p-about {
    padding-bottom: 100px;
  }
  .p-about__block {
    display: flex;
    justify-content: space-between;
  }
  .p-about__text {
    order: 1;
    width: calc(100% - 480px);
    margin-right: 30px;
    padding: 0;
    font-size: 18px;
  }
  .p-about__image {
    order: 2;
    margin-bottom: 0;
  }
  .p-about__image img {
    width: 450px;
    height: 300px;
  }
}
/*
　特徴（１カラム）-02
================================*/
.p-service:nth-of-type(odd) {
  background: #F1F5F8;
}

.p-service__inner {
  margin-bottom: 30px;
}

.p-service__title {
  margin-bottom: 20px;
  font-size: 22px;
  color: #25a1aa;
}

.p-service__image {
  margin-bottom: 20px;
}

.p-service__image img {
  display: block;
  width: 100%;
}

.p-service__text {
  line-height: 1.6;
}

.p-service__faq__title {
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}

.p-service .c-accordion-menu-01__question {
  padding: 10px 50px 10px 15px;
  font-size: 15px;
  font-weight: 500;
}

.c-accordion-menu-01__answer p {
  font-size: 14px;
}

/* PC */
@media screen and (min-width: 768px) {
  .p-service__title {
    margin-bottom: 30px;
    font-size: 30px;
    font-weight: bold;
  }
  .p-service__inner {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
  }
  .p-service__image {
    width: 40%;
    margin-bottom: 0;
  }
  .p-service__text {
    width: 55%;
    font-size: 18px;
  }
  .p-service__faq__title {
    font-size: 20px;
  }
  .p-service .c-accordion-menu-01__question {
    font-size: 17px;
  }
  .c-accordion-menu-01__answer p {
    font-size: 15px;
  }
}

/*
　物件検索 タイトル
================================*/
.p-estate-search-title {
  width: 90%;
  margin: 0 auto 15px auto;
  font-size: 20px;
  font-weight: bold;
  color: #25a1aa;
}

/* PC */
@media screen and (min-width: 768px) {
  .p-estate-search-title {
    width: 100%;
    font-size: 23px;
  }
}

/*=================================

* 代表挨拶

=================================*/
/*
　代表挨拶タイトル
================================*/
.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: #25a1aa;
  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 {
  padding: 0 10px;
}

.p-greeting__message__img {
  width: 100%;
  margin: 0 auto;
  margin-bottom: 30px;
  max-width: 400px;
  font-size: 0;
}

.p-greeting__message__img img {
  width: 70%;
  height: 70%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin: 0 auto;
}

.p-greeting__message__label {
  position: relative;
  margin-bottom: 20px;
}

.p-greeting__message__label:before {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 100%;
  height: 1px;
  background-color: #767171;
}

.p-greeting__message__label span {
  position: relative;
  padding-right: 1em;
  font-size: 18px;
  letter-spacing: 0.07em;
  color: #767171;
  background-color: #F5F5F5;
  line-height: 1;
  font-family: "Roboto Condensed", "Arial", sans-serif;
}

.p-greeting__message__title h3 {
  font-size: clamp(26px, 3.4444444444vw, 31px);
  font-weight: bold;
  color: #333;
  line-height: 1.4;
  font-family: "Noto Serif JP", serif;
}

/* PC */
@media screen and (min-width: 900px) {
  .p-greeting__message {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
  }
  .p-greeting__message__img {
    flex-basis: 48%;
    max-width: none;
    margin: 0;
    height: 355px;
  }
  .p-greeting__message__img img {
      width: 100%;
      height: 100%;
  }
  .p-greeting__message__title {
    flex-basis: 50%;
    margin: 0;
  }
  .p-greeting__message__label {
    margin-bottom: 30px;
  }
  .p-greeting__message__label span {
    font-size: 20px;
  }
  .p-greeting__message__title h3 {
    font-size: clamp(31px, 3.0701754386vw, 35px);
    line-height: 1.6;
  }
}
/*
　インタビュー
================================*/
.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: #25a1aa;
  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;
    margin-top: -80px;
  }
  .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 #25a1aa;
  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: #25a1aa;
}

.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: #25a1aa;
  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: 65%;
  }
  .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: #25a1aa;
  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;
  }
}

/*=================================

* 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;
}

/*=================================

* マイページ物件リクエスト

=================================*/

/*
　吹き出し付き見出し
================================*/
.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: #25a1aa;
    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 #25a1aa;
}

.p-request__title {
    font-size: clamp(26px, 26/320*100vw, 35px);
    font-weight: 900;
    color: #000;
}

.p-request__title em {
    display: inline-block;
    margin-left: 10px;
    font-size: clamp(30px, 30/320*100vw, 43px);
    font-weight: 900;
    font-style: unset;
    color: #f29417;
}

/* 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 {
        font-size: clamp(45px, 45/768*100vw, 50px);
        line-height: 1.1;
    }

    .p-request__title em {
        font-size: clamp(55px, 55/768*100vw, 60px);
    }
}

/*
　概要
================================*/
.p-request__lead {
    width: 95%;
    margin: 0 auto;
}

.p-request__lead h3 {
    margin-bottom: 30px;
    text-align: center;
    font-size: clamp(20px, 20/320*100vw, 25px);
    font-weight: 900;
    color: #25a1aa;
}

.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, 25/1140*100vw, 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: #25a1aa;
    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: #25a1aa 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, 23/768*100vw, 30px);
    font-weight: 900;
    text-align: center;
    color: #25a1aa;
}

.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, 25/1140*100vw, 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, 20/1140*100vw, 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;
    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: #25a1aa;
}

.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, 25/1140*100vw, 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, 135/1140*100vw, 180px);
        height: clamp(135px, 135/1140*100vw, 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: #25a1aa;
}

.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);
    }
}

/*=================================

* 不動産売却

=================================*/
/*
　タイトル（フォントサイズlg）
================================*/
.c-title--large {
  margin-bottom: 30px;
  font-size: 25px;
  font-weight: 900;
}

.c-title--large span {
  font-size: 33px;
}

.c-title--large--center {
  text-align: center;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-title--large {
    font-size: 40px;
  }
  .c-title--large span {
    font-size: 55px;
  }
}
/* PC */
@media screen and (min-width: 768px) {
  .p-sell__main--pc {
    text-align: center;
  }
}
/*
　横3つ並び枠
=================================*/
.p-sell__promise {
  width: 90%;
  margin: 0 auto 40px auto;
}

.p-sell__promise li {
  width: 100%;
  margin-bottom: 15px;
  border: 2px solid #25a1aa;
  box-sizing: border-box;
  padding: 15px;
  border-radius: 8px;
}

.p-sell__promise li h3 {
  font-size: 23px;
  margin-bottom: 10px;
  color: #25a1aa;
  text-align: center;
  line-height: 1.2;
  font-weight: 900;
}

/* PC */
@media screen and (min-width: 768px) {
  .p-sell__promise {
    margin: 0 auto 70px auto;
    width: 100%;
  }
  .p-sell__promise ul {
    display: flex;
    justify-content: space-between;
  }
  .p-sell__promise li {
    width: 32%;
    margin-right: 2%;
    margin-bottom: 0;
    padding: 20px;
  }
  .p-sell__promise li:last-child {
    margin-right: 0%;
  }
  .p-sell__promise:after {
    content: "";
    display: block;
    clear: both;
  }
  .p-sell__promise li h3 {
    font-size: 27px;
  }
}
/*
　こだわりリスト
=================================*/
/* PC */
@media screen and (min-width: 768px) {
  .p-sell__commitment {
    display: flex;
    justify-content: center;
  }
  .p-sell__commitment li {
    font-size: 20px;
  }
}

/*=================================

* 不動産買取

=================================*/
/*
　買取
=================================*/
.p-buyback__text {
  line-height: 1.7;
}

.p-buyback__caption {
  margin-bottom: 30px;
  font-size: 23px;
  font-weight: 900;
}

@media screen and (min-width: 768px) {
  .p-buyback__caption {
    font-size: 35px;
    text-align: center;
  }
}
/* 矢印付タイトル
 ======================= */
.p-triangle__title {
  margin-bottom: 30px;
  text-align: center;
}

.p-triangle__title p {
  background: #c70000;
  padding: 15px 10px 18px 10px;
  font-size: 22px;
  text-align: center;
  color: #FFF;
  font-weight: 900;
  line-height: 1.3;
}

.p-triangle__title__bottom {
  display: inline-block;
  border-style: solid;
  border-width: 30px 25px 0 25px;
  border-color: #c70000 transparent transparent transparent;
}

/* PC */
@media screen and (min-width: 768px) {
  .p-triangle__title p {
    font-size: 35px;
  }
}
/* メリットタイトル
======================= */
.p-point__title {
  margin: 0 0 20px 0;
  background: #25a1aa;
  padding: 10px;
  font-size: 25px;
  text-align: center;
  color: #FFF;
  font-weight: 900;
}

.p-point__title span {
  font-size: 28px;
  color: #fff100;
  font-family: "メイリオ", "Meiryo", "Arial", sans-serif;
}

/* PC */
@media screen and (min-width: 768px) {
  .p-point__title {
    font-size: 35px;
  }
  .p-point__title span {
    font-size: 55px;
  }
}
.p-management__lead {
  font-size: 1.1rem !important;
}

/* PC */
@media screen and (min-width: 768px) {
  .p-management__lead {
    font-size: 1.2rem !important;
    text-align: center;
  }
}

/*
　お知らせ-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: #25a1aa;
    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: #25a1aa;
        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: #25a1aa;
        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: #25a1aa;
    }

    .c-news-list-01__button__pc .fa {
        margin-left: 10px;
    }

    .c-news-list-01__button__sp {
        display: none;
    }
}

/*
　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%;
    }
}


/*
　セクションタイトル-06
================================*/
.c-section-title-06 {
    position: relative;
    padding: 30px 0;
    overflow: hidden;
}

.c-section-title-06::after {
    content: "RENOVATION";
    position: absolute;
    top: -15px;
    left: 15px;
    letter-spacing: 0.5rem;
    font-size: 70px;
    font-family: "Arial", "Century Gothic", sans-serif;
    font-weight: bold;
    color: #f0f0f0;
    z-index: 1;
}

.c-section-title-06__inner {
    padding: 0 20px;
}

.c-section-title-06__inner h2 {
    position: relative;
    margin-bottom: 30px;
    color: #061934;
    font-size: 28px;
    font-weight: bold;
    text-align: center;
    z-index: 10;
}

.c-section-title-06__lead__image {
    position: relative;
    margin: 20px auto 70px auto;
    z-index: 10;
}

.c-section-title-06__lead__image::after {
    content: "";
    position: absolute;
    bottom: -39px;
    left: -50px;
    width: 100%;
    height: 93%;
    background-color: #113f62;
    z-index: 1;
}

.c-section-title-06__lead__image img {
    position: relative;
    width: 100%;
    height: auto;
    z-index: 10;
}

.c-section-title-06__lead__text {
    position: relative;
    z-index: 10;
}

/* PC */
@media screen and (min-width: 768px) {
    .c-section-title-06 {
        padding: 50px 0;
    }
    
    .c-section-title-06::after {
        top: -30px;
        right: 0;
        left: auto;
        font-size: clamp(120px, 180 / 1140 * 100vw, 180px);
    }
    
    .c-section-title-06__inner {
        max-width: 1320px;
        margin: 0 auto;
        padding: 0;
    }

    .c-section-title-06__inner h2 {
        font-size: 46px;
    }

    .c-section-title-06__lead {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .c-section-title-06__lead__image {
        max-width: 700px;
        width: 55%;
        margin: 0;
    }

    .c-section-title-06__lead__text {
        width: 40%;
        line-height: 1.8;
        letter-spacing: 0.5px;
        font-size: 18px;
    }
}

/*
　バナー（１カラム）-08
=================================*/
.c-banner-col1-08 {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: url(../img/banner-col1-08__bg.jpg) no-repeat center center / cover;
    margin: 30px 0;
}

.c-banner-col1-08 a {
    position: relative;
    display: block;
    width: 100%;
    text-decoration: none;
    padding: 25px 0;
    text-align: center;
    box-sizing: border-box;
}

.c-banner-col1-08 a::before {
    position: absolute;
    content: '';
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 0.25);
}

.c-banner-col1-08__inner {
    position: relative;
    width: 90%;
    margin: 0 auto;
}

.c-banner-col1-08__label {
    margin-bottom: 10px;
    padding: 10px 15px;
    font-size: clamp(20px, 20/768*100vw, 25px);
    font-weight: bold;
    background-color: #25a1aa;
    border-radius: 25px;
    color: #FFF;
    line-height: 1;
    box-sizing: border-box;
}

.c-banner-col1-08__text h2 {
    margin: 15px 0;
    font-size: clamp(40px, 40/768*100vw, 50px);
    font-weight: 900;
    color: #f29417;
    text-shadow: #fff 3px 3px 3px, #fff -3px -3px 3px, 
    #fff -3px 3px 3px, #fff 3px -3px 3px, #fff 3px 0px 3px, 
    #fff -3px 0px 3px, #fff 0px 3px 3px, #fff 0px -3px 3px;
    line-height: 1;
}

.c-banner-col1-08__text p {
    line-height: 1.6;
    font-size: clamp(17px, 17/768*100vw, 20px);
    font-weight: bold;
    color: #000;
    text-shadow: #fff 2px 2px 2px, #fff -2px -2px 2px, 
    #fff -2px 3px 2px, #fff 2px -2px 2px, #fff 2px 0px 2px, 
    #fff -2px 0px 2px, #fff 0px 2px 2px, #fff 0px -2px 2px;
}

.c-banner-col1-08__button p:first-child {
    font-size: clamp(17px, 17/768*100vw, 20px);
    font-weight: bold;
    color: #000;
    text-shadow: #fff 2px 2px 2px, #fff -2px -2px 2px, 
    #fff -2px 3px 2px, #fff 2px -2px 2px, #fff 2px 0px 2px, 
    #fff -2px 0px 2px, #fff 0px 2px 2px, #fff 0px -2px 2px;
}

.c-banner-col1-08__button p:last-child {
    display: block;
    max-width: 350px;
    margin: 20px auto 0;
    padding: 10px 10px;
    font-size: clamp(18px, 5.6vw, 22px);
    font-weight: bold;
    text-decoration: none;
    color: #FFF;
    background:  #f29417;
}

.c-banner-col1-08 a:hover {
    opacity: 0.9;
}

.c-banner-col1-08 a:hover .c-banner-col1-08__button p:last-child {
    color: #25a1aa;
    background: #fedb39;
}

/* PC */
@media screen and (min-width:768px) {
    .c-banner-col1-08 {
        max-width: 1140px;
        margin: 50px auto;
    }

    .c-banner-col1-08 a {
        padding: 35px 0;
    }

    .c-banner-col1-08__inner {
        width: 95%;
        max-width: 1000px;
    }

    .c-banner-col1-08__label {
        margin-bottom: 20px;
    }

    .c-banner-col1-08__detail {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        text-align: left;
    }

    .c-banner-col1-08__text {
        text-align: center;
    }

    .c-banner-col1-08__text p {
        font-size: clamp(14px, 18/1140*100vw, 20px);
    }

    .c-banner-col1-08__text h2 {
        margin: 10px 0 0 0;
        font-size: clamp(30px, 50/1140*100vw, 50px);
    }

    .c-banner-col1-08__button p:first-child {
        font-size: clamp(15px, 17/1140*100vw, 18px);
    }

    .c-banner-col1-08__button p:last-child {
        margin: 20px 0 0 0;
        font-size: clamp(17px, 20/1140*100vw, 22px);
        text-align: center;
    }
}

/*
　AI簡易査定-02
================================*/
.c-banner-ai-satei-02 {
    display: block;
    max-width: 500px;
    margin: 0 auto;
    padding: 0 8px;
    text-decoration: none !important;
    color: inherit;
}

.c-banner-ai-satei-02__inner {
    background: linear-gradient(135deg, #0f766e 0%, #0d9488 50%, #4f46e5 100%);
    border-radius: 1rem;
    overflow: hidden;
    padding: 1.5rem 1.25rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.c-banner-ai-satei-02:hover .c-banner-ai-satei-02__inner {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.c-banner-ai-satei-02__content {
    display: flex;
    flex-direction: column;
    gap: 2em 1em;
}

.c-banner-ai-satei-02__lead {
    font-size: 19px;
    font-weight: bold;
    line-height: 1.4;
    color: #ffffff;
}

.c-banner-ai-satei-02__title {
    font-size: 40px;
    line-height: 1.3;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.c-banner-ai-satei-02__title span {
    font-size: 1.15em;
    display: inline-block;
    vertical-align: text-bottom;
}

.c-banner-ai-satei-02__description {
    font-size: 16px;
    color: #ffffff;
    line-height: 1.7;
    margin-bottom: 10px;
}

.c-banner-ai-satei-02__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.c-banner-ai-satei-02__tag {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 700;
    color: #0d9488;
    background-color: #ffffff;
    border-radius: 2rem;
    padding: 0.25rem 0.75rem;
}

.c-banner-ai-satei-02__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-02__image img {
    width: 100%;
    filter: drop-shadow(3px 3px 4px #CCC);
    margin-bottom: -100%;
}

.c-banner-ai-satei-02__action {
    margin-top: 1rem;
}

.c-banner-ai-satei-02__button {
    display: inline-flex;
    align-items: center;
    padding: 0;
    padding-bottom: 0.15rem;
    background: none;
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 700;
    text-decoration: none !important;
    border: none;
    position: relative;
}

.c-banner-ai-satei-02__button::before {
    content: "";
    background: #fff;
    position: absolute;
    left: 0;
    bottom: -2px;
    height: 1.5px;
    width: 100%;
    transform: scaleX(1);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.c-banner-ai-satei-02:hover .c-banner-ai-satei-02__button::before {
    transform: scaleX(0);
    transform-origin: right;
}

.c-banner-ai-satei-02__button::after {
    font-family: 'FontAwesome';
    content: '\f105';
    margin-left: 0.3rem;
    font-weight: normal;
}

.c-banner-ai-satei-02__note {
    margin-top: 0.4rem;
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.7);
}

/* PC */
@media screen and (min-width: 768px) {
    .c-banner-ai-satei-02 {
        max-width: 800px;
    }

    .c-banner-ai-satei-02__inner {
        padding: 1.75rem 1.75rem 0;
    }

    .c-banner-ai-satei-02__content {
        flex-direction: row;
        align-items: stretch;
        justify-content: space-between;
        gap: 2rem;
    }

    .c-banner-ai-satei-02__text {
        flex: 1;
        padding-bottom: 1.75rem;
    }

    .c-banner-ai-satei-02__lead {
        font-size: 23px;
    }

    .c-banner-ai-satei-02__title {
        font-size: clamp(40px, 50/1140*100vw, 50px);
        line-height: 1.1;
        margin-bottom: 10px;
    }

    .c-banner-ai-satei-02__title span {
        font-size: 1.2em;
        display: inline-block;
        line-height: 0.9;
        vertical-align: bottom;
    }

    .c-banner-ai-satei-02__description {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .c-banner-ai-satei-02__button {
        font-size: 16px;
    }

    .c-banner-ai-satei-02__image {
        min-height: 250px;
        max-width: 300px;
        display: flex;
        flex-shrink: 0;
        align-items: flex-end;
        width: 220px;
        overflow: hidden;
        align-self: stretch;
    }

    .c-banner-ai-satei-02__image img {
        width: 200px;
        margin-bottom: -65%;
    }
}


/*
　AI簡易査定-03
================================*/
.c-banner-ai-satei-03 {
    display: flex;
    align-items: stretch;
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
    flex-direction: column;
    background-image: url(../img/banner__ai-satei__bg.jpg);
    background-size: cover;
    background-position: 35% 50%;
    background-repeat: no-repeat;
    text-decoration: none !important;
    gap: 30px;
}

.c-banner-ai-satei-03::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3);
    pointer-events: none;
}

.c-banner-ai-satei-03__text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    min-height: auto;
    order: 1;
    max-width: 400px;
    margin: 0 auto;
    padding: 30px 20px 15px;
    color: #fff;
    background-color: transparent;
}

.c-banner-ai-satei-03__text h2 {
    display: flex;
    align-items: center;
    font-size: 50px;
    font-weight: 900;
    line-height: 1.2;
    color: #fcff00;
}

.c-banner-ai-satei-03__text h2 span {
    font-size: 1.15em;
}

.c-banner-ai-satei-03__catch {
    font-size: 19px;
    font-weight: bold;
    line-height: 1.4;
}

.c-banner-ai-satei-03__description {
    margin-top: 10px;
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.4;
}

.c-banner-ai-satei-03__points {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 20px;
    padding: 0;
    list-style: none;
}

.c-banner-ai-satei-03__points li {
    display: inline-block;
}

.c-banner-ai-satei-03__points li span {
    display: inline-block;
    padding: 5px 10px;
    background-color: #f5f5f5;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    border-radius: 20px;
    white-space: nowrap;
}

.c-banner-ai-satei-03__button {
    display: inline-block;
    color: #fff;
    border-radius: 4px;
    font-weight: bold;
    font-size: 21px;
    text-align: center;
    width: fit-content;
    transition: all 0.3s ease;
    position: relative;
}

.c-banner-ai-satei-03__button::after {
    font-family: 'FontAwesome';
    content: '\f105';
    margin-left: 0.3rem;
    font-weight: normal;
}

.c-banner-ai-satei-03 .c-banner-ai-satei-03__button::before {
    content: "";
    background: #fff;
    position: absolute;
    left: 0;
    bottom: -5px;
    transform: scaleX(1);
    transform-origin: left;
    transition: transform 0.5s ease;
    height: 1px;
    width: 100%;
}

.c-banner-ai-satei-03:hover .c-banner-ai-satei-03__button::before {
    transform: scaleX(0);
    transform-origin: right;
}

.c-banner-ai-satei-03__image {
    flex: 1;
    min-height: 250px;
    max-width: 300px;
    order: 2;
    width: 90%;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    display: flex;
    align-items: end;
}

.c-banner-ai-satei-03__image img {
    width: 100%;
    filter: drop-shadow(3px 3px 4px #CCC);
    margin-bottom: -90%;
}

/* PC */
@media screen and (min-width:768px) {
    .c-banner-ai-satei-03 {
        flex-direction: row;
        justify-content: center;
        gap: 20px;
        padding: 0 70px;
        max-width: 1140px;
        margin: 0 auto;
        box-sizing: border-box;
    }
    
    .c-banner-ai-satei-03__text {
        min-height: 350px;
        max-width: none;
        flex-basis: 40%;
        flex: none;
        margin: 0;
        padding: 0;
        flex-basis: 60%;
    }

    .c-banner-ai-satei-03__catch {
        font-size: 23px;
    }
    
    .c-banner-ai-satei-03__text h2 {
        font-size: clamp(40px, 60/1140*100vw, 60px);
        line-height: 1;
    }

    .c-banner-ai-satei-03__text h2 span {
        font-size: 1.2em;
    }

    .c-banner-ai-satei-03__description {
        font-size: 16px;
        font-size: clamp(16px, 20/1140*100vw, 20px);
    }
    
    .c-banner-ai-satei-03__points {
        gap: 10px;
        margin-bottom: 25px;
    }
    
    .c-banner-ai-satei-03__points li span {
        padding: 6px 14px;
        font-size: 18px;
        font-size: clamp(16px, 18/1140*100vw, 18px);
    }
    
    .c-banner-ai-satei-03__button {
        font-size: 21px;
        font-size: clamp(18px, 21/1140*100vw, 21px);
    }
    
    .c-banner-ai-satei-03__image {
        min-height: 300px;
        max-width: 340px;
        width: auto;
        margin: 0;
        flex-basis: 40%;
        display: inline-block;
        margin-top: 40px;
    }

    .c-banner-ai-satei-03__image img {
        width: 100%;
        margin-bottom: -100%;
    }
}