@charset "UTF-8";

/* ━━━━━━━━━━━━━━━━

 ■初期化

━━━━━━━━━━━━━━━━ */
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 !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 #582303;
  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: #582303;
  font-weight: bold;
}

.c-button::after {
  background: #582303;
  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: 43%;
    padding: 15px 10px;
    font-size: 17px;
  }
}
/*
　プライマリボタン
================================*/
.c-button--primary {
  display: block;
  width: 95%;
  padding: 20px 10px;
  margin: 0 auto;
  background-color: #582303;
  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: #f2b705;
  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: #beaf87;
}

@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: #582303;
}

/* 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: #582303;
}

/* 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: #582303;
  margin-bottom: 30px;
}

.c-title-02--color-2 {
  color: #f2b705;
}

/* 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: #582303;
  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: #582303;
}

.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: #582303;
}

.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;
  color: #333;
  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 #f2b705;
  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: #582303;
  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: #582303 transparent transparent transparent;
}

.c-title-count-01 span {
  font-size: 50px;
  position: absolute;
  bottom: 0;
  right: -100px;
  display: block;
  padding-left: 16px;
  color: #582303;
  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: #582303;
  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 #582303;
  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: #582303;
}

.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: #f2b705;
}

.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: #582303;
}

.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);
  }
}
/*
　ルビ付き-08
================================*/
.c-title-ruby-08 {
  width: 95%;
  margin: 0 auto 20px auto;
  box-sizing: border-box;
}

.c-title-ruby-08 h2 {
  font-size: 25px;
  font-weight: 900;
  line-height: 1.2;
  color: #333;
}

.c-title-ruby-08 span {
  display: flex;
  align-items: center;
  font-size: 17px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #f2b705;
}

.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: 25px;
  }
  .c-title-ruby-08 h2 {
    font-size: 35px;
  }
  .c-title-ruby-08 span {
    font-size: 18px;
    margin-bottom: 7px;
  }
}
/*
　ルビ付き-09
================================*/
.c-title-ruby-09 {
  width: 90%;
  margin: 0 auto 30px auto;
  text-align: center;
  line-height: 1.4;
}

.c-title-ruby-09 h2 {
  font-size: 26px;
  font-weight: 900;
  color: #333;
}

.c-title-ruby-09 span::first-letter {
  color: #f2b705;
}

.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 {
    font-size: 35px;
  }
  .c-title-ruby-09 span {
    font-size: 20px;
  }
}
/*
  吹き出し付き見出し-01
==================================*/
.c-title-balloon-01 {
  margin-bottom: 30px;
  text-align: center;
}

.c-title-balloon-01__inner p {
  position: relative;
  display: inline-block;
  margin-bottom: 30px;
  padding: 12px 35px;
  text-align: center;
  font-size: clamp(16px, 5vw, 28px);
  font-weight: bold;
  color: #fff;
  background: #265692;
  border-radius: 30px;
}

.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 #265692;
}

.c-title-balloon-01 h2 {
  font-size: clamp(23px, 7.1875vw, 35px);
  font-weight: 900;
  color: #333;
}

.c-title-balloon-01 h2 span {
  color: #f2b705;
}

.c-title-balloon-01 h2 em {
  display: inline-block;
  font-size: clamp(30px, 9.375vw, 40px);
  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);
    line-height: 1.2;
  }
  .c-title-balloon-01 h2 em {
    font-size: clamp(40px, 3.5087719298vw, 60px);
  }
}
/*
　お悩み-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: #f2b705;
  font-weight: 900;
}

.c-trouble-06__risk {
  margin-top: 50px;
  padding: 10px;
  text-align: center;
  background: #582303;
}

.c-trouble-06__risk p {
  font-size: clamp(23px, 3.90625vw, 30px);
  font-weight: 900;
  color: #fff;
  line-height: 1.5;
}

@media screen and (min-width: 768px) {
  .c-trouble-06-title {
    width: 100%;
    font-size: 2.5rem;
  }
  .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);
  }
  .c-trouble-06__risk {
    margin-top: 70px;
    padding: 20px;
  }
  .c-trouble-06__risk p {
    font-size: clamp(30px, 5.2083333333vw, 45px);
  }
}
@media screen and (min-width: 1000px) {
  .c-trouble-06 li {
    padding: 16px 20px 16px 50px;
  }
}
/*
　特徴（４カラム）-04
================================*/
.c-feature-col4-04 {
  width: 90%;
  margin: 0 auto 20px auto;
}

.c-feature-col4-04 ul li {
  display: flex;
  flex-direction: column;
}

.c-feature-col4-04 ul li:not(:first-child) {
  margin-top: 30px;
}

.c-feature-col4-04__card-body {
  flex: 1;
  height: auto;
  border-radius: 10px;
  background-color: #F5F5F5;
  box-sizing: border-box;
}

.c-feature-col4-04__card-title {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 65px;
  padding: 10px 0;
  box-sizing: border-box;
  border-radius: 10px 10px 0 0;
  font-size: clamp(18px, 2.34375vw, 22px);
  font-weight: bold;
  text-align: center;
  color: #fff;
  background-color: #582303;
}

.c-feature-col4-04__card-body img {
  display: block;
  margin: 20px auto;
  width: 90px;
  height: 90px;
}

.c-feature-col4-04__card-text {
  padding: 0 19px 20px;
  font-size: clamp(16px, 2.2135416667vw, 17px);
  line-height: 1.6;
}

.p-area__feature-col4__under-text {
  margin: 50px 0 30px;
  font-size: clamp(16px, 2.34375vw, 18px);
  line-height: 1.6;
}

.p-area__feature-col4__under-text b {
  display: block;
  margin-bottom: 10px;
  font-size: 1.4rem;
  font-weight: 900;
  font-family: "Noto Serif JP", serif;
  text-align: center;
  color: #750914;
  line-height: 1.4;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-feature-col4-04 {
    width: 100%;
    max-width: 1350px;
  }
  .c-feature-col4-04 ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2%;
  }
  .c-feature-col4-04 ul li {
    width: 48%;
  }
  .c-feature-col4-04 ul li:not(:first-child) {
    margin-top: unset;
  }
  .c-feature-col4-04 ul li:nth-child(n+3) {
    margin-top: 40px;
  }
  .c-feature-col4-04__card-body img {
    margin: 30px auto;
    width: 100px;
    height: 100px;
  }
  .p-area__feature-col4__under-text {
    margin: 60px 0 20px;
    font-size: clamp(16px, 1.5789473684vw, 19px);
    text-align: center;
    line-height: 1.8;
  }
  .p-area__feature-col4__under-text b {
    font-size: 1.85rem;
  }
}
@media screen and (min-width: 1320px) {
  .c-feature-col4-04 ul li {
    width: 23.5%;
  }
  .c-feature-col4-04 ul li:nth-child(n+3) {
    margin-top: 0;
  }
}
/*
　特徴（３カラム）-04
================================*/
.c-feature-col3-04 {
  background: #F2EADF;
  color: #fff;
}

.c-feature-col3-04__cards {
  width: 95%;
  display: block;
  margin: 30px auto 0 auto;
}

.c-feature-col3-04__card {
  position: relative;
  background: #fff;
  border-radius: 20px;
  width: 100%;
  margin-bottom: 20px;
  overflow: hidden;
  display: block;
  padding: 20px;
  text-decoration: none;
  color: #000;
  box-sizing: border-box;
}

.c-feature-col3-04__card__title {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.c-feature-col3-04__card__title img {
  width: clamp(75px, 6.5789473684vw, 85px);
  height: clamp(75px, 6.5789473684vw, 85px);
  -o-object-fit: cover;
     object-fit: cover;
  margin-right: 15px;
  border-radius: 50%;
}

.c-feature-col3-04__card h3 {
  font-size: clamp(20px, 2.6041666667vw, 23px);
  font-weight: bold;
  color: #222;
  line-height: 1.3;
}

/* PC */
@media screen and (min-width: 800px) {
  .c-feature-col3-04__cards {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 50px;
  }
  .c-feature-col3-04__card {
    width: 31%;
    margin-bottom: 0;
    padding: 30px;
  }
  .c-feature-col3-04__card h3 {
    font-size: clamp(20px, 2.0175438596vw, 23px);
    line-height: 1.2;
  }
  .c-feature-col3-04__card p {
    font-size: clamp(16px, 1.4035087719vw, 17px);
    line-height: 1.6;
  }
}
/*
　特徴（交互）-05
================================*/
.c-feature-swap-05 li:not(:first-child) {
  margin-top: 40px;
}

.c-feature-swap-05__image img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-feature-swap-05__text {
  width: 90%;
  margin: 20px auto 0 auto;
}

.c-feature-swap-05__text h3 {
  margin-bottom: 15px;
  font-size: clamp(26px, 4.6875vw, 36px);
  font-weight: bold;
  color: #333;
}

.c-feature-swap-05__text b {
  display: block;
  margin-bottom: 10px;
  font-size: clamp(16px, 3.125vw, 24px);
  font-weight: bold;
  color: #265692;
}

.c-feature-swap-05__text p.c-feature-swap-05__text__catch {
  margin-top: 15px;
  margin-bottom: 15px;
  font-size: clamp(20px, 3.125vw, 24px);
  font-weight: bold;
  line-height: 1.3;
}

.c-feature-swap-05__text p {
  line-height: 1.7;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-feature-swap-05 {
    margin-top: 80px;
  }
  .c-feature-swap-05 li {
    position: relative;
  }
  .c-feature-swap-05 li::after {
    position: absolute;
    content: "";
    width: 80%;
    height: 100%;
    top: 0;
    right: 0;
    background-color: #f8f8f8;
    z-index: -1;
    transform: skewY(-5deg);
  }
  .c-feature-swap-05 li:not(:first-child) {
    margin-top: 150px;
  }
  .c-feature-swap-05 li:nth-child(even) .c-feature-swap-05__inner {
    flex-direction: row-reverse;
  }
  .c-feature-swap-05 li:nth-child(even)::after {
    transform: skewY(5deg);
    left: 0;
  }
  .c-feature-swap-05__inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1600px;
    margin: 0 auto;
  }
  .c-feature-swap-05__image {
    width: 48%;
  }
  .c-feature-swap-05__image img {
    height: 450px;
  }
  .c-feature-swap-05__text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 43%;
    margin-top: 30px;
  }
  .c-feature-swap-05__text h3 {
    font-size: clamp(32px, 3.1578947368vw, 36px);
  }
  .c-feature-swap-05__text b {
    margin-bottom: 0;
    font-size: 21px;
  }
  .c-feature-swap-05__text p.c-feature-swap-05__text__catch {
    margin-top: 15px;
    margin-bottom: 15px;
    font-size: clamp(22px, 2.1052631579vw, 24px);
  }
  .c-feature-swap-05__text p {
    font-size: clamp(16px, 1.4912280702vw, 17px);
  }
}
/*
　コンタクト-16
================================*/
.c-contact-16 {
  width: 95%;
  margin: 0 auto;
}

