@charset "UTF-8";
:root {
  --color-1: #25a33a;
  --color-2: #ff8426;
  --color-3: #767171;
}

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

 ■初期化

━━━━━━━━━━━━━━━━ */
html > body {
  font-size: 16px;
}

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

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

 ■ユーティリティ

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

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

/**
 * margin
 */
.u-mr-5 {
  margin-right: 5px !important;
}

.u-mr-10 {
  margin-right: 10px !important;
}

.u-ml-5 {
  margin-left: 5px !important;
}

.u-ml-10 {
  margin-left: 10px !important;
}

.u-mb-0 {
  margin-bottom: 0 !important;
}

.u-mb-5 {
  margin-bottom: 5px !important;
}

.u-mb-10 {
  margin-bottom: 10px !important;
}

.u-mb-15 {
  margin-bottom: 15px !important;
}

.u-mb-20 {
  margin-bottom: 20px !important;
}

.u-mb-30 {
  margin-bottom: 30px !important;
}

.u-mb-40 {
  margin-bottom: 40px !important;
}

.u-mb-50 {
  margin-bottom: 50px !important;
}

.u-mb-80 {
  margin-bottom: 80px !important;
}

/**
 * Padding
 */
.u-pt-0 {
  padding-top: 0 !important;
}

.u-pt-10 {
  padding-top: 10px !important;
}

.u-pt-50 {
  padding-top: 50px !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

 ■コンポーネント

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

@media screen and (min-width: 768px) {
  .c-block {
    max-width: 1140px;
  }
}
/**
 * Button
 */
/*==================================
* 標準
==================================*/
.c-button {
  width: 90%;
  display: block;
  margin: 0 auto;
  padding: 12px 5px;
  text-align: center;
  border-radius: 30px;
  border: 2px solid var(--color-1);
  background-color: #FFF;
  cursor: pointer;
  transition: 0.3s cubic-bezier(0.45, 0, 0.55, 1);
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.c-button,
.c-button:link,
.c-button:visited {
  text-decoration: none;
  color: var(--color-1);
  font-weight: bold;
}

.c-button::after {
  background: var(--color-1);
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: 0.3s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: -1;
}

.c-button:hover {
  color: #FFF;
}

.c-button:hover::after {
  transform: scale(1, 1);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.c-title-bg-01 h2,
.c-title-bg-01--color-2 h2,
.c-title-bg-01--sm h2,
.c-title-bg-01--color-2--sm h2,
.c-title-bg-01 h3,
.c-title-bg-01--color-2 h3,
.c-title-bg-01--sm h3,
.c-title-bg-01--color-2--sm h3 {
  font-size: clamp(27px, 4.1666666667vw, 32px);
  color: #fff;
  font-weight: 900;
  line-height: 1.5;
}

.c-title-bg-01--color-2,
.c-title-bg-01--color-2--sm {
  background: var(--color-2);
}

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

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

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

.c-title-induction-01.c-title-induction-01--color-2 {
  background-color: var(--color-2);
}

.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);
  }
}
/*
　追従ボタン①
================================*/
.c-follow-button-01 {
  background: #c30d24;
  width: 100px;
  height: auto;
  border-radius: 50%;
  text-align: center;
  position: fixed;
  bottom: 24px;
  right: -150px;
  z-index: 100;
  padding: 5px 0;
}

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

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

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

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

/*
　顧客の声-01
================================*/
.c-customer-voice-01 ul li {
  display: flex;
  width: 100%;
  margin: 20px 0;
  align-items: center;
  box-sizing: border-box;
}

.c-customer-voice-01 img {
  width: 18%;
}

.c-customer-voice-01 p {
  position: relative;
  display: inline-block;
  margin-left: 15px;
  padding: 10px 18px;
  font-size: 17px;
  font-weight: 900;
  border-radius: 50px;
  background-color: #fff;
  box-sizing: border-box;
}

.c-customer-voice-01 p::before {
  position: absolute;
  content: "";
  top: 50%;
  left: -23px;
  margin-top: -15px;
  border: 15px solid transparent;
  border-right: 20px solid #FFF;
  z-index: 0;
}

