@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-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
 */
/*==================================
* Button
==================================*/
.c-button-container {
  padding-top: 30px;
  text-align: center;
}

/*
　標準ボタン
================================*/
.c-button {
  position: relative;
  display: block;
  width: 95%;
  margin: 0 auto;
  padding: 12px 5px;
  text-align: center;
  border-radius: 30px;
  border: 2px solid #e25936;
  background-color: #FFF;
  box-sizing: border-box;
  cursor: pointer;
  transition: 0.3s cubic-bezier(0.45, 0, 0.55, 1);
  overflow: hidden;
  z-index: 1;
}

.c-button,
.c-button:link,
.c-button:visited {
  text-decoration: none;
  color: #e25936;
  font-weight: bold;
}

.c-button::after {
  background: #e25936;
  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: 90%;
    max-width: 400px;
    padding: 15px 20px;
    font-size: 17px;
  }
}
/*
　プライマリボタン
================================*/
.c-button--primary {
  display: block;
  width: 95%;
  padding: 20px 10px;
  margin: 0 auto;
  background-color: #e25936;
  text-decoration: none;
  text-align: center;
  box-sizing: border-box;
}

.c-button--primary,
.c-button--primary:link,
.c-button--primary:visited {
  text-decoration: none;
  color: #FFF;
}

.c-button--primary:hover {
  opacity: 0.8;
}

@media screen and (min-width: 768px) {
  .c-button--primary {
    width: 35%;
    font-size: 17px;
  }
}
/*
　セカンダリボタン
================================*/
.c-button--secondary {
  display: block;
  width: 95%;
  margin: 0 auto;
  padding: 20px 10px;
  background-color: #149be0;
  text-decoration: none;
  text-align: center;
  box-sizing: border-box;
}

.c-button--secondary,
.c-button--secondary:link,
.c-button--secondary:visited {
  text-decoration: none;
  color: #FFF;
}

.c-button--secondary:hover {
  background-color: #787878;
}

@media screen and (min-width: 768px) {
  .c-button--secondary {
    width: 35%;
    font-size: 17px;
  }
}
/*
　アウトラインボタン
================================*/
.c-button-outline {
  display: block;
  width: 95%;
  margin: 0 auto;
  padding: 15px 10px;
  text-align: center;
  font-weight: bold;
  border: 1.5px solid #111;
  box-sizing: border-box;
}

.c-button-outline,
.c-button-outline:link,
.c-button-outline:visited {
  text-decoration: none;
  color: #111;
}

.c-button-outline:hover {
  border-color: transparent;
  color: #FFF;
  background-color: #e25936;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-button-outline {
    width: 43%;
    font-size: 18px;
  }
}
/*
　システム標準-H2
================================*/
h2.tit {
  width: 90%;
  text-align: center;
  color: #000;
  font-size: 1.4rem;
  font-weight: bold;
  margin: 15px auto 30px auto;
  padding: 0;
  background-color: transparent !important;
}

/* PC */
@media screen and (min-width: 768px) {
  h2.tit {
    margin-top: 0;
    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: #e25936;
}

/* PC */
@media screen and (min-width: 768px) {
  h3.tit {
    max-width: 1140px;
    margin: 0 auto 40px auto;
    padding: 0 0 10px 0;
    font-size: 1.3rem;
  }
}
/*
　シンプル-01・中央寄せ
================================*/
.c-title-01 {
  width: 90%;
  font-size: 1.4rem;
  font-weight: 900;
  text-align: center;
  color: #000;
  margin: 0 auto 30px auto;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-title-01 {
    width: 100%;
    font-size: 2.5rem;
  }
}
/*
　シンプル-02・テキストカラー
================================*/
.c-title-02,
.c-title-02--color-2 {
  font-size: 30px;
  font-weight: 900;
  line-height: 1.3;
  text-align: center;
  color: #e25936;
  margin-bottom: 30px;
}

.c-title-02--color-2 {
  color: #149be0;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-title-02,
  .c-title-02--color-2 {
    font-size: clamp(40px, 4.649122807vw, 53px);
    margin-bottom: 50px;
  }
}
/*
　ルビ付き-01
================================*/
.c-title-ruby-01 {
  margin: 0 auto 20px auto;
  text-align: center;
}

.c-title-ruby-01 h2 {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.c-title-ruby-01 span {
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.c-title-ruby-01 span:before,
.c-title-ruby-01 span:after {
  content: "";
  width: 2em;
  border-top: 1px solid;
}

.c-title-ruby-01 span:before {
  margin-right: 0.7em;
}

.c-title-ruby-01 span:after {
  margin-left: 0.7em;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-title-ruby-01 {
    margin: 0 auto 50px auto;
  }
  .c-title-ruby-01 h2 {
    font-size: 2.5rem;
    margin-bottom: 7px;
  }
  .c-title-ruby-01 span {
    font-size: 1.2rem;
  }
}
/*
　ルビ付き-02
================================*/
.c-title-ruby-02 {
  position: relative;
  font-size: 1.8rem;
  font-weight: 500;
  border-bottom: 1px solid #333;
  margin-bottom: 30px;
  padding: 30px 0 10px 0;
}

.c-title-ruby-02 span {
  position: relative;
  line-height: 1.5;
  z-index: 2;
}

.c-title-ruby-02::before {
  content: attr(data-en);
  position: absolute;
  top: 20px;
  left: 10px;
  color: rgba(15, 10, 50, 0.1);
  font-size: 2rem;
  font-weight: bold;
  font-family: "Arial", sans-serif;
  z-index: 1;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-title-ruby-02 {
    font-size: 3rem;
    margin-bottom: 50px;
  }
  .c-title-ruby-02::before {
    top: 0;
    left: 20px;
    font-size: 4.3rem;
  }
}
/*
　ルビ付き-03
================================*/
.c-title-ruby-03 {
  width: 90%;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
  font-family: "Noto Serif JP", serif;
  color: #e25936;
  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: #e25936;
}

.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: #e25936;
}

.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 #e25936;
  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: #e25936;
  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: #e25936 transparent transparent transparent;
}

.c-title-count-01 span {
  font-size: 50px;
  position: absolute;
  bottom: 0;
  right: -100px;
  display: block;
  padding-left: 16px;
  color: #e25936;
  font-family: "Arial", "Noto Sans JP", sans-serif;
  font-weight: 700;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-title-count-01 {
    margin-right: 120px;
    margin-bottom: 60px;
    padding: 20px 0 10px 20px;
    font-size: 40px;
    font-size: clamp(33px, 3vw, 40px);
  }
  .c-title-count-01 span {
    font-size: 63px;
    top: 0;
    right: -120px;
    padding-top: 10px;
  }
}
/*
　番号付き-02
================================*/
.c-title-count-02 {
  display: flex;
  align-items: flex-start;
  line-height: 1;
  border-top: 3px solid #000;
  border-bottom: 3px solid #000;
  padding: 10px 0;
}

.c-title-count-02 p {
  font-size: clamp(35px, 9vw, 100px);
  font-weight: bold;
  color: #e25936;
  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 #e25936;
  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: #e25936;
}

.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: #149be0;
}

.c-title-bg-01--sm,
.c-title-bg-01--color-2--sm {
  padding: 10px;
}

.c-title-bg-01--sm h2,
.c-title-bg-01--color-2--sm h2,
.c-title-bg-01--sm h3,
.c-title-bg-01--color-2--sm h3 {
  font-size: clamp(20px, 3.2552083333vw, 25px);
}

/* PC */
@media screen and (min-width: 768px) {
  .c-title-bg-01,
  .c-title-bg-01--color-2,
  .c-title-bg-01--sm,
  .c-title-bg-01--color-2--sm {
    margin-bottom: 50px;
    padding: 30px 0;
    text-align: center;
  }
  .c-title-bg-01 h2,
  .c-title-bg-01--color-2 h2,
  .c-title-bg-01--sm h2,
  .c-title-bg-01--color-2--sm h2,
  .c-title-bg-01 h3,
  .c-title-bg-01--color-2 h3,
  .c-title-bg-01--sm h3,
  .c-title-bg-01--color-2--sm h3 {
    font-size: clamp(32px, 6.5104166667vw, 50px);
    letter-spacing: 0.05em;
  }
  .c-title-bg-01--sm,
  .c-title-bg-01--color-2--sm {
    padding: 15px;
  }
  .c-title-bg-01--sm h2,
  .c-title-bg-01--color-2--sm h2,
  .c-title-bg-01--sm h3,
  .c-title-bg-01--color-2--sm h3 {
    font-size: clamp(25px, 3.90625vw, 30px);
  }
}
/*
　誘導型-01
================================*/
.c-title-induction-01 {
  width: 100%;
  padding-bottom: 35px;
  box-sizing: content-box;
  clip-path: polygon(0 0, 100% 0, 100% 75%, 50% 100%, 0 75%, 0 0);
  background-color: #e25936;
}

.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);
  }
}
/*
　ルビ付き-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;
  }
}
/*
　ルビ付き-08
================================*/
.c-title-ruby-08 {
  width: 95%;
  margin: 0 auto 20px auto;
  box-sizing: border-box;
}

.c-title-ruby-08 h2,
.c-title-ruby-08 h3 {
  font-size: 25px;
  font-weight: 900;
  color: #333;
  line-height: 1.2;
}

.c-title-ruby-08 span {
  display: flex;
  align-items: center;
  font-size: 17px;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}

.c-title-ruby-08 span:before {
  content: "";
  width: 1.5em;
  border-top: 1px solid;
  margin-right: 0.5em;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-title-ruby-08 {
    width: 100%;
    margin-bottom: 30px;
    padding: 0 8px;
  }
  .c-title-ruby-08 h2,
  .c-title-ruby-08 h3 {
    font-size: 35px;
  }
  .c-title-ruby-08 span {
    font-size: 18px;
    margin-bottom: 7px;
  }
}
/*
　ルビ付き-09
================================*/
.c-title-ruby-09 {
  width: 95%;
  margin: 0 auto 30px auto;
  text-align: center;
  line-height: 1.4;
}

.c-title-ruby-09 h2,
.c-title-ruby-09 h3 {
  font-size: clamp(24px, 3.125vw, 26px);
  font-weight: 900;
  color: #333;
}

.c-title-ruby-09 span::first-letter {
  color: #e25936;
}

.c-title-ruby-09 span {
  display: block;
  font-size: 16px;
  font-weight: 900;
  color: #333;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-title-ruby-09 {
    width: 100%;
    margin: 0 auto 45px auto;
  }
  .c-title-ruby-09 h2,
  .c-title-ruby-09 h3 {
    font-size: 35px;
  }
  .c-title-ruby-09 span {
    font-size: 20px;
  }
}
/*
　アイコン付き-01
================================*/
.c-title-icon-01 {
  position: relative;
  margin-bottom: 20px;
  padding-left: 27px;
  font-size: 20px;
  font-weight: bold;
  color: #333;
  box-sizing: border-box;
}

.c-title-icon-01::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  background: linear-gradient(135deg, #0d1041 0%, #3d3f66 100%);
  width: 22px;
  height: 22px;
  border-radius: 50%;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-title-icon-01 {
    padding-left: 32px;
    font-size: 23px;
  }
  .c-title-icon-01::before {
    top: 7px;
    width: 24px;
    height: 24px;
  }
}
/*
　概要-09
================================*/
.c-about-09__container {
  position: relative;
  width: 100%;
  max-width: none;
  margin-inline: auto;
  padding-inline: 8vw;
  box-sizing: border-box;
}

.c-about-09 {
  position: relative;
}

.c-about-09::before {
  position: absolute;
  display: block;
  content: "";
  left: -8vw;
  right: -8vw;
  width: auto;
  height: 100%;
  background: #f7f7f7;
  z-index: -1;
}

.c-about-09__head {
  transform: translateY(-50%);
}

.c-about-09__head__title {
  line-height: 1;
  letter-spacing: 0.1em;
  font-family: "Century Gothic", "Arial", sans-serif;
  font-size: 38px;
  font-weight: bold;
}

.c-about-09__head__img__container {
  margin-top: 2rem;
}

.c-about-09__head__img {
  position: relative;
}

.c-about-09__head__img:nth-child(1) {
  width: 98%;
  margin-left: -8vw;
}

.c-about-09__head__img:nth-child(2) {
  display: none;
  width: 90%;
  margin-top: 1.25rem;
  margin-right: -8vw;
  margin-left: auto;
  padding-left: 8vw;
}

.c-about-09__head__img:nth-child(3) {
  display: none;
  width: 75%;
  margin-top: 1.25rem;
  margin-left: -8vw;
  padding-right: 8vw;
}

.c-about-09__head__img img {
  width: 100%;
  height: 220px;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-about-09__body {
  margin-top: 2.875rem;
}

.c-about-09__body__title {
  letter-spacing: 0.2em;
  font-size: 20px;
  font-weight: bold;
}

.c-about-09__desc {
  margin-top: 1.25rem;
  line-height: 2;
  font-size: 14px;
}

a.c-about-09__btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: 90%;
  height: 3.2rem;
  padding: 0 1rem 0 0;
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
  text-decoration: none;
  color: #000;
}

a.c-about-09__btn:hover .c-about-09__btn__arrow {
  position: relative;
  display: flex;
  align-items: center;
}

a.c-about-09__btn:hover i {
  left: 100%;
}

.c-about-09__btn__text {
  margin-right: 1rem;
  letter-spacing: 0.15em;
  font-size: 13px;
  font-weight: bold;
  color: #000;
  text-transform: uppercase;
  white-space: nowrap;
}