.c-contact-16__title {
  margin-bottom: 30px;
  font-size: 1.6rem;
  font-weight: 900;
  text-align: center;
  color: #000;
}

.c-contact-16__inner {
  margin-bottom: 30px;
  text-align: center;
}

.c-contact-16__button {
  margin-bottom: 30px;
}

.c-contact-16__button-balloon {
  display: block;
  position: relative;
  z-index: 2;
  padding: 8px 20px 9px;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto -13px;
  color: #333;
  background-color: #fff;
  border: 3px solid #f2b705;
  border-radius: 30px;
  line-height: 1;
  font-weight: 700;
}

.c-contact-16__button-balloon span {
  color: #f2b705;
  font-size: 1.1rem;
}

.c-contact-16__button__tel .c-contact-16__button-balloon {
  border: 3px solid #582303;
}

.c-contact-16__button__tel .c-contact-16__button-balloon span {
  color: #582303;
}

.c-contact-16__button-balloon::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  transform: translateX(-50%);
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 7px 0;
  border-color: #fff transparent transparent transparent;
}

.c-contact-16__button a {
  position: relative;
  display: block;
  padding: 25px 20px 20px 20px;
  border-radius: 60px;
  text-decoration: none;
  color: #fff;
  font-size: clamp(20px, 5vw, 25px);
  text-align: center;
  background: #f2b705;
  box-shadow: 0 2px 6px rgba(125, 55, 4, 0.26);
  line-height: 1.4;
  font-weight: 700;
  transition: 0.3s ease-in-out;
}

.c-contact-16__button a:hover {
  background: #767171;
}

.c-contact-16__button__tel a {
  background: #582303;
  font-size: clamp(27px, 5vw, 32px);
  font-family: "Arial", "Century Gothic", sans-serif;
  letter-spacing: 0.1em;
  line-height: 1.1;
}

.c-contact-16__button a::before {
  content: "";
  position: absolute;
  top: 52%;
  left: 7.5%;
  transform: translateY(-50%);
  display: block;
  width: 25px;
  height: 25px;
  background: url(../img/contact-16__consultation.svg) no-repeat center/contain;
}

.c-contact-16__button__tel a::before {
  background: url(../img/contact-16__tel.svg) no-repeat center/contain !important;
}

.c-contact-16__button a::after {
  content: "";
  position: absolute;
  top: 52%;
  right: 6%;
  transform: translateY(-50%);
  display: block;
  width: 10px;
  height: 15px;
  background: url(../img/contact-16__arrow.svg) no-repeat center/contain;
  width: 10px;
  height: 15px;
}

.c-contact-16__time {
  text-align: center;
  font-weight: 500;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-contact-16 {
    width: 100%;
  }
  .c-contact-16__title {
    font-size: 2.5rem;
  }
  .c-contact-16__inner {
    display: flex;
    justify-content: space-between;
  }
  .c-contact-16__button {
    margin-bottom: 0;
    width: 48%;
  }
  .c-contact-16__button-balloon {
    letter-spacing: 0.05em;
  }
  .c-contact-16__button a {
    padding: 28px 30px 26px 30px;
    font-size: clamp(21px, 3vw, 29px);
    line-height: 40px;
  }
  .c-contact-16__button__tel a {
    font-size: clamp(30px, 3vw, 37px);
  }
  .c-contact-16__button a::before {
    top: 50%;
    width: clamp(25px, 3vw, 40px);
    height: clamp(25px, 3vw, 40px);
  }
  .c-contact-16__button a::after {
    width: 16px;
    height: 20px;
  }
  .c-contact-16__time {
    font-size: 18px;
  }
}
/*
　メニュー-12
=================================*/
.c-menu-12--01 {
  margin-top: 50px;
}

/* ボタン */
.c-menu-12__head {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  margin-bottom: 80px;
}

.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: 40px 0 35px;
}

.c-menu-12--01 .c-menu-12__head__button {
  background: #582303;
}

.c-menu-12--02 .c-menu-12__head__button {
  background: #f2b705;
}

.c-menu-12__head__button__link a {
  display: block;
  padding: 40px 0 35px;
  text-decoration: none;
  color: #fff;
  background: #777171;
}

.c-menu-12__head__button i,
.c-menu-12__head__button__link i {
  font-size: 25px;
  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 5px;
  text-align: center;
  font-size: 15px;
  font-weight: 900;
  background: #fff;
  border-radius: 50px;
  line-height: 1.2;
}

.c-menu-12--01 .c-menu-12__head__button .c-menu-12__head__button__label {
  color: #582303;
  border: 2px solid #582303;
}

.c-menu-12--02 .c-menu-12__head__button .c-menu-12__head__button__label {
  color: #f2b705;
  border: 2px solid #f2b705;
}

.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: #582303 transparent transparent transparent;
}

.c-menu-12--02 .c-menu-12__head__button::before {
  border-color: #f2b705 transparent transparent transparent;
}

/* サービス内容 */
.c-menu-12__body {
  margin: 0 auto 50px auto;
  padding: 25px 10px 30px 10px;
  background-color: rgba(255, 255, 255, 0.7);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.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: #85173a;
}

.c-menu-12--02 .c-menu-12__body__lead__title {
  color: #1b70be;
}

.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: #85173a;
  background-color: #e7d1d8;
}

.c-menu-12--02 .c-menu-12__body__content__text p span {
  color: #1b70be;
  background-color: #d1e2f2;
}

.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: #85173a;
  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: #85173a;
}

.c-menu-12--02 .c-menu-12__body__detail__unit__title span {
  background: #1b70be;
}

.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/icon__check.svg);
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
  margin-top: 2px;
}

.c-menu-12__body .c-block,
.c-menu-12__body .c-button-outline {
  margin: 0;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-menu-12--01 {
    margin-top: 80px;
  }
  /* ボタン */
  .c-menu-12__head {
    margin-top: 30px;
    margin-bottom: 100px;
  }
  .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: -25px;
    width: 58%;
    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-bottom: 60px;
    padding: 30px 50px 40px 50px;
  }
  .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;
  }
}
/*
　特徴（１カラム）-01
================================*/
.c-feature-col1-01 h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #582303;
}

.c-feature-col1-01 {
  display: block;
  overflow-wrap: anywhere;
}

.c-feature-col1-01 img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 15px;
}

.c-feature-col1-01 p {
  line-height: 1.7;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-feature-col1-01 h3 {
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 25px;
  }
  .c-feature-col1-01 {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
  }
  .c-feature-col1-01 img {
    flex: 0 1 33%;
    height: 230px;
    margin-bottom: 0;
  }
  .c-feature-col1-01 p {
    flex: 0 1 63%;
    font-size: 18px;
  }
}
/*
　追従ボタン-03
================================*/
.c-follow-button-03 {
  position: fixed;
  right: -60px;
  bottom: 300px;
  padding: 15px 10px;
  font-size: 24px;
  text-align: center;
  background-color: #f2b705;
  border-radius: 5px 0 0 5px;
  cursor: pointer;
  z-index: 100;
}

.c-follow-button-03:hover {
  opacity: 0.5;
}

.c-follow-button-03 span {
  writing-mode: vertical-rl;
  vertical-align: middle;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
}

/* スマホ */
@media screen and (max-width: 767px) {
  .c-follow-button-03 {
    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: #582303;
  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: #f2b705;
}

/* 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;
  }
}
/*
　流れ-10
================================*/
.c-flow-10 {
  overflow-x: hidden;
  padding: 0 5%;
  max-width: 1200px;
  margin: 0 auto;
}

.c-flow-10__note {
  margin-top: 15px;
  margin-bottom: 10px;
  font-size: 14px;
  color: #aaa;
  visibility: hidden;
}

.c-flow-10__note.is-scrollable {
  visibility: visible;
}

.c-flow-10__number {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -40px;
  line-height: 1;
  font-size: 20px;
  font-weight: 500;
  color: #582303;
}

.c-flow-10__number span {
  display: block;
  text-align: center;
  font-weight: 500;
  font-size: 2em;
}

.c-flow-10__wrapper {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 1rem;
  padding-top: 50px;
}

.c-flow-10__wrapper::-webkit-scrollbar {
  visibility: hidden;
}

.c-flow-10__item {
  scroll-snap-align: start;
  width: 285px;
  flex-shrink: 0;
  position: relative;
  background: #f2f2f2;
  box-shadow: 5px 5px 5px 0 rgba(48, 38, 36, 0.1);
  height: auto;
  padding: 3.2rem 2rem 1.7rem 2rem;
  box-sizing: border-box;
}

.c-flow-10__item:not(:last-of-type):after {
  position: absolute;
  right: -1.2rem;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent transparent transparent #582303;
  border-width: 0.8rem 0 0.8rem 1.2rem;
}

.c-flow-10__image {
  max-width: 100px;
  margin: 0 auto;
  width: 100%;
}

.c-flow-10__text {
  padding: 20px 0;
}

.c-flow-10__text h3 {
  font-size: 19px;
  text-align: center;
  color: #582303;
  font-weight: 900;
  margin-bottom: 10px;
}

/* PC（768px以上）でスクロールバーを表示 */
@media screen and (max-width: 767px) {
  .c-flow-10__wrapper {
    scrollbar-width: none;
  }
  .c-flow-10__wrapper::-webkit-scrollbar {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .c-flow-10__wrapper {
    scrollbar-width: auto;
  }
  .c-flow-10__wrapper::-webkit-scrollbar {
    display: block;
    height: 5px;
  }
  .c-flow-10__wrapper::-webkit-scrollbar-track {
    background: #f1f1f1;
  }
  .c-flow-10__wrapper::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
    cursor: pointer;
  }
  .c-flow-10__wrapper::-webkit-scrollbar-thumb:hover {
    background: #aaa;
  }
}
/*
　アコーディオンメニュー-01
================================*/
.c-accordion-menu-01 {
  width: 100%;
  margin: 0 auto 30px auto;
}

.c-accordion-menu-01 li {
  display: block;
  background: #fff;
  border-top: 1px solid #dcdcdc;
  border-right: 1px solid #dcdcdc;
  border-left: 1px solid #dcdcdc;
}

.c-accordion-menu-01 li:last-child {
  border-bottom: 1px solid #dcdcdc;
}

.c-accordion-menu-01__check {
  display: none;
}

.c-accordion-menu-01__check:checked + .c-accordion-menu-01__question + .c-accordion-menu-01__answer {
  padding: 10px;
  height: auto;
  opacity: 1;
  visibility: visible;
}

.c-accordion-menu-01__check:checked + .c-accordion-menu-01__question::after {
  content: "－";
}

.c-accordion-menu-01__question {
  position: relative;
  display: block;
  padding: 15px 50px 15px 20px;
  font-size: 18px;
  font-weight: bold;
  color: #345887;
  background: #fff;
}

.c-accordion-menu-01__question::after {
  position: absolute;
  display: block;
  top: 50%;
  transform: translate(0, -50%);
  right: 0;
  padding: 15px;
  box-sizing: border-box;
  content: "＋";
}

.c-accordion-menu-01__answer {
  padding: 0 10px;
  height: 0;
  opacity: 0;
  visibility: hidden;
  border-top: 1px solid #dcdcdc;
  transition: 0.5s;
  background-color: #f5f5f5;
}

.c-accordion-menu-01__answer p {
  width: 95%;
  margin: 0 auto;
  line-height: 1.4;
  font-size: 16px;
  word-break: break-word;
}

@media screen and (min-width: 768px) {
  .c-accordion-menu-01__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;
  }
}
/*
　コンタクト-13
================================*/
.c-contact-13 {
  background: #f0dcb4;
  padding: 40px 10px;
}