.c-customer-voice-01 span {
  background: linear-gradient(transparent 60%, #FFF799 60%);
}

/* PC */
@media screen and (min-width: 768px) {
  .c-customer-voice-01 ul {
    display: flex;
    flex-wrap: wrap;
  }
  .c-customer-voice-01 ul li {
    width: 50%;
    margin: 15px 0;
  }
  .c-customer-voice-01 img {
    width: 15%;
  }
  .c-customer-voice-01 p {
    padding: 10px 10px 10px 18px;
    font-size: 22px;
  }
}
/*
　メニュー-12
=================================*/
/* ボタン */
.c-menu-12__head {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.c-menu-12__head__button,
.c-menu-12__head__button__link {
  position: relative;
  width: 48%;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
}

.c-menu-12__head__button {
  padding: 25px 0 20px;
}

.c-menu-12--01 .c-menu-12__head__button {
  background: var(--color-2);
}

.c-menu-12--02 .c-menu-12__head__button {
  background: var(--color-1);
}

.c-menu-12__head__button__link a {
  display: block;
  padding: 25px 0 20px;
  text-decoration: none;
  color: #fff;
  background: #777171;
}

.c-menu-12__head__button i,
.c-menu-12__head__button__link i {
  font-size: 20px;
  font-style: normal;
}

.c-menu-12__head__button__label {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
  width: 85%;
  padding: 5px 10px;
  text-align: center;
  font-size: 15px;
  font-weight: 900;
  background: #fff;
  border-radius: 50px;
}

.c-menu-12--01 .c-menu-12__head__button .c-menu-12__head__button__label {
  color: var(--color-2);
  border: 2px solid var(--color-2);
}

.c-menu-12--02 .c-menu-12__head__button .c-menu-12__head__button__label {
  color: var(--color-1);
  border: 2px solid var(--color-1);
}

.c-menu-12__head__button__link .c-menu-12__head__button__label {
  color: #777171;
  border: 2px solid #777171;
}

.c-menu-12__head__button::before {
  position: absolute;
  content: "";
  left: 50%;
  transform: translateX(-50%);
  bottom: -60px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 40px 20px 0 20px;
}

.c-menu-12--01 .c-menu-12__head__button::before {
  border-color: var(--color-2) transparent transparent transparent;
}

.c-menu-12--02 .c-menu-12__head__button::before {
  border-color: var(--color-1) transparent transparent transparent;
}

/* サービス内容 */
.c-menu-12__body {
  margin: 60px auto 80px auto;
  padding: 30px 8px;
  background: #fff;
}

.c-menu-12__body__lead {
  margin-bottom: 20px;
  text-align: center;
}

.c-menu-12__body__lead__icon {
  margin-bottom: 25px;
  text-align: center;
}

.c-menu-12__body__lead__icon img {
  width: 100px;
}

.c-menu-12__body__lead__text {
  margin-bottom: 10px;
  line-height: 1.3;
  font-size: 18px;
  font-weight: bold;
}

.c-menu-12__body__lead__title {
  font-size: 32px;
  font-weight: 900;
}

.c-menu-12--01 .c-menu-12__body__lead__title {
  color: var(--color-2);
}

.c-menu-12--02 .c-menu-12__body__lead__title {
  color: var(--color-1);
}

.c-menu-12__body__content {
  margin-bottom: 20px;
}

.c-menu-12__body__content__image img {
  display: block;
  max-width: 100%;
  width: 100%;
}

.c-menu-12__body__content__text {
  padding: 10px 8px;
}

.c-menu-12__body__content__text p {
  margin-bottom: 20px;
  line-height: 1.7;
}

.c-menu-12__body__content__text p span {
  display: inline-block;
  margin: 8px 0;
  padding: 5px 3px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 50px;
}

.c-menu-12--01 .c-menu-12__body__content__text p span {
  color: var(--color-2);
  background-color: #fff2e9;
}

.c-menu-12--02 .c-menu-12__body__content__text p span {
  color: var(--color-1);
  background-color: #e9f5eb;
}

.c-menu-12__body__detail {
  margin-bottom: 30px;
}

.c-menu-12__body__detail h4 {
  position: relative;
  margin: 0 0 20px 0;
  padding: 15px 0;
  font-size: 17px;
  font-weight: bold;
  border-bottom: 4px solid #ccc;
}

.c-menu-12__body__detail h4::before {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 20%;
  height: 4px;
  background: var(--color-1);
  z-index: 2;
}

.c-menu-12__body__detail__text {
  width: 95%;
  margin: 0 auto;
}

.c-menu-12__body__detail__unit__title {
  text-align: center;
}

.c-menu-12__body__detail__unit__title span {
  display: block;
  padding: 5px 10px;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
}

.c-menu-12--01 .c-menu-12__body__detail__unit__title span {
  background: var(--color-2);
}

.c-menu-12--02 .c-menu-12__body__detail__unit__title span {
  background: var(--color-1);
}

.c-menu-12__body__detail__unit__text {
  width: 95%;
  margin: 20px auto 30px auto;
}

.c-menu-12__body__detail__list {
  width: 95%;
  margin: 0 auto;
}

.c-menu-12__body__detail__list ul {
  position: relative;
}

.c-menu-12__body__detail__list ul li {
  margin-left: 25px;
  margin-bottom: 5px;
}

.c-menu-12__body__detail__list ul li::before {
  content: "";
  position: absolute;
  left: 0;
  background-image: url(../img/buyback/icon__check.svg);
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
  margin-top: 2px;
}

/* PC */
@media screen and (min-width: 768px) {
  /* ボタン */
  .c-menu-12__head {
    margin-top: 30px;
    padding-top: 20px;
  }
  .c-menu-12__head__button,
  .c-menu-12__head__button__link {
    font-size: clamp(36px, 3.6842105263vw, 42px);
  }
  .c-menu-12__head__button {
    padding: 35px 0 25px 0;
  }
  .c-menu-12__head__button__link a {
    width: 100%;
    height: auto;
    padding: 35px 0 25px 0;
  }
  .c-menu-12__head__button__link a:hover {
    opacity: 0.8;
  }
  .c-menu-12__head__button i,
  .c-menu-12__head__button__link i {
    font-size: clamp(46px, 4.3859649123vw, 50px);
  }
  .c-menu-12__head__button__label {
    top: -30px;
    width: 55%;
    padding: 5px 20px;
    font-size: 28px;
  }
  .c-menu-12__head__button::before {
    bottom: -80px;
    border-width: 60px 34px 0 34px;
  }
  /* サービス内容 */
  .c-menu-12__body {
    margin: 80px auto;
    padding: 50px 100px;
  }
  .c-menu-12__body__lead__text {
    font-size: 22px;
  }
  .c-menu-12__body__lead__title {
    font-size: 40px;
  }
  .c-menu-12__body__content {
    display: flex;
    justify-content: space-between;
  }
  .c-menu-12__body__content .c-menu-12__body__content__image {
    order: 1;
    width: 38%;
  }
  .c-menu-12__body__content .c-menu-12__body__content__text {
    order: 0;
    width: 58%;
    font-size: 18px;
  }
  .c-menu-12__body__content .c-menu-12__body__content__text p span {
    font-size: 20px;
  }
  .c-menu-12__body__detail h4 {
    padding: 10px 0;
    font-size: 22px;
  }
  .c-menu-12__body__detail__text {
    width: 100%;
  }
  .c-menu-12__body__detail__unit {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
  }
  .c-menu-12__body__detail__unit__title {
    width: 27%;
  }
  .c-menu-12__body__detail__unit__title span {
    padding: 7px 10px;
    font-size: 22px;
  }
  .c-menu-12__body__detail__unit__text {
    width: 70%;
    margin: 0;
    font-size: 18px;
  }
  .c-menu-12__body__detail__list {
    width: 100%;
  }
  .c-menu-12__body__detail__list ul li {
    margin-bottom: 10px;
    margin-left: 30px;
    font-size: 20px;
  }
  .c-menu-12__body__detail__list ul li::before {
    left: 0;
    width: 22px;
    height: 22px;
    margin-top: 4px;
  }
}
/*
　ポイント（リスト）-03
================================*/
.c-point-list-03__unit {
  padding: 30px 20px;
  box-sizing: border-box;
}

.c-point-list-03__unit:nth-child(odd) {
  background: #f5f5f5;
}

.c-point-list-03__unit:nth-child(even) {
  background: #fff;
}

.c-point-list-03__unit img {
  display: block;
  width: 100px;
  margin: 0 auto 25px auto;
}

.c-point-list-03__unit h3 {
  margin-bottom: 20px;
  text-align: center;
  font-size: 20px;
  font-weight: 900;
  color: #143871;
}

.c-point-list-03__unit p {
  text-align: left;
  line-height: 1.6;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-point-list-03 {
    max-width: 1140px;
    margin: 0 auto;
  }
  .c-point-list-03 ul {
    display: flex;
    flex-wrap: wrap;
  }
  .c-point-list-03__unit {
    width: 33.3%;
    padding: 40px 30px;
  }
  .c-point-list-03__unit img {
    width: 130px;
  }
  .c-point-list-03__unit h3 {
    font-size: 22px;
  }
}
/*
　特徴（２カラム）-01
================================*/
.c-feature-col2-01 {
  width: 95%;
  margin: 0 auto;
}

.c-feature-col2-01 li {
  border: 1px solid #000;
  background: #fff;
  margin-bottom: 50px;
  padding: 20px;
  box-sizing: border-box;
}

.c-feature-col2-01__image {
  margin-bottom: 15px;
}

.c-feature-col2-01__image img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-feature-col2-01__label {
  color: #fff;
  font-weight: bold;
  background: var(--color-1);
  display: inline-block;
  padding: 5px 15px;
  margin-bottom: 12px;
}

.c-feature-col2-01 h3 {
  color: var(--color-1);
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 12px;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-feature-col2-01 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
  }
  .c-feature-col2-01 li {
    width: 48%;
    margin-bottom: 0;
    padding: 25px;
  }
  .c-feature-col2-01__image img {
    height: 280px;
  }
  .c-feature-col2-01 h3 {
    font-size: 25px;
  }
}
/*
　コンタクト-12
================================*/
.c-contact-12 {
  position: relative;
  padding: 30px 0 40px 0;
  background: linear-gradient(to right, rgb(244, 107, 69), rgb(238, 168, 73));
}

.c-contact-12::before {
  position: absolute;
  content: "";
  background-image: url(../img/buyback/contact__bg-before.svg);
  background-repeat: no-repeat;
  width: 80%;
  height: 70%;
  top: 0;
  left: 0px;
}

.c-contact-12::after {
  position: absolute;
  content: "";
  background-image: url(../img/buyback/contact__bg-after.svg);
  background-repeat: no-repeat;
  background-position: bottom right;
  width: 80%;
  height: 50%;
  bottom: 0;
  right: 0;
}

.c-contact-12__inner {
  padding: 0 8px;
  color: #fff;
  text-align: center;
}

.c-contact-12 h2 {
  font-size: clamp(26px, 4.4529262087vw, 35px);
  font-weight: 700;
  margin-bottom: 20px;
}

.c-contact-12 p.c-contact-12__read {
  width: 95%;
  margin: 0 auto;
  text-align: left;
  line-height: 1.4;
}

.c-contact-12__block--tel {
  margin-top: 40px;
}

.c-contact-12__block--tel p.c-contact-12__block--tel__detail {
  display: flex;
  flex-direction: column;
  margin-bottom: 5px;
}

.c-contact-12__block--tel span {
  display: block;
  width: 40%;
  margin: 0 auto 10px auto;
  padding: 8px 12px;
  box-sizing: border-box;
  color: #b22222;
  font-size: clamp(20px, 2.9947916667vw, 23px);
  font-weight: bold;
  background-color: rgba(255, 255, 255, 0.85);
  border: 2px solid #b22222;
  border-radius: 50px;
  line-height: 1;
}

.c-contact-12__block--tel a,
.c-contact-12__block--button a {
  text-decoration: none;
}

.c-contact-12__block--tel .c-contact-12__tel-color {
  position: relative;
  font-size: clamp(45px, 7.8125vw, 60px);
  font-weight: bold;
  color: #b22222;
  font-family: "Arial", sans-serif;
  line-height: 1;
}

.c-contact-12__block--tel i {
  margin-right: 5px;
  font-size: clamp(40px, 7.1614583333vw, 77px);
}

.c-contact-12__block--button {
  position: relative;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #fff;
  z-index: 10;
}

.c-contact-12__button {
  position: relative;
  display: block;
  width: 95%;
  margin-top: 15px;
  margin-left: auto;
  margin-right: auto;
  padding: 10px 0;
  background: #00b900;
  box-shadow: 0 4px 0 0 #048904;
  border-radius: 50px;
}

.c-contact-12__button img {
  width: clamp(32px, 5.0890585242vw, 40px);
  height: auto;
  margin-right: 10px;
  vertical-align: middle;
}

.c-contact-12__button p {
  font-size: clamp(20px, 4.1666666667vw, 32px);
  color: #fff;
  font-weight: bold;
}

.c-contact-12__button i {
  margin-left: 10px;
  font-size: clamp(23px, 4.6875vw, 36px);
}

/* PC */
@media screen and (min-width: 768px) {
  .c-contact-12 {
    padding: 50px 0;
  }
  .c-contact-12__inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0;
  }
  .c-contact-12__inner p {
    font-size: 18px;
  }
  .c-contact-12 h2 {
    font-size: clamp(35px, 3.0701754386vw, 50px);
    margin-bottom: 20px;
  }
  .c-contact-12 p.c-contact-12__read {
    font-size: 18px;
    text-align: center;
    line-height: 1.5;
  }
  .c-contact-12__block--tel p.c-contact-12__block--tel__detail {
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
  .c-contact-12__block--tel span {
    width: auto;
    margin: 0 10px 0 0;
    padding: 10px 25px;
    font-size: clamp(20px, 2.8070175439vw, 32px);
  }
  .c-contact-12__block--tel .c-contact-12__tel-color {
    margin-left: 10px;
    font-size: clamp(60px, 7.8947368421vw, 90px);
  }
  .c-contact-12__block--button {
    margin-top: 40px;
    margin-bottom: 10px;
    padding-top: 40px;
  }
  .c-contact-12__button {
    width: 60%;
    padding: 20px 0;
  }
  .c-contact-12__button p {
    font-size: clamp(28px, 2.8070175439vw, 32px);
  }
  .c-contact-12__button:hover {
    opacity: 0.8;
  }
}
/* PC */
@media screen and (min-width: 1300px) {
  .c-contact-12::before {
    width: 28%;
    height: 70%;
  }
  .c-contact-12::after {
    width: 25%;
    height: 50%;
  }
}
/*
　コンタクト-14
================================*/
.c-contact-14 {
  margin-bottom: 20px;
}

.c-contact-14__title {
  width: 90%;
  margin: 0 auto 30px auto;
  font-size: 26px;
  font-weight: 900;
  text-align: center;
  color: #000;
}

.c-contact-14__assessment,
.c-contact-14__tel {
  outline: 2px solid #fff;
  outline-offset: -8px;
}

.c-contact-14__assessment {
  margin-bottom: 20px;
  background: #1D50A2;
}

.c-contact-14__assessment:hover,
.c-contact-14__tel:hover {
  opacity: 0.8;
}

.c-contact-14__assessment a,
.c-contact-14__tel a {
  display: block;
  padding: 25px 10px;
  text-align: center;
  text-decoration: none;
  color: #fff;
  box-sizing: border-box;
}

.c-contact-14__assessment__label {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
  padding: 5px 15px;
  line-height: 1;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  color: #1D50A2;
  border-radius: 4px;
  background: #fff;
}

.c-contact-14__assessment__label::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -13px;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 10px 0 10px;
  border-color: #fff transparent transparent transparent;
}

