@charset "UTF-8";
:root {
  --color-1: #e50012;
  --color-2: #0b3c5d;
  --color-3: #767171;
}

/* ━━━━━━━━━━━━━━━━

 ■初期化

━━━━━━━━━━━━━━━━ */
html {
  scroll-padding-top: 55px;
}

/* PC */
@media screen and (min-width: 768px) {
  html {
    scroll-padding-top: 85px;
  }
}
html > body {
  font-size: 16px;
}

body {
  font-family: "Noto Sans Japanese", sans-serif;
  min-width: auto !important;
}

/* ━━━━━━━━━━━━━━━━

 ■ユーティリティ

━━━━━━━━━━━━━━━━ */
/**
 * Display
 */
/*==================================
* media
==================================*/
@media screen and (min-width: 768px) {
  .u-hidden-pc {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .u-hidden-sp {
    display: none;
  }
}

/**
 * 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-pt-80 {
  padding-top: 80px !important;
}

.u-pb-0 {
  padding-bottom: 0 !important;
}

.u-pd-0 {
  padding: 0 !important;
}

/**
 * Text
 */
/*==================================
* color
==================================*/
.u-fc-light {
  color: #ced4da !important;
}

.u-fc-dark {
  color: #343a40 !important;
}

.u-fc-blue {
  color: #345887 !important;
}

.u-fc-red {
  color: #dc3545 !important;
}

.u-fc-red-dark {
  color: #ad002d !important;
}

.u-fc-green {
  color: #03967a !important;
}

.u-fc-orange {
  color: #FF8C00 !important;
}

.u-fc-white {
  color: #fff !important;
}

.u-fc-yellow {
  color: #ffc107 !important;
}

/*==================================
* font-size
==================================*/
.u-fs-h1 {
  font-size: 2rem !important;
}

.u-fs-h2 {
  font-size: 1.5rem !important;
}

.u-fs-h3 {
  font-size: 1.1rem !important;
}

@media screen and (min-width: 768px) {
  .u-fs-h1 {
    font-size: 2.5rem !important;
  }
  .u-fs-h2 {
    font-size: 1.7rem !important;
  }
  .u-fs-h3 {
    font-size: 1.2rem !important;
  }
}
/*==================================
* font-weight
==================================*/
.u-fw-bold {
  font-weight: bold !important;
}

/*==================================
* align
==================================*/
.u-text-top {
  vertical-align: top !important;
}

.u-text-center {
  text-align: center !important;
}

.u-text-right {
  text-align: right !important;
}

.u-text-left {
  text-align: left !important;
}

.u-text-middle {
  vertical-align: middle !important;
}

.u-text-bottom {
  vertical-align: bottom !important;
}

@media screen and (min-width: 768px) {
  .u-text-pc-center {
    text-align: center;
  }
}

@media screen and (max-width: 767px) {
  .u-text-sp-center {
    text-align: left;
  }
}

@media screen and (max-width: 767px) {
  .u-text-sp-left {
    text-align: left !important;
  }
}

/*==================================
* マーカー
==================================*/
.u-text-marker {
  background: linear-gradient(transparent 70%, #FFF799 70%);
}

.u-text-marker--orange {
  background: linear-gradient(transparent 75%, #ffbf7f 75%);
}

/* ━━━━━━━━━━━━━━━━

 ■コンポーネント

━━━━━━━━━━━━━━━━ */
/**
 * Block
 */
/*==================================
* コンテナ
==================================*/
.c-block {
  margin: 0 auto;
  padding: 30px 0;
}

@media screen and (min-width: 768px) {
  .c-block {
    max-width: 1140px;
  }
}
/**
 * Button
 */
/*==================================
* 標準
==================================*/
.c-button {
  width: 90%;
  display: block;
  margin: 0 auto;
  padding: 10px 5px;
  text-decoration: none;
  text-align: center;
  border-radius: 30px;
  background-color: var(--color-3);
}

.c-button,
.c-button:link,
.c-button:visited {
  text-decoration: none;
  color: #FFF;
}

.c-button:hover {
  opacity: 0.8;
}

@media screen and (min-width: 768px) {
  .c-button {
    width: 45%;
    padding: 8px 10px 10px 10px;
    font-size: 17px;
  }
}
/*
　プライマリボタン
================================*/
.c-button--primary {
  width: 90%;
  display: block;
  padding: 20px 10px;
  margin: 0 auto;
  background-color: var(--color-1);
  text-decoration: none;
  text-align: center;
}

.c-button--primary,
.c-button--primary:link,
.c-button--primary:visited {
  text-decoration: none;
  color: #FFF;
}

.c-button--primary:hover {
  opacity: 0.8;
}

@media screen and (min-width: 768px) {
  .c-button--primary {
    width: 30%;
    font-size: 17px;
  }
}
/*
　セカンダリボタン
================================*/
.c-button--secondary {
  width: 90%;
  display: block;
  padding: 20px 10px;
  margin: 0 auto;
  background-color: var(--color-2);
  text-decoration: none;
  text-align: center;
}

.c-button--secondary,
.c-button--secondary:link,
.c-button--secondary:visited {
  text-decoration: none;
  color: #FFF;
}

.c-button--secondary:hover {
  background-color: var(--color-3);
}

@media screen and (min-width: 768px) {
  .c-button--secondary {
    width: 30%;
    font-size: 17px;
  }
}
/*
　アウトラインボタン
================================*/
.c-button-outline {
  width: 90%;
  padding: 15px 10px;
  display: block;
  text-align: center;
  font-weight: bold;
  border: 1.5px solid #111;
  margin: 0 auto;
}

.c-button-outline,
.c-button-outline:link,
.c-button-outline:visited {
  text-decoration: none;
  color: #111;
}

.c-button-outline:hover {
  border-color: transparent;
  color: #FFF;
  background-color: var(--color-1);
}

/* PC */
@media screen and (min-width: 768px) {
  .c-button-outline {
    width: 40%;
    font-size: 20px;
  }
}
/*==================================
* コンテナ（1カラム）
==================================*/
.c-button-container {
  max-width: 1140px;
  margin: 0 auto;
}

/*
　システム標準-H2
================================*/
h2.tit {
  width: 90%;
  text-align: center;
  color: #000;
  font-size: 1.4rem;
  font-weight: bold;
  margin: 0 auto 30px auto;
  padding: 0;
  background-color: transparent !important;
}

/* PC */
@media screen and (min-width: 768px) {
  h2.tit {
    width: 100%;
    font-size: 2rem;
  }
}
/*
　システム標準-H3
================================*/
h3.tit {
  position: relative;
  border-bottom: 4px solid #ccc;
  margin: 0 0 20px 0;
  padding: 15px 10px 15px 0;
  font-size: 1.1rem;
  background: transparent;
  text-shadow: none;
  border-top: none;
}

h3.tit:after {
  position: absolute;
  bottom: -4px;
  left: 0;
  z-index: 2;
  content: "";
  width: 20%;
  height: 4px;
  background-color: var(--color-1);
}

/* PC */
@media screen and (min-width: 768px) {
  h3.tit {
    max-width: 1140px;
    margin: 0 auto 40px auto;
    padding: 0 0 10px 0;
    font-size: 1.3rem;
  }
}
/*
　シンプル-01・中央寄せ
================================*/
.c-title-01 {
  width: 90%;
  font-size: 1.4rem;
  font-weight: 900;
  text-align: center;
  color: #000;
  margin: 0 auto 30px auto;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-title-01 {
    width: 100%;
    font-size: 2.5rem;
  }
}
.c-title-01--white {
  width: 90%;
  font-size: 1.8rem;
  font-weight: 900;
  text-align: center;
  color: #fff;
  margin: 30px auto 30px auto;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-title-01--white {
    width: 100%;
    font-size: 2.5rem;
    margin: 0 auto 30px auto;
  }
}
/*
　シンプル-02・テキストカラー
================================*/
.c-title-02,
.c-title-02--color-2 {
  font-size: 30px;
  font-weight: 900;
  line-height: 1.3;
  text-align: center;
  color: var(--color-1);
  margin-bottom: 30px;
}

.c-title-02--color-2 {
  color: var(--color-2);
}

/* PC */
@media screen and (min-width: 768px) {
  .c-title-02,
  .c-title-02--color-2 {
    font-size: 53px;
    margin-bottom: 50px;
  }
}
/*
　ルビ付き-01
================================*/
.c-title-ruby-01 {
  margin: 0 auto 20px auto;
  text-align: center;
}

.c-title-ruby-01 h2 {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.c-title-ruby-01 span {
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.c-title-ruby-01 span:before,
.c-title-ruby-01 span:after {
  content: "";
  width: 2em;
  border-top: 1px solid;
}

.c-title-ruby-01 span:before {
  margin-right: 0.7em;
}

.c-title-ruby-01 span:after {
  margin-left: 0.7em;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-title-ruby-01 {
    margin: 0 auto 50px auto;
  }
  .c-title-ruby-01 h2 {
    font-size: 2.5rem;
    margin-bottom: 7px;
  }
  .c-title-ruby-01 span {
    font-size: 1.2rem;
  }
}
/*
　ルビ付き-02
================================*/
.c-title-ruby-02 {
  position: relative;
  font-size: 1.8rem;
  font-weight: 500;
  border-bottom: 1px solid #333;
  margin-bottom: 30px;
  padding: 30px 0 10px 0;
}

.c-title-ruby-02 span {
  position: relative;
  line-height: 1.5;
  z-index: 2;
}

.c-title-ruby-02::before {
  content: attr(data-en);
  position: absolute;
  top: 20px;
  left: 10px;
  color: rgba(15, 10, 50, 0.1);
  font-size: 2rem;
  font-weight: bold;
  font-family: "Arial", sans-serif;
  z-index: 1;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-title-ruby-02 {
    font-size: 3rem;
    margin-bottom: 50px;
  }
  .c-title-ruby-02::before {
    top: 0;
    left: 20px;
    font-size: 4.3rem;
  }
}
/*
　ルビ付き-03
================================*/
.c-title-ruby-03 {
  width: 90%;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
  font-family: "Noto Serif JP", serif;
  color: var(--color-1);
  margin: 0 auto 30px auto;
}

.c-title-ruby-03 span {
  display: block;
  font-size: 16px;
  font-weight: 400;
  font-family: "Noto Serif JP", serif;
  color: #333;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-title-ruby-03 {
    width: 100%;
    font-size: 2.3rem;
    line-height: 1.5;
    margin: 0 auto 45px auto;
  }
}
/*
　ルビ付き-04
================================*/
.c-title-ruby-04 {
  width: 90%;
  font-size: 2rem;
  font-weight: 900;
  text-align: center;
  line-height: 1.4;
  margin: 0 auto 30px auto;
}

.c-title-ruby-04::first-letter {
  color: var(--color-1);
}

.c-title-ruby-04 span {
  display: block;
  font-size: 16px;
  font-weight: normal;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-title-ruby-04 {
    width: 100%;
    font-size: 2.8rem;
    line-height: 1.4;
    margin: 0 auto 45px auto;
  }
  .c-title-ruby-04 span {
    font-size: 18px;
  }
}
/*
　ルビ付き-05
================================*/
.c-title-ruby-05 {
  margin-bottom: 20px;
}

.c-title-ruby-05 span {
  font-size: 30px;
  font-weight: 900;
  line-height: 1.2;
}

.c-title-ruby-05 h2 {
  display: flex;
  align-items: center;
  font-size: 17px;
  font-weight: bold;
  margin-bottom: 10px;
}

.c-title-ruby-05 h2:before {
  content: "";
  width: 1.5em;
  border-top: 1px solid;
  margin-right: 0.5em;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-title-ruby-05 {
    margin-bottom: 50px;
  }
  .c-title-ruby-05 span {
    font-size: 40px;
  }
  .c-title-ruby-05 h2 {
    font-size: 18px;
    margin-bottom: 7px;
  }
}
/*
　ルビ付き-06
================================*/
.c-title-ruby-06 {
  width: 90%;
  margin: 0 auto 30px auto;
  text-align: center;
  line-height: 1.4;
}

.c-title-ruby-06 h2 {
  font-size: 26px;
  font-weight: bold;
  color: #333;
}

.c-title-ruby-06 span::first-letter {
  color: var(--color-1);
}

.c-title-ruby-06 span {
  display: block;
  font-size: 16px;
  font-weight: 900;
  color: #333;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-title-ruby-06 {
    width: 100%;
    margin: 0 auto 45px auto;
  }
  .c-title-ruby-06 h2 {
    font-size: 34px;
  }
  .c-title-ruby-06 span {
    font-size: 20px;
  }
}
/*
　下線付き-01
================================*/
.c-title-border-01 {
  position: relative;
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
  width: 90%;
  margin: 0 auto 50px auto;
}

.c-title-border-01::after {
  content: "";
  display: block;
  position: absolute;
  width: 45px;
  left: calc(50% - 30px);
  bottom: -15px;
  border: 2px solid var(--color-1);
  border-radius: 50px;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-title-border-01 {
    width: 100%;
    font-size: 2.3rem;
    line-height: 1.4;
    margin: 0 auto 70px auto;
  }
}
/*
　番号付き-01
================================*/
.c-title-count-01 {
  position: relative;
  height: 100px;
  margin-right: 100px;
  padding: 20px 0 10px 15px;
  color: #fff;
  background: var(--color-1);
  box-sizing: border-box;
  margin-bottom: 50px;
  font-weight: 900;
  font-size: 22px;
}

.c-title-count-01:after {
  position: absolute;
  top: 0;
  right: -60px;
  width: 0;
  height: 0;
  content: "";
  border-width: 100px 60px 0 0;
  border-style: solid;
  border-color: var(--color-1) transparent transparent transparent;
}

.c-title-count-01 span {
  font-size: 50px;
  position: absolute;
  bottom: 0;
  right: -100px;
  display: block;
  padding-left: 16px;
  color: var(--color-1);
  font-family: "Arial", "Noto Sans Japanese", sans-serif;
  font-weight: 700;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-title-count-01 {
    margin-right: 120px;
    margin-bottom: 60px;
    padding: 20px 0 10px 20px;
    font-size: 40px;
    font-size: clamp(33px, 3vw, 40px);
  }
  .c-title-count-01 span {
    font-size: 63px;
    top: 0;
    right: -120px;
    padding-top: 10px;
  }
}
/*
　番号付き-02
================================*/
.c-title-count-02 {
  display: flex;
  align-items: flex-start;
  line-height: 1;
  border-top: 3px solid #000;
  border-bottom: 3px solid #000;
  padding: 10px 0;
}

.c-title-count-02 p {
  font-size: clamp(35px, 9vw, 100px);
  font-weight: bold;
  color: var(--color-1);
  font-family: "Arial", sans-serif;
}

.c-title-count-02 h2 {
  margin-left: 3%;
  line-height: 1.4;
  font-size: clamp(20px, 6vw, 41px);
  font-weight: 900;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-title-count-02 {
    align-items: center;
    padding: 0;
  }
  .c-title-count-02 p {
    margin-top: -2.4%;
    margin-bottom: -2.7%;
    font-size: clamp(130px, 17vw, 205px);
  }
  .c-title-count-02 h2 {
    margin-left: 40px;
    font-size: clamp(30px, 3.5vw, 45px);
  }
}
/*
　付箋風-01
================================*/
.c-title-label-01 {
  font-size: 1.2rem;
  font-weight: bold;
  background-color: #f8f8f8;
  border-left: 15px solid var(--color-1);
  margin: 0 0 15px 0;
  padding: 15px 10px;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-title-label-01 {
    font-size: 2rem;
    padding: 11px 10px 11px 20px;
    letter-spacing: 0.04em;
  }
}
/*
　背景カラー-01
================================*/
.c-title-bg-01,
.c-title-bg-01--color-2,
.c-title-bg-01--sm,
.c-title-bg-01--color-2--sm {
  margin-bottom: 30px;
  padding: 15px;
  background: var(--color-1);
}

.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: var(--color-2);
}

.c-title-bg-01--sm,
.c-title-bg-01--color-2--sm {
  padding: 10px;
}

.c-title-bg-01--sm h2,
.c-title-bg-01--color-2--sm h2,
.c-title-bg-01--sm h3,
.c-title-bg-01--color-2--sm h3 {
  font-size: clamp(20px, 3.2552083333vw, 25px);
}

/* PC */
@media screen and (min-width: 768px) {
  .c-title-bg-01,
  .c-title-bg-01--color-2,
  .c-title-bg-01--sm,
  .c-title-bg-01--color-2--sm {
    margin-bottom: 50px;
    padding: 30px 0;
    text-align: center;
  }
  .c-title-bg-01 h2,
  .c-title-bg-01--color-2 h2,
  .c-title-bg-01--sm h2,
  .c-title-bg-01--color-2--sm h2,
  .c-title-bg-01 h3,
  .c-title-bg-01--color-2 h3,
  .c-title-bg-01--sm h3,
  .c-title-bg-01--color-2--sm h3 {
    font-size: clamp(32px, 6.5104166667vw, 50px);
    letter-spacing: 0.05em;
  }
  .c-title-bg-01--sm,
  .c-title-bg-01--color-2--sm {
    padding: 15px;
  }
  .c-title-bg-01--sm h2,
  .c-title-bg-01--color-2--sm h2,
  .c-title-bg-01--sm h3,
  .c-title-bg-01--color-2--sm h3 {
    font-size: clamp(25px, 3.90625vw, 30px);
  }
}
/*
　誘導型-01
================================*/
.c-title-induction-01 {
  width: 100%;
  padding-bottom: 35px;
  box-sizing: content-box;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 75%, 50% 100%, 0 75%, 0 0);
          clip-path: polygon(0 0, 100% 0, 100% 75%, 50% 100%, 0 75%, 0 0);
  background-color: var(--color-1);
}

.c-title-induction-01__inner {
  display: flex;
  align-items: center;
  align-content: flex-start;
  justify-content: center;
  width: 90%;
  margin: 0 auto;
  padding: 4% 0 2% 0;
}

.c-title-induction-01__inner h2 {
  text-align: center;
  font-size: 20px;
  font-weight: 900;
  color: #fff;
  line-height: 1.4;
}

.c-title-induction-01 span {
  font-size: 24px;
  font-weight: 900;
  color: #fff;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-title-induction-01__inner {
    max-width: 1140px;
    padding: 25px 0 20px 0;
  }
  .c-title-induction-01__inner h2 {
    line-height: 1.3;
    font-size: clamp(36px, 2vw, 40px);
  }
  .c-title-induction-01__inner span {
    font-size: clamp(42px, 5vw, 53px);
  }
}
/*
　特徴（1カラム）-03
================================*/
.c-feature-col1-03 {
  position: relative;
  overflow: hidden;
  padding-top: 100px;
}