.c-contact-13__title {
  font-size: clamp(25px, 3.90625vw, 30px);
  font-weight: 900;
  text-align: center;
  margin-bottom: 30px;
}

.c-contact-13__read {
  font-size: 16px;
  font-weight: bold;
  text-align: left;
  margin-bottom: 25px;
}

.c-contact-13__block__link {
  width: 100%;
}

.c-contact-13__block__link-mail {
  display: inline-block;
  width: 100%;
  box-shadow: 0 5px 0 #3d1802;
  border-radius: 8px;
}

.c-contact-13__block__link-mail:hover {
  box-shadow: 0 3px 0 #3d1802;
  transform: translateY(2px);
  opacity: 0.9;
}

.c-contact-13__block__link-mail--left {
  font-size: 22px;
  font-weight: 900;
  text-align: center;
  color: #f2b705;
  background: #582303;
  border-radius: 5px 5px 0 0;
  padding: 12px 35px;
}

.c-contact-13__block__link-mail--right {
  text-align: center;
  font-size: 22px;
  font-weight: 900;
  color: #fff;
  background: #f2b705;
  border-radius: 0 0 5px 5px;
  padding: 12px 35px;
}

.c-contact-13__block__link-mail--right i {
  margin-right: 10px;
}

.c-contact-13__block__link-tel {
  margin-top: 25px;
}

.c-contact-13__block__link-tel__link {
  display: block;
}

.c-contact-13__block__link-tel__text {
  font-size: clamp(16px, 2.34375vw, 18px);
  font-weight: bold;
}

.c-contact-13__block__link-tel__detail a {
  font-size: clamp(45px, 6.5104166667vw, 50px);
  font-family: "Arial", sans-serif;
  font-weight: bold;
  text-decoration: none;
  line-height: 1.2;
  color: #c1272d;
}

.c-contact-13__block__link-tel__detail a:hover {
  opacity: 0.8;
}

.c-contact-13__block__link-tel__detail a i {
  margin-right: 5px;
}

.c-contact-13__block__link-tel__detail p {
  font-size: clamp(14px, 2.6041666667vw, 20px);
  font-weight: bold;
  text-align: left;
  margin-top: 0;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-contact-13 {
    padding: 50px 10px;
  }
  .c-contact-13__title {
    font-size: clamp(40px, 3.9473684211vw, 45px);
  }
  .c-contact-13__read {
    font-weight: 500;
    text-align: center;
    margin-bottom: 45px;
  }
  .c-contact-13__block {
    display: flex;
    justify-content: center;
  }
  .c-contact-13__block__image {
    margin-top: -25px;
    margin-right: 20px;
  }
  .c-contact-13__block__image img {
    width: 100%;
    max-width: 100%;
    height: 300px;
  }
  .c-contact-13__block__link {
    width: auto;
  }
  .c-contact-13__block__link-mail {
    display: flex;
    align-items: center;
    font-size: 24px;
    text-decoration: none !important;
    margin-bottom: 45px;
  }
  .c-contact-13__block__link-mail--left {
    font-size: clamp(18px, 2.8947368421vw, 33px);
    border-radius: 5px 0 0 5px;
    padding: 22px 45px;
  }
  .c-contact-13__block__link-mail--right {
    font-size: clamp(18px, 2.8947368421vw, 33px);
    border-radius: 0 5px 5px 0;
    padding: 22px 45px;
    flex: 1;
  }
  .c-contact-13__block__link-tel {
    margin-top: 0;
  }
  .c-contact-13__block__link-tel__text {
    font-size: 24px;
    margin-top: 0;
  }
  .c-contact-13__block__link-tel__detail {
    display: flex;
    align-items: center;
  }
  .c-contact-13__block__link-tel__detail a {
    font-size: clamp(43px, 6.8421052632vw, 78px);
    margin-right: 15px;
  }
}
/*
　ポイント（１カラム）-04
================================*/
.c-point-col1-04 {
  width: 95%;
  margin: 0 auto;
  box-sizing: border-box;
  border-radius: 20px;
  border: 2px solid #265692;
  background-color: #FFF;
}

.c-point-col1-04__title {
  padding: 10px;
  border-radius: 18px 18px 0 0;
  text-align: center;
  font-size: clamp(20px, 2.6041666667vw, 33px);
  font-weight: 800;
  color: #fff;
  background: #265692;
  line-height: 1.3;
}

.c-point-col1-04__inner {
  padding: 20px 15px;
}

.c-point-col1-04__card {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px dotted #666;
}

.c-point-col1-04__card:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.c-point-col1-04 h4 {
  margin-bottom: 5px;
  font-size: clamp(18px, 2.34375vw, 20px);
  font-weight: bold;
  color: #f2b705;
}

.c-point-col1-04 p {
  font-size: 16px;
  line-height: 1.6;
}

.c-point-col1-04 p:last-child {
  margin-bottom: 0;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-point-col1-04 {
    width: 100%;
    max-width: 1200px;
  }
  .c-point-col1-04__title {
    padding: 15px 10px;
  }
  .c-point-col1-04__inner {
    display: flex;
    padding: 30px 45px;
  }
  .c-point-col1-04__card {
    margin-bottom: 0;
    padding-bottom: 0;
    margin-right: 20px;
    padding-right: 20px;
    border-bottom: none;
    border-right: 1px dotted #666;
  }
  .c-point-col1-04__card:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
  }
  .c-point-col1-04 h4 {
    margin-bottom: 10px;
    font-size: clamp(17px, 1.4912280702vw, 23px);
  }
  .c-point-col1-04 p {
    font-size: clamp(16px, 1.4035087719vw, 17px);
    line-height: 1.5;
  }
}
/* ━━━━━━━━━━━━━━━━

 ■レイアウト

━━━━━━━━━━━━━━━━ */
/*=========================================

* ヘッダー-01

==========================================*/
html {
  scroll-padding-top: 55px;
}

.l-header-01 {
  position: relative;
  width: 100%;
  height: 55px;
  margin: 0;
}

.l-header-01__wrapper {
  position: fixed;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  width: 100%;
  height: 55px;
  top: 0;
  padding: 5px 10px;
  background-color: rgba(250, 250, 250, 0.9);
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
  z-index: 1010;
}

.l-header-01__logo {
  max-width: 165px;
}

.l-header-01__logo a {
  display: block;
}

.l-header-01__logo img {
  display: block;
  width: 100%;
}

.l-header-01__nav {
  display: none;
}

.l-header-01__inquiry {
  display: none;
}

.l-header-01__inquiry--tel {
  display: none;
}

.l-header-01__menu__button {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  right: 15px;
  display: block;
}

.l-header-01__menu__button a {
  display: block;
  text-align: center;
  text-decoration: none;
  color: #1f2a34;
}

.l-header-01__menu__button i {
  font-size: 35px;
}

.l-header-01__sp-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 72px 20px 65px 20px;
  transform: translateY(min(-100%, -1000px));
  transition: transform 0.5s;
  overflow-y: auto;
  background: #fefefe;
  box-sizing: border-box;
  z-index: 1000;
}

.l-header-01__sp-menu ul li {
  width: 100%;
  height: auto;
  border-top: 1px solid #919191;
}

.l-header-01__sp-menu ul li:last-child {
  border-bottom: 1px solid #919191;
}

.l-header-01__sp-menu ul li:hover {
  background: #747474;
}

.l-header-01__sp-menu ul li a {
  display: block;
  width: 100%;
  height: 3em;
  margin-left: 1em;
  text-decoration: none;
  line-height: 3em;
  font-size: 1em;
  color: #0b3c5d;
}

.l-header-01__sp-menu ul li a:hover {
  color: #fff;
}

.l-header-01__sp-menu--tel a,
.l-header-01__sp-menu--mail a {
  display: block;
  text-align: center;
}

.l-header-01__sp-menu--mail a:hover {
  background: #070d59;
}

.l-header-01__sp-menu--tel a {
  margin-top: 50px;
  text-decoration: none;
  line-height: 1;
  font-family: "Arial", "Noto Sans Japanese", sans-serif;
  font-size: 32px;
  font-weight: bold;
  color: #582303;
}

.l-header-01__sp-menu--tel p {
  text-align: center;
  font-size: 16px;
  color: #5f5f5f;
}

.l-header-01__sp-menu--mail a {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 450px;
  margin: 30px auto;
  padding: 30px;
  text-decoration: none;
  font-size: 16px;
  color: #FFF;
  background-color: #582303;
  box-sizing: border-box;
}

.l-header-01__sp-menu--mail a span {
  font-weight: bold;
  font-size: 25px;
}

.l-header-01__sp-menu.__open {
  transform: translateY(0);
  transition: transform 0.5s;
}