.c-contact-14__assessment__label span {
  font-family: "Arial", "Century Gothic", sans-serif;
  font-size: 24px;
  font-weight: bold;
}

.c-contact-14__assessment__title {
  margin-bottom: 15px;
  line-height: 1;
  font-size: clamp(38px, 5.46875vw, 42px);
  font-weight: 900;
  color: #fff;
}

.c-contact-14__assessment__text {
  display: inline-block;
  padding: 5px 10px 7px 10px;
  font-weight: bold;
  background: var(--color-2);
}

.c-contact-14__tel {
  background: #c30d24;
}

.c-contact-14__tel__text {
  margin: 5px 0 10px 0;
  font-weight: bold;
}

.c-contact-14__tel__number {
  margin-bottom: 15px;
  line-height: 1;
  font-family: "Arial", "Century Gothic", sans-serif;
  font-size: clamp(42px, 5.9895833333vw, 46px);
  font-weight: bold;
}

.c-contact-14__tel__number i {
  margin-right: 5px;
  font-size: clamp(38px, 5.46875vw, 42px);
}

.c-contact-14__tel__info {
  margin: 5px 0 10px 0;
  font-size: 15px;
  font-weight: bold;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-contact-14__title {
    width: 100%;
    font-size: clamp(34px, 3.8596491228vw, 44px);
  }
  .c-contact-14__wrapper {
    display: flex;
    justify-content: space-between;
  }
  .c-contact-14__assessment,
  .c-contact-14__tel {
    width: 48%;
    outline-offset: -12px;
  }
  .c-contact-14__assessment a,
  .c-contact-14__tel a {
    padding: 30px 20px 25px 20px;
    width: 100%;
    height: 100%;
  }
  .c-contact-14__assessment {
    margin-bottom: 0;
  }
  .c-contact-14__assessment__label {
    font-size: 22px;
  }
  .c-contact-14__assessment__label span {
    font-size: 38px;
  }
  .c-contact-14__assessment__title {
    font-size: clamp(42px, 4.3859649123vw, 50px);
  }
  .c-contact-14__assessment__text {
    font-size: 18px;
    padding: 8px 15px 10px 15px;
  }
  .c-contact-14__tel__text {
    margin: 5px 0 15px 0;
    font-size: 18px;
  }
  .c-contact-14__tel__number {
    font-size: clamp(46px, 4.7368421053vw, 54px);
  }
  .c-contact-14__tel__number i {
    font-size: clamp(42px, 4.3859649123vw, 50px);
  }
  .c-contact-14__tel__info {
    font-size: 17px;
  }
}
/*
　プロフィール
================================*/
.c-profile-01 {
  background: #fff;
  border: 2px solid var(--color-1);
  box-sizing: border-box;
}

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

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

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

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

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

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

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