.c-about-09__btn__arrow {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  margin-right: 0.7rem;
  margin-left: auto;
}

.c-about-09__btn__arrow i {
  position: absolute;
  left: 0;
  font-size: 15px;
  transition: 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}

.c-about-09__btn__line {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 0.6rem;
  pointer-events: none;
}

.c-about-09__btn__line::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 1px;
  left: 0;
  bottom: 0;
  background: #000;
}

.c-about-09__btn__line::after {
  content: "";
  display: block;
  position: absolute;
  width: 1px;
  height: 100%;
  right: 0;
  bottom: 0;
  background: #000;
}

/* PC */
@media screen and (min-width: 1024px) {
  .c-about-09__container {
    padding-inline: 9.5vw;
    margin-top: 100px;
  }
  .c-about-09 {
    padding-bottom: 6.8rem;
  }
  .c-about-09::before {
    left: -4.3rem;
    right: -4.3rem;
  }
  .c-about-09__head__title {
    font-size: 50px;
  }
  .c-about-09__head__img__container {
    margin-top: 0;
  }
  .c-about-09__head__img {
    position: absolute;
    width: 100%;
  }
  .c-about-09__head__img:nth-child(1) {
    width: 75%;
    top: -5rem;
    left: calc(50% + 3.75rem);
    width: 18.75rem;
    margin-left: 0;
    padding-right: 0;
  }
  .c-about-09__head__img:nth-child(2) {
    display: block;
    top: 21.5rem;
    left: calc(50% - 2.5rem);
    width: 25rem;
    margin-top: 0;
    margin-right: 0;
    padding-left: 0;
  }
  .c-about-09__head__img:nth-child(3) {
    display: block;
    top: 2.9375rem;
    left: calc(50% + 23.5rem);
    width: 18.75rem;
    margin-left: 0;
    padding-right: 0;
  }
  .c-about-09__head__img img {
    height: auto;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .c-about-09__body {
    margin-top: 1.8rem;
  }
  .c-about-09__desc {
    width: calc(50% - 8rem);
    line-height: 2.2;
    font-size: 16px;
  }
  a.c-about-09__btn {
    max-width: 18rem;
    margin-bottom: 0;
  }
  .c-about-09__btn__text {
    position: relative;
    font-size: 16px;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1366px) {
  .c-about-09__head__img {
    position: absolute;
  }
  .c-about-09__head__img:nth-child(1) {
    top: -5.8vw;
    left: calc(50% + 4.3vw);
    width: 22vw;
  }
  .c-about-09__head__img:nth-child(2) {
    top: 25.1830161054vw;
    left: calc(50% - 3.7vw);
    width: 30vw;
  }
  .c-about-09__head__img:nth-child(3) {
    top: 3.4407027818vw;
    left: calc(50% + 27.3vw);
    width: 22vw;
  }
}
/*
　feature-swap-09
================================*/
.c-feature-swap-09 ul {
  margin: 40px 5vw 0;
}

.c-feature-swap-09 li {
  position: relative;
}

.c-feature-swap-09 li:not(:first-child) {
  margin-top: 50px;
}

.c-feature-swap-09__inner {
  display: flex;
  flex-direction: column-reverse;
}

.c-feature-swap-09__text {
  margin-top: 20px;
}

.c-feature-swap-09__text span {
  display: inline-block;
  margin-bottom: 7px;
  padding: 5px 7px 5px;
  font-size: 15px;
  font-weight: bold;
  text-align: center;
  color: #fff;
  background-color: #787878;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1;
  box-sizing: border-box;
}

.c-feature-swap-09__text h2 {
  font-size: clamp(28px, 4.1666666667vw, 32px);
  color: #e25936;
  font-weight: 900;
  line-height: 1.3;
}

.c-feature-swap-09__text h3 {
  margin-top: 16px;
  font-size: 18px;
  font-weight: bold;
}

.c-feature-swap-09__text p {
  margin-top: 16px;
  line-height: 1.75;
}

.c-feature-swap-09__image img {
  width: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.16);
}

a.c-feature-swap-09__button {
  position: relative;
  display: inline-block;
  margin-top: 32px;
  padding: 0.5rem 4rem 0.5rem 0;
  padding: 8px 64px 8px 0;
  font-size: 16px;
  color: #222;
  text-decoration: none;
  font-weight: bold;
  border-bottom: 1px solid #222;
  transition: 0.3s;
  overflow: hidden;
}

a.c-feature-swap-09__button::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  bottom: 0;
  background: -webkit-linear-gradient(left, #00A0E9, #0068B7);
  transition: 0.3s;
  transform: translateX(-100%);
}

a.c-feature-swap-09__button::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 16px;
  width: 4px;
  height: 4px;
  border-top: 1px solid #222;
  border-right: 1px solid #222;
  transform: translateY(-50%) rotate(45deg);
  transition: 0.3s;
}