@media print {
  .l-header-01__sp-menu {
    display: none;
  }
}
.p-page-title {
  padding: 10px 8px;
  font-size: 13px;
}

/* PC */
@media screen and (min-width: 1060px) {
  html {
    scroll-padding-top: 85px;
  }
  .l-header-01 {
    height: 85px;
  }
  .l-header-01__wrapper {
    display: block;
    height: 85px;
    padding: 0;
  }
  .l-header-01__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
  }
  .l-header-01__logo {
    max-width: clamp(170px, 14.4vw, 250px);
    margin: 0 auto 0 15px;
  }
  .l-header-01__nav {
    display: block;
  }
  .l-header-01__nav ul {
    display: flex;
    align-items: center;
  }
  .l-header-01__nav li {
    padding: 10px 15px;
  }
  .l-header-01__nav li a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: #000;
  }
  .l-header-01__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-01__nav li a:hover::after {
    transform: scale(1, 1);
  }
  .l-header-01__inquiry {
    display: flex;
    align-items: center;
    background-color: #582303;
  }
  .l-header-01__inquiry a {
    display: block;
    padding: 18px 20px;
    text-align: center;
    text-decoration: none;
    font-size: 15px;
    color: #FFF;
  }
  .l-header-01__inquiry:hover {
    background-color: #b22222;
  }
  .l-header-01__menu__button {
    display: none;
  }
  .l-header-01__inquiry i {
    font-size: 23px;
  }
  .p-page-title {
    max-width: 1140px;
    margin: 0 auto;
    padding: 10px 0;
    font-size: 14px;
  }
}
@media screen and (min-width: 1250px) {
  .l-header-01__inquiry--tel {
    display: block;
    margin-right: 20px;
    margin-left: 5px;
  }
  .l-header-01__inquiry--tel a {
    text-decoration: none;
    font-size: clamp(20px, 2.1929824561vw, 30px);
    color: #000;
    font-family: "Century Gothic", "Arial", sans-serif;
  }
  .l-header-01__nav li {
    padding: 10px 10px;
  }
  .l-header-01__nav li a {
    letter-spacing: 0.1em;
  }
}
@media screen and (min-width: 1500px) {
  .l-header-01__inquiry--tel a {
    font-size: 33px;
  }
  .l-header-01__nav li {
    padding: 10px 15px;
  }
}
/*=========================================

* メインビジュアル

==========================================*/
.l-main-visual {
  position: relative;
  background-image: url(../img/main-visual__souzoku.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 33% 50%;
  width: 100%;
}

.l-main-visual::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(33, 33, 33, 0.4);
}

.l-main-visual__inner {
  position: relative;
  width: 90%;
  display: flex;
  padding: 30px 0 0;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
}

.l-main-visual__title {
  position: relative;
  text-align: center;
  font-size: max(37px, 6.1277705346vw);
  font-weight: 900;
  color: #fff;
  text-shadow: 1px 2px 2px #000;
}
.l-main-visual__title .l-main-visual__title__label {
  border-radius: 10px;
  text-shadow: none;
  display: inline-block;
  margin-bottom: 10px;
  padding: 7px 15px 5px 15px;
  text-align: center;
  font-size: max(20px, 3.1290743155vw);
  color: #333;
  background-color: rgba(255, 255, 255, 0.8);
}

.l-main-visual__text--yellow {
  color: #f2b705;
  font-weight: 900;
}

.l-main-visual__text--small {
  font-size: 32px;
}

.l-main-visual__text {
  margin-top: 20px;
  margin-bottom: 30px;
  text-align: center;
  font-size: 23px;
  font-weight: 900;
  color: #fff;
  text-shadow: 1px 2px 2px #000;
}

.l-main-visual__note {
  margin-top: 30px;
  margin-bottom: 30px;
  text-align: center;
  font-size: 24px;
  font-weight: 900;
  color: #f2b705;
  text-shadow: 1px 2px 2px #000;
  letter-spacing: 0.01px;
  line-height: 1.3;
}

.l-main-visual__text--large {
  font-size: 40px;
  font-weight: bold;
}

.l-main-visual__text--number {
  font-family: "Arial", sans-serif;
  font-size: 1.4em;
  letter-spacing: 0.01px;
  vertical-align: -6%;
}

.l-main-visual__point {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.l-main-visual__point__item {
  background-color: #582303;
  padding: 7px 12px;
  border-radius: 5px;
}

.l-main-visual__point__item__text {
  width: 100%;
  text-align: center;
  color: #fff;
  display: flex;
  align-items: center;
  background-color: #582303;
}

.l-main-visual__point__item__image {
  display: flex;
  width: 25px;
  height: 25px;
  margin: 0 auto;
  margin-right: 7px;
}

.l-main-visual__point__item__text img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.l-main-visual__point__item__text p {
  font-size: clamp(17px, 2.2135416667vw, 20px);
  font-weight: 700;
  line-height: 1.2;
}

.l-main-visual__point__item__text p span {
  font-size: clamp(15px, 1.953125vw, 18px);
}

.l-main-visual__area {
  padding: 10px 20px;
  background: #f5cc50;
  color: #fff;
  font-weight: 600;
  font-size: 19px;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 10;
}

/* PC */
@media screen and (min-width: 768px) {
  .l-main-visual {
    background-position: 75% 50%;
  }
  .l-main-visual__inner {
    padding: clamp(55px, 3.4375vw, 65px) 0 50px;
  }
  .l-main-visual__title {
    line-height: 1.2;
    font-size: min(110px, 6.875vw);
  }
  .l-main-visual__title .l-main-visual__title__label {
    margin-bottom: 15px;
    padding: 7px 20px 5px 20px;
    font-size: min(38px, 2.375vw);
  }
  .l-main-visual__note {
    font-size: min(45px, 3.2vw);
  }
  .l-main-visual__text--small {
    font-size: min(85px, 5.3125vw);
  }
  .l-main-visual__text {
    margin-bottom: 60px;
    line-height: 1.1;
    font-size: min(45px, 3.2vw);
  }
  .l-main-visual__text--large {
    font-size: min(80px, 5vw);
  }
  .l-main-visual__point__item {
    padding: 10px 20px;
  }
  .l-main-visual__point__item__image {
    height: 30px;
    width: auto;
    margin-right: 10px;
  }
  .l-main-visual__point__item__text img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .l-main-visual__point__item__text p {
    font-size: clamp(18px, 1.9298245614vw, 30px);
  }
  .l-main-visual__point__item__text p span {
    font-size: clamp(20px, 1.7543859649vw, 23px);
  }
  .l-main-visual__area {
    padding: 20px 20px;
    font-size: min(35px, 2.8vw);
    text-align: center;
  }
  .l-main-visual__point {
    gap: 20px;
  }
}
@media screen and (min-width: 1250px) {
  .l-main-visual {
    height: calc(100vh - 85px);
    min-height: 750px;
  }
  .l-main-visual__note {
    font-size: min(50px, 3.2vw);
  }
  .l-main-visual__area {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
  }
}
/*=========================================

* フッター-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: 50px 0;
}

.l-footer-02__logo {
  margin-bottom: 15px;
  padding-bottom: 15px;
  text-align: center;
}

.l-footer-02__logo img {
  width: 65%;
  max-width: 400px;
  margin-bottom: 15px;
}

.l-footer-02__nav ul {
  display: flex;
  flex-wrap: wrap;
}

.l-footer-02__nav li {
  width: 50%;
}

.l-footer-02__nav li a {
  display: block;
  padding: 15px 15px;
  text-decoration: none;
  color: #333;
}

.copyright {
  padding: 10px 0 30px 0 !important;
  text-align: center !important;
  background-color: #582303 !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: 25%;
    margin-bottom: 0;
    padding-bottom: 0;
    text-align: left;
  }
  .l-footer-02__logo img {
    width: 85%;
    margin-bottom: 0;
  }
  .l-footer-02__nav ul {
    flex-wrap: initial;
  }
  .l-footer-02__nav li {
    width: auto;
    margin-right: 20px;
  }
  .l-footer-02__nav li a {
    font-size: 15px;
    padding: 5px;
  }
  .l-footer-02__nav li a:hover {
    color: #337ab7;
  }
  .btn__page_top {
    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;
  }
  .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--lightblue {
  background: #e6f5f5;
}

.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,
.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;
  }
}
/* ━━━━━━━━━━━━━━━━

 ■プロジェクト

━━━━━━━━━━━━━━━━ */
/*=================================

* トップ

=================================*/
/*
　相続登記の義務化
================================*/
.p-souzoku__risk {
  margin: 0 5vw;
}

.p-souzoku__risk__wrapper {
  position: relative;
}

.p-souzoku__risk__inner {
  display: flex;
  flex-direction: column-reverse;
}

.p-souzoku__risk__text {
  margin-top: 32px;
}

.p-souzoku__risk__text span.p-souzoku__risk__label {
  display: inline-block;
  margin-bottom: 10px;
  padding: 3px 10px 3px 15px;
  font-size: clamp(18px, 2.34375vw, 25px);
  font-weight: bold;
  text-align: center;
  background-color: #265692;
  border-radius: 5px;
  color: #FFF;
  letter-spacing: 0.3em;
}

.p-souzoku__risk__text h2 {
  font-size: clamp(30px, 4.5572916667vw, 35px);
  color: #f2b705;
  font-weight: 900;
  line-height: 1.3;
}

.p-souzoku__risk__text h3 {
  margin-top: 16px;
  font-size: 18px;
  font-weight: bold;
  color: #333;
}

.p-souzoku__risk__text p {
  margin-top: 16px;
  line-height: 1.75;
}

.p-souzoku__risk__image img {
  width: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.16);
  aspect-ratio: 4/3;
}