.c-profile-01__message {
  margin-top: 20px;
  padding: 0 10px 20px;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-profile-01 {
    width: 100%;
  }
  .c-profile-01__title h2 {
    font-size: clamp(29px, 3vw, 35px);
    text-align: center;
  }
  .c-profile-01__info {
    display: flex;
    align-items: flex-start;
    padding: 20px 50px 0;
  }
  .c-profile-01__img {
    width: 37%;
    margin-top: 15px;
    padding: 0;
    text-align: center;
  }
  .c-profile-01__img img {
    width: 100%;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
    aspect-ratio: 4/3;
  }
  .c-profile-01__text {
    width: 63%;
    padding-left: 6%;
    box-sizing: border-box;
  }
  .c-profile-01__text tr {
    border-bottom: 1px solid #dcdcdc;
  }
  .c-profile-01__text tr:last-child {
    border-bottom: none;
  }
  .c-profile-01__text th {
    display: inline-block;
    vertical-align: top;
    width: 17%;
    padding: 16px 0;
    border: none;
    background-color: transparent;
  }
  .c-profile-01__text td {
    display: inline-block;
    vertical-align: text-bottom;
    width: 83%;
    box-sizing: border-box;
    padding: 16px 0 16px 5px;
    margin-bottom: 0;
  }
  .c-profile-01__message {
    margin-top: 20px;
    padding: 0 50px 40px;
    font-size: 17px;
    line-height: 1.6;
  }
}
/*
　ブログリスト-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 {
  margin-bottom: 15px;
}

.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 {
  margin-bottom: 15px;
  padding: 0 8px;
}

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

.c-blog-list-02__content__text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;
  color: #333;
}

.c-blog-list-02__tag {
  margin-bottom: 15px;
  padding: 0 8px;
}

.c-blog-list-02__tag span {
  display: inline-block;
  margin-bottom: 5px;
  padding: 5px 10px;
  font-size: 14px;
  color: #fff !important;
  background-color: var(--color-2);
}

/* PC */
@media screen and (min-width: 768px) {
  .c-blog-list-02 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1140px;
    margin: 0 auto;
  }
  .c-blog-list-02::after {
    content: "";
    display: block;
    width: 31%;
  }
  .c-blog-list-02 li {
    width: 31%;
    margin: 0 0 50px 0;
    border-bottom: none;
  }
  .c-blog-list-02 a:hover {
    opacity: 0.7;
  }
  .c-blog-list-02__content {
    padding: 0;
  }
  .c-blog-list-02__tag {
    padding: 0;
  }
}
/*
　成約実績-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: var(--color-1);
}

.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-form-01 {
  position: relative;
  left: 0;
  top: 0;
  width: 100%;
  height: auto;
  margin: 0 auto;
  background: #1e50a2;
  box-sizing: border-box;
  padding: 40px 20px;
  margin-bottom: 20px;
  border-radius: 10px;
}

.c-form-01__badge {
  background: #ff7701;
  width: 80px;
  height: auto;
  border-radius: 50%;
  position: absolute;
  width: 80px;
  right: 16px;
  top: -40px;
}

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

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

.c-form-01__title {
  font-size: 24px;
  color: #fff;
  font-weight: 500;
  text-align: center;
}

.c-form-01__areabox, .c-form-01__personbox {
  margin-top: 20px;
}

.c-form-01__areabox-label {
  font-size: 22px;
  font-weight: 500;
  color: #fff;
  margin-right: 30px;
  margin-bottom: 10px;
}

.c-form-01__areabox-text {
  width: 100%;
  height: 50px;
  line-height: 50px;
  font-size: 25px;
  color: #fff;
  font-weight: 500;
  color: #ffd124;
}

.c-form-01__areabox-cityblock {
  box-sizing: border-box;
  display: block;
  width: 100%;
  height: 50px;
  line-height: 50px;
  background: #fff;
  font-size: 18px;
  color: #1e50a2;
  text-align: left;
  padding: 5px;
  border: none;
  margin-bottom: 20px;
  cursor: pointer;
  background-color: #edf1f8;
}

.c-form-01__areabox-cityblock:invalid {
  color: #969696;
}

.c-form-01__areabox-cityblock option {
  color: #1e50a2;
}

.c-form-01__areabox-address,
.c-form-01__areabox-housenum {
  box-sizing: border-box;
  display: block;
  width: 100%;
  height: 50px;
  line-height: 50px;
  background: #fff;
  font-size: 18px;
  color: #1e50a2;
  text-align: left;
  margin-right: 20px;
  margin-bottom: 5px;
  padding: 5px;
  border: none;
  background-color: #edf1f8;
}

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

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

.c-form-01__personbox-required {
  color: #ffd124;
}

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

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

.c-form-01__areabox-submitbtn {
  display: block;
  width: 100%;
  background: #c1272d;
  font-size: 25px;
  color: #fff;
  font-weight: bold;
  text-align: center;
  margin: 30px auto 15px auto;
  padding: 15px;
  border: none;
}

.c-form-01__areabox-submitbtn:hover {
  opacity: 0.8;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-form-01 {
    padding: 40px 80px;
  }
  .c-form-01__badge {
    width: 100px;
    right: 15px;
    top: -70px;
  }
  .c-form-01__badge-text {
    padding: 16px 0;
    line-height: 1.2;
  }
  .c-form-01__title {
    font-size: 40px;
    margin-bottom: 30px;
  }
  .c-form-01__areabox, .c-form-01__personbox {
    margin-top: 10px;
  }
  .c-form-01__areabox-label {
    display: inline-block;
    width: 23%;
    font-size: 27px;
    margin-right: 0;
  }
  .c-form-01__areabox-text {
    display: inline-block;
    width: 14%;
    height: 40px;
    padding: 0;
    font-size: 27px;
    font-weight: bold;
    text-align: left;
    margin-right: 20px;
    margin-bottom: 20px;
  }
  .c-form-01__areabox-cityblock {
    display: inline-block;
    width: 20%;
    height: 50px;
    line-height: 50px;
    font-size: 18px;
    text-align: center;
    margin-right: 10px;
    margin-bottom: 20px;
  }
  .c-form-01__areabox-address,
  .c-form-01__areabox-housenum {
    display: inline-block;
    width: 20%;
    height: 50px;
    line-height: 50px;
    font-size: 18px;
    text-align: center;
    margin-right: 10px;
    margin-bottom: 20px;
    padding: 0;
    border: none;
  }
  .c-form-01__areabox-address {
    width: 50%;
  }
  .c-form-01__person-label {
    display: inline-block;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    width: 350px;
    height: 40px;
    margin-right: 20px;
    margin-bottom: 0;
  }
  .c-form-01__personbox-name, .c-form-01__personbox-tel, .c-form-01__personbox-mail {
    height: 50px;
    line-height: 50px;
    margin-right: 20px;
    margin-bottom: 20px;
    padding: 0 10px;
    border: none;
  }
  .c-form-01__personbox-mail {
    margin-bottom: 30px;
  }
  .c-form-01__areabox-submitbtn {
    width: 35%;
    font-size: 25px;
  }
}
/*
　アコーディオンメニュー-01
================================*/
.c-accordion-menu-01 {
  width: 100%;
  margin: 0 auto 30px auto;
}

.c-accordion-menu-01 li {
  display: block;
  background: #fff;
  border-top: 1px solid #dcdcdc;
  border-right: 1px solid #dcdcdc;
  border-left: 1px solid #dcdcdc;
}

.c-accordion-menu-01 li:last-child {
  border-bottom: 1px solid #dcdcdc;
}

.c-accordion-menu-01__check {
  display: none;
}

.c-accordion-menu-01__check:checked + .c-accordion-menu-01__question + .c-accordion-menu-01__answer {
  padding: 10px;
  height: auto;
  opacity: 1;
  visibility: visible;
}

.c-accordion-menu-01__check:checked + .c-accordion-menu-01__question::after {
  content: "－";
}

.c-accordion-menu-01__question {
  position: relative;
  display: block;
  padding: 15px 50px 15px 20px;
  font-size: 18px;
  font-weight: bold;
  color: #345887;
  background: #fff;
}

.c-accordion-menu-01__question::after {
  position: absolute;
  display: block;
  top: 50%;
  transform: translate(0, -50%);
  right: 0;
  padding: 15px;
  box-sizing: border-box;
  content: "＋";
}

.c-accordion-menu-01__answer {
  padding: 0 10px;
  height: 0;
  opacity: 0;
  visibility: hidden;
  border-top: 1px solid #dcdcdc;
  transition: 0.5s;
  background-color: #f5f5f5;
}

.c-accordion-menu-01__answer p {
  width: 95%;
  margin: 0 auto;
  line-height: 1.4;
  font-size: 16px;
}