a.c-feature-swap-09__button:hover {
  border-bottom: 1px solid transparent;
  background: -webkit-linear-gradient(left, #00A0E9, #0068B7);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

a.c-feature-swap-09__button:hover::before {
  transform: translateX(0);
}

a.c-feature-swap-09__button:hover::after {
  right: 8px;
  border-color: #e25936;
}

a.c-feature-swap-09__button-owner {
  padding: 10px;
  background-color: #800000;
  color: #FFF;
  border-bottom: none;
  transition: none;
}

/* PC */
@media screen and (min-width: 1000px) {
  .c-feature-swap-09 {
    margin-top: 80px;
  }
  .c-feature-swap-09 li:not(:first-child) {
    margin-top: 80px;
  }
  .c-feature-swap-09 li::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 90%;
    top: 10%;
    left: 0;
    background-color: #f9f9f9;
    z-index: -1;
  }
  .c-feature-swap-09 li:nth-child(odd) {
    margin-right: -5vw;
  }
  .c-feature-swap-09 li:nth-child(even) {
    margin-left: -5vw;
  }
  .c-feature-swap-09__inner {
    justify-content: space-between;
  }
  .c-feature-swap-09 li:nth-child(odd) .c-feature-swap-09__inner {
    flex-direction: row;
  }
  .c-feature-swap-09 li:nth-child(even) .c-feature-swap-09__inner {
    flex-direction: row-reverse;
  }
  .c-feature-swap-09__text {
    width: 50%;
    padding: 50px 40px 30px;
  }
  .c-feature-swap-09__text span {
    padding: 7px 7px 5px;
    font-size: clamp(15px, 1.3157894737vw, 16px);
  }
  .c-feature-swap-09__text h2 {
    font-size: clamp(25px, 2.1929824561vw, 40px);
  }
  .c-feature-swap-09__text h3 {
    margin-top: 32px;
    font-size: clamp(20px, 1.7543859649vw, 25px);
  }
  .c-feature-swap-09__text p {
    margin-top: 32px;
    font-size: clamp(16px, 1.4035087719vw, 18px);
    letter-spacing: 0.05em;
  }
  .c-feature-swap-09__image {
    width: 50%;
  }
  .c-feature-swap-09__image img {
    height: 80%;
  }
  .c-feature-swap-09 li:nth-child(odd) .c-feature-swap-09__image {
    margin-left: auto;
  }
  .c-feature-swap-09 li:nth-child(even) .c-feature-swap-09__image {
    margin-right: auto;
  }
}
@media screen and (min-width: 1251px) {
  .c-feature-swap-09 ul {
    margin: 40px 7vw 0;
  }
  .c-feature-swap-09 li:nth-child(odd) {
    margin-right: -7vw;
  }
  .c-feature-swap-09 li:nth-child(even) {
    margin-left: -7vw;
  }
  .c-feature-swap-09__text {
    width: 40%;
    margin-top: 65px;
  }
  .c-feature-swap-09__image {
    width: 62%;
    max-width: 930px;
  }
  .c-feature-swap-09__image img {
    max-width: 930px;
    height: 85%;
  }
}
/*
　特徴（２カラム）-06
================================*/
.c-feature-col2-06 {
  width: 95%;
  margin: 0 auto 50px;
}

.c-feature-col2-06 ul {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.c-feature-col2-06 li {
  position: relative;
}

.c-feature-col2-06-cover {
  position: absolute;
  top: 8px;
  left: 8px;
  padding: 5px;
  text-align: center;
  color: #fff;
  font-weight: bold;
  background-color: #787878;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1;
  box-sizing: border-box;
  z-index: 1;
}

.c-feature-col2-06-cover span {
  font-size: 15px;
}

.c-feature-col2-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-col2-06__image img {
  width: 100%;
  max-height: 230px;
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-feature-col2-06 h3 {
  margin-bottom: 10px;
  font-size: clamp(25px, 3.2552083333vw, 30px);
  font-weight: bold;
  color: #e25936;
  text-align: center;
}

.c-feature-col2-06 p {
  line-height: 1.6;
}

a.c-feature-col2-06__button {
  position: relative;
  display: inline-block;
  margin-top: 20px;
  padding: 0.5rem 4rem 0.5rem 0;
  padding: 8px 64px 8px 0;
  font-size: 16px;
  color: #222;
  text-decoration: none;
  font-weight: bold;
  border-bottom: 1px solid #222;
  transition: 0.3s;
  overflow: hidden;
}

a.c-feature-col2-06__button::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  bottom: 0;
  background: -webkit-linear-gradient(left, #00A0E9, #0068B7);
  transition: 0.3s;
  transform: translateX(-100%);
}

a.c-feature-col2-06__button::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 16px;
  width: 4px;
  height: 4px;
  border-top: 1px solid #222;
  border-right: 1px solid #222;
  transform: translateY(-50%) rotate(45deg);
  transition: 0.3s;
}

a.c-feature-col2-06__button:hover {
  border-bottom: 1px solid transparent;
  background: -webkit-linear-gradient(left, #00A0E9, #0068B7);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

a.c-feature-col2-06__button:hover::before {
  transform: translateX(0);
}

a.c-feature-col2-06__button:hover::after {
  right: 8px;
  border-color: #e25936;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-feature-col2-06 {
    width: 100%;
    margin-bottom: 80px;
    padding-top: 30px;
  }
  .c-feature-col2-06 ul {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
  }
  .c-feature-col2-06 li {
    width: 46.5%;
  }
  .c-feature-col2-06-cover {
    padding: 7px;
  }
  .c-feature-col2-06-cover span {
    font-size: clamp(15px, 1.3157894737vw, 16px);
  }
  .c-feature-col2-06 h3 {
    font-size: clamp(25px, 2.1929824561vw, 28px);
  }
}
/*
　特徴（３カラム）-10
================================*/
.c-feature-col3-10 {
  width: 95%;
  margin: 0 auto 20px;
}

.c-feature-col3-10 ul {
  display: flex;
  flex-direction: column;
}

.c-feature-col3-10 li {
  position: relative;
  margin-bottom: 50px;
}

.c-feature-col3-10 li:last-child {
  margin-bottom: 0;
}

.c-feature-col3-10-cover {
  position: absolute;
  top: 8px;
  left: 8px;
  padding: 5px;
  text-align: center;
  color: #fff;
  font-weight: bold;
  background-color: #787878;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1;
  box-sizing: border-box;
  z-index: 1;
}

.c-feature-col3-10-cover span {
  font-size: 15px;
}

.c-feature-col3-10__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-10__image img {
  width: 100%;
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-feature-col3-10 h3 {
  margin-bottom: 10px;
  font-size: clamp(25px, 3.2552083333vw, 30px);
  font-weight: bold;
  color: #e25936;
  text-align: center;
}

.c-feature-col3-10 p {
  line-height: 1.6;
}

a.c-feature-col3-10__button {
  position: relative;
  display: inline-block;
  margin-top: 20px;
  padding: 0.5rem 4rem 0.5rem 0;
  padding: 8px 64px 8px 0;
  font-size: 16px;
  color: #222;
  text-decoration: none;
  font-weight: bold;
  border-bottom: 1px solid #222;
  transition: 0.3s;
  overflow: hidden;
}

a.c-feature-col3-10__button::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  bottom: 0;
  background: -webkit-linear-gradient(left, #00A0E9, #0068B7);
  transition: 0.3s;
  transform: translateX(-100%);
}

a.c-feature-col3-10__button::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 16px;
  width: 4px;
  height: 4px;
  border-top: 1px solid #222;
  border-right: 1px solid #222;
  transform: translateY(-50%) rotate(45deg);
  transition: 0.3s;
}

a.c-feature-col3-10__button:hover {
  border-bottom: 1px solid transparent;
  background: -webkit-linear-gradient(left, #00A0E9, #0068B7);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

a.c-feature-col3-10__button:hover::before {
  transform: translateX(0);
}

a.c-feature-col3-10__button:hover::after {
  right: 8px;
  border-color: #e25936;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-feature-col3-10 {
    width: 100%;
  }
  .c-feature-col3-10 ul {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
  }
  .c-feature-col3-10 li {
    width: 30%;
    margin-bottom: 0;
  }
  .c-feature-col3-10-cover {
    padding: 7px;
  }
  .c-feature-col3-10-cover span {
    font-size: clamp(15px, 1.3157894737vw, 16px);
  }
  .c-feature-col3-10-cover span.c-feature-col3-10-number {
    font-size: clamp(25px, 2.1929824561vw, 35px);
  }
  .c-feature-col3-10 h3 {
    font-size: clamp(25px, 2.1929824561vw, 28px);
  }
  .c-feature-col3-10__button {
    padding: 10px;
  }
  .c-feature-col3-10__button::after {
    top: calc(50% - 5px);
    right: 20px;
    width: 8px;
    height: 8px;
  }
  .c-feature-col3-10__button:hover {
    background-color: #149be0;
  }
}
/*
　セクションタイトル-09
================================*/
.c-section-title-09 {
  position: relative;
  margin-bottom: 50px;
  padding: 50px 0;
  background-color: #e25936;
  overflow: hidden;
}

.c-section-title-09::after {
  content: "RENT";
  position: absolute;
  top: 23%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  letter-spacing: 0.3rem;
  font-size: clamp(60px, 7.8125vw, 80px);
  font-family: "Arial", "Century Gothic", sans-serif;
  font-weight: bold;
  color: rgba(255, 255, 255, 0.05);
  z-index: 1;
}

.c-section-title-09__buy {
  position: relative;
}

.c-section-title-09__buy::after {
  content: "BUY";
}

.c-section-title-09__inner {
  padding: 0 20px;
  text-align: center;
}

.c-section-title-09__inner h2 {
  margin-bottom: 15px;
  font-size: clamp(35px, 4.5572916667vw, 40px);
  font-weight: 900;
  font-family: "Noto Serif JP", serif;
  color: #FFF;
}

.c-section-title-09__inner h2 span {
  color: #f3e600;
}

.c-section-title-09__inner p {
  color: #FFF;
  font-size: 16px;
  font-weight: 500;
  text-align: left;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-section-title-09 {
    margin-bottom: 60px;
    padding: 50px 0 50px;
  }
  .c-section-title-09::after {
    top: 30%;
    font-size: clamp(80px, 7.0175438596vw, 110px);
  }
  .c-section-title-09__inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0;
  }
  .c-section-title-09__inner h2 {
    font-size: clamp(50px, 4.3859649123vw, 60px);
  }
  .c-section-title-09__inner p {
    font-size: clamp(16px, 1.4035087719vw, 19px);
    text-align: center;
  }
}
/*
　物件情報-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: #149be0;
}

.c-estate-list-col3-01__type[data-type*=賃貸] {
  background: #149be0;
}

.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: #e25936;
}

/* 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-commit-list-01 {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.c-commit-list-01 ul li {
  margin-bottom: 20px;
  vertical-align: top;
  border: solid 1px #ccc;
  background-color: #FFF;
}

.c-commit-list-01__top {
  display: block;
  border-bottom: 1px solid #ccc;
}

.c-commit-list-01__top h3 {
  padding: 7px 10px;
  font-weight: bold;
  color: #fff;
  background-color: #e25936;
}

.c-commit-list-01__top dl {
  display: flex;
}

.c-commit-list-01__top dt {
  padding: 7px 5px;
  font-weight: bold;
  background-color: #ccc;
}

.c-commit-list-01__top dd {
  padding: 7px 10px;
}

.c-commit-list-01__textarea {
  display: flex;
  border-top: none;
}

.c-commit-list-01__textarea__image {
  padding: 10px;
  text-align: center;
}

.c-commit-list-01__textarea__image img {
  width: 50px;
  height: 50px;
}

.c-commit-list-01__textarea p {
  padding: 10px;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-commit-list-01 ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    margin: 0 auto;
  }
  .c-commit-list-01 ul li {
    width: 49%;
  }
  .c-commit-list-01__textarea__image img {
    width: 70px;
    height: 70px;
  }
  .c-commit-list-01__textarea p {
    width: calc(100% - 90px);
  }
}
/* PC */
@media screen and (min-width: 1100px) {
  .c-commit-list-01__top {
    display: flex;
  }
}
/*
　お客様の声（アンケート）-01
================================*/
.c-survey-list-01 li,
.c-survey-list-01--gray li {
  margin-bottom: 30px;
}

.c-survey-list-01 li {
  background-color: #FFF;
}

.c-survey-list-01--gray li {
  background-color: #f8f8f8;
}

.c-survey-list-01 li a,
.c-survey-list-01--gray li a {
  display: block;
  margin: 0 auto;
  text-decoration: none;
}

.c-survey-list-01__image {
  width: 90%;
  margin: 0 auto 15px auto;
}

.c-survey-list-01__image img {
  width: 100%;
  height: 225px;
  margin-top: 20px;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-survey-list-01__name {
  width: 90%;
  margin: 0 auto 10px auto;
  font-size: 17px;
  color: #000;
  font-weight: bold;
}

.c-survey-list-01__tag {
  display: flex;
  align-items: center;
  width: 90%;
  margin: 0 auto 15px auto;
  font-size: 16px;
  color: #333;
}

.c-survey-list-01__tag--area,
.c-survey-list-01__tag--type {
  margin-right: 10px;
  padding: 3px 5px;
}

.c-survey-list-01__tag--area {
  background-color: #ede5cb;
}

.c-survey-list-01__tag--type {
  background-color: #EEEEEE;
}

.c-survey-list-01__detail {
  width: 90%;
  margin: 0 auto;
  padding-bottom: 20px;
  font-size: 16px;
  line-height: 1.3;
  color: #333;
  overflow: hidden;
}

.c-survey-list-01__detail p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-survey-list-01,
  .c-survey-list-01--gray {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .c-survey-list-01 li,
  .c-survey-list-01--gray li {
    width: 31%;
  }
  .c-survey-list-01 a:hover,
  .c-survey-list-01--gray a:hover {
    opacity: 0.7;
  }
  .c-survey-list-01::after,
  .c-survey-list-01--gray::after {
    content: "";
    display: block;
    width: 31%;
  }
}
/*
　お知らせ-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: #e25936;
  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: #e25936;
    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: #e25936;
    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: #149be0;
  }
  .c-news-list-01__button__pc .fa {
    margin-left: 10px;
  }
  .c-news-list-01__button__sp {
    display: none;
  }
}
/*
　ブログリスト-02
================================*/
.c-blog-list-02 {
  margin-bottom: 40px;
}

.c-blog-list-02 li {
  max-width: 400px;
  margin: 0 auto 50px auto;
}

.c-blog-list-02 li:last-child {
  border-bottom: none;
}

.c-blog-list-02 li a {
  display: block;
  text-decoration: none;
}

.c-blog-list-02__image img {
  display: block;
  width: 100%;
  max-width: 400px;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0 auto;
}

.c-blog-list-02__content {
  padding-top: 10px;
  padding-bottom: 10px;
}

.l-section--gray .c-blog-list-02__content,
.l-section--blue .c-blog-list-02__content,
.l-section--yellow .c-blog-list-02__content {
  padding-left: 8px;
  padding-right: 8px;
}

.c-blog-list-02__content__inner {
  padding-bottom: 10px;
}

.c-blog-list-02__content__date {
  color: #666;
}

.c-blog-list-02__content__title {
  display: inline-block;
  margin-bottom: 5px;
  font-size: 20px;
  font-weight: bold;
  color: #e25936;
  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: #149be0;
}

/* 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;
  }
}
/*
　会社概要-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: 25%;
  text-align: center;
}

.c-company-06__body__detail dd {
  width: 70%;
}

.c-company-06__body__map {
  height: 250px;
}

.c-company-06__image {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.c-company-06__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: 370px;
  }
  .c-company-06__image {
    display: flex;
    justify-content: flex-start;
    box-sizing: border-box;
  }
  .c-company-06__image img {
    width: 23%;
    margin: 0 11px 10px 11px;
  }
}
/*
　LINE-03
================================*/
.c-banner-line-03 {
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 40px 10px 0;
  background: #fff;
  border: 3px solid #00b900;
}

.c-banner-line-03:hover {
  opacity: 0.7;
}

.c-banner-line-03__logo {
  width: 200px;
  max-width: 90%;
  margin: 0 auto;
}

.c-banner-line-03__logo img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.c-banner-line-03__text {
  margin-top: 30px;
  line-height: 1.8;
  text-align: center;
}

.c-banner-line-03__text p {
  font-weight: 900;
  font-size: 14px;
}

.c-banner-line-03__text p:first-child {
  font-size: clamp(17px, 5.3125vw, 20px);
  color: #00b900;
}

.c-banner-line-03__btn {
  display: inline-block;
  margin-top: 20px;
  padding: 5px 30px;
  box-sizing: border-box;
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  background: #00b900;
}

.c-banner-line-03__btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.c-banner-line-03__img {
  width: 200px;
  max-width: 90%;
  margin: 30px auto 0;
}

.c-banner-line-03__img img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-banner-line-03 {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    padding: 0;
  }
  .c-banner-line-03__logo {
    flex: 1;
    text-align: center;
    padding-left: clamp(10px, 3.6330608538vw, 15px);
  }
  .c-banner-line-03__logo img {
    width: 75%;
  }
  .c-banner-line-03__text {
    width: 50%;
    margin-top: 0;
    padding: clamp(20px, 1.8165304269vw, 30px) 0;
  }
  .c-banner-line-03__text p {
    font-size: clamp(11px, 0.9990917348vw, 20px);
  }
  .c-banner-line-03__text p:first-child {
    font-size: clamp(20px, 1.8165304269vw, 35px);
  }
  a.c-banner-line-03__btn {
    display: inline-block;
    margin-top: 15px;
    padding: 8px 70px;
    box-sizing: border-box;
    text-decoration: none;
    font-size: clamp(14px, 1.2715712988vw, 20px);
    font-weight: bold;
    color: #fff;
  }
  .c-banner-line-03__img {
    flex: 1;
    align-self: flex-end;
    margin: 0;
    padding-right: clamp(10px, 3.6330608538vw, 20px);
    text-align: center;
  }
  .c-banner-line-03__img img {
    width: 100%;
    min-width: 170px;
    vertical-align: bottom;
  }
}
/*
　ページタイトル-07
================================*/
.c-page-title-07 {
  display: flex;
  flex-direction: column;
}

.c-page-title-07.c-page-title-07__souzoku {
  margin-bottom: 30px;
}

.c-page-title-07__image {
  position: relative;
  width: 85%;
  margin: 0 0 0 auto;
  font-size: 0;
}

.c-page-title-07__image::before {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  content: "";
  background-color: rgba(29, 30, 65, 0.35);
}

.c-page-title-07__image img {
  width: 100%;
  height: 165px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 70% 50%;
     object-position: 70% 50%;
}

.c-page-title-07__rabel {
  position: absolute;
  bottom: -15%;
  right: 2.2135416667vw;
  padding-right: 0.15em;
  font-size: clamp(63px, 8.203125vw, 100px);
  font-weight: bold;
  font-family: "Noto Serif JP", serif;
  font-style: italic;
  color: rgba(219, 219, 219, 0.46);
  line-height: 1;
}

.c-page-title-07__application-form .c-page-title-07__rabel {
  font-size: clamp(53px, 6.9010416667vw, 90px);
}

.c-page-title-07__image__sales-record .c-page-title-07__rabel {
  font-size: clamp(40px, 5.2083333333vw, 70px);
}

.c-page-title-07__text {
  width: 90%;
  margin: 0 auto;
  z-index: 1;
}

.c-page-title-07__text__inner {
  margin-top: 30px;
}

.c-page-title-07__text__inner h2 {
  margin-bottom: 10px;
  font-size: clamp(30px, 3.90625vw, 33px);
  font-weight: 900;
  color: #e25936;
}

.c-page-title-07__text__inner p {
  line-height: 1.75;
  font-weight: bold;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-page-title-07 {
    flex-direction: row-reverse;
    align-items: center;
    margin-bottom: 20px;
  }
  .c-page-title-07.c-page-title-07__souzoku {
    margin-bottom: 80px;
  }
  .c-page-title-07__image {
    width: 65%;
  }
  .c-page-title-07__image img {
    height: clamp(280px, 30.701754386vw, 400px);
    -o-object-position: top right;
       object-position: top right;
  }
  .c-page-title-07__rabel {
    right: 1.7543859649vw;
    font-size: clamp(110px, 9.649122807vw, 180px);
  }
  .c-page-title-07__application-form .c-page-title-07__rabel {
    font-size: clamp(90px, 7.8947368421vw, 160px);
  }
  .c-page-title-07__image__sales-record .c-page-title-07__rabel {
    font-size: clamp(80px, 7.0175438596vw, 150px);
  }
  .c-page-title-07__text {
    position: relative;
    width: 35%;
    height: clamp(280px, 30.701754386vw, 400px);
  }
  .c-page-title-07__text__inner {
    position: absolute;
    top: 20%;
    left: 10%;
    min-width: 400px;
    margin: 0;
  }
  .c-page-title-07__text__inner h2 {
    margin-bottom: 20px;
    font-size: clamp(50px, 4.3859649123vw, 75px);
    line-height: 1.2;
    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;
  }
  .c-page-title-07__text__inner p {
    letter-spacing: 0.08em;
    font-size: clamp(18px, 1.5789473684vw, 23px);
    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: 1500px) {
  .c-page-title-07__text__inner {
    position: absolute;
    top: 53%;
    left: 55%;
    transform: translate(-50%, -50%);
    min-width: 450px;
  }
}
/*
　お悩み-04
================================*/
.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;
}

/*
　コンタクト-01
================================*/
.c-contact-01 {
  display: block;
  padding: 30px 0;
  background: #e25936;
}

/* 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;
  }
}
/*
　チェックボックス付きリスト-01
=================================*/
.c-checkbox-list-01,
.c-checkbox-list-01--center {
  width: 95%;
  margin: 0 auto;
}

.c-checkbox-list-01 li,
.c-checkbox-list-01--center li {
  position: relative;
  padding-left: 30px;
  line-height: 1.5;
  margin-bottom: 20px;
  font-size: 17px;
}

.c-checkbox-list-01 li::before,
.c-checkbox-list-01--center li::before {
  position: absolute;
  top: 2px;
  left: 0;
  width: 20px;
  height: 20px;
  content: url(../img/icon__check.svg);
}

@media screen and (min-width: 768px) {
  .c-checkbox-list-01,
  .c-checkbox-list-01--center {
    width: 100%;
  }
  .c-checkbox-list-01--center {
    display: flex;
    justify-content: center;
  }
  .c-checkbox-list-01 li,
  .c-checkbox-list-01--center li {
    font-size: 20px;
  }
  .c-checkbox-list-01 li::before,
  .c-checkbox-list-01--center li::before {
    width: 25px;
    height: 25px;
  }
  .c-checkbox-list-01 li,
  .c-checkbox-list-01--center li {
    padding-left: 33px;
  }
  .c-checkbox-list-01 li::before,
  .c-checkbox-list-01--center li::before {
    top: 0;
  }
}
/*
　2columnレイアウト-01
=================================*/
.c-column-2-01 {
  margin-bottom: 50px;
}

.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%;
  }
}
/*
　よくある質問-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: #e25936;
}

.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;
  }
}
/*
　流れ-04
================================*/
.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: #e25936;
  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: #e25936 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;
  }
}
/*
　コンタクト-10
================================*/
.c-contact-10 {
  background: #213a70;
  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: #e25936;
  color: #fff;
}