.c-feature-col1-03__block {
  position: relative;
}

.c-feature-col1-03__block:not(:first-child) {
  margin-top: 200px;
}

.c-feature-col1-03__block::before {
  position: absolute;
  content: "";
  display: block;
  top: -70px;
  right: 0;
  left: 0;
  bottom: -50px;
  background-color: #F2F3F8;
  z-index: -1;
}

.c-feature-col1-03__number {
  position: absolute;
  top: -100px;
  right: 10px;
  font-size: 85px;
  font-weight: bold;
  color: #fff;
  font-family: "Century Gothic", "Arial", sans-serif;
  z-index: -1;
}

.c-feature-col1-03__image {
  max-width: 100%;
  text-align: center;
}

.c-feature-col1-03__image img {
  max-width: 100%;
}

.c-feature-col1-03__text {
  width: 90%;
  margin: 0 auto;
  padding: 30px 0;
}

.c-feature-col1-03__text .c-feature-col1-03__label {
  position: relative;
  display: inline-block;
  font-size: 25px;
  font-weight: bold;
  color: var(--color-1);
  font-family: "Arial", "Century Gothic", sans-serif;
}

.c-feature-col1-03__text .c-feature-col1-03__label::after {
  position: absolute;
  content: "";
  width: 50%;
  height: 3px;
  bottom: -7px;
  left: 0;
  background-color: #E50012;
}