@media screen and (min-width: 768px) {
  .c-accordion-menu-01 {
    margin-bottom: 50px;
  }
  .c-accordion-menu-01__question {
    padding-right: 70px;
    font-size: 22px;
    cursor: pointer;
  }
  .c-accordion-menu-01__question::after {
    padding: 20px;
  }
  .c-accordion-menu-01__answer p {
    width: 98%;
    line-height: 1.6;
  }
}
/* ━━━━━━━━━━━━━━━━

 ■レイアウト

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

* ヘッダー-05

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

.l-header-05 {
  position: relative;
  width: 100%;
  height: 55px;
  margin: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.l-header-05__sp-menu--mail a span {
  display: block;
  margin: 0 auto 5px auto;
  padding: 3px 10px;
  font-size: 16px;
  color: var(--color-2);
  background-color: #fff;
  border-radius: 30px;
}

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

@media print {
  .l-header-05__sp-menu {
    display: none;
  }
}
/* PC */
@media screen and (min-width: 1060px) {
  html {
    scroll-padding-top: 85px;
  }
  .l-header-05 {
    height: 85px;
  }
  .l-header-05__wrapper {
    display: block;
    height: 85px;
    padding: 0;
  }
  .l-header-05__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 0 10px;
    margin: auto;
    box-sizing: border-box;
  }
  .l-header-05__logo {
    width: clamp(200px, 21.6vw, 400px);
    margin: 0 auto 0 20px;
  }
  .l-header-05__nav {
    display: block;
  }
  .l-header-05__nav ul {
    display: flex;
    align-items: center;
  }
  .l-header-05__nav li {
    padding: 10px 15px;
  }
  .l-header-05__nav li a {
    position: relative;
    display: inline-block;
    color: #000;
    font-size: 17px;
    font-size: clamp(16px, 1.4035087719vw, 18px);
    text-decoration: none;
  }
  .l-header-05__nav li a::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 1px;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: transform 0.3s;
    background: #333;
  }
  .l-header-05__nav li a:hover::after {
    transform: scale(1, 1);
  }
  .l-header-05__inquiry {
    display: flex;
    margin-left: 20px;
    align-items: center;
    background-color: var(--color-2);
    border-radius: 3px;
  }
  .l-header-05__inquiry a {
    display: block;
    padding: 10px 15px;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    color: #FFF;
    text-decoration: none;
    line-height: 1.3;
  }
  .l-header-05__inquiry a span {
    display: block;
    margin-bottom: 2px;
    padding: 0 5px;
    font-size: 14px;
    font-weight: bold;
    color: var(--color-2);
    background-color: #fff;
    border-radius: 30px;
  }
  .l-header-05__inquiry:hover {
    background-color: var(--color-3);
  }
  .l-header-05__inquiry:hover span {
    color: var(--color-3);
  }
  .l-header-05__menu__button {
    display: none;
  }
  .l-header-05__inquiry i {
    font-size: 23px;
  }
}
/*=========================================

* メインビジュアル-08

==========================================*/
.l-main-visual-08 {
  position: relative;
  background: url(../img/buyback/buyback-main-visual.jpg);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  width: 100%;
  height: 80vh;
}

.l-main-visual-08::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(13, 16, 65, 0.3);
}

.l-main-visual-08__inner {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 95%;
  margin: 0 auto;
  text-align: center;
}

.l-main-visual-08__inner__label ul {
  display: flex;
  justify-content: center;
  margin: 0 auto 20px auto;
}

.l-main-visual-08__inner__label ul li {
  margin-right: 5px;
  padding: 5px 12px;
  font-size: 18px;
  font-weight: 900;
  color: #1D50A2;
  background: #FFF;
  border-radius: 25px;
}

.l-main-visual-08__inner__label ul li:last-child {
  margin-right: 0;
}

.l-main-visual-08__inner h1 {
  margin: 0 auto 30px auto;
  line-height: 1.3;
  font-size: 26px;
  font-weight: 900;
  color: #fff;
  text-shadow: #000 2px 2px 3px, #000 -2px -2px 3px, #000 -2px 2px 3px, #000 2px -2px 3px, #000 2px 0px 3px, #000 -2px 0px 3px, #000 0px 2px 3px, #000 0px -2px 3px;
  text-shadow: 1px 2px 2px #000;
  font-family: "M PLUS 1p", sans-serif;
}

.l-main-visual-08__inner h1 em {
  display: inline-block;
  font-size: 38px;
  font-style: normal;
  font-weight: 900;
  color: #fff100;
}

.l-main-visual-08__inner h1 span {
  font-size: 32px;
  font-weight: 900;
}

.l-main-visual-08__point {
  display: flex;
  justify-content: center;
  align-items: center;
}

.l-main-visual-08__point__circle {
  position: relative;
  width: 105px;
  height: 105px;
  margin: 0 5px;
  background-color: #FF7676;
  border-radius: 60px;
}

.l-main-visual-08__point__circle__text {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #ffffff;
}

.l-main-visual-08__point__circle__image {
  display: flex;
  align-items: flex-end;
  width: 40%;
  height: 65px;
  max-height: 65px;
  margin: -35px auto 3px auto;
}

.l-main-visual-08__point__circle:last-child .l-main-visual-08__point__circle__image {
  width: 55%;
}

.l-main-visual-08__point__circle__text img {
  width: 100%;
}

.l-main-visual-08__point__circle__text p {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 2px 2px 0 #FF7676, -2px -2px 0 #FF7676, -2px 2px 0 #FF7676, 2px -2px 0 #FF7676, 0px 2px 0 #FF7676, 0 -2px 0 #FF7676, -2px 0 0 #FF7676, 2px 0 0 #FF7676;
}

.l-main-visual-08__point__circle__text p span {
  font-size: 25px;
}

.l-main-visual-08__point__circle__text p span.point__circle__text__year {
  font-size: 37px;
  font-family: "Arial", "Noto Sans Japanese", sans-serif;
  line-height: 0.9;
}

/* PC */
@media screen and (min-width: 768px) {
  .l-main-visual-08 {
    background-position: center center;
    height: 750px;
  }
  .l-main-visual-08__inner {
    top: 6%;
  }
  .l-main-visual-08__inner__label ul {
    margin-bottom: 15px;
  }
  .l-main-visual-08__inner__label ul li {
    font-size: clamp(35px, 3.9473684211vw, 45px);
    margin-right: 10px;
    padding: 5px 30px;
    border-radius: 50px;
  }
  .l-main-visual-08__inner h1 {
    margin-bottom: 20px;
    line-height: 1.1;
    font-size: clamp(100px, 7.0175438596vw, 150px);
    text-shadow: 2px 3px 3px #000;
  }
  .l-main-visual-08__inner h1 em {
    font-size: clamp(120px, 8.7719298246vw, 220px);
  }
  .l-main-visual-08__inner h1 span {
    font-size: clamp(60px, 5.2631578947vw, 77px);
  }
  .l-main-visual-08__point__circle {
    width: 180px;
    height: 180px;
    margin-right: 20px;
    border-radius: 50%;
  }
  .l-main-visual-08__point__circle__image {
    width: 40%;
    height: 90px;
    max-height: 90px;
    margin: -10px auto 3px auto;
  }
  .l-main-visual-08__point__circle:last-child .l-main-visual-08__point__circle__image {
    width: 50%;
  }
  .l-main-visual-08__point__circle__text img {
    width: 100%;
  }
  .l-main-visual-08__point__circle__text p {
    font-size: 25px;
    line-height: 1.4;
  }
  .l-main-visual-08__point__circle__text p span {
    font-size: 40px;
  }
  .l-main-visual-08__point__circle__text p span.point__circle__text__year {
    font-size: 60px;
  }
}
/* PC(1600px〜) */
@media screen and (min-width: 1600px) {
  .l-main-visual-08__point {
    width: 100%;
  }
  .l-main-visual-08__point__circle {
    width: 200px;
    height: 200px;
  }
  .l-main-visual-08__point__circle__text p {
    font-size: 28px;
  }
  .l-main-visual-08__point__circle__text p span {
    font-size: 50px;
    line-height: 1;
  }
  .l-main-visual-08__point__circle__text p span.point__circle__text__year {
    font-size: 80px;
    line-height: 0.8;
  }
}
/*=========================================

* フッター-02

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

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

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

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

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

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

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

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

/* PC */
@media screen and (min-width: 768px) {
  .l-footer-02__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1140px;
    width: 100%;
  }
  .l-footer-02__logo {
    width: 30%;
    margin-bottom: 0;
    padding-bottom: 0;
    text-align: left;
  }
  .l-footer-02__logo img {
    width: 100%;
    margin-bottom: 0;
  }
  .l-footer-02__nav ul {
    flex-wrap: initial;
  }
  .l-footer-02__nav li {
    width: auto;
    margin-right: 20px;
  }
  .l-footer-02__nav li a {
    font-size: 15px;
    padding: 5px;
  }
  .l-footer-02__nav li a:hover {
    color: #337ab7;
  }
  .copyright {
    padding: 30px 0 !important;
  }
}
/* 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: #FFF2E1;
}

.l-section.l-section--green {
  background: #E3F4F4;
}

.l-section.l-section--dot {
  background-color: #ffffff;
  background-image: radial-gradient(#fff7f1 9%, transparent 12%), radial-gradient(#fff7f1 9%, transparent 12%);
  background-position: 0 0, 23px 23px;
  background-size: 50px 50px;
}

.l-section__container .l-section__container--md {
  padding: 0 8px;
}

/* PC */
@media screen and (min-width: 768px) {
  .l-section {
    padding: 80px 0;
  }
  .l-section__container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0;
  }
  .l-section__container--md {
    max-width: 1250px;
    margin: 0 auto;
    padding: 0;
  }
}
/* ━━━━━━━━━━━━━━━━

 ■プロジェクト

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

* buyback

=================================*/
/*
 概要（お悩み）
=================================*/
.p-buyback-summary {
  padding: 20px 0;
  text-align: center;
  background-color: #174081;
}