.c-contact-10__button-inquiry a {
  background: #149be0;
  color: #fff;
}

.c-contact-10__button-satei a span {
  border: solid 2px #e25936;
}

.c-contact-10__button-inquiry a span {
  border: solid 2px #149be0;
}

/* 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-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: #e25936;
}

.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;
}

/* 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;
  }
}
/*
　バナー（１カラム）-01
================================*/
.c-banner-col1-01 {
  position: relative;
  width: 95%;
  height: 250px;
  margin: 30px auto;
}

.c-banner-col1-01 a {
  display: block;
  text-decoration: none;
}

.c-banner-col1-01 a::before {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(11, 60, 93, 0.7);
}

.c-banner-col1-01__image img {
  display: block;
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-banner-col1-01__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 85%;
  color: #fff;
}

.c-banner-col1-01__content__text {
  line-height: 1.4;
  font-size: 16px;
}

.c-banner-col1-01__content__title {
  margin: 15px 0;
  text-align: center;
  font-size: 30px;
  font-weight: 900;
}

.c-banner-col1-01__content__button {
  display: block;
  max-width: 380px;
  margin: 0 auto;
  padding: 15px 10px;
  text-align: center;
  font-weight: bold;
  background: #149be0;
}

.c-banner-col1-01__content__button i {
  margin-left: 10px;
}

.c-banner-col1-01 a:hover {
  opacity: 0.8;
  background: #fff;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-banner-col1-01 {
    width: 100%;
    margin: 0 auto;
  }
  .c-banner-col1-01__content {
    width: 90%;
  }
  .c-banner-col1-01__content__title {
    text-align: left;
    font-size: 45px;
  }
  .c-banner-col1-01__content__text {
    font-size: 22px;
    font-weight: bold;
  }
  .c-banner-col1-01__content__button {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 40%;
    padding: 10px;
    font-size: 22px;
  }
}
/*
　会社概要-02
================================*/
.c-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: #e25936;
  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;
  }
}
/*
　概要-05
================================*/
.c-about-05 {
  position: relative;
}

.c-about-05__image {
  margin-bottom: 10px;
}

.c-about-05__image img {
  width: 100%;
  height: 235px;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-about-05__text {
  width: 90%;
  margin: 0 auto;
}

.c-about-05__text h2 {
  font-size: 55px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #333;
  font-family: "Century Gothic", "Arial", sans-serif;
  line-height: 1;
}

.c-about-05__text h2 span {
  margin-right: 10px;
  color: #fff;
  -webkit-text-stroke: 2px #333;
}

.c-about-05__text h3 {
  font-size: 27px;
  margin-bottom: 15px;
  font-weight: 900;
  font-family: "Noto Serif JP", serif;
  color: #e25936;
  line-height: 1.4;
}

.c-about-05__text p {
  line-height: 1.8;
  font-weight: 500;
  margin-bottom: 15px;
}

.c-about-05__button {
  width: 100%;
  display: block;
  margin: 0 auto;
  padding: 12px 5px;
  box-sizing: border-box;
  text-align: center;
  border: 2px solid #e25936;
  background-color: #FFF;
  cursor: pointer;
  transition: 0.3s cubic-bezier(0.45, 0, 0.55, 1);
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.c-about-05__button,
.c-about-05__button:link,
.c-about-05__button:visited {
  text-decoration: none;
  color: #e25936;
  font-weight: bold;
}

.c-about-05__button::after {
  background: #e25936;
  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-about-05__button:hover {
  color: #FFF;
}

.c-about-05__button:hover::after {
  transform: scale(1, 1);
}

/* PC */
@media screen and (min-width: 768px) {
  .c-about-05 {
    max-width: 1300px;
    margin: 0 auto;
    margin-top: 70px;
  }
  .c-about-05__inner {
    display: flex;
  }
  .c-about-05__image {
    position: relative;
    width: 40%;
    height: 500px;
    flex: 1;
    margin-left: calc(50% - 50vw);
  }
  .c-about-05__image img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
  }
  .c-about-05__text {
    position: relative;
    width: 60%;
    padding-left: 60px;
    box-sizing: border-box;
  }
  .c-about-05__text h2 {
    position: absolute;
    top: -50px;
    left: -50px;
    font-size: 110px;
    font-size: clamp(95px, 8.3333333333vw, 110px);
  }
  .c-about-05__text h3 {
    font-size: clamp(32px, 2.8070175439vw, 43px);
    margin-bottom: 25px;
    padding-top: 75px;
    letter-spacing: 0.05em;
  }
  .c-about-05__text p {
    margin-bottom: 30px;
    font-size: clamp(16px, 1.4912280702vw, 17px);
  }
  .c-about-05__button {
    width: 50%;
    margin: 0;
    padding: 15px 10px;
    font-size: 17px;
  }
}
/*
　お悩み-06
================================*/
.c-trouble-06-title {
  width: 90%;
  font-size: 1.4rem;
  font-weight: 900;
  text-align: center;
  color: #000;
  margin: 0 auto 40px auto;
}

.c-trouble-06 li {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 15px 20px 15px 10px;
  background-color: #FFF;
  box-sizing: border-box;
}

.c-trouble-06 li:not(:first-child) {
  margin-top: 20px;
}

.c-trouble-06__image {
  margin-right: 15px;
  width: clamp(60px, 10.15625vw, 78px);
  height: auto;
  font-size: 0;
}

.c-trouble-06__image img {
  width: 100%;
}

.c-trouble-06 p {
  font-size: clamp(17px, 2.6041666667vw, 20px);
  font-weight: bold;
  line-height: 1.4;
}

.c-trouble-06 p span {
  font-size: clamp(23px, 3.6458333333vw, 28px);
  color: #e25936;
  font-weight: 900;
}

@media screen and (min-width: 768px) {
  .c-trouble-06-title {
    width: 100%;
    font-size: 2.3rem;
  }
  .c-trouble-06 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .c-trouble-06 li {
    width: 48.5%;
    padding: 16px 20px 16px 20px;
  }
  .c-trouble-06 li:not(:first-child) {
    margin-top: 0;
  }
  .c-trouble-06 li:nth-child(n+3) {
    margin-top: 20px;
  }
  .c-trouble-06__image {
    margin-right: 25px;
    width: clamp(60px, 6.8421052632vw, 78px);
  }
  .c-trouble-06 p {
    font-size: clamp(19px, 1.9298245614vw, 22px);
  }
  .c-trouble-06 p span {
    font-size: clamp(25px, 2.8070175439vw, 32px);
  }
}
@media screen and (min-width: 1000px) {
  .c-trouble-06 li {
    padding: 16px 20px 16px 50px;
  }
}
/*
　ルビ付き-07
================================*/
.c-title-ruby-07 {
  position: relative;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-weight: 900;
  margin-bottom: 30px;
  padding: 30px 0 20px 0;
  color: #e25936;
}

.c-title-ruby-07 span {
  position: relative;
  line-height: 1.5;
  font-size: clamp(24px, 3.125vw, 35px);
  z-index: 2;
}

.c-title-ruby-07::before {
  content: attr(data-en);
  position: absolute;
  top: 2px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(241, 141, 95, 0.6);
  opacity: 0.2;
  font-size: 3rem;
  font-size: clamp(40px, 5.2083333333vw, 60px);
  font-weight: normal;
  font-style: italic;
  z-index: 1;
}

.c-title-ruby-07::after {
  position: absolute;
  content: "";
  width: 50px;
  height: 1px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #333;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-title-ruby-07 {
    margin-bottom: 60px;
  }
  .c-title-ruby-07 span {
    font-size: clamp(25px, 2.1929824561vw, 40px);
  }
  .c-title-ruby-07::before {
    top: -40px;
    font-size: clamp(65px, 5.701754386vw, 85px);
    letter-spacing: -3px;
  }
}
/*
  吹き出し付き見出し-01
==================================*/
.c-title-balloon-01 {
  text-align: center;
}

.c-title-balloon-01__inner p {
  position: relative;
  display: inline-block;
  margin-bottom: 30px;
  padding: 7px 35px 10px 35px;
  text-align: center;
  font-size: clamp(16px, 5vw, 28px);
  font-weight: bold;
  color: #fff;
  background: #149be0;
  border-radius: 50px;
  line-height: 1.3;
}

.c-title-balloon-01__inner p::before {
  position: absolute;
  content: "";
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 10px solid transparent;
  border-top: 20px solid #149be0;
}

.c-title-balloon-01 h2 {
  font-size: clamp(26px, 8.125vw, 35px);
  font-weight: 900;
}

.c-title-balloon-01 h2 span {
  color: #e25936;
}

.c-title-balloon-01 h2 em {
  display: inline-block;
  font-size: clamp(35px, 10.9375vw, 45px);
  font-weight: 900;
  font-style: unset;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-title-balloon-01__inner p {
    margin-bottom: 20px;
    font-size: clamp(18px, 1.5789473684vw, 28px);
  }
  .c-title-balloon-01 h2 {
    font-size: clamp(30px, 2.6315789474vw, 50px);
  }
  .c-title-balloon-01 h2 em {
    font-size: clamp(40px, 3.5087719298vw, 60px);
  }
}
/*
　特徴（4カラム）-03
================================*/
.c-feature-col4-03 {
  width: 90%;
  margin: 80px auto 20px auto;
}

.c-feature-col4-03__inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(273px, max-content));
  gap: 3rem 2.5rem;
  justify-content: center;
}

.c-feature-col4-03__item {
  background: #fff;
  box-shadow: 9px 9px 24px rgba(0, 0, 0, 0.1);
  position: relative;
}

.c-feature-col4-03__number {
  position: absolute;
  top: -30px;
  left: 10px;
  font-size: 3.5em;
  font-weight: 700;
  color: #e25936;
  z-index: 1;
  line-height: 1;
  font-style: italic;
}

.c-feature-col4-03__image img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 5/3;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-feature-col4-03__text {
  padding: 20px 20px;
}

.c-feature-col4-03__text h3 {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 15px;
  text-align: center;
  color: #e25936;
  line-height: 1.3;
}

@media screen and (min-width: 768px) {
  .c-feature-col4-03 {
    width: 100%;
    max-width: 1300px;
    margin-top: 100px;
  }
  .c-feature-col4-03__number {
    font-size: 4.5em;
    top: -35px;
  }
  .c-feature-col4-03__text {
    padding: 25px;
  }
  .c-feature-col4-03__text h3 {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 68px;
    font-size: clamp(20px, 1.7543859649vw, 24px);
    line-height: 1.4;
  }
  .c-feature-col4-03__item:nth-child(4) .c-feature-col4-03__text h3,
  .c-feature-col4-03__item:nth-child(5) .c-feature-col4-03__text h3 {
    min-height: auto;
  }
  .c-feature-col4-03__text p {
    font-size: clamp(16px, 1.4912280702vw, 17px);
  }
  .c-feature-col4-03__inner {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 4.5rem 2.5rem;
  }
  /* 上段（3つ） */
  .c-feature-col4-03__item:nth-child(1) {
    grid-column: 1/3;
  }
  .c-feature-col4-03__item:nth-child(2) {
    grid-column: 3/5;
  }
  .c-feature-col4-03__item:nth-child(3) {
    grid-column: 5/7;
  }
  /* 下段（中央寄せ2つ） */
  .c-feature-col4-03__item:nth-child(4) {
    grid-column: 2/4;
  }
  .c-feature-col4-03__item:nth-child(5) {
    grid-column: 4/6;
  }
}
/*
　流れ-08
================================*/
.c-flow-08 {
  width: 100%;
  margin: 0 auto;
}

.c-flow-08 ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 0;
}

.c-flow-08 li {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 0 20px;
}

.c-flow-08__image {
  width: 40%;
}

.c-flow-08__image__inner {
  position: relative;
  width: clamp(130px, 26.0416666667vw, 200px);
  margin: 0 auto;
}

.c-flow-08__image__flame {
  width: clamp(130px, 28.6458333333vw, 220px);
  height: clamp(130px, 28.6458333333vw, 220px);
  margin-left: auto;
  margin-right: auto;
  border-radius: 50%;
  overflow: hidden;
}

.c-flow-08__image__number {
  position: absolute;
  bottom: 2%;
  left: 2%;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  line-height: 35px;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  background: #e25936;
  color: #fff;
  font-family: "Arial", "Century Gothic", sans-serif;
}

.c-flow-08__image__flame img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1/1;
}

.c-flow-08__text {
  width: 55%;
}