.c-feature-col1-03__text h2 {
  margin-top: 25px;
  margin-bottom: 20px;
  font-size: 32px;
  font-weight: 900;
  color: var(--color-2);
  line-height: 1.3;
}

.c-feature-col1-03__text p {
  line-height: 1.6;
}

/*下層部 バナー01*/
.c-feature-col1-03__system {
  width: 90%;
  margin: 0 auto;
}

.c-feature-col1-03__system h3 {
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 26px;
  font-weight: bold;
  color: var(--color-2);
}

.c-feature-col1-03__other,
.c-feature-col1-03__m-home {
  padding-top: 20px;
  background-color: #fff;
}

.c-feature-col1-03__other {
  border: 2px solid #999;
}

.c-feature-col1-03__m-home {
  margin-top: 50px;
  border: 2px solid #E50012;
}

.c-feature-col1-03__system img {
  margin-left: 20px;
  margin-right: 20px;
}

.c-feature-col1-03__system p {
  font-size: 16px;
  font-weight: bold;
}

.c-feature-col1-03__banner__tit {
  margin-top: 20px;
  margin-bottom: 25px;
  text-align: center;
}

.c-feature-col1-03__label--other,
.c-feature-col1-03__label--m-home {
  color: #fff;
  text-align: center;
  line-height: 38px;
}

.c-feature-col1-03__label--other {
  background-color: #999;
}

.c-feature-col1-03__label--m-home {
  background-color: #E50012;
}

/*下層部 バナー02*/
.c-feature-col1-03__expense {
  width: 90%;
  margin: 0 auto;
}

.c-feature-col1-03__expense__image {
  text-align: center;
  background-color: #fff;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
  padding: 25px 0;
}

.c-feature-col1-03__expense__image:not(:first-child) {
  margin-top: 30px;
}

.c-feature-col1-03__expense__image:last-child {
  margin-bottom: 50px;
}

.c-feature-col1-03__expense__image img {
  display: block;
  width: 35%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
}

.c-feature-col1-03__expense__image:nth-child(2) img {
  margin-bottom: 30px;
}

.c-feature-col1-03__expense__image p {
  font-size: 20px;
  font-weight: bold;
}

/* PC */
@media screen and (min-width: 900px) {
  .c-feature-col1-03__block:not(:first-child) {
    margin-top: 280px;
  }
  .c-feature-col1-03__block::before {
    bottom: -100px;
  }
  .c-feature-col1-03__block:nth-of-type(odd)::before {
    right: -100px;
    left: 130px;
    border-radius: 0 0 0 50px;
  }
  .c-feature-col1-03__block:nth-of-type(even)::before {
    right: 130px;
    left: -100px;
    border-radius: 0 0 50px 0;
  }
  .c-feature-col1-03__number {
    position: absolute;
    top: -110px;
    font-size: 150px;
  }
  .c-feature-col1-03__block:nth-of-type(odd) > .c-feature-col1-03__number {
    right: 10px;
  }
  .c-feature-col1-03__block:nth-of-type(even) > .c-feature-col1-03__number {
    left: 10px;
  }
  .c-feature-col1-03__reason {
    position: relative;
    display: flex;
    width: 100%;
    margin-bottom: 60px;
  }
  .c-feature-col1-03__block:nth-of-type(odd) > .c-feature-col1-03__reason {
    justify-content: flex-start;
  }
  .c-feature-col1-03__block:nth-of-type(even) > .c-feature-col1-03__reason {
    flex-direction: row-reverse;
  }
  .c-feature-col1-03__image {
    max-width: 40%;
  }
  .c-feature-col1-03__block:nth-of-type(odd) > .c-feature-col1-03__reason > .c-feature-col1-03__image {
    margin-right: 60px;
  }
  .c-feature-col1-03__block:nth-of-type(even) > .c-feature-col1-03__reason > .c-feature-col1-03__image {
    margin-left: 60px;
  }
  .c-feature-col1-03__text {
    width: 47%;
    max-width: 47%;
    margin: 0;
    margin-left: 10px;
    padding-top: 0;
  }
  .c-feature-col1-03__text h2 {
    margin-bottom: 38px;
    font-size: 45px;
  }
  .c-feature-col1-03__text p {
    font-size: 18px;
    line-height: 1.8;
  }
  /*下層部 バナー01*/
  .c-feature-col1-03__system {
    width: 100%;
    max-width: 1140px;
    margin-bottom: 80px;
  }
  .c-feature-col1-03__system h3 {
    font-size: 30px;
  }
  .c-feature-col1-03__system__inner {
    display: flex;
    justify-content: space-between;
  }
  .c-feature-col1-03__other,
  .c-feature-col1-03__m-home {
    width: 45%;
  }
  .c-feature-col1-03__m-home {
    margin-top: 0;
  }
  .c-feature-col1-03__system p {
    font-size: 20px;
  }
  /*下層部 バナー02*/
  .c-feature-col1-03__expense {
    width: 100%;
    max-width: 1140px;
    margin-bottom: 100px;
  }
  .c-feature-col1-03__expense__inner {
    display: flex;
    justify-content: space-between;
  }
  .c-feature-col1-03__expense__image {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px 0 50px 0;
    width: 33.2%;
  }
  .c-feature-col1-03__expense__image:not(:first-child) {
    margin-top: 0;
  }
  .c-feature-col1-03__expense__image:last-child {
    margin-bottom: 0;
  }
  .c-feature-col1-03__expense__image img {
    width: 37%;
  }
}
/* PC */
@media screen and (min-width: 1500px) {
  .c-feature-col1-03__image {
    max-width: 45%;
  }
  .c-feature-col1-03__text {
    width: 35%;
    max-width: 35%;
  }
}
/*
　ポイント②
================================*/
.c-point-col1-02 {
  margin-top: 80px;
  padding: 20px 15px;
  background-color: #ffffff;
  border-radius: 5px;
  box-shadow: 0 0 15px 3px rgba(118, 118, 118, 0.5);
}