/* PC */
@media screen and (min-width: 1000px) {
  .p-souzoku__risk__wrapper {
    margin-right: -5vw;
  }
  .p-souzoku__risk__wrapper::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 90%;
    top: 10%;
    left: 0;
    background-color: #f9f9f9;
    z-index: -1;
  }
  .p-souzoku__risk__inner {
    flex-direction: row;
    justify-content: space-between;
  }
  .p-souzoku__risk__text {
    width: 45%;
    padding: 50px 40px 30px;
  }
  .p-souzoku__risk__text h2 {
    font-size: clamp(30px, 3.5087719298vw, 50px);
  }
  .p-souzoku__risk__text h3 {
    margin-top: 32px;
    font-size: clamp(20px, 1.7543859649vw, 25px);
  }
  .p-souzoku__risk__text p {
    margin-top: 32px;
    font-size: clamp(16px, 1.4035087719vw, 18px);
    letter-spacing: 0.05em;
  }
  .p-souzoku__risk__image {
    width: 55%;
    margin-left: auto;
  }
  .p-souzoku__risk__image img {
    height: 80%;
  }
}
@media screen and (min-width: 1251px) {
  .p-souzoku__risk {
    margin: 0 7vw;
  }
  .p-souzoku__risk__wrapper {
    margin-right: -7vw;
  }
  .p-souzoku__risk__text {
    width: 40%;
    margin-top: 65px;
  }
  .p-souzoku__risk__image {
    width: 62%;
    max-width: 930px;
  }
  .p-souzoku__risk__image img {
    max-width: 930px;
    height: 85%;
  }
}
/*
　誘導
================================*/
.p-souzoku__induction {
  width: 100%;
  margin-bottom: 30px;
  padding-bottom: 35px;
  box-sizing: content-box;
  clip-path: polygon(0 0, 100% 0, 100% 75%, 50% 100%, 0 75%, 0 0);
  background-color: #582303;
}

.p-souzoku__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-souzoku__induction__inner h2 {
  text-align: center;
  font-size: clamp(23px, 2.9947916667vw, 35px);
  font-weight: 900;
  color: #fff;
  line-height: 1.4;
}

.p-souzoku__induction span {
  font-size: clamp(30px, 3.90625vw, 40px);
  font-weight: 900;
  color: #f2b705;
  line-height: 1.1;
}

/* PC */
@media screen and (min-width: 768px) {
  .p-souzoku__induction {
    margin-bottom: 50px;
  }
  .p-souzoku__induction__inner {
    max-width: 1140px;
    padding: 25px 0 20px 0;
  }
  .p-souzoku__induction__inner h2 {
    line-height: 1.3;
    font-size: clamp(35px, 3.0701754386vw, 45px);
  }
  .p-souzoku__induction__inner span {
    font-size: clamp(40px, 4.3859649123vw, 60px);
  }
}
/*
　リード
================================*/
.p-souzoku__lead {
  width: 93%;
  margin: 0 auto 20px;
  color: #333;
  font-weight: bold;
  line-height: 1.75;
}

/* PC */
@media screen and (min-width: 768px) {
  .p-souzoku__lead {
    margin-bottom: 25px;
    font-size: clamp(16px, 2.34375vw, 19px);
    text-align: center;
  }
}
/*
  スタッフ紹介
================================*/
.p-souzoku__staff__title {
  margin-bottom: 30px;
  padding: 10px;
  text-align: center;
  background: #582303;
}

.p-souzoku__staff__title p {
  font-size: clamp(23px, 3.90625vw, 30px);
  font-weight: 900;
  color: #fff;
  line-height: 1.5;
}

.p-souzoku__staff {
  width: 95%;
  margin: 30px auto 0;
  border: 4px solid #f2b705;
  background-color: #fefbf5;
  box-sizing: border-box;
}

.p-souzoku__staff h3 {
  width: 250px;
  padding: 10px;
  font-size: 20px;
  color: #fff;
  font-weight: bold;
  background-color: #f2b705;
  text-align: center;
  box-sizing: border-box;
}

.p-souzoku__staff__inner {
  padding: 20px 20px 40px 20px;
}

.p-souzoku__staff__image {
  margin-bottom: 30px;
}

.p-souzoku__staff__image img {
  display: block;
  width: 65%;
  margin: 0 auto;
}

.p-souzoku__staff__text p {
  line-height: 1.8;
}

.p-souzoku__staff__text ul {
  margin-bottom: 20px;
}

.p-souzoku__staff__text ul li {
  margin-bottom: 5px;
}

/* PC */
@media screen and (min-width: 768px) {
  .p-souzoku__staff__title {
    margin-bottom: 50px;
    padding: 20px;
  }
  .p-souzoku__staff__title p {
    font-size: clamp(30px, 5.2083333333vw, 45px);
  }
  .p-souzoku__staff {
    max-width: 1200px;
    margin-top: 40px;
  }
  .p-souzoku__staff h3 {
    width: 360px;
    padding: 10px 50px;
    font-size: clamp(20px, 1.7543859649vw, 25px);
  }
  .p-souzoku__staff__inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px 50px 40px 50px;
  }
  .p-souzoku__staff__image {
    width: 27%;
    margin-bottom: 0;
  }
  .p-souzoku__staff__image img {
    width: 75%;
  }
  .p-souzoku__staff__text {
    width: 68%;
    padding-top: 15px;
  }
  .p-souzoku__staff__text ul li {
    font-size: clamp(16px, 1.4035087719vw, 17px);
  }
  .p-souzoku__staff__text p {
    font-size: clamp(16px, 1.4035087719vw, 17px);
  }
}
/*
　ご相談予約フォーム
================================*/
.p-souzoku-form__content {
  width: 90%;
  margin: 0 auto 30px;
  color: #333;
  line-height: 1.75;
}

.p-souzoku-form__section-title {
  margin: 0 auto 30px;
  color: #333;
  font-size: clamp(25px, 3.90625vw, 40px);
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
}

.p-souzoku-form__content p {
  font-size: clamp(16px, 2.34375vw, 18px);
}

.p-souzoku-form__content p span {
  font-weight: bold;
  font-size: 1.2rem;
}

.p-souzoku-form {
  width: 95%;
  margin: 0 auto 20px;
  padding: 40px 20px;
  border-radius: 10px;
  background: #FFF;
  box-sizing: border-box;
}

.p-souzoku-form__typebox-line,
.p-souzoku-form__datebox-line {
  margin-bottom: 40px;
}

.p-souzoku-form__typebox-detail label {
  position: relative;
  display: inline-block;
  margin-bottom: 10px;
}

.p-souzoku-form__typebox-detail input {
  display: none;
}

.p-souzoku-form__typebox-detail span {
  position: relative;
  display: inline-block;
  padding-left: 40px;
  margin-right: 30px;
  font-size: 17px;
  font-weight: 500;
  color: #333;
  cursor: pointer;
}

.p-souzoku-form__typebox-detail span::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
  border: 1px solid #CCC;
  border-radius: 6px;
  background: #fff;
  border-radius: 50%;
  box-sizing: border-box;
}

.p-souzoku-form__typebox-detail input:checked + span::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
  border: 1px solid #CCC;
  border-radius: 6px;
  background: #265692;
  border-radius: 50%;
  transform: scale(0.7);
  box-sizing: border-box;
}

.p-souzoku-form__date {
  margin-bottom: 20px;
}

.p-souzoku-form__date p {
  margin-bottom: 5px;
  font-size: 17px;
  font-weight: bold;
  color: #333;
}

.p-souzoku-form__date__calendar {
  display: inline-block;
  margin-bottom: 5px;
  padding: 0 15px;
  width: 100%;
  height: 50px;
  font-size: 18px;
  line-height: 50px;
  border: 2px solid #92aac8;
  border-radius: 10px;
  box-sizing: border-box;
}

.p-souzoku-form__date__time {
  display: flex;
  align-items: center;
}

.p-souzoku-form__date__time-box {
  display: block;
  width: 30%;
  height: 50px;
  line-height: 50px;
  background: #fff;
  font-size: 18px;
  color: #582303;
  text-align: left;
  margin-right: 5px;
  padding: 0 15px;
  border: 2px solid #92aac8;
  border-radius: 10px;
  box-sizing: border-box;
}

.p-souzoku-form__personbox {
  margin-top: 20px;
}

.p-souzoku-form__personbox-line,
.p-souzoku-form__personbox {
  width: 100%;
  height: auto;
}

.p-souzoku-form__personbox-line {
  margin-bottom: 20px;
}

.p-souzoku-form__typebox-label,
.p-souzoku-form__datebox-label,
.p-souzoku-form__person-label {
  display: inline-block;
  font-size: 17px;
  font-weight: 500;
  color: #265692;
  margin-bottom: 10px;
}

.p-souzoku-form__typebox-required,
.p-souzoku-form__datebox-required,
.p-souzoku-form__personbox-required {
  font-size: 15px;
  color: #c1272d;
}

.p-souzoku-form__personbox-address,
.p-souzoku-form__personbox-name,
.p-souzoku-form__personbox-tel,
.p-souzoku-form__personbox-mail {
  display: inline-block;
  box-sizing: border-box;
  width: 100%;
  height: 50px;
  line-height: 50px;
  background: #fff;
  font-size: 17px;
  color: #265692;
  border: 2px solid #92aac8;
  border-radius: 30px;
  text-align: left;
  padding: 0 15px;
}

.p-souzoku-form__personbox-detail {
  box-sizing: border-box;
  width: 100%;
  height: 150px;
  background: #fff;
  font-size: 17px;
  color: #265692;
  border: 2px solid #92aac8;
  border-radius: 20px;
  padding: 10px 15px;
}

.p-souzoku-form__areabox-submitbtn {
  display: block;
  width: 100%;
  background: #265692;
  border-radius: 10px;
  font-size: 20px;
  color: #fff;
  font-weight: bold;
  text-align: center;
  margin: 40px auto 15px auto;
  padding: 15px;
  border: none;
}

.p-souzoku-form__areabox-submitbtn:hover {
  background: #c1272d;
}

.p-souzoku-form__note {
  width: 95%;
  margin: 0 auto;
}

.p-souzoku-form__note p {
  margin-bottom: 5px;
  font-size: 15px;
  color: #333;
}