.c-flow-08__text h3 {
  font-size: clamp(16px, 2.6041666667vw, 20px);
  font-weight: bold;
  color: #333;
}

.c-flow-08__text p {
  font-size: 15px;
  line-height: 1.4;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-flow-08 ul {
    gap: 40px 0;
  }
  .c-flow-08 li {
    width: 33.3%;
    flex-direction: column;
  }
  .c-flow-08__image {
    width: 80%;
    margin: 0 0 15px 0;
  }
  .c-flow-08__image__inner {
    width: 100%;
  }
  .c-flow-08__image__flame {
    width: 100%;
    height: auto;
    max-width: 220px;
  }
  .c-flow-08__image__number {
    bottom: 0;
    left: 9%;
    width: 45px;
    height: 45px;
    line-height: 45px;
    font-size: 28px;
  }
  .c-flow-08__text {
    width: 95%;
  }
  .c-flow-08__text h3 {
    font-size: clamp(18px, 1.5789473684vw, 20px);
    text-align: center;
    line-height: 1;
  }
  .c-flow-08__text p {
    font-size: 16px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 1100px) {
  .c-flow-08 ul {
    justify-content: center;
  }
  .c-flow-08 li {
    width: 25%;
  }
}
/*
　コンタクト-15
================================*/
.c-contact-15 {
  position: relative;
  background: url(../img/contact__background--01.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  width: 100%;
  height: auto;
  text-align: center;
}

.c-contact-15::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(33, 75, 130, 0.9);
}

.c-contact-15__inner {
  position: relative;
  padding: 100px 0 80px 0;
  z-index: 10;
}

.c-contact-15__head {
  position: relative;
  width: 90%;
  margin: 0 auto;
}

.c-contact-15__heading span {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  line-height: 1;
  font-family: "Arial", "Century Gothic", sans-serif;
  font-size: clamp(60px, 18.2291666667vw, 140px);
  font-weight: 700;
  color: rgba(240, 245, 247, 0.3803921569);
  opacity: 0.38;
}

.c-contact-15__title {
  padding-top: 5px;
  line-height: 1.2;
  font-size: clamp(28px, 4.6875vw, 36px);
  font-weight: 700;
  color: #fff;
}

.c-contact-15__lead {
  margin: 30px 0;
}

.c-contact-15__lead {
  font-weight: bold;
  color: #fff;
}

.c-contact-15__wrapper {
  width: 90%;
  margin: 0 auto;
}

.c-contact-15__tel {
  margin-bottom: 30px;
}

.c-contact-15__tel:hover,
.c-contact-15__mail:hover {
  opacity: 0.8;
}

.c-contact-15__tel a,
.c-contact-15__mail a {
  display: block;
  padding: 25px 20px;
  text-align: center;
  text-decoration: none;
  color: #000;
  background: #fff;
  box-sizing: border-box;
}

.c-contact-15__tel__title,
.c-contact-15__mail__title {
  margin-bottom: 20px;
  font-size: clamp(22px, 3.6458333333vw, 28px);
  font-weight: bold;
}

.c-contact-15__tel__number {
  margin-bottom: 15px;
  line-height: 1;
  font-family: "Arial", "Century Gothic", sans-serif;
  font-size: 40px;
  font-weight: bold;
}

.c-contact-15__tel__number i {
  margin-right: 5px;
  font-size: 38px;
}

.c-contact-14__tel__info__label {
  display: inline-block;
  margin-bottom: 5px;
  padding: 7px 10px;
  line-height: 1;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  background: #e25936;
}

.c-contact-15__mail__button {
  margin: 0 auto 20px auto;
  padding: 15px 5px;
  color: #fff;
  font-weight: 500;
  background: #e25936;
}

.c-contact-15__mail__button i {
  margin-right: 5px;
  font-size: 18px;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-contact-15__inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 140px 0 100px 0;
  }
  .c-contact-15__head {
    width: 100%;
  }
  .c-contact-15__heading span {
    transform: translate(-50%, -40%);
    font-size: clamp(140px, 15.7894736842vw, 180px);
  }
  .c-contact-15__title {
    font-size: clamp(36px, 4.2105263158vw, 48px);
  }
  .c-contact-15__lead {
    margin-bottom: 50px;
    font-size: 20px;
  }
  .c-contact-15__wrapper {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }
  .c-contact-15__tel {
    margin-bottom: 0;
  }
  .c-contact-15__tel,
  .c-contact-15__mail {
    width: 48%;
  }
  .c-contact-15__tel a,
  .c-contact-15__mail a {
    padding: 40px 25px;
    width: 100%;
    height: 100%;
  }
  .c-contact-15__tel__title,
  .c-contact-15__mail__title {
    margin-bottom: 15px;
    font-size: clamp(26px, 2.6315789474vw, 30px);
  }
  .c-contact-15__tel__number {
    font-size: clamp(40px, 4.9122807018vw, 56px);
  }
  .c-contact-15__tel__number i {
    font-size: clamp(36px, 4.3859649123vw, 50px);
  }
  .c-contact-14__tel__info {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .c-contact-14__tel__info__label {
    margin-right: 10px;
    margin-bottom: 0;
    padding: 10px;
    font-size: 18px;
  }
  .c-contact-14__tel__info__detail,
  .c-contact-15__mail__button,
  .c-contact-15__mail__text {
    font-size: 20px;
  }
  .c-contact-15__mail__button {
    width: 75%;
  }
  .c-contact-15__mail__button i {
    margin-right: 10px;
    font-size: 22px;
  }
}
/*
　追従メニュー-02
================================*/
.c-follow-menu-02 {
  transform: translateY(100%);
  transition: transform 0.4s ease;
  position: sticky;
  bottom: 0;
  z-index: 50;
}

.c-follow-menu-02.is-visible {
  transform: translateY(0);
}

.c-follow-menu-02__inner {
  display: flex;
  justify-content: space-between;
  text-align: center;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
}

.c-follow-menu-02__contact {
  align-items: center;
  width: 33%;
  background: #00b900;
}

.c-follow-menu-02__tel {
  width: 34%;
  background: #fff;
  color: #000;
}

.c-follow-menu-02__request {
  align-items: center;
  flex-wrap: wrap;
  width: 33%;
  background: #e25936;
}

.c-follow-menu-02__contact a,
.c-follow-menu-02__tel a,
.c-follow-menu-02__request a {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  text-decoration: none;
  padding: 8px 0;
  width: 100%;
  color: #fff;
  font-size: 14px;
}

.c-follow-menu-02__contact a:hover,
.c-follow-menu-02__tel a:hover,
.c-follow-menu-02__request a:hover {
  opacity: 0.7;
}

.c-follow-menu-02__tel__pc {
  display: none;
}

.c-follow-menu-02__tel__time {
  color: #000;
  font-size: 13px;
}

.c-follow-menu-02__img {
  height: 26px;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-follow-menu-02__contact a,
  .c-follow-menu-02__request a {
    flex-direction: row;
    padding: 15px 0;
  }
  .c-follow-menu-02__contact a,
  .c-follow-menu-02__tel a,
  .c-follow-menu-02__request a {
    align-items: center;
  }
  .c-follow-menu-02__contact .c-follow-menu-02__title,
  .c-follow-menu-02__request .c-follow-menu-02__title {
    margin-left: 8px;
  }
  .c-follow-menu-02__title {
    font-family: "Trebuchet MS", "Arial", "Century Gothic", sans-serif;
    font-weight: bold;
    font-size: clamp(25px, 2.8947368421vw, 33px);
    padding-left: 5px;
  }
  .c-follow-menu-02__tel .c-follow-menu-02__title {
    font-size: clamp(25px, 2.6315789474vw, 38px);
  }
  .c-follow-menu-02__text {
    font-size: 18px;
    margin-left: 10px;
  }
  .c-follow-menu-02__tel__pc {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    padding: 10px 0;
  }
  .c-follow-menu-02__tel__text {
    font-size: 15px;
    font-weight: bold;
  }
  .c-follow-menu-02__tel__time {
    font-size: 14px;
  }
  .c-follow-menu-02__tel__telno {
    display: flex;
  }
  .c-follow-menu-02__img {
    height: 33px;
  }
  .c-follow-menu-02__img--tel {
    width: 25px;
    margin-left: 15px;
  }
  .c-follow-menu-02__tel a.c-follow-menu-02__tel__sp {
    display: none;
  }
}
/*
 ページリンク-10
================================*/
.c-page-link-10 {
  position: relative;
  width: 100%;
  height: 230px;
  margin: 60px auto 0;
  background: url(../img/page-link-10__bg.jpg) no-repeat center/cover;
  background-position: 20% 50%;
  z-index: 10;
}

.c-page-link-10:hover {
  opacity: 0.8;
}

.c-page-link-10 a {
  display: block;
  width: 100%;
  height: 230px;
  text-decoration: none;
  color: #FFF;
}

.c-page-link-10:after {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(120deg, #222 65%, transparent 65%);
  opacity: 0.7;
  z-index: -11;
}

.c-page-link-10__rabel {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: clamp(40px, 5.2083333333vw, 60px);
  font-weight: bold;
  font-family: "Noto Serif JP", serif;
  font-style: italic;
  line-height: 1;
  opacity: 0.3;
}

.c-page-link-10__text {
  position: absolute;
  bottom: 0;
  padding: 15px 10px;
  box-sizing: border-box;
}

.c-page-link-10__text h2 {
  margin-bottom: 10px;
  font-size: clamp(20px, 2.6041666667vw, 30px);
  font-weight: bold;
  font-family: "Noto Serif JP", serif;
  text-shadow: 1px 2px 3px #222;
}

.c-page-link-10__text p {
  font-size: clamp(15px, 1.953125vw, 17px);
  text-shadow: 1px 2px 3px #222;
  line-height: 1.3;
}

.c-page-link-10__button {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: 60%;
  height: 2.5rem;
  padding: 0 1rem 0 0;
  text-decoration: none;
  color: #fff;
  text-shadow: 1px 2px 3px #222;
}

.c-page-link-10:hover .c-page-link-10__button__arrow {
  position: relative;
  display: flex;
  align-items: center;
}

.c-page-link-10:hover .c-page-link-10__button__arrow i {
  left: 100%;
}

.c-page-link-10__button__text {
  margin-right: 1rem;
  font-size: 14px;
  color: #fff;
  text-transform: uppercase;
  white-space: nowrap;
}

.c-page-link-10__button__arrow {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  margin-right: 0.7rem;
  margin-left: auto;
}

.c-page-link-10__button__arrow i {
  position: absolute;
  left: 0;
  font-size: 15px;
  transition: 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}

.c-page-link-10__button__line {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 0.6rem;
  pointer-events: none;
}

.c-page-link-10__button__line::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 1px;
  left: 0;
  bottom: 0;
  background: #fff;
}

.c-page-link-10__button__line::after {
  content: "";
  display: block;
  position: absolute;
  width: 1px;
  height: 100%;
  right: 0;
  bottom: 0;
  background: #fff;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-page-link-10 {
    max-width: 1140px;
    height: 250px;
  }
  .c-page-link-10 a {
    height: 250px;
  }
  .c-page-link-10:after {
    background: linear-gradient(125deg, #222 55%, transparent 55%);
    opacity: 0.8;
  }
  .c-page-link-10__rabel {
    top: 10px;
    left: 25px;
    font-size: clamp(40px, 3.5087719298vw, 60px);
  }
  .c-page-link-10__text {
    padding: 20px 30px;
  }
  .c-page-link-10__text h2 {
    margin-bottom: 5px;
    font-size: clamp(20px, 1.7543859649vw, 30px);
  }
  .c-page-link-10__text p {
    font-size: clamp(15px, 1.3157894737vw, 17px);
  }
  .c-page-link-10__button {
    max-width: 13.7rem;
    height: 3rem;
  }
  .c-page-link-10__button__text {
    position: relative;
    font-size: 16px;
  }
}
/* ━━━━━━━━━━━━━━━━

 ■レイアウト

━━━━━━━━━━━━━━━━ */
/*
　ヘッダー-20
================================*/
html {
  scroll-padding-top: 90px;
}

.l-header-20 {
  position: relative;
  width: 100%;
  height: 75px;
  margin: 0;
}

.l-header-20__wrapper {
  position: fixed;
  width: 100%;
  height: 75px;
  top: 0;
  background-color: #fff;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
  z-index: 99;
}

.l-header-20__title {
  padding: 3px 5px;
  font-size: 0.8em;
  color: #fff;
  background-color: #e25936;
}

.l-header-20__title h1 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}

.l-header-20__inquiry {
  display: none;
}

.l-header-20__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 10px;
}

.l-header-20__logo a {
  display: block;
  font-size: 0;
}

.l-header-20__logo img {
  width: 245px;
}

.l-header-20__nav {
  display: none;
}

.l-header-20__nav a:hover {
  background-color: #fef4ee;
}

.l-header-20__menu__button i {
  font-size: 35px;
}

.l-header-20__menu__button a {
  display: block;
  text-align: center;
  text-decoration: none;
  color: #1f2a34;
}

.l-header-20__sp-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 120px 20px 65px 20px;
  transform: translateY(min(-100%, -1000px));
  transition: transform 0.5s;
  overflow-y: auto;
  background: #fefefe;
  box-sizing: border-box;
  z-index: 50;
}

.l-header-20__sp-menu.__open {
  transform: translateY(0);
  transition: transform 0.5s;
}

.l-header-20__sp-menu ul li {
  width: 100%;
  height: auto;
  border-top: 1px solid #919191;
}

.l-header-20__sp-menu ul li:last-child {
  border-bottom: 1px solid #919191;
}