.p-buyback-summary h2 {
  font-size: clamp(30px, 5.2083333333vw, 40px);
  font-weight: 900;
  color: #FFF;
  line-height: 1.3;
}

.p-buyback-summary h2 em {
  display: inline-block;
  font-size: clamp(40px, 5.859375vw, 45px);
  font-weight: 900;
  font-style: normal;
  color: #FFED00;
  line-height: 1.2;
  margin-bottom: 10px;
}

.p-buyback-summary h2 span {
  font-size: clamp(50px, 7.1614583333vw, 55px);
  font-weight: 900;
  color: #f3e600;
  font-family: "Century Gothic", "Arial", sans-serif;
}

/* PC */
@media screen and (min-width: 920px) {
  .p-buyback-summary {
    padding: 35px 0;
  }
  .p-buyback-summary h2 {
    font-size: clamp(40px, 3.5087719298vw, 60px);
  }
  .p-buyback-summary h2 em {
    margin-bottom: 0;
    font-size: clamp(55px, 4.8245614035vw, 70px);
  }
  .p-buyback-summary h2 span {
    font-size: clamp(70px, 6.1403508772vw, 85px);
    line-height: 1;
  }
}
/*
　誘導見出し
=================================*/
.p-buyback-title-induction {
  width: 100%;
  padding-bottom: 35px;
  box-sizing: content-box;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 75%, 50% 100%, 0 75%, 0 0);
          clip-path: polygon(0 0, 100% 0, 100% 75%, 50% 100%, 0 75%, 0 0);
  background-color: var(--color-1);
}

.p-buyback-title-induction__inner {
  display: flex;
  align-items: center;
  align-content: flex-start;
  justify-content: center;
  width: 90%;
  margin: 0 auto;
  padding: 4% 0 2% 0;
}

.p-buyback-title-induction__inner h2,
.p-buyback-title-induction__inner h3 {
  text-align: center;
  font-size: 20px;
  font-weight: 900;
  color: #fff;
  line-height: 1.4;
}

.p-buyback-title-induction span {
  font-size: clamp(21px, 3.125vw, 24px);
  font-weight: 900;
  color: #FFED00;
}

/* PC */
@media screen and (min-width: 768px) {
  .p-buyback-title-induction__inner {
    max-width: 1140px;
    padding: 25px 0;
  }
  .p-buyback-title-induction__inner h2,
  .p-buyback-title-induction__inner h3 {
    line-height: 1.3;
    font-size: clamp(36px, 2vw, 40px);
  }
  .p-buyback-title-induction__inner span {
    font-size: clamp(42px, 5vw, 53px);
  }
}
/*
　吹き出し付き見出し
================================*/
.p-buyback-title-balloon {
  margin-bottom: 50px;
  text-align: center;
}

.p-buyback-title-balloon__inner {
  width: 85%;
  margin: 0 auto;
}

.p-buyback-title-balloon__inner p {
  position: relative;
  display: inline-block;
  margin-bottom: 30px;
  padding: 12px 25px;
  text-align: center;
  font-size: clamp(16px, 5vw, 28px);
  font-weight: bold;
  color: #fff;
  background: #1b70be;
  border-radius: 10px;
}

.p-buyback-title-balloon__inner p::before {
  position: absolute;
  content: "";
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 10px solid transparent;
  border-top: 20px solid #1b70be;
}

.p-buyback-title-balloon h2 {
  font-size: clamp(26px, 8.125vw, 35px);
  font-weight: 900;
  line-height: 1.3;
}

.p-buyback-title-balloon h2 em {
  display: inline-block;
  font-size: clamp(30px, 9.375vw, 43px);
  font-weight: 900;
  font-style: unset;
  color: #c30d24;
}

/* PC */
@media screen and (min-width: 768px) {
  .p-buyback-title-balloon {
    margin-bottom: 100px;
  }
  .p-buyback-title-balloon__inner {
    width: 100%;
  }
  .p-buyback-title-balloon__inner p {
    font-size: 28px;
  }
  .p-buyback-title-balloon h2 {
    font-size: clamp(45px, 5.859375vw, 50px);
  }
  .p-buyback-title-balloon h2 em {
    font-size: clamp(55px, 7.1614583333vw, 60px);
  }
}
/*
　選ばれる理由
=================================*/
.p-buyback-reason__wrapper {
  overflow-x: hidden;
  background: url(../img/buyback/buyback-reason__bg.jpg) no-repeat center top/cover;
}

.p-buyback-reason {
  display: block;
  width: 95%;
  margin: 30px auto 0 auto;
}

.p-buyback-reason:nth-child(n+2) {
  margin-top: 80px;
}

.p-buyback-reason__image {
  position: relative;
  margin: 0;
}

.p-buyback-reason__image::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.1);
}

.p-buyback-reason__image img {
  width: 100%;
  border-radius: 10px;
}

.p-buyback-reason__text {
  position: relative;
  margin-top: 20px;
}

.p-buyback-reason__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-buyback-reason__label {
  display: inline-block;
  margin-bottom: 10px;
  padding: 7px 10px;
  background-color: var(--color-2);
  border-radius: 25px;
  color: #FFF;
  font-weight: bold;
  line-height: 1;
}

.p-buyback-reason__en {
  margin-bottom: 15px;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-3);
  font-family: "Arial", sans-serif;
  font-style: italic;
}

.p-buyback-reason h2 {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--color-1);
  line-height: 1.4;
}

.p-buyback-reason h2 span {
  font-size: 2.5rem;
  font-family: "Arial", sans-serif;
  line-height: 1;
}

.p-buyback-reason h3 {
  margin-top: 15px;
  font-size: 1.1rem;
  font-weight: 900;
  color: #c30d24;
  line-height: 1.4;
}

.p-buyback-reason p {
  margin-top: 20px;
  line-height: 1.6;
}

/* PC */
@media screen and (min-width: 769px) {
  .p-buyback-reason {
    display: flex;
    width: 100%;
    margin-top: 50px;
  }
  .p-buyback-reason:first-child {
    margin-top: 100px;
  }
  .p-buyback-reason:nth-of-type(even) {
    flex-direction: row-reverse;
  }
  .p-buyback-reason:nth-child(n+2) {
    margin-top: 140px;
  }
  .p-buyback-reason__image {
    position: relative;
    flex: 1;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: 60px;
    box-sizing: border-box;
  }
  .p-buyback-reason:nth-of-type(even) .p-buyback-reason__image {
    margin-left: 60px;
    margin-right: calc(50% - 50vw);
  }
  .p-buyback-reason__image img {
    max-width: 750px;
    display: block;
    margin-left: auto;
  }
  .p-buyback-reason:nth-of-type(even) .p-buyback-reason__image img {
    max-width: 750px;
    display: block;
    margin-left: unset;
    margin-right: auto;
  }
  .p-buyback-reason__text {
    width: 45%;
    margin-top: 0;
  }
  .p-buyback-reason__text:before {
    transform: translateY(-50%);
    font-size: 15rem;
  }
  .p-buyback-reason__label {
    padding: 8px 20px;
    font-size: 1.3rem;
  }
  .p-buyback-reason__en {
    margin-bottom: 30px;
    font-size: 2.1rem;
  }
  .p-buyback-reason h2 {
    font-size: 2.1rem;
  }
  .p-buyback-reason h2 span {
    font-size: 3.2rem;
  }
  .p-buyback-reason h3 {
    margin-top: 20px;
    font-size: 1.3rem;
  }
  .p-buyback-reason p {
    margin-top: 25px;
    font-size: 18px;
    line-height: 1.7;
  }
}
/*
 買取サービス
=================================*/
.p-buyback-service__lead {
  text-align: center;
  margin-bottom: 80px;
  padding: 20px 0;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  line-height: 1.3;
}