.c-point-col1-02__header {
  margin-bottom: 30px;
}

.c-point-col1-02__no {
  display: block;
  font-size: 50px;
  font-weight: 900;
  color: var(--color-1);
  letter-spacing: 3px;
}

.c-point-col1-02__title {
  font-size: 22px;
  font-weight: bold;
  line-height: 1.5;
}

.c-point-col1-02__text {
  min-height: 250px;
  overflow-wrap: break-word;
  font-size: 16px;
}

.c-point-col1-02__image {
  margin-top: 20px;
  margin-bottom: 20px;
  text-align: center;
}

.c-point-col1-02__image img {
  max-width: 100%;
}

/* PC */
@media screen and (min-width: 900px) {
  .c-point-col1-02 {
    max-width: 1140px;
    padding: 70px 60px;
  }
  .c-point-col1-02__header {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
  }
  .c-point-col1-02__no {
    display: inline-block;
    font-size: 90px;
    line-height: 1;
  }
  .c-point-col1-02__title {
    margin-left: 20px;
    font-size: 30px;
  }
  .c-point-col1-02__box {
    display: flex;
    justify-content: space-between;
  }
  .c-point-col1-02__text {
    width: 54%;
    margin-right: 20px;
    font-size: 18px;
  }
  .c-point-col1-02__image {
    margin-top: 0;
    margin-bottom: 0;
  }
}
/*
　プロフィール
================================*/
.c-profile-01 {
  background: #fff;
  border: 2px solid var(--color-1);
  box-sizing: border-box;
}

.c-profile-01__title {
  padding: 15px;
  background: var(--color-1);
}

.c-profile-01__title h2 {
  font-size: clamp(25px, 5vw, 28px);
  font-weight: 900;
  color: #fff;
}

.c-profile-01__img {
  text-align: center;
  padding: 10px;
}

.c-profile-01__img img {
  width: 80%;
  margin: 0 auto;
  margin-bottom: 10px;
}

.c-profile-01__img-text {
  font-size: 1em;
  margin-bottom: 20px;
  line-height: 1.6;
}

.c-profile-01__text table {
  width: 100%;
  table-layout: fixed;
  word-break: break-all;
}

.c-profile-01__text th {
  display: block;
  font-weight: 700;
  color: #555;
  text-align: left;
  background-color: #f0f0f0;
  padding: 5px 10px;
}

.c-profile-01__text td {
  display: block;
  padding: 5px 10px;
  margin-bottom: 20px;
}

.c-profile-01__message {
  padding: 0 10px 40px 10px;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-profile-01 {
    width: 100%;
  }
  .c-profile-01__title h2 {
    font-size: clamp(29px, 3vw, 35px);
    text-align: center;
  }
  .c-profile-01__info {
    display: flex;
    align-items: flex-start;
    padding: 20px 50px 0;
  }
  .c-profile-01__img {
    width: 36%;
    margin-top: 15px;
    padding: 0;
    text-align: center;
  }
  .c-profile-01__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .c-profile-01__img-text {
    margin-bottom: 30px;
  }
  .c-profile-01__text {
    width: 88%;
    padding-left: 6%;
    box-sizing: border-box;
  }
  .c-profile-01__text th {
    display: inline-block;
    vertical-align: top;
    width: 17%;
    padding: 16px 0;
    border: none;
    background-color: transparent;
  }
  .c-profile-01__text td {
    display: inline-block;
    vertical-align: text-bottom;
    width: 83%;
    box-sizing: border-box;
    padding: 16px 0 16px 5px;
    margin-bottom: 0;
  }
  .c-profile-01__message {
    padding: 0 50px 30px;
  }
}
/*
　その他の事例
================================*/
.c-case-list-01 ul {
  width: 90%;
  margin: 0 auto;
}

.c-case-list-01__card {
  background-color: #FFF;
  box-shadow: 0 0 7px 1px rgba(118, 118, 118, 0.5);
  border-radius: 5px;
  margin-bottom: 30px;
  padding: 10px 20px 30px 20px;
  box-sizing: border-box;
}

.c-case-list-01__card:last-child {
  margin-bottom: 0;
}

.c-case-list-01__card__head {
  display: flex;
  align-items: center;
}

.c-case-list-01__card__head img {
  width: 65px;
  margin-right: 10px;
}

.c-case-list-01__card__head h3 {
  font-size: 22px;
  font-weight: bold;
}

.c-case-list-01__card p {
  line-height: 1.7;
  margin-top: 12px;
}

@media screen and (min-width: 768px) {
  .c-case-list-01 ul {
    width: 100%;
  }
  .c-case-list-01__card {
    margin-bottom: 40px;
    padding: 25px 40px;
  }
  .c-case-list-01__card__head img {
    width: 80px;
    margin-right: 20px;
  }
}
/*
　物件情報-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;
  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%;
  height: 250px;
  -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: var(--color-1);
}

.c-estate-list-col3-01__type[data-type*=賃貸] {
  background: var(--color-2);
}

.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: var(--color-1);
}

/* 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;
  }
  .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;
  }
}
/*
　流れ-05
================================*/
.c-flow-05__title__bg-primary {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  background-color: var(--color-1);
  margin-bottom: 30px;
  padding: 10px;
}

.c-flow-05__title__bg-primary h2 {
  font-size: 1.5rem;
  font-weight: bold;
  color: #FFF;
}

.c-flow-05 {
  position: relative;
  padding-left: 10px;
  margin-bottom: 50px;
  margin-right: 10px;
}

.c-flow-05::before {
  content: "";
  width: 15px;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 10px;
  background: #859dae;
  margin-left: -8px;
}

.c-flow-05 li {
  position: relative;
}

.c-flow-05 li:not(:last-child) {
  margin-bottom: 50px;
}

.c-flow-05__block {
  position: relative;
  padding-left: 45px;
  padding-top: 3px;
}

.c-flow-05__block::before,
.c-flow-05__block::after {
  content: "";
  display: block;
  position: absolute;
  top: 20px;
}

.c-flow-05__block::before {
  width: 8px;
  height: 8px;
  margin-top: -3px;
  left: -4px;
  background: #000;
  border-radius: 50%;
}

.c-flow-05__block::after {
  width: 30px;
  left: 5px;
  border-bottom: 1px dashed;
}

.c-flow-05__no {
  display: inline-block;
  padding: 7px 15px;
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
  background-color: var(--color-1);
  color: #FFF;
  border-radius: 50px;
}