/* PC */
@media screen and (min-width: 768px) {
  .p-souzoku-form__section-title {
    margin: 0 auto 30px;
  }
  .p-souzoku-form__content {
    width: 90%;
    margin: 0 auto 40px;
  }
  .p-souzoku-form__content p {
    text-align: center;
    letter-spacing: 0.03rem;
  }
  .p-souzoku-form {
    padding: 50px 80px 40px 80px;
    width: 100%;
  }
  .p-souzoku-form__typebox-detail,
  .p-souzoku-form__datebox-detail {
    width: 77%;
  }
  .p-souzoku-form__typebox-detail span {
    margin-right: 60px;
    font-size: 20px;
  }
  .p-souzoku-form__date {
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
  .p-souzoku-form__date p {
    margin-bottom: 0;
    margin-right: 15px;
    width: 15%;
  }
  .p-souzoku-form__date__calendar {
    margin-bottom: 0;
    margin-right: 15px;
    width: 40%;
    height: 55px;
    line-height: 55px;
  }
  .p-souzoku-form__date__time {
    width: 40%;
    height: 55px;
    line-height: 55px;
  }
  .p-souzoku-form__date__time-box {
    height: 55px;
    line-height: 55px;
  }
  .p-souzoku-form__personbox {
    margin-top: 10px;
  }
  .p-souzoku-form__typebox-line,
  .p-souzoku-form__datebox-line,
  .p-souzoku-form__personbox-line {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
  }
  .p-souzoku-form__datebox-line {
    align-items: flex-start;
  }
  .p-souzoku-form__typebox-line,
  .p-souzoku-form__datebox-line {
    margin-bottom: 30px;
  }
  .p-souzoku-form__typebox-label,
  .p-souzoku-form__datebox-label,
  .p-souzoku-form__person-label {
    display: inline-block;
    font-size: 17px;
    font-weight: bold;
    width: 23%;
    min-width: 200px;
    margin-right: 20px;
    margin-bottom: 0;
  }
  .p-souzoku-form__personbox-address,
  .p-souzoku-form__personbox-name,
  .p-souzoku-form__personbox-tel,
  .p-souzoku-form__personbox-mail {
    width: 77%;
    height: 55px;
    line-height: 55px;
    padding: 0 15px;
  }
  .p-souzoku-form__personbox-detail {
    width: 77%;
    height: 200px;
    padding: 10px 15px;
  }
  .p-souzoku-form__areabox-submitbtn {
    width: 35%;
  }
  .p-souzoku-form__note {
    width: 100%;
  }
  .p-souzoku-form__note p {
    font-size: 16px;
  }
}
/*=================================

* その他ページ

=================================*/
/*
　コンタクト
================================*/
.c-contact {
  width: 100%;
  margin: 0 auto;
  background: #727A84;
}

.c-contact .c-contact__block {
  display: block;
  width: 100%;
}

.c-contact .c-contact__block li:first-child {
  border-right: 1px solid #FFF;
}

/* mail */
.c-contact .c-contact__mail {
  width: 100%;
  padding: 30px 50px;
  border-bottom: 1px solid #FFF;
}

.c-contact .c-contact__mail a {
  display: block;
  width: 100%;
  padding: 15px 0;
  font-size: 16px;
  color: #FFF;
  border: 1px solid #FFF;
  text-align: center;
  text-decoration: none;
}

.c-contact .c-contact__mail a:hover {
  background: #F5F5F5;
  border: 1px solid #F5F5F5;
  color: #727A84;
}

/* tel */
.c-contact .c-contact__tel {
  width: 100%;
  padding: 30px 0;
  text-align: center;
  color: #FFF;
}

.c-contact .c-contact__tel p {
  font-size: 16px;
  margin-bottom: 10px;
}

.c-contact .c-contact__tel a {
  text-decoration: none;
  color: #FFFFFF;
}

.c-contact .c-contact__telno {
  font-size: 30px !important;
  font-weight: bold;
  margin-bottom: 10px;
}

.c-contact__tel p.c-contact__fax {
  font-size: 20px;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-contact .c-contact__block {
    display: flex;
    max-width: 980px;
    margin: 0 auto;
    align-items: center;
  }
  /* mail */
  .c-contact .c-contact__mail {
    width: 45%;
    padding: 30px 50px;
    border: none;
    border-right: 1px solid #FFF;
    border-bottom: none;
  }
  .c-contact .c-contact__mail a {
    font-size: 19px;
  }
  /* tel */
  .c-contact .c-contact__tel {
    width: 55%;
  }
  .c-contact .c-contact__tel p {
    margin-bottom: 0;
  }
  .c-contact .c-contact__teltext {
    font-size: 19px !important;
  }
  .c-contact .c-contact__telno {
    margin-bottom: 0;
    font-size: 42px !important;
  }
}
/*
　チェックボックス付きリスト
=================================*/
.c-checkbox-list {
  margin: 10px;
}

.c-checkbox-list li {
  position: relative;
  padding-left: 30px;
  line-height: 1.5;
  margin-bottom: 20px;
  font-size: 17px;
}

.c-checkbox-list li:before {
  position: absolute;
  top: 3px;
  margin-left: -30px;
  margin-right: 10px;
  content: url(../img/icon__check.png);
}

@media screen and (min-width: 768px) {
  .c-checkbox-list {
    margin: 0;
  }
  .c-checkbox-list li:before {
    top: 0;
  }
}
/*
　2columnレイアウト
=================================*/
.c-column-2 {
  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 {
    display: flex;
    justify-content: space-between;
  }
  .c-column__col {
    width: 48%;
  }
}
/*
　H2タイトル（メインカラー）
================================*/
h2.c-title__color-1 {
  font-size: 28px;
  color: #582303;
  margin-bottom: 30px;
  text-align: center;
  font-weight: 900;
  line-height: 1.3;
}

/* PC */
@media screen and (min-width: 768px) {
  h2.c-title__color-1 {
    font-size: 55px;
    margin-bottom: 50px;
  }
}
/*
　H2タイトル（背景カラー付）
================================*/
h2.c-title__bg-color-1,
h2.c-title__bg-color-2 {
  font-size: 23px;
  color: #FFF;
  font-weight: bold;
  background: #582303;
  margin-bottom: 20px;
  padding: 10px 15px;
}

h2.c-title__bg-color-2 {
  color: #582303;
  background: #f2b705;
}

/* PC */
@media screen and (min-width: 768px) {
  h2.c-title__bg-color-1,
  h2.c-title__bg-color-2 {
    font-size: 30px;
    margin-bottom: 30px;
  }
}
/*
　H2タイトル（ルビ付き/明朝）
================================*/
.c-title--ming_eng {
  width: 90%;
  margin: 0 auto 30px auto;
  text-align: center;
  line-height: 1.6;
  font-size: 28px;
  font-weight: 800;
  color: #000;
}

.c-title--ming_eng span {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-weight: bold;
  color: #333;
}

.c-title--ming_eng span::before,
.c-title--ming_eng span::after {
  content: "";
  width: 30px;
  height: 1px;
  background: #333;
}

.c-title--ming_eng span::before {
  margin-right: 10px;
}

.c-title--ming_eng span::after {
  margin-left: 10px;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-title--ming_eng {
    width: 100%;
    margin: 0 auto 45px auto;
    line-height: 1.5;
    font-size: 32px;
  }
  .c-title--ming_eng span {
    font-size: 18px;
  }
  .c-title--ming_eng span::before,
  .c-title--ming_eng span::after {
    width: 40px;
  }
  .c-title--ming_eng span::before {
    margin-right: 15px;
  }
  .c-title--ming_eng span::after {
    margin-left: 15px;
  }
}
/*
　H2タイトル（中央寄せ/ゴシック）
================================*/
.c-title--gothic {
  margin-bottom: 30px;
  text-align: center;
  font-size: 22px;
  font-weight: 800;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-title--gothic {
    margin-bottom: 40px;
    font-size: 30px;
  }
}
/*
　タイトル（フォントサイズlg）
================================*/
.c-title--large {
  margin-bottom: 30px;
  font-size: 25px;
  font-weight: 900;
}

.c-title--large span {
  font-size: 33px;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-title--large {
    font-size: 40px;
    text-align: center;
  }
  .c-title--large span {
    font-size: 55px;
  }
}
/*
　吹き出し
================================*/
.c-balloon__title {
  margin-bottom: 40px;
  text-align: center;
  font-size: 20px;
  font-weight: 900;
}

.c-balloon__list {
  display: flex;
  flex-wrap: wrap;
}

.c-balloon__list li {
  margin-bottom: 20px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  align-content: flex-start;
  width: 100%;
}

.c-balloon img {
  width: 15%;
}

.c-balloon p {
  font-size: 15px;
  font-weight: bold;
}

.c-balloon p span {
  background: linear-gradient(transparent 60%, #FFF799 60%);
}

.c-balloon__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-balloon__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-balloon__title {
    font-size: 35px;
    margin-bottom: 50px;
  }
  .c-balloon img {
    width: 13%;
  }
  .c-balloon__comment {
    font-size: 27px;
  }
  .c-balloon__list li {
    margin-bottom: 25px;
    width: 50%;
  }
  .c-balloon p {
    font-size: 20px;
  }
  .c-balloon__comment {
    padding: 10px 15px;
  }
}
/* iPhone5 */
@media screen and (max-width: 320px) {
  .c-balloon p {
    font-size: 11px;
  }
  .c-balloon img {
    width: 10%;
  }
}
/* ━━━━━━━━━━━━━━━━

 ■プロジェクト

━━━━━━━━━━━━━━━━ */
/*
　sub-visual
================================*/
.p-sub-visual {
  width: 100%;
  height: 150px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  position: relative;
  margin: 0 auto 50px auto;
  filter: saturate(200%);
}

.p-sub-visual.p-sub-visual__sell {
  background-image: url(../img/sell-title.jpg);
}

.p-sub-visual.p-sub-visual__buyback {
  background-image: url(../img/buyback-title.jpg);
}

.p-sub-visual.p-sub-visual__ninbai {
  background-image: url(../img/ninbai-title.jpg);
}

.p-sub-visual.p-sub-visual__akiya {
  background-image: url(../img/akiya-title.jpg);
}

.p-sub-visual.p-sub-visual__demolition {
  background-image: url(../img/demolition-title.jpg);
}

.p-sub-visual.p-sub-visual__accident {
  background-image: url(../img/accident-title.jpg);
}

.p-sub-visual.p-sub-visual__clean {
  background-image: url(../img/clean-title.jpg);
}

.p-sub-visual.p-sub-visual__reform {
  background-image: url(../img/reform-title.jpg);
}

.p-sub-visual.p-sub-visual__nursing {
  background-image: url(../img/nursing-title.jpg);
}

.p-sub-visual::before {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  content: "";
  background-color: rgba(29, 39, 49, 0.6);
}

.p-sub-visual h2 {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #FFF;
  line-height: 1.4;
  font-size: 35px;
  font-weight: 700;
}

/* PC */
@media screen and (min-width: 768px) {
  .p-sub-visual {
    height: 250px;
    margin: 0 auto 80px auto;
  }
  .p-sub-visual h2 {
    font-size: 60px;
  }
}
/* 
　よくある質問
======================= */
.p-accordion-menu {
  width: 100%;
  margin: 0 auto 30px auto;
}

.p-accordion-menu li {
  display: block;
  border-top: 1px solid #dcdcdc;
  border-right: 1px solid #dcdcdc;
  border-left: 1px solid #dcdcdc;
}

.p-accordion-menu li:last-child {
  border-bottom: 1px solid #dcdcdc;
}

.p-accordion-menu li .p-accordion-menu__check {
  display: none;
}

.p-accordion-menu li .p-accordion-menu__check:checked + .p-accordion-menu__question + .p-accordion-menu__answer {
  padding: 10px;
  height: auto;
  opacity: 1;
  visibility: visible;
}

.p-accordion-menu li .p-accordion-menu__check:checked + .p-accordion-menu__question::after {
  content: "－";
}

.p-accordion-menu li .p-accordion-menu__question {
  position: relative;
  display: block;
  padding: 15px 50px 15px 20px;
  font-size: 22px;
  font-weight: bold;
  color: #345887;
}

.p-accordion-menu li .p-accordion-menu__question::after {
  position: absolute;
  display: block;
  top: 50%;
  transform: translate(0, -50%);
  right: 0;
  padding: 15px;
  box-sizing: border-box;
  content: "＋";
}

.p-accordion-menu li .p-accordion-menu__answer {
  padding: 0 10px;
  height: 0;
  opacity: 0;
  visibility: hidden;
  border-top: 1px solid #dcdcdc;
  transition: 0.5s;
  background-color: #f5f5f5;
}

.p-accordion-menu li .p-accordion-menu__answer p {
  width: 95%;
  margin: 0 auto;
  font-size: 16px;
}

@media screen and (min-width: 768px) {
  .p-accordion-menu {
    margin-bottom: 50px;
  }
  .p-accordion-menu li .p-accordion-menu__question {
    padding-right: 70px;
    font-size: 22px;
    cursor: pointer;
  }
  .p-accordion-menu li .p-accordion-menu__question::after {
    padding: 20px;
  }
  .p-accordion-menu li .p-accordion-menu__answer p {
    width: 98%;
    font-size: 16px;
  }
}
/*
　物件情報
================================*/
.p-estate {
  padding-bottom: 80px;
}

.p-estate-list li,
.p-estate-list--gray li {
  position: relative;
  width: 100%;
  margin: 0 auto 50px auto;
  background-color: #ffffff;
}

/* テキスト部分の背景：白色 */
.p-estate-list li {
  background-color: #fff;
}

/* テキスト部分の背景：灰色 */
.p-estate-list--gray li {
  background-color: #f5f5f5;
}

.p-estate-list a,
.p-estate-list--gray a {
  display: block;
  text-decoration: none;
  color: #333;
}

.p-estate-list__image {
  position: relative;
}

.p-estate-list__image img {
  display: block;
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-estate-list__label {
  display: inline-block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 115px;
  padding: 10px 15px;
  line-height: 1.6;
  color: #ffffff;
  background-color: rgba(0, 0, 0, 0.5);
}

.p-estate-list__price {
  font-size: 18px;
  font-weight: bold;
}

.p-estate-list__textarea {
  padding: 20px;
  text-align: center;
  background-color: #F5F5F5;
}

.p-estate-list__name {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 900;
}

.p-estate-list__address {
  margin-bottom: 5px;
}

.p-estate-list__access {
  margin-bottom: 10px;
}

.p-estate-list__catchcopy {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-align: left;
}

.p-estate .c-button-container {
  padding-top: 0;
}

/* PC */
@media screen and (min-width: 768px) {
  .p-estate-list,
  .p-estate-list--gray {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0;
  }
  .p-estate-list::after,
  .p-estate-list--gray::after {
    content: "";
    display: block;
    width: 30%;
  }
  .p-estate-list li,
  .p-estate-list--gray li {
    width: 30%;
    margin: 0 0 50px 0;
  }
  .p-estate-list a:hover,
  .p-estate-list--gray a:hover {
    opacity: 0.8;
  }
  .p-estate-list__label {
    width: 95px;
    line-height: 1.4;
  }
  .p-estate-list__price {
    font-size: 20px;
  }
  .p-estate-list__name {
    font-size: 18px;
  }
  .p-estate-list__access,
  .p-estate-list__catchcopy {
    font-size: 16px;
  }
  .p-estate .c-button-container {
    padding: 0 0 80px 0;
  }
}
/*=================================

* 不動産売却ページ

=================================*/
/*
　横3つ並び枠
=================================*/
.p-sell__promise {
  width: 90%;
  margin: 0 auto 40px auto;
}

.p-sell__promise li {
  width: 100%;
  margin-bottom: 15px;
  border: 2px solid #582303;
  box-sizing: border-box;
  padding: 15px;
  border-radius: 8px;
}

.p-sell__promise li h3 {
  font-size: 23px;
  margin-bottom: 10px;
  color: #582303;
  text-align: center;
  line-height: 1.2;
  font-weight: 800;
}

/* 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;
  }
}
/*
　こだわりリスト
=================================*/
.c-checkbox-list.p-sell__commitment {
  margin-bottom: 50px;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-checkbox-list.p-sell__commitment {
    display: flex;
    justify-content: center;
  }
  .c-checkbox-list.p-sell__commitment li {
    font-size: 18px;
  }
}
/*
　流れ
=================================*/
.p-flow {
  margin: 0 auto 40px auto;
}

.p-flow__step {
  position: relative;
  width: 270px;
  background: #582303;
  padding: 10px 10px 0 10px;
  text-align: center;
  color: #FFF;
  box-sizing: border-box;
  margin: 0 auto;
}

.p-flow__step p,
.p-flow__step h3 {
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 2px;
}

.p-flow__step:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  bottom: -25px;
  left: 0;
  border-style: solid;
  border-color: #582303 transparent transparent transparent;
  border-width: 25px 135px 0 135px;
  z-index: 1;
}

.p-flow__text {
  width: 100%;
  padding: 40px 10px;
}

/* PC */
@media screen and (min-width: 768px) {
  .p-flow {
    margin-bottom: 80px;
  }
  .p-flow__block {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px 0;
    margin-bottom: 30px;
  }
  .p-flow__step {
    margin: 0;
  }
  .p-flow__text {
    width: calc(100% - 330px);
    padding: 0 0 0 60px;
    font-size: 16px;
  }
}
/*=================================

* 空家管理

=================================*/
/*
　空家の問題点
=================================*/
.p-akiya__caption {
  font-size: 23px;
  font-weight: 900;
  text-align: center;
  line-height: 1.3;
}

.p-akiya__caption strong {
  font-size: 35px;
}

.p-akiya__text {
  color: #582303;
  font-weight: bold;
  background: #f2b705;
  margin-bottom: 20px;
  padding: 10px;
  font-size: 20px;
}

.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 {
    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;
  }
}
/*
　家を貸し出すメリット
=================================*/
.c-checkbox-list.p-akiya__merit {
  margin-bottom: 50px;
}