.p-buyback-service__lead p {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: bold;
  color: var(--color-1);
}

.p-buyback-service__lead h3 {
  font-weight: 900;
  font-size: 30px;
}

/* PC */
@media screen and (min-width: 768px) {
  .p-buyback-service__lead {
    margin-bottom: 100px;
  }
  .p-buyback-service__lead p {
    font-size: 25px;
  }
  .p-buyback-service__lead h3 {
    font-size: 43px;
  }
}
/*
 お悩み
=================================*/
.p-buyback-trouble__title {
  margin-bottom: 30px;
  padding: 15px;
  background: var(--color-1);
}

.p-buyback-trouble__title h2 {
  font-size: clamp(27px, 4.1666666667vw, 32px);
  color: #fff;
  font-weight: 900;
  line-height: 1.5;
}

.p-buyback-trouble__title h2 em {
  display: inline-block;
  font-size: clamp(35px, 5.2083333333vw, 40px);
  font-style: normal;
  font-weight: 900;
  color: #FFED00;
}

.p-buyback-trouble__lead {
  margin-bottom: 50px;
  padding: 0 10px;
  font-size: 17px;
  font-weight: bold;
}

.p-buyback-trouble__copy {
  width: 90%;
  margin: 0 auto;
}

.p-buyback-trouble__copy p {
  font-size: clamp(27px, 4.1666666667vw, 32px);
  font-weight: 900;
  line-height: 1.3;
}

.p-buyback-trouble__copy p span {
  font-size: clamp(42px, 6.25vw, 48px);
  color: var(--color-2);
}

/* PC */
@media screen and (min-width: 768px) {
  .p-buyback-trouble__title {
    margin-bottom: 50px;
    padding: 30px 0;
    text-align: center;
  }
  .p-buyback-trouble__title h2 {
    font-size: clamp(32px, 6.5104166667vw, 50px);
    letter-spacing: 0.05em;
    line-height: 1.3;
  }
  .p-buyback-trouble__title h2 em {
    font-size: clamp(40px, 7.8125vw, 60px);
  }
  .p-buyback-trouble__lead {
    font-size: 22px;
    text-align: center;
  }
  .p-buyback-trouble__copy {
    margin-top: 50px;
  }
  .p-buyback-trouble__copy p {
    font-size: clamp(32px, 3.9473684211vw, 45px);
    text-align: center;
  }
  .p-buyback-trouble__copy p span {
    font-size: clamp(48px, 5.701754386vw, 65px);
  }
}
/*
　県外の方向け
=================================*/
.p-buyback-far-away {
  background-color: #FFF2E1;
}

.p-buyback-far-away__inner {
  display: flex;
  flex-direction: column-reverse;
  width: 95%;
  margin: 0 auto;
}

.p-buyback-far-away__image {
  font-size: 0;
  background-color: #f6f2d9;
}

.p-buyback-far-away__image img {
  width: 100%;
}

.p-buyback-far-away__text {
  background-color: #FFF;
  padding: 20px;
  box-sizing: border-box;
}

.p-buyback-far-away__text h3 {
  font-size: 22px;
  font-weight: bold;
  color: var(--color-1);
  margin-bottom: 15px;
}

.p-buyback-far-away__text p {
  line-height: 1.6;
}

@media screen and (min-width: 768px) {
  .p-buyback-far-away__inner {
    flex-direction: row;
    width: 100%;
  }
  .p-buyback-far-away__image {
    display: flex;
    align-items: center;
    width: 35%;
  }
  .p-buyback-far-away__text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 65%;
    padding: 30px 35px;
  }
  .p-buyback-far-away__text h3 {
    font-size: 25px;
    line-height: 1.3;
  }
  .p-buyback-far-away__text p {
    font-size: 17px;
    line-height: 1.8;
  }
}
/*
　流れ
=================================*/
.p-buyback-flow {
  width: 95%;
  margin: 0 auto;
}

.p-buyback-flow ul {
  display: flex;
  flex-wrap: wrap;
}

.p-buyback-flow li {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}

.p-buyback-flow__image {
  width: 40%;
  margin-right: 15px;
}

.p-buyback-flow__image__inner {
  position: relative;
  width: clamp(130px, 26.0416666667vw, 200px);
  margin: 0 auto;
}

.p-buyback-flow__image__flame {
  width: clamp(130px, 26.0416666667vw, 200px);
  height: clamp(130px, 26.0416666667vw, 200px);
  margin-left: auto;
  margin-right: auto;
  border-radius: 50%;
  overflow: hidden;
}

.p-buyback-flow__image__number {
  position: absolute;
  bottom: 5px;
  left: 5px;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  line-height: 35px;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  background: var(--color-1);
  color: #fff;
  font-family: "Arial", "Century Gothic", sans-serif;
}

.p-buyback-flow__image__flame img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1/1;
}

.p-buyback-flow__text {
  width: 55%;
}

.p-buyback-flow__text h3 {
  margin-bottom: 10px;
  font-size: 17px;
  font-weight: bold;
  color: #333;
}

.p-buyback-flow__text p {
  font-size: 15px;
  line-height: 1.4;
}

/* PC */
@media screen and (min-width: 768px) {
  .p-buyback-flow {
    width: 100%;
  }
  .p-buyback-flow ul {
    justify-content: center;
  }
  .p-buyback-flow li {
    width: 32%;
    flex-direction: column;
    margin: 0 0.5% 40px 0.5%;
  }
  .p-buyback-flow__image {
    width: 75%;
    margin: 0 0 30px 0;
  }
  .p-buyback-flow__image__inner {
    width: 100%;
  }
  .p-buyback-flow__image__flame {
    width: 100%;
    height: auto;
    max-width: 235px;
  }
  .p-buyback-flow__image__number {
    bottom: 0;
    left: 20px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 28px;
  }
  .p-buyback-flow__text {
    width: 80%;
  }
  .p-buyback-flow__text h3 {
    font-size: 20px;
    text-align: center;
    line-height: 1;
  }
  .p-buyback-flow__text p {
    font-size: 16px;
    line-height: 1.4;
  }
}
/*
 特徴
=================================*/
.p-buyback-feature {
  background-image: url(../img/buyback/buyback-feature__bg.jpg);
  background-repeat: no-repeat;
  background-position: top;
  background-size: contain;
}

.p-buyback-feature__inner {
  width: 93%;
  margin: 0 auto;
}

.p-buyback-feature p {
  font-weight: bold;
}

.p-buyback-feature__text {
  font-size: 17px;
}

.p-buyback-feature__lead {
  margin-top: 50px;
  margin-bottom: 50px;
  font-size: 17px;
  line-height: 1.6;
}

.p-buyback-feature p:nth-of-type(2) {
  margin-top: 30px;
}

/* システム */
.p-buyback-feature__system {
  margin-top: 30px;
}

.p-buyback-feature__system__card,
.p-buyback-feature__system__card--sell {
  text-align: center;
  background-color: #fff;
}

.p-buyback-feature__system__card {
  border: 2px solid var(--color-2);
  margin-bottom: 30px;
}

.p-buyback-feature__system__card--sell {
  border: 2px solid var(--color-1);
}

.p-buyback-feature__system__card__top-label--buy,
.p-buyback-feature__system__card__top-label--sell,
.p-buyback-feature__system__card__label--buy,
.p-buyback-feature__system__card__label--sell {
  color: #fff;
  font-weight: bold;
}

.p-buyback-feature__system__card__top-label--buy,
.p-buyback-feature__system__card__label--buy {
  background-color: var(--color-2);
}

.p-buyback-feature__system__card__top-label--sell,
.p-buyback-feature__system__card__label--sell {
  background-color: var(--color-1);
}

.p-buyback-feature__system__card__top-label--buy,
.p-buyback-feature__system__card__top-label--sell {
  padding: 10px 10px 12px 10px;
  font-size: 24px;
  line-height: 1;
}