.l-header-20__sp-menu ul li a {
  display: block;
  position: relative;
  width: 100%;
  line-height: 3.7em;
  text-decoration: none;
  font-size: 1em;
  color: #0b3c5d;
  transition: all 0.2s ease;
}

.l-header-20__sp-menu__nav-child a::after {
  display: block;
  position: absolute;
  content: "";
  top: 50%;
  right: 5%;
  width: 7px;
  height: 7px;
  margin-top: -4px;
  border-top: solid 2px #7f7f7f;
  border-right: solid 2px #7f7f7f;
  transform: rotate(135deg);
}

.l-header-20__sp-menu__nav-child a.is-open {
  border-bottom: 1px dotted #919191;
}

.l-header-20__sp-menu__nav-child a.is-open::after {
  transform: rotate(315deg);
}

.l-header-20__sp-menu__nav ul li ul {
  display: none;
}

.l-header-20__sp-menu__nav ul li ul li {
  width: 93%;
  margin: 0 0 0 auto;
  border-bottom: 1px dotted #919191;
  border-top: none;
}

.l-header-20__sp-menu__nav ul li ul li:last-child {
  border-bottom: none;
}

.l-header-20__sp-menu__nav ul li ul li a {
  display: block;
  margin-left: 10px;
  font-size: 1em;
  color: #0b3c5d;
}

.l-header-20__sp-menu__nav ul li ul li a::after {
  display: none;
}

.l-header-20__sp-menu__nav ul li ul li a:after {
  display: none;
}

.l-header-20__sp-menu__nav ul li ul li a.is-open ul {
  display: block;
}

.l-header-20__sp-menu.is-open {
  transform: translateY(0);
  transition: transform 0.5s;
}

.l-header-20__sp-menu--tel a {
  margin-top: 30px;
  line-height: 1;
  text-decoration: none;
  font-family: "Arial", "Noto Sans JP", sans-serif;
  font-size: 32px;
  font-weight: bold;
  color: #e25936;
}

.l-header-20__sp-menu--tel p {
  text-align: center;
}

.l-header-20__sp-menu--inquiry {
  display: flex;
  justify-content: center;
  margin: 20px auto 0 auto;
}

.l-header-20__sp-menu--inquiry__mail {
  width: 60%;
}

.l-header-20__sp-menu--inquiry__mail a {
  display: block;
  padding: 20px;
  text-decoration: none;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  color: #FFF;
  background-color: #e25936;
  box-sizing: border-box;
}

.l-header-20__sp-menu--inquiry__mail a:hover {
  background: #767171;
}

.l-header-20__sp-menu--tel a {
  display: block;
  text-align: center;
}

@media print {
  .l-header-20__sp-menu {
    display: none;
  }
}
/* PC */
@media screen and (min-width: 1100px) {
  html {
    scroll-padding-top: 125px;
  }
  .l-header-20 {
    height: 115px;
    margin: 0;
  }
  .l-header-20__wrapper {
    justify-content: flex-end;
    height: 115px;
    padding: 0;
    background-color: rgba(255, 255, 255, 0.9);
  }
  .l-header-20__title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 0 0 20px;
    height: 40px;
    font-size: 16px;
    box-sizing: border-box;
  }
  .l-header-20__title h1 {
    width: calc(100% - 530px);
  }
  .l-header-20__inquiry {
    display: flex;
    align-items: center;
  }
  .l-header-20__inquiry--tel {
    display: block;
    margin-right: 20px;
  }
  .l-header-20__inquiry--tel a {
    line-height: 1;
    text-decoration: none;
    font-family: "Century Gothic", "Arial", sans-serif;
    font-size: 28px;
    color: #FFF;
  }
  .l-header-20__inquiry--mail {
    background-color: #149be0;
  }
  .l-header-20__inquiry--mail a {
    display: block;
    height: 40px;
    padding: 12px 20px;
    line-height: 1;
    text-decoration: none;
    text-align: center;
    color: #FFF;
    font-size: 16px;
    box-sizing: border-box;
  }
  .l-header-20__inquiry--mail:hover {
    opacity: 0.5;
  }
  .l-header-20__inner {
    height: 75px;
    padding: 0 0 0 20px;
  }
  .l-header-20__logo {
    position: static;
    margin: 0 auto 0 0;
  }
  .l-header-20__logo a {
    width: clamp(180px, 24.5614035088vw, 370px);
  }
  .l-header-20__logo img {
    width: 100%;
  }
  .l-header-20__nav {
    display: block;
  }
  .l-header-20__nav ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  .l-header-20__nav li {
    border-left: 1px solid #CCC;
  }
  .l-header-20__nav a {
    position: relative;
    display: inline-block;
    padding: 0 27px;
    line-height: 75px;
    text-align: center;
    text-decoration: none;
    font-size: 17px;
    color: #000;
  }
  .l-header-20__nav ul > li {
    position: relative;
    border-left: 1px solid #CCC;
  }
  .l-header-20__nav ul > li ul {
    display: none;
    padding: 5px;
    background-color: #FFF;
    box-shadow: 0 2px 7px 1px rgba(118, 118, 118, 0.3);
    min-width: 100%;
    width: auto;
    box-sizing: border-box;
  }
  .l-header-20__nav ul > li .l-header-20__nav__parallel {
    width: 445px;
  }
  .l-header-20__nav ul > li ul li {
    border-left: none;
    border-bottom: 1px dotted #DCDCDC;
  }
  .l-header-20__nav ul > li .l-header-20__nav__parallel li {
    display: inline-block;
    width: 45%;
    margin: 0 1%;
  }
  .l-header-20__nav ul > li .l-header-20__nav__parallel li:nth-child(even) {
    width: 49%;
    margin-left: 2%;
  }
  .l-header-20__nav ul > li ul li:last-child,
  .l-header-20__nav ul > li ul li:nth-child(7) {
    border-bottom: none;
  }
  .l-header-20__nav ul > li ul li a {
    display: block;
    padding: 2px 5px;
    white-space: nowrap;
    line-height: 50px;
  }
  .l-header-20__nav ul > li .l-header-20__nav__parallel li a {
    text-align: left;
    font-size: 16px;
  }
  .l-header-20__nav ul > li ul li a:hover {
    opacity: 1;
  }
  .l-header-20__nav ul > li:hover ul {
    position: absolute;
    display: block;
    margin: 0;
    top: 75px;
    left: 0;
  }
  .l-header-20__nav ul > li:hover .l-header-20__nav__parallel {
    left: -120px;
  }
  .l-header-20__menu__button {
    display: none;
  }
}
@media screen and (min-width: 1100px) and (max-width: 1300px) {
  .l-header-20__nav ul > li > a {
    padding: 0 18px;
    font-size: 16px;
  }
  .l-header-20__nav ul > li ul li a {
    padding: 5px;
    font-size: 14px;
  }
}
/*=========================================

* メインビジュアル-17

==========================================*/
.l-main-visual-17 {
  height: 80vh;
}

.l-main-visual-17__inner {
  position: relative;
  height: 100%;
  padding-bottom: 40px;
  overflow: hidden;
}

.swiper.l-main-visual-17__slide-img {
  width: 80vw;
  height: 100%;
  margin-left: auto;
  margin-right: 0;
}

.swiper-slide img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 33% 50%;
     object-position: 33% 50%;
}

.swiper-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  transition: opacity 0.01s ease;
  opacity: 0;
  overflow: hidden;
}

.swiper-slide-active {
  position: relative;
  opacity: 1;
}

.swiper.l-main-visual-17__slide-text {
  position: absolute;
  top: 40%;
  left: 5vw;
  transform: translateY(-50%);
  width: 100%;
  max-width: 90vw;
}

.swiper-slide-active .l-main-visual-17__slide-text--item,
.swiper-slide-duplicate-active .l-main-visual-17__slide-text--item,
.swiper-slide-prev .l-main-visual-17__slide-text--item {
  padding-left: 20px;
  border-left: 4px solid #e25936;
  color: #e25936;
}
.swiper-slide-active .l-main-visual-17__slide-text--item h2,
.swiper-slide-duplicate-active .l-main-visual-17__slide-text--item h2,
.swiper-slide-prev .l-main-visual-17__slide-text--item h2 {
  line-height: 1.2;
  font-size: clamp(38px, 6.518904824vw, 50px);
  font-weight: 900;
}
.swiper-slide-active .l-main-visual-17__slide-text--item p,
.swiper-slide-duplicate-active .l-main-visual-17__slide-text--item p,
.swiper-slide-prev .l-main-visual-17__slide-text--item p {
  display: inline-block;
  margin-top: 20px;
  font-size: clamp(18px, 2.6075619296vw, 20px);
  font-weight: bold;
}
.swiper-slide-active .l-main-visual-17__slide-text--item h2,
.swiper-slide-active .l-main-visual-17__slide-text--item p,
.swiper-slide-duplicate-active .l-main-visual-17__slide-text--item h2,
.swiper-slide-duplicate-active .l-main-visual-17__slide-text--item p,
.swiper-slide-prev .l-main-visual-17__slide-text--item h2,
.swiper-slide-prev .l-main-visual-17__slide-text--item p {
  overflow: hidden;
  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;
}
.swiper-slide-active .l-main-visual-17__slide-text--item h2 .bg-slide,
.swiper-slide-active .l-main-visual-17__slide-text--item p .bg-slide,
.swiper-slide-duplicate-active .l-main-visual-17__slide-text--item h2 .bg-slide,
.swiper-slide-duplicate-active .l-main-visual-17__slide-text--item p .bg-slide,
.swiper-slide-prev .l-main-visual-17__slide-text--item h2 .bg-slide,
.swiper-slide-prev .l-main-visual-17__slide-text--item p .bg-slide {
  position: relative;
  display: inline-block;
  overflow: hidden;
  animation: text-slide 0.8s;
}
.swiper-slide-active .l-main-visual-17__slide-text--item h2 .bg-slide::after,
.swiper-slide-active .l-main-visual-17__slide-text--item p .bg-slide::after,
.swiper-slide-duplicate-active .l-main-visual-17__slide-text--item h2 .bg-slide::after,
.swiper-slide-duplicate-active .l-main-visual-17__slide-text--item p .bg-slide::after,
.swiper-slide-prev .l-main-visual-17__slide-text--item h2 .bg-slide::after,
.swiper-slide-prev .l-main-visual-17__slide-text--item p .bg-slide::after {
  position: absolute;
  display: inline-block;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #e25936;
  z-index: 0;
  animation: bg-slide 1.6s;
  transform: translateX(101%);
}

@keyframes text-slide {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes bg-slide {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(101%);
  }
}
.swiper-pagination {
  padding-right: 2vw;
  text-align: right !important;
}

.swiper-pagination-bullet-active {
  width: 14px !important;
  height: 14px !important;
  transform: translateY(3px);
  background: #e25936 !important;
}

/* PC */
@media screen and (min-width: 768px) {
  .l-main-visual-17 {
    height: auto;
  }
  .l-main-visual-17__inner {
    position: relative;
    padding-bottom: 0;
    overflow: hidden;
  }
  .swiper.l-main-visual-17__slide-img {
    width: 60vw;
    height: auto;
  }
  .swiper-slide img {
    height: auto;
  }
  .swiper.l-main-visual-17__slide-text {
    top: 7.5vw;
    left: 5.3vw;
    transform: none;
  }
  .swiper-slide-active .l-main-visual-17__slide-text--item,
  .swiper-slide-duplicate-active .l-main-visual-17__slide-text--item,
  .swiper-slide-prev .l-main-visual-17__slide-text--item {
    padding-left: 25px;
  }
  .swiper-slide-active .l-main-visual-17__slide-text--item h2,
  .swiper-slide-duplicate-active .l-main-visual-17__slide-text--item h2,
  .swiper-slide-prev .l-main-visual-17__slide-text--item h2 {
    margin-bottom: 15px;
    font-size: min(100px, 6.9444444444vw);
    line-height: 1.1;
  }
  .swiper-slide-active .l-main-visual-17__slide-text--item p,
  .swiper-slide-duplicate-active .l-main-visual-17__slide-text--item p,
  .swiper-slide-prev .l-main-visual-17__slide-text--item p {
    font-size: min(30px, 2.0833333333vw);
    line-height: 1.4;
  }
  .swiper-pagination {
    margin-left: 5.3vw;
    text-align: left !important;
  }
}
/*=========================================

* フッター-05

==========================================*/
.l-footer-05 {
  padding: 68px 0;
  background: #f5f5f5;
}

.l-footer-05__inner {
  padding: 0 35px;
}

.l-footer-05__inner__info__logo {
  max-width: 280px;
  margin-bottom: 30px;
}

.l-footer-05__inner__info__logo img {
  display: block;
  max-width: 100%;
  width: 100%;
  height: auto;
}

.l-footer-05__inner__info__content {
  display: inline-block;
}

.l-footer-05__inner__info__address {
  margin-bottom: 15px;
}

.l-footer-05__inner__info__tel {
  margin-bottom: 30px;
}

.l-footer-05__inner__info__tel a {
  text-decoration: none;
  letter-spacing: 1.5px;
  font-size: 20px;
  color: #061934;
}

.l-footer-05__inner__info__contact {
  margin-bottom: 25px;
}

.l-footer-05__inner__info__contact a {
  display: block;
  width: 187px;
  padding: 8px 0;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  color: #e25936;
  background: #fff;
  border: 1px solid #e25936;
}

.l-footer-05__inner__info__contact a:hover {
  color: #fff;
  background: #e25936;
  border: 1px solid #e25936;
  transition: all 0.3s;
  opacity: 1;
}