.c-flow-05__title {
  font-size: 18px;
  font-family: "Noto Serif JP", serif;
  font-weight: 900;
  color: var(--color-1);
  margin: 15px 0;
}

.c-flow-05__image {
  margin-bottom: 30px;
}

.c-flow-05__image img {
  max-width: 100%;
}

.c-flow-05__text {
  line-height: 1.6;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-flow-05__title__bg-primary {
    margin-bottom: 50px;
  }
  .c-flow-05__title__bg-primary h2 {
    font-size: 2rem;
  }
  .c-flow-05 {
    margin-right: 0;
  }
  .c-flow-05 li:not(:last-child) {
    margin-bottom: 80px;
  }
  .c-flow-05__block {
    padding-top: 0;
    padding-left: 70px;
  }
  .c-flow-05__block::before {
    margin-top: -5px;
  }
  .c-flow-05__no {
    padding: 7px 20px;
    font-size: 23px;
  }
  .c-flow-05__title {
    font-size: 28px;
  }
  .c-flow-05__block::after {
    width: 50px;
    top: 18px;
  }
}
/*
　フォーム①
================================*/
.c-form-01 {
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 40px 10px;
  box-sizing: border-box;
  background: var(--color-2);
}

.c-form-01__title__container {
  text-align: center;
}
.c-form-01__title__container p {
  position: relative;
  display: inline-block;
  font-size: clamp(16px, 5vw, 18px);
  font-weight: bold;
  color: #fff;
}
.c-form-01__title__container p::before, .c-form-01__title__container p::after {
  position: absolute;
  content: "";
  width: 3px;
  height: 30px;
  top: 0;
  background: #fff;
}
.c-form-01__title__container p::before {
  left: -20px;
  transform: rotate(-40deg);
}
.c-form-01__title__container p::after {
  right: -20px;
  transform: rotate(40deg);
}

h2.c-form-01__title {
  margin: 20px 0 0 0;
  text-align: center;
  font-size: clamp(26px, 8.125vw, 28px);
  font-weight: 900;
  color: #fff;
  line-height: 1.3;
}

.c-form-01__badge {
  width: 80px;
  height: auto;
  margin: 5px 0 5px auto;
  border-radius: 50%;
  background: var(--color-1);
}

.c-form-01__badge-text {
  text-align: center;
  font-size: 14px;
  line-height: 1;
  padding: 12px 0;
  font-weight: 500;
  color: #fff;
}

.c-form-01__badge-text span {
  font-size: 28px;
}

.c-form-01__personbox,
.c-form-01__personbox-line {
  height: auto;
}

.c-form-01__person-label {
  display: inline-block;
  font-size: clamp(14px, 4.375vw, 18px);
  font-weight: 500;
  color: #fff;
  max-width: 90%;
  margin-right: 20px;
  margin-bottom: 10px;
  margin-top: 20px;
}

.c-form-01__personbox-required {
  color: var(--color-1);
}

.c-form-01__personbox-name,
.c-form-01__personbox-tel,
.c-form-01__personbox-mail {
  display: inline-block;
  box-sizing: border-box;
  width: 100%;
  height: 50px;
  line-height: 50px;
  background: #fff;
  font-size: 18px;
  color: var(--color-2);
  text-align: left;
  margin-right: 20px;
  /* margin-bottom: 20px; */
  padding: 0 10px;
  border: none;
}

/* .c-form-01__personbox-mail {
  margin-bottom: 30px;
} */

.c-form-01__areabox-submitbtn {
  display: block;
  width: 100%;
  background: var(--color-1);
  font-size: 25px;
  color: #fff;
  font-weight: bold;
  text-align: center;
  margin: 40px auto 15px auto;
  padding: 15px;
  border: none;
}
.c-form-01__areabox-submitbtn:hover {
  opacity: 0.8;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-form-01 {
    padding: 80px 80px;
  }
  .c-form-01__title__container {
    text-align: center;
  }
  .c-form-01__title__container p {
    font-size: 38px;
    font-weight: bold;
  }
  .c-form-01__title__container p::before, .c-form-01__title__container p::after {
    height: 60px;
  }
  .c-form-01__title__container p::before {
    left: -30px;
  }
  .c-form-01__title__container p::after {
    right: -30px;
  }
  h2.c-form-01__title {
    margin-top: 20px;
    font-size: 45px;
  }
  .c-form-01__badge {
    width: 100px;
    margin-bottom: -30px;
  }
  .c-form-01__badge-text {
    padding: 16px 0;
    line-height: 1.2;
  }
  .c-form-01__personbox,
  .c-form-01__personbox-line {
    width: 92%;
    height: auto;
    margin: 0 auto;
  }
  .c-form-01__personbox-line{
    margin-top: 20px auto 0;
  }
  .c-form-01__person-label {
    display: inline-block;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    height: 40px;
    margin-right: 20px;
    margin-bottom: 0;
    margin-top: 20px;
  }
  .c-form-01__personbox .c-form-01__person-labe:nth-of-type(1){
    margin-top: 0;
  }
  .c-form-01__personbox-name,
  .c-form-01__personbox-tel,
  .c-form-01__personbox-mail {
    height: 50px;
    line-height: 50px;
    margin-right: 20px;
    /* margin-bottom: 20px; */
    padding: 0 10px;
    border: none;
  }
  .c-form-01__areabox-submitbtn {
    width: 35%;
    font-size: 25px;
    margin-top: 50px;
  }
}
/*
　よくある質問①
================================*/
.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% - 70px);
  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: var(--color-1);
}

.c-ques-list-01 dd:before {
  content: "A";
  background-color: #CCC;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-ques-list-01 {
    width: 100%;
  }
  .c-ques-list-01 dt:before,
  .c-ques-list-01 dd:before {
    width: 45px;
    height: 45px;
    font-size: 27px;
    line-height: 45px;
  }
}
/*
　追従ボタン①
================================*/
.c-follow-button-01 {
  background: var(--color-1);
  width: 100px;
  height: auto;
  border-radius: 50%;
  text-align: center;
  position: fixed;
  bottom: 24px;
  right: -150px;
  z-index: 999;
  padding: 5px 0;
}

.c-follow-button-01:hover {
  opacity: 0.7;
}

.c-follow-button-01 a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  line-height: 1;
}

.c-follow-button-01 a span:first-of-type {
  font-size: 32px;
}

.c-follow-button-01 a span:last-of-type {
  font-size: 28px;
}

/* ━━━━━━━━━━━━━━━━

 ■レイアウト

━━━━━━━━━━━━━━━━ */
/*=========================================

ヘッダー-05

==========================================*/
.l-header-05 {
  position: relative;
  width: 100%;
  height: 60px;
  margin: 0;
}

.l-header-05__wrapper {
  position: fixed;
  display: flex;
  top: 0;
  width: 100%;
  height: 60px;
  padding: 5px 10px;
  align-items: center;
  box-sizing: border-box;
  background-color: rgba(250, 250, 250, 0.9);
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
  z-index: 1010;
}

.l-header-05__logo {
  max-width: 150px;
}

.l-header-05__logo a {
  display: block;
}

.l-header-05__logo img {
  display: block;
  width: 100%;
  height: 60px;
}

.l-header-05__nav {
  display: none;
}

.l-header-05__inquiry {
  display: none;
}

.l-header-05__menu__button {
  position: absolute;
  display: block;
  top: 50%;
  transform: translate(0, -50%);
  right: 15px;
}

.l-header-05__menu__button a {
  display: block;
  text-align: center;
  color: #1f2a34;
  text-decoration: none;
}

.l-header-05__menu__button i {
  font-size: 35px;
}

.l-header-05__sp-menu {
  position: fixed;
  top: 0;
  left: 0;
  transform: translateY(min(-100%, -1000px));
  width: 100%;
  height: 100%;
  padding: 72px 20px 65px 20px;
  overflow-y: auto;
  background: #fefefe;
  transition: transform 0.5s;
  z-index: 1000;
}

.l-header-05__sp-menu ul li {
  width: 100%;
  height: auto;
  border-top: 1px solid #919191;
}