.p-buyback-feature__system__card__label--buy,
.p-buyback-feature__system__card__label--sell {
  display: inline-block;
  margin-top: 30px;
  margin-bottom: 10px;
  padding: 10px;
  line-height: 1;
  border-radius: 5px;
}

.p-buyback-feature__system__card__content {
  text-align: left;
  padding: 30px 15px 25px 15px;
}

.p-buyback-feature__system__card p,
.p-buyback-feature__system__card--sell p {
  font-weight: bold;
}

.p-buyback-feature__system__card__feature {
  display: flex;
  flex-wrap: wrap;
}

.p-buyback-feature__system__card__feature li {
  margin: 10px 15px 0 0;
  padding: 5px 10px 5px 30px;
  background-color: #f9e6e9;
}

.p-buyback-feature__system__card__feature li p {
  position: relative;
  color: #C30D24;
}

.p-buyback-feature__system__card__feature li p::before {
  position: absolute;
  content: "";
  background-image: url(../img/buyback/buyback-feature__icon-check.svg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 18px;
  height: 18px;
  top: 50%;
  transform: translateY(-50%);
  left: -23px;
}

/* メリット */
.p-buyback-feature__merit {
  margin-top: 50px;
}

.p-buyback-feature__merit p:nth-of-type(1) {
  margin-top: 30px;
}

.p-buyback-feature__merit p:nth-of-type(2) {
  margin-top: 30px;
}

.p-buyback-feature__merit--orange,
.p-buyback-feature__merit--gray {
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
  padding: 20px 10px 20px 35px;
}

.p-buyback-feature__merit--orange {
  background-color: #fff1e5;
}

.p-buyback-feature__merit--gray {
  background-color: #f1f1f1;
}

.p-buyback-feature__merit--orange li,
.p-buyback-feature__merit--gray li {
  position: relative;
  font-size: clamp(18px, 2.8645833333vw, 22px);
  font-weight: 500;
  margin-bottom: 10px;
}

.p-buyback-feature__merit--orange li::before,
.p-buyback-feature__merit--gray li::before {
  position: absolute;
  content: "";
  background-size: cover;
  top: 3px;
  left: -25px;
}

.p-buyback-feature__merit--orange li::before {
  background-image: url(../img/buyback/buyback-merit__icon-check.svg);
  width: 20px;
  height: 20px;
}

.p-buyback-feature__merit--gray li::before {
  background-image: url(../img/buyback/buyback-merit__icon-cross.svg);
  width: 20px;
  height: 20px;
}

/* 比較 */
.p-buyback-feature__comparison {
  margin-top: 50px;
}

.p-buyback-feature__table {
  width: 100%;
  margin-bottom: 50px;
  border: 1px solid #bfbfbf;
  border-collapse: collapse;
  table-layout: fixed;
}

.p-buyback-feature__table tr:nth-child(odd) {
  background: #f3f3f3;
}

.p-buyback-feature__table th,
.p-buyback-feature__table td {
  padding: 15px 5px;
  font-size: 14px;
  font-weight: bold;
  border: 1px solid #bfbfbf;
}

.p-buyback-feature__table th {
  text-align: center;
  font-size: clamp(14px, 3.4375vw, 16px);
  color: #fff;
}

.p-buyback-feature__table th:first-child,
.p-buyback-feature__table td:first-child {
  width: 25%;
}

.p-buyback-feature__table th:first-child {
  background-color: #fff;
}

.p-buyback-feature__table th:nth-child(2) {
  background: var(--color-2);
}

.p-buyback-feature__table th:last-child {
  background: var(--color-1);
}

.p-buyback-feature__table td {
  text-align: center;
}

.p-buyback-feature__table td:not(:first-child) {
  text-align: center;
  font-size: clamp(14px, 4.375vw, 16px);
}

.p-buyback-feature__comparison__circle,
.p-buyback-feature__comparison__cross {
  font-size: clamp(25px, 4.5572916667vw, 35px);
  text-shadow: 1px 1px 0, 1px -1px 0, -1px 1px 0, -1px -1px 0, 1px 0 0, 0 1px 0, -1px 0 0, 0 -1px 0;
  line-height: 1;
  display: inline-block;
  margin-bottom: 7px;
}

.p-buyback-feature__comparison__circle {
  color: #c30d24;
}

.p-buyback-feature__comparison__cross {
  color: #1d50a2;
}

.p-buyback-feature__comparison__copy {
  width: 90%;
  margin: 0 auto;
}

.p-buyback-feature__comparison__copy p {
  font-size: clamp(27px, 4.1666666667vw, 32px);
  font-weight: 900;
  line-height: 1.3;
}

.p-buyback-feature__comparison__copy p span {
  font-size: clamp(42px, 6.25vw, 48px);
  color: var(--color-2);
}

/* PC */
@media screen and (min-width: 768px) {
  .p-buyback-feature__inner {
    width: 100%;
    max-width: 1140px;
  }
  .p-buyback-feature__lead {
    margin-bottom: 80px;
    font-size: 18px;
    text-align: center;
  }
  .p-buyback-feature__text {
    font-size: 20px;
  }
  /* システム */
  .p-buyback-feature__system {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
  }
  .p-buyback-feature__system__card,
  .p-buyback-feature__system__card--sell {
    width: 46%;
  }
  .p-buyback-feature__system__card {
    margin-bottom: 0;
  }
  .p-buyback-feature__system__card__label--buy,
  .p-buyback-feature__system__card__label--sell {
    font-size: 20px;
    padding: 10px 20px;
  }
  .p-buyback-feature__system__card__content {
    padding: 30px;
  }
  .p-buyback-feature__system__card__feature li {
    padding: 8px 10px 8px 30px;
  }
  /* メリット */
  .p-buyback-feature__merit {
    margin-top: 100px;
  }
  .p-buyback-feature__merit p:nth-of-type(1) {
    margin-top: 0;
  }
  .p-buyback-feature__merit p:nth-of-type(2) {
    margin-top: 40px;
  }
  .p-buyback-feature__merit--orange,
  .p-buyback-feature__merit--gray {
    padding: 25px 10px 25px 60px;
  }
  .p-buyback-feature__merit--orange li,
  .p-buyback-feature__merit--gray li {
    font-size: 22px;
    margin-right: 70px;
  }
  .p-buyback-feature__merit--orange li::before,
  .p-buyback-feature__merit--gray li::before {
    top: 5px;
    left: -35px;
  }
  .p-buyback-feature__merit--gray li::before {
    top: 7px;
  }
  .p-buyback-feature__merit--orange li::before,
  .p-buyback-feature__merit--gray li::before {
    width: 23px;
    height: 24px;
  }
  /* 比較 */
  .p-buyback-feature__comparison {
    margin-top: 80px;
  }
  .p-buyback-feature__table {
    width: 100%;
    margin-top: 50px;
    border: 1px solid #bfbfbf;
    border-collapse: collapse;
    table-layout: fixed;
  }
  .p-buyback-feature__table th,
  .p-buyback-feature__table td {
    padding: 18px 25px;
    border: 1px solid #bfbfbf;
  }
  .p-buyback-feature__table th {
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    color: #fff;
  }
  .p-buyback-feature__table td {
    text-align: left;
    font-size: clamp(18px, 3vw, 20px);
  }
  .p-buyback-feature__table td:first-child {
    font-weight: bold;
  }
  .p-buyback-feature__table td:not(:first-child) {
    font-size: 20px;
  }
  .p-buyback-feature__comparison__circle {
    font-size: 35px;
  }
  .p-buyback-feature__comparison__copy {
    margin-top: 50px;
  }
  .p-buyback-feature__comparison__copy p {
    font-size: clamp(32px, 3.9473684211vw, 45px);
    text-align: center;
  }
  .p-buyback-feature__comparison__copy span {
    font-size: clamp(48px, 5.701754386vw, 65px);
  }
}
/*
 実績
=================================*/
.p-achievement__lead {
  margin-bottom: 50px;
  padding: 0 10px;
  font-size: 17px;
  font-weight: bold;
}

/* PC */
@media screen and (min-width: 768px) {
  .p-achievement__lead {
    font-size: 22px;
    text-align: center;
  }
}