.l-footer-05__contact__sns {
  display: flex;
}

.l-footer-05__contact__sns a:hover {
  opacity: 0.7;
}

.l-footer-05__contact__sns img {
  width: 35px;
}

.l-footer-05__contact__sns a:not(:first-child) {
  margin-left: 15px;
}

.l-footer-05__inner__nav {
  display: none;
}

.copyright {
  background-color: #e25936 !important;
}

@media screen and (min-width: 1100px) {
  .l-footer-05 {
    padding: 100px 0;
    border-top: none;
  }
  .l-footer-05__inner {
    display: flex;
    justify-content: space-between;
    width: 96%;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0;
  }
  .l-footer-05__inner__info {
    margin-right: 40px;
  }
  .l-footer-05__contact__sns img {
    width: 40px;
  }
  .l-footer-05__contact__sns a:not(:first-child) {
    margin-left: 15px;
  }
  .l-footer-05__inner__nav {
    display: flex;
    justify-content: space-between;
    width: 62%;
  }
  .l-footer-05__inner__nav__unit {
    width: 21%;
  }
  .l-footer-05__inner__nav__unit__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    text-decoration: none;
    border-bottom: 1px solid #d5dae1;
    margin-bottom: 15px;
  }
  .l-footer-05__inner__nav__unit__head p {
    font-size: 16px;
    font-weight: bold;
    color: #17417d;
  }
  .l-footer-05__inner__nav__unit__head span {
    position: relative;
    width: 20px;
    height: 20px;
    display: block;
    background: #5bb1d9;
    border-radius: 50%;
  }
  .l-footer-05__inner__nav__unit__head span::before {
    content: "";
    position: absolute;
    top: 6px;
    left: 2px;
    width: 11px;
    height: 4px;
    border-bottom: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: skew(45deg);
  }
  .l-footer-05__inner__nav__unit__head a:hover {
    opacity: 1;
  }
  .l-footer-05__inner__nav__unit__head a:hover span {
    transform: scale(1.3, 1.3);
    transition: all 0.3s;
  }
  .l-footer-05__inner__nav__unit__list li {
    margin-bottom: 13px;
  }
  .l-footer-05__inner__nav__unit__list li:last-child {
    margin-bottom: 0;
  }
  .l-footer-05__inner__nav__unit__list li a {
    position: relative;
    display: block;
    padding-left: 15px;
    text-decoration: none;
    font-size: 15px;
    color: #061934;
    letter-spacing: 0.05rem;
  }
  .l-footer-05__inner__nav__unit__list li a::before {
    content: "";
    position: absolute;
    top: 49%;
    left: 0;
    width: 7px;
    height: 1px;
    background: #149be0;
  }
  .l-footer-05__inner__nav__unit__list a:hover {
    transition: all 0.3s;
    color: #e25936;
  }
  .btn__page_top {
    position: fixed;
    right: 10px;
    bottom: 50px;
    font-size: 1.2rem;
    line-height: 1.2rem;
    background: #fff;
    color: #737373;
    padding: 13px;
    border: solid 1px;
    border-radius: 50%;
    box-shadow: 0 2px 10px -6px rgba(0, 0, 0, 0.5), 0 3px 10px -4px rgba(0, 0, 0, 0.2);
  }
  .btn__page_top i {
    font-size: 1.2rem;
    opacity: 1;
    margin: 0;
  }
  .btn__page_top span {
    display: none;
  }
}
/* 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.l-section--beige {
  background: #f4f3ef;
}

.l-section.l-section--stripe {
  background: repeating-linear-gradient(#fefcfa, #fefcfa 20px, #fff 20px, #fff 41px);
}

.l-section__container {
  padding: 0 8px;
}

.l-section__container--md {
  width: 90%;
  margin: 0 auto;
}

/* PC */
@media screen and (min-width: 768px) {
  .l-section {
    padding: 80px 0;
  }
  .l-section__container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0;
  }
  .l-section__container--md {
    max-width: 1250px;
  }
}
/* ━━━━━━━━━━━━━━━━

 ■プロジェクト

━━━━━━━━━━━━━━━━ */
/*=================================

* トップ

=================================*/
/*
　リード
================================*/
.p-lead {
  width: 95%;
  margin: 0 auto 40px;
  font-size: clamp(16px, 2.34375vw, 18px);
  line-height: 1.8;
  color: #333;
}

/* PC */
@media screen and (min-width: 768px) {
  .p-lead {
    margin-bottom: 60px;
    font-size: clamp(16px, 1.5789473684vw, 18px);
    text-align: center;
  }
}
/*
　吹き出し付きボタン
================================*/
a.p-feature-swap-09__link {
  display: block;
  position: relative;
  width: -moz-max-content;
  width: max-content;
  min-width: 290px;
  padding: 1em 1em 1em calc(2.7em - 2px);
  font-size: 17px;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  color: #fff;
  border-radius: 0.5rem;
  background: #B80000;
  box-shadow: 0 2px 0 #800000;
  box-sizing: border-box;
  transition: 0.3s;
  margin-top: 40px;
  margin-left: 10px;
}

a.p-feature-swap-09__link .p-feature-swap-09__link__copy {
  position: absolute;
  bottom: 1.3em;
  left: -15px;
  width: 4em;
  height: 4em;
  aspect-ratio: 1/1;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-align: center;
  color: #B80000;
  font-size: 80%;
  font-weight: bold;
  background: #fff;
  border: 2px solid #B80000;
  border-radius: 50%;
  box-sizing: border-box;
  transform: rotate(-10deg);
  font-size: 14px;
}

a.p-feature-swap-09__link .p-feature-swap-09__link__copy::before {
  position: absolute;
  content: "";
  bottom: -3px;
  right: -5px;
  border: 9px solid transparent;
  border-left: 15px solid #FFF;
  z-index: 0;
  transform: rotate(45deg);
}

a.p-feature-swap-09__link .p-feature-swap-09__link__text {
  margin-top: 0;
  font-weight: 700;
  line-height: 1.2;
}

/* ホバー時 */
a.p-feature-swap-09__link:hover {
  transform: translate(0, 2px);
  background: #e25936;
  box-shadow: 0 1px 0 #873520;
}

a.p-feature-swap-09__link:hover .p-feature-swap-09__link__copy {
  color: #e25936;
  border: 2px solid #e25936;
}

/* PC */
@media screen and (min-width: 769px) {
  a.p-feature-swap-09__link {
    width: 100%;
    max-width: 380px;
    font-size: clamp(17px, 1.4912280702vw, 20px);
    margin-top: 45px;
    margin-bottom: 10px;
  }
  a.p-feature-swap-09__link .p-feature-swap-09__link__copy {
    bottom: 1.3em;
    left: -15px;
    width: 4em;
    height: 4em;
    font-size: 16px;
  }
  a.p-feature-swap-09__link .p-feature-swap-09__link__text {
    line-height: 1;
    font-size: clamp(17px, 1.4912280702vw, 20px);
  }
}
/*=================================

* 空き家管理

=================================*/
/*
　セクション
=================================*/
.l-section.l-section--lightblue {
  background: #e6f5f5;
}

/*
　空家の問題点
=================================*/
.p-akiya__caption {
  margin-bottom: 50px;
  font-size: 23px;
  font-weight: 900;
  text-align: center;
  line-height: 1.3;
}

.p-akiya__caption--fw {
  font-weight: bold !important;
}

.p-akiya__caption--orange {
  color: #FF8C00 !important;
}

.p-akiya__caption strong {
  font-size: 35px;
}

.p-akiya__problem-list li {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: bold;
}

.p-akiya__problem-list li::before {
  content: "■";
  margin-right: 5px;
}

@media screen and (min-width: 768px) {
  .p-akiya__caption {
    margin-bottom: 80px;
    font-size: 35px;
  }
  .p-akiya__caption strong {
    font-size: 55px;
  }
  .p-akiya__text {
    margin-bottom: 30px;
    font-size: 30px;
    text-align: center;
  }
  .p-akiya__problem-list li {
    font-size: 30px;
  }
}
/*
　空家の解決策
=================================*/
.p-akiya-kaiketsu h2 {
  font-size: 30px;
  font-weight: 900;
  text-align: center;
  margin-bottom: 50px;
}

.p-akiya-kaiketsu h2 span {
  font-size: 35px;
  color: #FF8426;
}

.p-akiya-kaiketsu ul li {
  width: 100%;
  margin: 0 auto 50px auto;
}

.p-akiya-kaiketsu__image {
  width: 30%;
  min-width: 180px;
  margin: 0 auto 20px auto;
}

.p-akiya-kaiketsu__image img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-akiya-kaiketsu__text p {
  font-weight: 900;
  text-align: center;
  font-size: 30px;
  line-height: 1.3;
}

.p-akiya-kaiketsu__text p span {
  color: #FF8426;
}

@media screen and (min-width: 768px) {
  .p-akiya-kaiketsu h2 {
    font-size: 40px;
  }
  .p-akiya-kaiketsu h2 span {
    font-size: 55px;
  }
  .p-akiya-kaiketsu ul {
    display: flex;
    justify-content: space-between;
  }
  .p-akiya-kaiketsu ul li {
    margin-bottom: 0;
  }
  .p-akiya-kaiketsu__text p {
    font-size: 35px;
  }
  .p-akiya-kaiketsu ul li:first-child .p-akiya-kaiketsu__text p {
    padding-top: 20px;
  }
}
/*
　家を貸し出すメリット
=================================*/
.c-checkbox-list-01.p-akiya__merit {
  margin-bottom: 50px;
}

.p-akiya__merit__text {
  text-align: center;
}

.p-akiya__merit__text p {
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 700;
}

.p-akiya__merit__text p span {
  margin-bottom: 30px;
  font-size: 25px;
  font-weight: 900;
  color: #FF7F00;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-checkbox-list-01.p-akiya__merit {
    display: flex;
    justify-content: center;
  }
  .c-checkbox-list-01.p-akiya__merit li {
    font-size: 22px;
    line-height: 1.7;
  }
  .p-akiya__merit__text p {
    text-align: center;
    font-size: 28px;
  }
  .p-akiya__merit__text p span {
    font-size: 40px;
    text-align: center;
  }
}
/*
　空き家サービスメニュー
=================================*/
.p-akiya-service {
  margin-bottom: 40px;
}

.p-akiya-service--mb-20 {
  margin-bottom: 20px !important;
}

.p-akiya-service--mb-0 {
  margin-bottom: 0 !important;
}

.p-akiya-service__table.tbl.w100p th,
.p-akiya-service__table.tbl.w100p td {
  font-size: 16px;
}

.p-akiya-service__text span {
  color: #ff0000;
}

/* PC */
@media screen and (min-width: 768px) {
  .p-akiya-service {
    margin-bottom: 80px;
  }
}
/*=================================

* 不動産買取

=================================*/
/*
　買取
=================================*/
.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: 25px;
  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: #e25936;
  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-company-about {
  width: 95%;
  margin: 0 auto;
}

.p-company-about h3 {
  margin: 20px 0 30px 0;
  font-size: clamp(30px, 4.3vw, 45px);
  font-weight: bold;
  letter-spacing: 0.2em;
  color: #333;
  text-align: center;
}

.p-company-about h3 span {
  color: #e25936;
}

.p-company-about li {
  display: flex;
  margin-bottom: 30px;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.3;
  color: #333;
}

.p-company-about li::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  background-image: url(../img/logo-mark.png);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
  margin-right: 10px;
}

/* PC */
@media screen and (min-width: 768px) {
  .p-company-about {
    width: 100%;
  }
  .p-company-about h3 {
    margin-bottom: 40px;
  }
  .p-company-about li {
    justify-content: center;
    margin-bottom: 40px;
    font-size: 30px;
  }
  .p-company-about li::before {
    width: 45px;
    height: 45px;
    margin-right: 15px;
  }
}
/*
　紹介文
================================*/
.p-company__introduction {
  position: relative;
  background: url(../img/company__introduction__bg.jpg) no-repeat center center/cover;
  margin-top: 30px;
}

.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 {
    margin-top: 100px;
  }
  .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 #e25936;
  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__wrapper {
  overflow-x: hidden;
}

.p-company-feature {
  display: block;
  width: 95%;
  margin: 30px auto 0 auto;
}

.p-company-feature:nth-child(n+2) {
  margin-top: 80px;
}

.p-company-feature__image {
  position: relative;
  margin: 0;
}

.p-company-feature__image::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.1);
}

.p-company-feature__image img {
  width: 100%;
  border-radius: 10px;
}

.p-company-feature__ribbon__wrapper {
  position: relative;
  max-width: 800px;
  margin-left: auto;
}

.p-company-feature__ribbon {
  position: absolute;
  bottom: 0;
  left: 15%;
}

.p-company-feature__ribbon__inner {
  display: inline-block;
  position: relative;
  text-align: center;
  box-sizing: border-box;
}

.p-company-feature__ribbon__inner:before {
  content: "";
  position: absolute;
  width: 10px;
  bottom: -10px;
  left: -35px;
  border: 20px solid #ff7a95;
  border-left-color: transparent;
}

.p-company-feature__ribbon__inner:after {
  content: "";
  position: absolute;
  width: 10px;
  bottom: -10px;
  right: -35px;
  border: 20px solid #ff7a95;
  border-right-color: transparent;
}

.p-company-feature__ribbon__inner h3 {
  display: inline-block;
  position: relative;
  margin: 0;
  padding: 5px 20px 0;
  line-height: 45px;
  font-size: 18px;
  font-weight: bold;
  color: #FFF;
  background: #149be0;
  font-family: "Arial", "Century Gothic", sans-serif;
  z-index: 10;
}