.p-akiya__merit__text {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 600;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-checkbox-list.p-akiya__merit {
    display: flex;
    justify-content: center;
  }
  .c-checkbox-list.p-akiya__merit li {
    font-size: 22px;
    line-height: 1.7;
  }
  .p-akiya__merit__text {
    text-align: center;
    font-size: 28px;
  }
}
/*
　空き家サービスメニュー
=================================*/
.p-akiya-service {
  margin-bottom: 40px;
}

.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 {
  background: #fafafa;
  margin-bottom: 80px;
}

.p-point ul {
  width: 100%;
}

.p-point li {
  position: relative;
  border-bottom: 1px dotted #000;
  width: 100%;
}

.p-point li:last-child {
  border-bottom: none;
}

.p-point__list-cover {
  position: absolute;
  top: 0;
  left: 0;
  padding: 5px 0;
  width: 50px;
  background-color: #582303;
}

.p-point__list-cover p {
  color: #FFF;
  text-align: center;
  font-size: 32px;
  font-family: "Arial", "Noto Sans Japanese", sans-serif;
  font-weight: bold;
}

.p-point h3 {
  padding: 10px 0 10px 65px;
  font-size: 25px;
  font-weight: 500;
}

.p-point__list-text {
  padding: 10px 20px 20px 20px;
}

.p-point__list-text img {
  margin-bottom: 20px;
  text-align: center;
  max-width: 100%;
}

/* PC */
@media screen and (min-width: 768px) {
  .p-point ul {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 100px;
  }
  .p-point li {
    box-sizing: border-box;
    width: 50%;
    border-bottom: 1px dotted #000;
    border-right: 1px dotted #000;
  }
  .p-point li:nth-child(2n) {
    border-right: none;
  }
  .p-point__list-cover {
    padding: 0;
    width: 70px;
  }
  .p-point__list-cover p {
    font-size: 48px;
  }
  .p-point h3 {
    padding: 15px 0 15px 85px;
    font-size: 28px;
  }
  .p-point__list-text {
    padding: 20px;
  }
}
/* メリットタイトル
 ======================= */
h2.p-point__title {
  margin: 0 0 20px 0;
  background: #582303;
  padding: 10px;
  font-size: 25px;
  text-align: center;
  color: #FFF;
  font-weight: 800;
}

h2.p-point__title span {
  font-size: 28px;
  color: #fff100;
  font-family: "メイリオ", "Meiryo", "Arial", sans-serif;
}

/* PC */
@media screen and (min-width: 768px) {
  h2.p-point__title {
    font-size: 35px;
  }
  h2.p-point__title span {
    font-size: 55px;
  }
}
/* 不動産買取のメリット
 ======================= */
/* PC */
@media screen and (min-width: 768px) {
  .p-buyback__point {
    max-width: 1140px;
    margin: 0 auto;
  }
  .p-buyback__point .p-point li:nth-child(n+5) {
    border-bottom: none;
  }
}
/*
　よくある質問(不動産買取パート)
=================================*/
.p-ques-list {
  width: 90%;
  margin: 0 auto 70px auto;
}

.p-ques-list dt,
.p-ques-list dd {
  line-height: 1.7;
}

.p-ques-list dt {
  margin-bottom: 10px;
}

.p-ques-list dd {
  margin-bottom: 50px;
}

.p-ques-list dt p,
.p-ques-list dd p {
  width: calc(100% - 60px);
  padding: 8px;
  background-color: #FFFFFF;
  border: solid 1px #CCCCCC;
  display: inline-block;
  border-radius: 5px;
  font-size: 16px;
  margin-left: 10px;
  box-sizing: border-box;
}

.p-ques-list dt:before,
.p-ques-list dd:before {
  content: "Q";
  width: 35px;
  height: 35px;
  background-color: #582303;
  color: #FFF;
  font-weight: 500;
  border-radius: 50%;
  text-align: center;
  line-height: 35px;
  font-family: "Arial", sans-serif;
  font-size: 24px;
  display: inline-block;
  vertical-align: top;
}