.l-header-05__sp-menu ul li:last-child {
  border-bottom: 1px solid #919191;
}

.l-header-05__sp-menu ul li:hover {
  background: #747474;
}

.l-header-05__sp-menu ul li a {
  display: block;
  width: 100%;
  height: 3em;
  margin-left: 1em;
  font-size: 1em;
  color: #0b3c5d;
  line-height: 3em;
  text-decoration: none;
}

.l-header-05__sp-menu ul li a:hover {
  color: #fff;
}

.l-header-05__sp-menu--tel a,
.l-header-05__sp-menu--mail a {
  display: block;
  text-align: center;
}

.l-header-05__sp-menu--mail a:hover {
  background: var(--color-2);
}

.l-header-05__sp-menu--tel a {
  margin-top: 50px;
  font-size: 32px;
  font-weight: bold;
  font-family: "Arial", "Noto Sans Japanese", sans-serif;
  color: var(--color-1);
  line-height: 1;
  text-decoration: none;
}

.l-header-05__sp-menu--tel p {
  text-align: center;
  font-size: 16px;
  color: #5f5f5f;
}

.l-header-05__sp-menu--mail a {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 450px;
  margin: 30px auto;
  padding: 20px;
  font-size: 25px;
  font-weight: bold;
  color: #FFF;
  text-decoration: none;
  background-color: var(--color-2);
  border-radius: 5px;
  box-sizing: border-box;
}

.l-header-05__sp-menu.__open {
  transform: translateY(0);
  transition: transform 0.5s;
}

@media print {
  .l-header-05__sp-menu {
    display: none;
  }
}
/* PC */
@media screen and (min-width: 1200px) {
  .l-header-05 {
    height: 85px;
  }
  .l-header-05__wrapper {
    display: block;
    height: 85px;
    padding: 0;
  }
  .l-header-05__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1900px;
    width: 100%;
    height: 100%;
    margin: auto;
  }
  .l-header-05__logo {
    max-width: 200px;
    max-width: clamp(160px, 14.2857142857vw, 200px);
    margin: 0 auto 0 25px;
  }
  .l-header-05__nav {
    display: block;
  }
  .l-header-05__nav ul {
    display: flex;
    align-items: center;
  }
  .l-header-05__nav li {
    padding: 10px 10px;
  }
  .l-header-05__nav li a {
    position: relative;
    display: inline-block;
    color: #000;
    font-size: 18px;
    text-decoration: none;
  }
  .l-header-05__nav li a::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 1px;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: transform 0.3s;
    background: #333;
  }
  .l-header-05__nav li a:hover::after {
    transform: scale(1, 1);
  }
  .l-header-05__inquiry {
    display: flex;
    align-items: center;
    margin-left: 15px;
    margin-right: 15px;
    padding: 7px 15px;
    border-radius: 30px;
    background: var(--color-2);
  }
  .l-header-05__inquiry a {
    display: block;
    padding: 10px 6px;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    color: #FFF;
    text-decoration: none;
    line-height: 1.3;
  }
  .l-header-05__inquiry:hover {
    opacity: 0.8;
  }
  .l-header-05__menu__button {
    display: none;
  }
  .l-header-05__inquiry i {
    font-size: 23px;
  }
}
/**
 * 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;
  }
}
/*=========================================

フッター

==========================================*/
.l-footer-02 {
  margin: 0;
  padding: 0;
  text-align: left;
  background-color: #F5F5F5;
  border-top: none;
  overflow: hidden;
}

.l-footer-02__inner {
  width: 90%;
  margin: 0 auto;
  padding: 50px 0;
}

.l-footer-02__logo {
  margin-bottom: 15px;
  padding-bottom: 15px;
  text-align: center;
}

.l-footer-02__logo img {
  width: 65%;
  max-width: 400px;
  margin-bottom: 15px;
}

.l-footer-02__nav ul {
  display: flex;
  flex-wrap: wrap;
}

.l-footer-02__nav li {
  width: 50%;
}

.l-footer-02__nav li a {
  display: block;
  padding: 15px 15px;
  text-decoration: none;
  color: #333;
}

.copyright {
  padding: 10px 0 30px 0 !important;
  text-align: center !important;
  background-color: var(--color-1) !important;
  color: #FFF !important;
  font-size: 14px !important;
}

/* PC */
@media screen and (min-width: 768px) {
  .l-footer-02__inner {
    display: flex;
    justify-content: space-between;
    max-width: 1140px;
    width: 100%;
  }
  .l-footer-02__logo {
    width: 25%;
    margin-bottom: 0;
    padding-bottom: 0;
    text-align: left;
  }
  .l-footer-02__logo img {
    margin-bottom: 0;
  }
  .l-footer-02__nav ul {
    flex-wrap: initial;
  }
  .l-footer-02__nav li {
    width: auto;
    margin-right: 20px;
  }
  .l-footer-02__nav li a {
    font-size: 15px;
    padding: 5px;
  }
  .l-footer-02__nav li a:hover {
    color: #337ab7;
  }
  .btn__page_top {
    bottom: 130px;
  }
  .copyright {
    padding: 30px 0 !important;
  }
}
/* SP */
@media screen and (max-width: 767px) {
  .btn__page_top {
    display: none !important;
  }
}
/* ━━━━━━━━━━━━━━━━

 ■プロジェクト

━━━━━━━━━━━━━━━━ */
/*=================================

メインビジュアル

=================================*/
.p-zero-main-visual {
  background: url(/img/zero/zero-main-visual.jpg) no-repeat center center/cover;
  width: 100%;
  height: 450px;
}

.p-zero-main-visual__inner {
  position: relative;
  width: 90%;
  margin: 0 auto;
}

.p-zero-main-visual__text {
  padding-top: 15px;
}

.p-zero-main-visual .p-zero-main-visual__text__area {
  display: inline-block;
  margin-bottom: 5px;
  padding: 10px 20px;
  font-size: clamp(21px, 5.2083333333vw, 40px);
  font-weight: 900;
  color: #fff;
  background: var(--color-2);
  border-radius: 50px;
  text-shadow: none;
}

.p-zero-main-visual h1 {
  line-height: 1.2;
  font-size: clamp(40px, 12.5vw, 76px);
  font-weight: 900;
  color: #ed1c24;
  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;
}

.p-zero-main-visual h1 em {
  display: block;
  font-style: normal;
  font-size: clamp(65px, 20.3125vw, 120px);
}

.p-zero-main-visual .p-zero-main-visual__text__category {
  display: inline-block;
  margin-bottom: 20px;
  line-height: 1.2;
  font-size: clamp(22px, 4.0625vw, 46px);
  font-weight: 900;
  color: #000;
  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;
}

.p-zero-main-visual .p-zero-main-visual__text__category strong {
  font-size: clamp(29px, 9.0625vw, 60px);
  font-weight: 900;
}

/* PC */
@media screen and (min-width: 768px) {
  .p-zero-main-visual {
    margin-top: 0;
    height: 700px;
  }
  .p-zero-main-visual__inner {
    max-width: 1400px;
  }
  .p-zero-main-visual__text {
    padding-top: 45px;
  }
  .p-zero-main-visual h1 {
    line-height: 1;
    font-size: clamp(62px, 8.0729166667vw, 100px);
  }
  .p-zero-main-visual h1 em {
    display: inline-block;
    font-size: clamp(84px, 10.9375vw, 150px);
    font-weight: 900;
  }
  .p-zero-main-visual .p-zero-main-visual__text__area {
    font-size: clamp(25px, 3.2552083333vw, 57px);
    margin-bottom: 10px;
    padding: 0 40px;
    line-height: 1.5;
  }
  .p-zero-main-visual .p-zero-main-visual__text__category {
    font-size: clamp(27px, 3.515625vw, 60px);
  }
  .p-zero-main-visual .p-zero-main-visual__text__category strong {
    font-size: clamp(42px, 5.46875vw, 80px);
  }
}
/*
概要　リード
=================================*/
.p-zero-lead {
  margin-bottom: 40px;
  padding: 25px 0 15px 0;
  box-shadow: 0 3px 6px -3px rgba(0, 0, 0, 0.5);
}

.p-zero-lead ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  width: 85%;
  margin: 0 auto;
}