.p-company-feature__ribbon__inner h3 span {
  font-size: 25px;
}

.p-company-feature__ribbon__inner h3:before {
  position: absolute;
  content: "";
  top: 100%;
  left: 0;
  border: none;
  border-bottom: solid 10px transparent;
  border-right: solid 15px #cc4762;
}

.p-company-feature__ribbon__inner h3:after {
  position: absolute;
  content: "";
  top: 100%;
  right: 0;
  border: none;
  border-bottom: solid 10px transparent;
  border-left: solid 15px #cc4762;
}

.p-company-feature__text {
  position: relative;
  margin-top: 20px;
}

.p-company-feature__text:before {
  content: attr(data-num);
  position: absolute;
  right: 0;
  top: 0;
  transform: translateY(0);
  font-family: "Roboto", "Arial", sans-serif;
  font-style: italic;
  color: #f0f7f9;
  font-size: 6rem;
  line-height: 1;
  z-index: -1;
}

.p-company-feature__label {
  margin-bottom: 15px;
  font-family: "Roboto", "Arial", sans-serif;
  font-style: italic;
}

.p-company-feature__en {
  margin-bottom: 15px;
  font-size: 1.4rem;
  font-weight: 700;
  color: #787878;
  font-family: "Arial", sans-serif;
  font-style: italic;
}

.p-company-feature h2 {
  font-size: 1.5rem;
  font-weight: 900;
  color: #e25936;
  line-height: 1.4;
}

.p-company-feature h2 span {
  font-size: 2.5rem;
  font-family: "Arial", sans-serif;
}

.p-company-feature p {
  margin-top: 20px;
  line-height: 1.6;
}

/* PC */
@media screen and (min-width: 769px) {
  .p-company-feature {
    display: flex;
    width: 100%;
    margin-top: 50px;
  }
  .p-company-feature:nth-of-type(even) {
    flex-direction: row-reverse;
  }
  .p-company-feature:nth-child(n+2) {
    margin-top: 140px;
  }
  .p-company-feature__image {
    position: relative;
    flex: 1;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: 60px;
    box-sizing: border-box;
  }
  .p-company-feature:nth-of-type(even) .p-company-feature__image {
    margin-left: 60px;
    margin-right: calc(50% - 50vw);
  }
  .p-company-feature__image img {
    max-width: 800px;
    display: block;
    margin-left: auto;
  }
  .p-company-feature:nth-of-type(even) .p-company-feature__image img {
    max-width: 800px;
    display: block;
    margin-left: unset;
    margin-right: auto;
  }
  .p-company-feature__ribbon {
    bottom: 6%;
    left: 10%;
  }
  .p-company-feature__ribbon__inner h3 {
    font-size: 25px;
    line-height: 47px;
  }
  .p-company-feature__ribbon__inner h3 span {
    font-size: 40px;
  }
  .p-company-feature__text {
    width: 40%;
    margin-top: 0;
  }
  .p-company-feature__text:before {
    transform: translateY(-50%);
    font-size: 15rem;
  }
  .p-company-feature__label {
    margin-bottom: 25px;
    font-size: 1.3rem;
  }
  .p-company-feature__en {
    margin-bottom: 30px;
    font-size: 2.1rem;
  }
  .p-company-feature h2 {
    font-size: 2.1rem;
  }
  .p-company-feature h2 span {
    font-size: 3.2rem;
  }
  .p-company-feature p {
    margin-top: 25px;
    line-height: 1.9;
  }
}
/* old*/
/*
　代表あいさつ
================================*/
.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: #e25936;
  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;
  -o-object-position: top;
     object-position: top;
}

/* 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: #e25936;
  background: #fedb39;
}

a.p-company__banner-staff__button:hover {
  opacity: 0.8;
}

/* PC */
@media screen and (min-width: 768px) {
  .p-company__banner-staff__inner {
    width: 100%;
  }
  .p-company__banner-staff__title {
    font-size: clamp(30px, 2.6315789474vw, 45px);
  }
  .p-company__banner-staff__text {
    font-size: clamp(16px, 1.4035087719vw, 18px);
  }
  a.p-company__banner-staff__button {
    font-size: clamp(17px, 1.4912280702vw, 22px);
  }
}
/* 店舗写真
======================= */
.p-company__image__img {
  width: 100%;
}

.p-company__image__img:not(:first-child) {
  margin-top: 20px;
}

.p-company__image__img img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (min-width: 768px) {
  .p-company__image {
    display: flex;
    justify-content: center;
  }
  .p-company__image__img {
    width: auto;
    margin: 0 10px;
    max-width: 30%;
    min-width: 23%;
  }
  .p-company__image__img:not(:first-child) {
    margin-top: unset;
  }
}
/*
　沿革
================================*/
.p-company__history__list {
  display: flex;
  align-items: flex-start;
  padding: 10px 0;
}

.p-company__history__list:nth-child(even) {
  background: #FFF;
}

.p-company__history__list dt {
  width: 28%;
  padding-left: 2%;
}

.p-company__history__list dd {
  width: 81%;
  padding-right: 2%;
}

.p-company__history__list dt,
.p-company__history__list dd {
  font-size: 14px;
}

/* PC */
@media screen and (min-width: 768px) {
  .p-company__history__list {
    padding: 20px 0;
  }
  .p-company__history__list dt {
    width: 19%;
  }
  .p-company__history__list dt,
  .p-company__history__list dd {
    font-size: 16px;
  }
}
/*
　アクセス
================================*/
.p-company__access {
  padding-bottom: 0 !important;
  font-size: 0;
}

.p-company__access__lead {
  width: 90%;
  margin: 0 auto 30px auto;
  font-size: 16px;
}

/* PC */
@media screen and (min-width: 768px) {
  .p-company__access__lead {
    max-width: 1140px;
    margin: 0 auto 40px auto;
    text-align: center;
  }
}
/*=================================

* 不動産管理

=================================*/
.p-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;
  }
}
/*=================================

* 不動産売却

=================================*/
/*
　タイトル（フォントサイズ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 #e25936;
  box-sizing: border-box;
  padding: 15px;
  border-radius: 8px;
}

.p-sell__promise li h3 {
  font-size: 23px;
  margin-bottom: 10px;
  color: #e25936;
  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-souzoku__action {
  box-sizing: border-box;
  margin: 10px;
}

.p-souzoku__action-list {
  margin-bottom: 30px;
  text-align: center;
}

.p-souzoku__action-list li {
  margin: 10px 0;
  padding: 10px;
  line-height: 1.5;
  background-color: #1e5b85;
  color: #FFF;
}

.p-souzoku__actionpoint-list {
  padding: 10px;
  border: 2px solid #1e5b85;
  border-radius: 4px;
  background-color: #FFF;
}

.p-souzoku__actionpoint-list li {
  margin: 7px 0;
}

.p-souzoku__actionpoint-list li::before {
  margin-right: 3px;
  padding: 10px 5px;
  content: "□";
}

.p-souzoku__service-list li {
  font-size: 17px;
  margin-bottom: 10px;
}

.p-souzoku__service-list li::before {
  content: "◆";
  margin-right: 5px;
}

.p-souzoku__service {
  font-size: 1.1rem !important;
}

/* PC */
@media screen and (min-width: 768px) {
  .p-souzoku__action-list {
    display: flex;
    justify-content: space-between;
  }
  .p-souzoku__action-list li {
    width: 32%;
    padding: 10px 25px;
    box-sizing: border-box;
  }
  .p-souzoku__actionpoint-list {
    display: flex;
    flex-wrap: wrap;
    align-content: space-between;
  }
  .p-souzoku__actionpoint-list li {
    margin-right: 15px;
  }
  .p-souzoku__actionpoint-list li::before {
    margin-right: 0;
  }
  .p-souzoku__service-list li {
    font-size: 18px;
  }
  .p-souzoku__service {
    font-size: 1.2rem !important;
  }
}
/*=================================

* 各種申込書式

=================================*/
.p-application-form {
  width: 90%;
  margin: 0 auto 50px auto;
  max-width: 950px;
}

.p-application-form ul {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.p-application-form li {
  text-align: center;
  background: #0d1041;
  color: #fff;
  padding: 20px;
}

.p-application-form.p-application-form__cancellation li {
  background: #767171;
}

.p-application-form__title {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
}

.p-application-form__title i {
  margin-left: 10px;
  font-size: 25px;
}

.p-application-form li a {
  text-decoration: none;
  color: #000;
  background: #fff;
  display: block;
  padding: 15px;
}

.p-application-form__note {
  margin-top: 10px;
  font-size: 14px;
  color: #fff;
}

@media screen and (min-width: 768px) {
  .p-application-form ul {
    flex-wrap: wrap;
    flex-direction: row;
  }
  .p-application-form li {
    width: 43%;
  }
  .p-application-form.p-application-form__cancellation li {
    width: 100%;
  }
  .p-application-form li a:hover {
    background: #e25936;
    color: #fff;
  }
}
/*=================================

* オーナー様へ

=================================*/
/*
　page-title
=================================*/
.p-page-title__owner {
  position: relative;
  background: #fff;
}

.p-page-title__owner__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  background-image: url(../img/page-title__owner.jpg);
  background-position: 47% 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.p-page-title__owner__inner::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(33, 33, 33, 0.15);
}

.p-page-title__owner__title {
  position: relative;
  width: 92%;
  margin: 15px auto 25px;
}

.p-page-title__owner__title__label {
  display: inline-block;
  margin: 5px 5px 0 0;
  padding: 0 8px 3px;
  background-color: #149be0;
  font-size: min(22px, 5.8666666667vw);
  font-size: clamp(22px, 3.90625vw, 30px);
  font-weight: bold;
  color: #fff;
}

.p-page-title__owner__title h2 {
  margin: 10px 0 15px 0;
  font-size: clamp(25px, 3.2552083333vw, 40px);
  font-weight: 900;
  color: #222;
  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.3;
}

.p-page-title__owner__title h2 span {
  font-size: clamp(27px, 5.46875vw, 42px);
}

.p-page-title__owner__title h2 em {
  display: inline-block;
  font-size: clamp(34px, 6.5104166667vw, 50px);
  font-weight: 900;
  font-style: normal;
  color: #e25936;
  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.2;
}

.p-page-title__owner__title p {
  margin-bottom: 15px;
  font-size: clamp(16px, 2.0833333333vw, 20px);
  font-weight: bold;
  color: #222;
  text-shadow: #fff 2px 2px 2px, #fff -2px -2px 2px, #fff -2px 2px 2px, #fff 2px -2px 2px, #fff 2px 0px 2px, #fff -2px 0px 2px, #fff 0px 2px 2px, #fff 0px -2px 2px;
  line-height: 1.5;
}

.p-page-title__owner__title h3 {
  display: inline-block;
  padding: 10px;
  font-size: clamp(17px, 2.2135416667vw, 20px);
  font-weight: bold;
  color: #FFF;
  line-height: 1.5;
  background-color: #feb911;
  border-radius: 10px;
}

.p-page-title__owner__map {
  position: relative;
  width: 95%;
  max-width: 400px;
  bottom: 10px;
}

.p-page-title__owner__map img {
  display: block;
  width: 100%;
  height: auto;
}

.p-page-title__owner__u-text {
  width: 100%;
  padding: 10px;
  background-color: #e25936;
  box-sizing: border-box;
}

.p-page-title__owner__u-text p {
  font-size: clamp(16px, 2.9947916667vw, 23px);
  font-weight: bold;
  color: #FFF;
}

/* PC */
@media screen and (min-width: 900px) {
  .p-page-title__owner__inner {
    width: 77%;
    height: 730px;
    margin-left: auto;
  }
  .p-page-title__owner__inner::before {
    width: 77%;
  }
  .p-page-title__owner__title {
    position: absolute;
    top: 5%;
    left: 7%;
    width: auto;
  }
  .p-page-title__owner__title__label {
    margin: 5px 10px 0 0;
    padding: 0 15px;
    font-size: clamp(35px, 3.9473684211vw, 45px);
  }
  .p-page-title__owner__title h2 {
    margin-bottom: 30px;
    font-size: clamp(45px, 4.8245614035vw, 65px);
  }
  .p-page-title__owner__title h2 span {
    font-size: clamp(55px, 5.701754386vw, 80px);
  }
  .p-page-title__owner__title h2 em {
    font-size: clamp(70px, 7.0175438596vw, 100px);
    line-height: 1.2;
  }
  .p-page-title__owner__title p {
    margin-bottom: 30px;
    font-size: clamp(18px, 1.5789473684vw, 25px);
  }
  .p-page-title__owner__title h3 {
    padding: 15px;
    font-size: clamp(20px, 1.7543859649vw, 27px);
    line-height: 1.5;
  }
  .p-page-title__owner__map {
    position: absolute;
    bottom: 1%;
    right: 5%;
    width: 100%;
    max-width: 600px;
  }
  .p-page-title__owner__u-text {
    padding: 20px 50px;
  }
  .p-page-title__owner__u-text p {
    font-size: clamp(20px, 1.7543859649vw, 27px);
    display: flex;
    justify-content: center;
  }
}
@media screen and (min-width: 900px) and (max-width: 1600px) {
  .p-page-title__owner__map {
    right: 3%;
    max-width: 500px;
  }
}
/*
　ワンストップで提供
=================================*/
.p-business-rental__onestep {
  width: 100%;
  display: flex;
  justify-content: center;
}

.p-business-rental__onestep p {
  font-size: clamp(16px, 2.0833333333vw, 20px);
  font-weight: 500;
  line-height: 1.8;
}