.p-ques-list dd:before {
  content: "A";
  background-color: #CCC;
}

/* PC */
@media screen and (min-width: 768px) {
  .p-ques-list {
    width: 100%;
  }
  .p-ques-list dt:before,
  .p-ques-list dd:before {
    width: 45px;
    height: 45px;
    line-height: 45px;
    font-size: 27px;
  }
}
/*
　CTA バナー
=================================*/
.p-sell__contact {
  background: #582303;
  width: 100%;
  padding: 50px 0;
}

.p-sell__contact__intro {
  position: relative;
  color: #fff;
  width: 80%;
  max-width: 500px;
  margin: 0 auto 50px auto;
}

.p-sell__contact__text {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
}

.p-sell__contact__telno {
  font-size: 40px;
  font-weight: bold;
  font-family: "Arial", sans-serif;
  margin-bottom: 10px;
}

.p-sell__contact__telno a {
  color: #fff;
  text-decoration: none;
}

.p-sell__contact__telno i {
  font-size: 30px;
  margin-right: 10px;
}

.p-sell__contact__open {
  font-weight: bold;
  line-height: 1.5;
}

.p-sell__contact__open span {
  display: block;
  font-size: 25px;
}

/* ボタン */
.p-sell__contact__button {
  width: 80%;
  max-width: 500px;
  margin: 0 auto 30px auto;
}

.p-sell__contact__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;
}

.p-sell__contact__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);
}

.p-sell__contact__button-satei {
  margin-bottom: 50px;
}

.p-sell__contact__button a i {
  font-size: 25px;
  margin: -5px 10px 0 0;
  vertical-align: middle;
}

.p-sell__contact__button a:hover {
  opacity: 0.7;
}

.p-sell__contact__button-satei a {
  background: #B22222;
  color: #fff;
}

.p-sell__contact__button-inquiry a {
  background: #beaf87;
  color: #fff;
}

.p-sell__contact__button-satei a span {
  border: solid 2px #B22222;
}

.p-sell__contact__button-inquiry a span {
  border: solid 2px #beaf87;
}

/* PC */
@media screen and (min-width: 960px) {
  .p-sell__contact__intro {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    margin-bottom: 40px;
  }
  .p-sell__contact__block {
    width: 100%;
    align-items: center;
    margin-bottom: 0;
    box-sizing: border-box;
  }
  .p-sell__contact__text {
    font-size: 23px;
    margin: 0;
  }
  .p-sell__contact__text p {
    font-weight: bold;
    text-align: left;
  }
  .p-sell__contact__tel {
    width: 100%;
    margin: 0 auto 30px auto;
    display: flex;
    align-items: center;
  }
  .p-sell__contact__telno {
    font-size: 80px;
    margin-bottom: 0;
  }
  .p-sell__contact__telno i {
    font-size: 65px;
  }
  .p-sell__contact__open {
    font-size: 18px;
    margin-left: 25px;
  }
  /* ボタン */
  .p-sell__contact__button {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
  }
  .p-sell__contact__button-satei,
  .p-sell__contact__button-inquiry {
    width: 48%;
  }
  .p-sell__contact__button-satei {
    margin-bottom: 0;
  }
  .p-sell__contact__button a {
    padding: 40px 40px 30px 40px;
    font-size: 32px;
  }
  .p-sell__contact__button a i {
    font-size: 37px;
    margin: -7px 10px 0 0;
  }
  .p-sell__contact__button a span {
    font-size: 21px;
    top: -25px;
    border-width: 3px;
    border-radius: 25px;
  }
}
/* iPhone5 */
@media screen and (max-width: 320px) {
  .p-sell__contact__text {
    padding-left: 10px;
  }
  /* tel */
  .p-sell__contact__telno {
    font-size: 30px;
  }
}
/*=================================

* 任意売却

=================================*/
/*
　任意売却の流れ
================================*/
.p-ninbai__text {
  line-height: 1.6;
}

.p-ninbai-flow {
  width: 90%;
  margin: 0 auto 20px auto;
  display: flex;
  justify-content: space-between;
}

.p-ninbai-flow__step {
  width: 80%;
  display: inline-block;
  margin-bottom: 20px;
}

.p-ninbai-flow__period {
  width: 10%;
  display: flex;
  flex-direction: row-reverse;
  margin-bottom: 10px;
  padding-top: 30px;
}

.p-ninbai-flow__period img {
  height: 100%;
  max-height: 600px;
}

.p-ninbai-flow__step__image img {
  width: 65%;
  display: block;
  margin: 0 auto 10px auto;
}

.p-ninbai-flow__step__text.__last {
  padding: 0;
}

.p-ninbai-flow__step__text h3 {
  font-size: 17px;
  font-weight: bold;
  margin-bottom: 5px;
  color: #3282b8;
}

.p-ninbai-flow__step__text p {
  font-size: 15px;
  line-height: 1.3;
}

.p-ninbai-flow__bg-red {
  margin-bottom: 30px;
  background: #ba0611;
  padding: 10px;
  color: #FFF;
  text-align: center;
}

.p-ninbai-flow__bg-red p {
  font-size: 18px;
  font-weight: bold;
}

.p-ninbai-flow__bg-red p span {
  font-size: 35px;
  text-align: center;
  display: block;
}

.p-ninbai-flow__bg-red a {
  color: #FFF;
  text-decoration: none;
}

/* PC */
@media screen and (min-width: 768px) {
  .p-ninbai-flow {
    width: 100%;
  }
  .p-ninbai-flow__container {
    width: 90%;
  }
  .p-ninbai-flow__step {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1000px;
    margin-bottom: 60px;
  }
  .p-ninbai-flow__step__image {
    width: 200px;
  }
  .p-ninbai-flow__step__image img {
    width: 200px;
  }
  .p-ninbai-flow__step__text {
    width: 770px;
    margin-left: 30px;
  }
  .p-ninbai-flow__step-5 {
    margin-bottom: 0;
  }
  .p-ninbai-flow__step-5 .p-ninbai-flow__step__text {
    padding-top: 80px;
  }
  .p-ninbai-flow__step__text h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .p-ninbai-flow__step__text p {
    font-size: 16px;
  }
  .p-ninbai-flow__period {
    padding-top: 0;
  }
  .p-ninbai-flow__period img {
    max-height: 550px;
  }
  .p-ninbai-flow__bg-red p {
    font-size: 25px;
  }
  .p-ninbai-flow__bg-red p span {
    display: inline-block;
    margin-left: 10px;
  }
}
/*
　任意売却と競売との比較
================================*/
.p-ninbai-flow__hikaku {
  margin-bottom: 50px;
}

.p-ninbai-flow__hikaku__image img {
  width: 60%;
  margin: 0 auto 30px auto;
  display: block;
}

.p-ninbai-flow__hikaku__table-title {
  background: #0f4c75 !important;
  color: #FFF;
  font-size: 17px;
}

.p-ninbai-flow__hikaku__table th {
  font-weight: bold;
}

.p-ninbai-flow__hikaku__table th:nth-child(2) {
  color: #0f4c75;
}

.p-ninbai-flow__hikaku__table th,
.p-ninbai-flow__hikaku__table td {
  border: 1px solid #b4b4b4;
  padding: 7px 5px;
  text-align: center;
}

.p-ninbai-flow__hikaku__table td {
  vertical-align: middle;
  font-size: 15px;
}

.p-ninbai-flow__hikaku__table th:nth-child(1),
.p-ninbai-flow__hikaku__table td:nth-child(1) {
  background: #FFF;
}

.p-ninbai-flow__hikaku__table th:nth-child(2),
.p-ninbai-flow__hikaku__table td:nth-child(2) {
  background: #eef6fb;
}

.p-ninbai-flow__hikaku__table th:nth-child(3),
.p-ninbai-flow__hikaku__table td:nth-child(3) {
  background: #ececec;
}

/* PC */
@media screen and (min-width: 768px) {
  .p-ninbai-flow__hikaku {
    display: flex;
  }
  .p-ninbai-flow__hikaku__image {
    width: 200px;
    margin: 0;
  }
  .p-ninbai-flow__hikaku__table {
    width: calc(100% - 300px);
    margin: 0 0 0 auto;
  }
  .p-ninbai-flow__hikaku__image img {
    width: 100%;
  }
  .p-ninbai-flow__hikaku__table td {
    font-size: 16px;
  }
}
/*
　任意売却と競売との違い
================================*/
.p-ninbai-comparison {
  display: flex;
  justify-content: space-between;
  margin-bottom: 45px;
}

.p-ninbai-comparison h2 {
  margin-bottom: 20px;
  padding: 7px;
  color: #FFF;
  text-align: center;
}

.p-ninbai-comparison--left,
.p-ninbai-comparison--right {
  width: 48%;
  height: auto;
}

.p-ninbai-comparison--left h2 {
  background: #3282b8;
}

.p-ninbai-comparison--right h2 {
  background: #666;
}

.p-ninbai-comparison__body h3 {
  margin-bottom: 5px;
  height: 45px;
  font-size: 16px;
  font-weight: bold;
}

.p-ninbai-comparison__body h3:before {
  content: "■";
}

.p-ninbai-comparison__text {
  margin-bottom: 20px;
  border-bottom: 1px dotted #000;
  height: 110px;
}

/* PC */
@media screen and (min-width: 768px) {
  .p-ninbai-comparison {
    margin-bottom: 65px;
  }
  .p-ninbai-comparison__body h3 {
    height: 30px;
  }
  .p-ninbai-comparison__text {
    height: 60px;
  }
}
/*
　任意売却のメリット
================================*/
.p-ninbai-merit {
  width: 90%;
  margin: 0 auto 100px auto;
  border: 1px solid #3d0800;
  background: #f3e6e6;
  padding: 15px;
  box-sizing: border-box;
  border-radius: 8px;
}

.p-ninbai-merit li {
  margin-bottom: 15px;
}

.p-ninbai-merit:last-child {
  margin-bottom: 0px;
}

/* PC */
@media screen and (min-width: 768px) {
  .p-ninbai-merit {
    width: 700px;
    padding: 30px 60px;
  }
  .p-ninbai-merit li {
    font-size: 17px;
  }
}
/*=================================

* ブログ 署名

=================================*/
.blog__border {
  overflow: hidden;
}/*# sourceMappingURL=responsive.css.map */