.p-zero-lead li {
  width: 28%;
  margin-bottom: 10px;
}

.p-zero-lead li img {
  width: 100%;
}

.p-zero-lead__promotion {
  margin-bottom: 40px;
  text-align: center;
}

.p-zero-lead__promotion h3 {
  position: relative;
  display: inline-block;
  margin: 0;
  font-size: 26px;
  color: var(--color-2);
  font-weight: 900;
}

.p-zero-lead__promotion h3::before,
.p-zero-lead__promotion h3::after {
  position: absolute;
  content: "";
  width: 37px;
  height: 2px;
  bottom: 15px;
  background-color: var(--color-2);
}

.p-zero-lead__promotion h3::before {
  left: -40px;
  transform: rotate(45deg);
}

.p-zero-lead__promotion h3::after {
  right: -35px;
  transform: rotate(-45deg);
}

.p-zero-lead__promotion h2 {
  width: 90%;
  margin: 20px auto;
  font-size: 25px;
  font-weight: 900;
  text-align: left;
  line-height: 1.3;
}

.p-zero-lead__promotion span {
  font-size: 30px;
}

.p-zero-lead__promotion p {
  width: 90%;
  margin: 0 auto;
  font-weight: bold;
}

.p-zero-lead__free {
  padding: 25px 10px;
  background-color: #e40011;
  text-align: center;
}

.p-zero-lead__free p {
  text-align: center;
  line-height: 1.3;
  color: #FFF;
  font-size: clamp(28px, 8.75vw, 50px);
  font-weight: 900;
}

.p-zero-lead__free .p-zero-lead__free__num {
  font-family: "Arial", sans-serif;
  font-size: clamp(40px, 12.5vw, 70px);
}

.p-zero-lead__free em {
  display: inline-block;
  font-size: clamp(40px, 12.5vw, 70px);
  font-weight: 900;
  font-style: unset;
  color: #ffda0a;
}

/* PC */
@media screen and (min-width: 768px) {
  .p-zero-lead {
    padding: 25px 0 20px 0;
  }
  .p-zero-lead ul {
    flex-wrap: nowrap;
    max-width: 1140px;
  }
  .p-zero-lead li {
    width: 13%;
    margin-bottom: 0;
  }
  .p-zero-lead li:nth-of-type(5) {
    width: 10%;
  }
  .p-zero-lead__promotion {
    margin-bottom: 50px;
  }
  .p-zero-lead__promotion h3 {
    font-size: 40px;
  }
  .p-zero-lead__promotion h3::before,
  .p-zero-lead__promotion h3::after {
    width: 50px;
    bottom: 27px;
  }
  .p-zero-lead__promotion h3::before {
    left: -50px;
  }
  .p-zero-lead__promotion h3::after {
    right: -50px;
  }
  .p-zero-lead__promotion h2 {
    margin-bottom: 30px;
    font-size: 35px;
    text-align: center;
  }
  .p-zero-lead__promotion span {
    font-size: 45px;
  }
  .p-zero-lead__promotion p {
    font-size: 27px;
  }
  .p-zero-lead__free p {
    line-height: 1.2;
    font-size: clamp(40px, 5.2083333333vw, 50px);
  }
  .p-zero-lead__free span .p-zero-lead__free__num {
    font-size: 70px;
  }
  .p-zero-lead__free span em {
    font-size: 70px;
  }
}
/*
  吹き出し付き見出し
==================================*/
.p-zero-title {
  text-align: center;
}
.p-zero-title__balloon p {
  position: relative;
  display: inline-block;
  margin-bottom: 40px;
  padding: 12px 45px;
  text-align: center;
  font-size: clamp(16px, 5vw, 28px);
  font-weight: bold;
  color: #fff;
  background: var(--color-2);
  border-radius: 30px;
}
.p-zero-title__balloon p::before {
  position: absolute;
  content: "";
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 10px solid transparent;
  border-top: 20px solid var(--color-2);
}
.p-zero-title h2 {
  font-size: clamp(26px, 8.125vw, 35px);
  font-weight: 900;
}
.p-zero-title h2 span {
  color: var(--color-1);
}
.p-zero-title h2 span em {
  display: inline-block;
  font-size: clamp(38px, 11.875vw, 48px);
  font-weight: 900;
  font-style: unset;
}

/* PC */
@media screen and (min-width: 768px) {
  .p-zero-title__balloon p {
    font-size: 28px;
  }
  .p-zero-title h2 {
    font-size: clamp(45px, 5.859375vw, 50px);
  }
  .p-zero-title h2 span em {
    font-size: 60px;
  }
}
/*
  仲介手数料無料の理由
==================================*/
.p-zero-reason {
  position: relative;
  background: url(/img/zero/zero-reason__bg.jpg) no-repeat 80% top/cover;
  padding-top: 80px;
  padding-bottom: 20px;
  z-index: -2;
}

.p-zero-reason__lead {
  margin-top: 40px;
  margin-bottom: 40px;
  padding: 0 8px;
  line-height: 1.8;
  font-size: clamp(16px, 5vw, 18px);
  font-weight: 500;
}

/* PC */
@media screen and (min-width: 768px) {
  .p-zero-reason {
    background: url(/img/zero/zero-reason__bg.jpg) no-repeat center top/cover;
    padding-bottom: 40px;
  }
  .p-zero-reason__lead {
    margin-top: 50px;
    margin-bottom: 50px;
    font-size: 18px;
    text-align: center;
  }
}
/*
  費用比較
==================================*/
.p-zero-price__lead {
  margin-top: 40px;
  line-height: 1.8;
  font-size: 16px;
}

.p-zero-price__table {
  width: 100%;
  margin-top: 50px;
  border: 1px solid #bfbfbf;
  border-collapse: collapse;
  table-layout: fixed;
}

.p-zero-price__table tr:nth-child(odd) {
  background: #f3f3f3;
}
.p-zero-price__table tr:nth-child(even) {
  background: #fff;
}
.p-zero-price__table tr:last-child td:not(:first-child) {
  font-size: clamp(14px, 3.125vw, 24px);
}

.p-zero-price__table th,
.p-zero-price__table td {
  padding: 13px 5px;
  font-size: 14px;
  font-weight: bold;
  border: 1px solid #bfbfbf;
}

.p-zero-price__table th {
  text-align: center;
  font-size: clamp(11px, 2.34375vw, 18px);
  color: #fff;
}
.p-zero-price__table th:first-child {
  background: #fff;
}
.p-zero-price__table th:nth-child(2) {
  background: var(--color-1);
}
.p-zero-price__table th:nth-child(3), .p-zero-price__table th:nth-child(4) {
  background: #858585;
}

.p-zero-price__table td {
  text-align: center;
}
.p-zero-price__table td:not(:first-child) {
  text-align: right;
  font-size: clamp(14px, 2.34375vw, 18px);
}
.p-zero-price__table td:nth-child(2) {
  color: var(--color-1);
}

/* PC */
@media screen and (min-width: 768px) {
  .p-zero-price__lead {
    margin-top: 50px;
    text-align: center;
    font-size: 18px;
  }
  .p-zero-price__table tr:last-child td:not(:first-child) {
    font-size: clamp(24px, 3vw, 30px);
  }
  .p-zero-price__table th,
  .p-zero-price__table td {
    padding: 14px 30px;
  }
  .p-zero-price__table th {
    font-size: 18px;
  }
  .p-zero-price__table td {
    text-align: left;
    font-size: clamp(18px, 2.34375vw, 20px);
  }
}
/*
  実際の明細
==================================*/
.p-zero-specification__lead {
  width: 90%;
  margin: 40px auto;
  font-size: 16px;
}

.p-zero-specification__image {
  width: 90%;
  margin: 0 auto;
  text-align: center;
}

.p-zero-specification__image img {
  max-width: 100%;
}

/* PC */
@media screen and (min-width: 768px) {
  .p-zero-specification__lead {
    margin: 50px auto;
    font-size: 18px;
    line-height: 1.6;
    text-align: center;
  }
  .p-zero-specification__image img {
    max-width: 50%;
  }
}

.youtube-wrap{
  margin-bottom: 0;
}
/*

  選ばれる理由
==================================*/
.p-zero-point {
  min-height: 100vh;
  padding-bottom: 80px;
  background-image: url(/img/zero/zero-point__bg.jpg);
  background-attachment: fixed;
  background-size: cover;
  background-position: top;
}

/* PC */
@media screen and (min-width: 768px) {
  .p-zero-point {
    padding-bottom: 120px;
  }
}
/*
  ミニCTA
==================================*/
.p-cta-sm {
  padding: 40px 10px;
  text-align: center;
  background: var(--color-2);
}
.p-cta-sm .p-cta-sm__span {
  position: relative;
  display: inline-block;
  align-items: center;
  font-size: clamp(18px, 5.625vw, 24px);
  color: white;
}
.p-cta-sm .p-cta-sm__span::before, .p-cta-sm .p-cta-sm__span::after {
  position: absolute;
  content: "";
  width: 3px;
  height: 30px;
  top: 5px;
  background: #fff;
}
.p-cta-sm .p-cta-sm__span::before {
  left: -30px;
  transform: rotate(-40deg);
}
.p-cta-sm .p-cta-sm__span::after {
  right: -30px;
  transform: rotate(40deg);
}
.p-cta-sm p {
  margin-top: 15px;
  font-size: clamp(22px, 6.875vw, 36px);
  font-weight: 900;
  color: #fff;
}
.p-cta-sm p span {
  font-size: clamp(26px, 8.125vw, 42px);
  color: #ffda0a;
}
.p-cta-sm a {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 10px;
  text-decoration: none;
  font-size: clamp(16px, 5vw, 26px);
  font-weight: bold;
  color: #fff;
  border-radius: 5px;
  background: var(--color-1);
  box-shadow: 0px 5px 0px #8c0012;
}
.p-cta-sm a:hover {
  opacity: 0.8;
}

/* PC */
@media screen and (min-width: 768px) {
  .p-cta-sm {
    padding: 60px 10px;
  }
  .p-cta-sm .p-cta-sm__span {
    font-size: 25px;
  }
  .p-cta-sm .p-cta-sm__span::before, .p-cta-sm .p-cta-sm__span::after {
    height: 40px;
  }
  .p-cta-sm .p-cta-sm__span::before {
    left: -30px;
  }
  .p-cta-sm .p-cta-sm__span::after {
    right: -30px;
  }
  .p-cta-sm p {
    font-size: clamp(28px, 3.6458333333vw, 36px);
  }
  .p-cta-sm p span {
    font-size: clamp(36px, 4.6875vw, 43px);
  }
  .p-cta-sm a {
    padding: 20px 45px;
    text-decoration: none;
    font-size: 26px;
  }
}
/*
　自己紹介
================================*/
.p-zero-profile {
  background: url(/img/zero/zero-profile__bg--01.jpg) no-repeat center/cover;
}

/* PC */
@media screen and (min-width: 768px) {
  .p-zero-profile {
    background-image: url(/img/zero/zero-profile__bg--01.jpg),
                      url(/img/zero/zero-profile__bg--02.jpg);
    background-repeat: no-repeat, no-repeat;
    background-position: left -170px top, right -145px top;
    background-size: auto 100%, auto 100%;
  }
}
/* 　お客様の声
================================*/
.p-customer-voice {
    background-image: url(/img/zero/customer-voice__bg.jpg);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-color:#d4eaff;
  }
@media screen and (min-width: 768px) {
  .p-customer-voice {
    background-image: url(/img/zero/customer-voice__bg.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
  }
}

.p-customer-voice li {
  width: 100%;
}

.p-customer-voice li a {
  display: block;
  text-decoration: none;
}

.p-customer-voice li a:hover {
  opacity: 0.8;
  cursor: pointer;
}

.p-customer-voice li:not(:first-child) {
  margin-top: 50px;
}
.p-customer-voice li a .p-customer-voice__image{
  aspect-ratio: 200 / 150;
}

.p-customer-voice img {
	display: block;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	border-radius: 20px;
	height: 100%;
	max-width: none;
	object-fit: cover;
	pointer-events: none;
	image-rendering: -webkit-optimize-contrast;
}

.p-customer-voice__label {
  margin-top: 20px;
  margin-bottom: 20px;
}

.p-customer-voice--area,
.p-customer-voice--type {
  display: inline-block;
  padding: 3px 10px;
  color: #fff;
}

.p-customer-voice--area {
  background-color: var(--color-1);
}

.p-customer-voice--type {
  margin-left: 5px;
  background-color: var(--color-2);
}

.p-customer-voice__text {
  font-weight: 600;
  color: #000;
}

/* PC */
@media screen and (min-width: 768px) {
  .p-customer-voice ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .p-customer-voice ul::after {
    display: block;
    content: "";
    width: 31%;
  }
  .p-customer-voice li {
    width: 31%;
  }
  .p-customer-voice li:not(:first-child) {
    margin-top: 0;
  }
  .p-customer-voice li:nth-child(n+4) {
    margin-top: 80px;
  }
}
/*
　流れ
================================*/
.p-zero-lead__flow {
  margin-top: 30px;
  padding: 20px 15px 5px 15px;
  background-color: #FFF;
  box-shadow: 4px 2px 5px rgba(0, 0, 0, 0.2);
}

.p-zero-lead__flow__wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}

.p-zero-lead__flow--item {
  width: 28%;
}

.p-zero-lead__flow--item img {
  width: 100%;
  margin-bottom: 10px;
}

/* PC */
@media screen and (min-width: 768px) {
  .p-zero-lead__flow {
    width: 85%;
    padding: 20px 30px 5px 30px;
  }
  .p-zero-lead__flow__wrapper {
    flex-wrap: nowrap;
  }
  .p-zero-lead__flow--item {
    width: 13%;
  }
}
/*
　CTA
================================*/
.p-zero-contact {
  background: #f0dcb4;
  padding: 40px 10px;
}

.p-zero-contact__title {
  font-size: clamp(25px, 3.90625vw, 30px);
  font-weight: 900;
  text-align: center;
  margin-bottom: 30px;
}

.p-zero-contact__read {
  font-size: 16px;
  font-weight: bold;
  text-align: left;
  margin-bottom: 25px;
}

.p-zero-contact__block__link-tel__detail {
  text-align: center;
}

.p-zero-contact__block__link-tel__detail a {
  font-size: clamp(45px, 6.5104166667vw, 50px);
  font-family: "Arial", sans-serif;
  font-weight: bold;
  text-decoration: none;
  line-height: 1.2;
  color: var(--color-1);
}

.p-zero-contact__block__link-tel__detail a:hover {
  opacity: 0.8;
}

.p-zero-contact__block__link-tel__detail a i {
  margin-right: 5px;
}

.p-zero-contact__block__link-tel__detail p {
  font-size: clamp(14px, 2.34375vw, 18px);
  font-weight: bold;
  text-align: center;
  margin-top: 0;
}

/* PC */
@media screen and (min-width: 768px) {
  .p-zero-contact__title {
    font-size: clamp(40px, 3.9473684211vw, 45px);
  }
  .p-zero-contact__read {
    font-size: 20px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 45px;
  }
  .p-zero-contact__block__link-tel__detail a {
    font-size: clamp(43px, 6.8421052632vw, 78px);
    margin-right: 15px;
  }
}

/*
　当社取り扱い仲介手数料無料物件
================================*/
@media screen and (max-width: 768px) {
  body.zero .tksn_box > table >tbody {
    display: flex;
    flex-direction: column;
    margin: auto;
    row-gap: 10px;
}
}
@media screen and (min-width: 768px) {
  body.zero .tksn_box > table >tbody {
    display: flex;
    justify-content: space-between;
    width: 980px;
    flex-wrap: wrap;
    margin: auto;
    row-gap: 15px;
  }
}
body.zero table.tksnBox64{
  width: calc(calc(980px - 40px) / 3) !important;
  min-height: 465px !important;
}
/*
　コンタクトフォーム7
================================*/
body.zero .wpcf7 form .wpcf7-response-output{
  background-color: #fff;
  margin-top: 0;
}
body.zero .wpcf7-not-valid-tip{
  font-weight: bold;
  margin-top: 5px;
}