@charset "UTF-8";

/* ━━━━━━━━━━━━━━━━

 ■初期化

━━━━━━━━━━━━━━━━ */
body {
  font-family: "Noto Sans JP", sans-serif;
  min-width: auto !important;
}

/* ━━━━━━━━━━━━━━━━

 ■ユーティリティ

━━━━━━━━━━━━━━━━ */
/**
 * Display
 */
/*==================================
* media
==================================*/
@media screen and (min-width: 768px) {
  .u-hidden-pc {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  .u-hidden-sp {
    display: none !important;
  }
}

/**
 * margin
 */
.u-mr-5 {
  margin-right: 5px !important;
}

.u-mr-10 {
  margin-right: 10px !important;
}

.u-ml-5 {
  margin-left: 5px !important;
}

.u-ml-10 {
  margin-left: 10px !important;
}

.u-mb-0 {
  margin-bottom: 0 !important;
}

.u-mb-5 {
  margin-bottom: 5px !important;
}

.u-mb-10 {
  margin-bottom: 10px !important;
}

.u-mb-15 {
  margin-bottom: 15px !important;
}

.u-mb-20 {
  margin-bottom: 20px !important;
}

.u-mb-30 {
  margin-bottom: 30px !important;
}

.u-mb-40 {
  margin-bottom: 40px !important;
}

.u-mb-50 {
  margin-bottom: 50px !important;
}

.u-mb-80 {
  margin-bottom: 80px !important;
}

/**
 * Padding
 */
.u-pt-0 {
  padding-top: 0 !important;
}

.u-pt-10 {
  padding-top: 10px !important;
}

.u-pt-50 {
  padding-top: 50px !important;
}

.u-pb-0 {
  padding-bottom: 0 !important;
}

.u-pb-50 {
  padding-bottom: 50px !important;
}

.u-pd-0 {
  padding: 0 !important;
}

/**
 * Text
 */
/*==================================
* color
==================================*/
.u-fc-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 #0c8422;
  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: #0c8422;
  font-weight: bold;
}

.c-button::after {
  background: #0c8422;
  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: #0c8422;
  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: #f27405;
  text-decoration: none;
  text-align: center;
  box-sizing: border-box;
}

.c-button--secondary,
.c-button--secondary:link,
.c-button--secondary:visited {
  text-decoration: none;
  color: #FFF;
}

.c-button--secondary:hover {
  background-color: #787878;
}

@media screen and (min-width: 768px) {
  .c-button--secondary {
    width: 35%;
    font-size: 17px;
  }
}
/*
　アウトラインボタン
================================*/
.c-button-outline {
  display: block;
  width: 95%;
  margin: 0 auto;
  padding: 15px 10px;
  text-align: center;
  font-weight: bold;
  border: 1.5px solid #111;
  box-sizing: border-box;
}

.c-button-outline,
.c-button-outline:link,
.c-button-outline:visited {
  text-decoration: none;
  color: #111;
}

.c-button-outline:hover {
  border-color: transparent;
  color: #FFF;
  background-color: #0c8422;
}

/* 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: 20px;
    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: #0c8422;
}

/* 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: #0c8422;
  margin-bottom: 30px;
}

.c-title-02--color-2 {
  color: #f27405;
}

/* 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: #0c8422;
  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: #0c8422;
}

.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: #0c8422;
}

.c-title-ruby-06 span {
  display: block;
  font-size: 16px;
  font-weight: 900;
  color: #333;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-title-ruby-06 {
    width: 100%;
    margin: 0 auto 45px auto;
  }
  .c-title-ruby-06 h2 {
    font-size: 34px;
  }
  .c-title-ruby-06 span {
    font-size: 20px;
  }
}
/*
　下線付き-01
================================*/
.c-title-border-01 {
  position: relative;
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
  width: 90%;
  margin: 0 auto 50px auto;
}

.c-title-border-01::after {
  content: "";
  display: block;
  position: absolute;
  width: 45px;
  left: calc(50% - 30px);
  bottom: -15px;
  border: 2px solid #0c8422;
  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: #0c8422;
  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: #0c8422 transparent transparent transparent;
}

.c-title-count-01 span {
  font-size: 50px;
  position: absolute;
  bottom: 0;
  right: -100px;
  display: block;
  padding-left: 16px;
  color: #0c8422;
  font-family: "Arial", "Noto Sans JP", sans-serif;
  font-weight: 700;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-title-count-01 {
    margin-right: 120px;
    margin-bottom: 60px;
    padding: 20px 0 10px 20px;
    font-size: 40px;
    font-size: clamp(33px, 3vw, 40px);
  }
  .c-title-count-01 span {
    font-size: 63px;
    top: 0;
    right: -120px;
    padding-top: 10px;
  }
}
/*
　番号付き-02
================================*/
.c-title-count-02 {
  display: flex;
  align-items: flex-start;
  line-height: 1;
  border-top: 3px solid #000;
  border-bottom: 3px solid #000;
  padding: 10px 0;
}

.c-title-count-02 p {
  font-size: clamp(35px, 9vw, 100px);
  font-weight: bold;
  color: #0c8422;
  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 #0c8422;
  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: #0c8422;
}

.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: #f27405;
}

.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: #f27405;
}

.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: clamp(17px, 2vw, 19px);
  font-weight: 900;
  color: #fff;
  line-height: 1.4;
}

.c-title-induction-01 span {
  font-size: 24px;
  font-weight: 900;
  color: #fff;
}

.c-title-induction-01__text--yellow {
  color: #FFED00 !important;
}

/* 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);
  }
}
/*
　付箋風-01
================================*/
.c-title-label-01 {
  font-size: 1.2rem;
  font-weight: bold;
  background-color: #f8f8f8;
  border-left: 15px solid #0c8422;
  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-icon-01 {
  position: relative;
  margin-bottom: 20px;
  padding-left: 27px;
  font-size: 20px;
  font-weight: bold;
  color: #333;
  box-sizing: border-box;
}

.c-title-icon-01::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  background: linear-gradient(135deg, #00947a 0%, #32a994 100%);
  width: 22px;
  height: 22px;
  border-radius: 50%;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-title-icon-01 {
    padding-left: 32px;
    font-size: 23px;
  }
  .c-title-icon-01::before {
    top: 7px;
    width: 24px;
    height: 24px;
  }
}
/*
　ページタイトル-11
================================*/
.c-page-title-11 {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 50px 0;
}

.c-page-title-11__inner {
  width: 95%;
  margin: 0 auto;
}

.c-page-title-11__title {
  margin-bottom: clamp(30px, 5vw, 50px);
}

.c-page-title-11__title span {
  display: block;
  color: #0c8422;
  font-weight: bold;
  font-size: clamp(16px, 1.5789473684vw, 18px);
  letter-spacing: 0.1em;
  letter-spacing: 0.01em;
}

.c-page-title-11__title h2 {
  font-size: clamp(25px, 3.5087719298vw, 40px);
  font-weight: bold;
  color: #333;
  margin: 0;
  line-height: 1.3;
}

.c-page-title-11__image {
  width: 100%;
  overflow: hidden;
  margin-top: clamp(30px, 5vw, 50px);
}

.c-page-title-11__image img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 3/2;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-page-title-11 {
    padding: 80px 0;
  }
  .c-page-title-11__inner {
    width: 100%;
    margin: 0 auto;
  }
  .c-page-title-11__image {
    border-radius: 20px;
  }
  .c-page-title-11__image img {
    aspect-ratio: 3/1;
  }
}
/*
　挨拶-04
================================*/
.c-greeting-04 {
  margin-bottom: 30px;
}

.c-greeting-04__text h3 {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(21px, 6vw, 36px);
  font-weight: 900;
  color: #0c8422;
}

.c-greeting-04__text p {
  margin-top: 35px;
  line-height: 2;
  font-size: 16px;
}

.c-greeting-04__img {
  width: 100%;
  margin-top: 20px;
}

.c-greeting-04__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.c-greeting-04__text__bottom {
  margin-bottom: 50px;
}

.c-greeting-04__text__bottom p {
  line-height: 2;
  font-size: 16px;
}

.c-greeting-04__text__name {
  text-align: right;
}

.c-greeting-04__profile-title {
  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;
}

.c-greeting-04__profile-title:after {
  position: absolute;
  bottom: -4px;
  left: 0;
  z-index: 2;
  content: "";
  width: 20%;
  height: 4px;
  background-color: #0c8422;
}

.c-greeting-04__profile table {
  width: 100%;
}

.c-greeting-04__profile th {
  display: block;
  font-weight: 700;
  color: #555;
  text-align: left;
  background-color: #f0f0f0;
  padding: 10px;
  border-top: 1px solid #888;
  border-bottom: 1px solid #888;
}

.c-greeting-04__profile td {
  display: block;
  padding: 10px;
  margin-bottom: 20px;
  line-height: 1.7;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-greeting-04 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  .c-greeting-04__text {
    width: 74%;
  }
  .c-greeting-04__text p {
    padding-right: 50px;
    font-size: 18px;
  }
  .c-greeting-04__img {
    width: 40%;
    margin-top: 0;
  }
  .c-greeting-04__text__bottom p {
    font-size: 18px;
  }
  .c-greeting-04__profile-title {
    max-width: 1140px;
    margin: 0 auto 20px auto;
    padding: 0 0 10px 0;
    font-size: 1.3rem;
  }
  .c-greeting-04__profile tr {
    border-bottom: 1px solid #999;
  }
  .c-greeting-04__profile th {
    width: 12%;
    display: inline-block;
    vertical-align: top;
    padding: 25px 0;
    border: none;
    background-color: transparent;
    color: #062f4f;
    font-size: 17px;
  }
  .c-greeting-04__profile th::before {
    content: "〇";
    margin-right: 5px;
  }
  .c-greeting-04__profile td {
    width: 85%;
    display: inline-block;
    vertical-align: text-bottom;
    padding: 25px 0;
    margin-bottom: 0;
    font-size: 17px;
  }
}
/*
　バナー（１カラム）-06
================================*/
.c-banner-col1-06 {
  position: relative;
  width: 95%;
  height: 350px;
  margin: 0 auto;
}

.c-banner-col1-06 a {
  display: block;
  text-decoration: none;
}

.c-banner-col1-06 a::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #6d311b;
  border-radius: 10px;
  opacity: 0.3;
}

.c-banner-col1-06__image img {
  display: block;
  width: 100%;
  height: 350px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}

.c-banner-col1-06__inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  padding: 20px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
}

.c-banner-col1-06__inner h3 {
  margin-bottom: 15px;
  font-size: 33px;
  font-weight: 900;
  text-align: center;
  color: #0c8422;
}

.c-banner-col1-06__inner p {
  line-height: 1.5;
  font-weight: bold;
  color: #333;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-banner-col1-06 {
    width: 93%;
    height: 600px;
  }
  .c-banner-col1-06__image img {
    height: 600px;
  }
  .c-banner-col1-06__inner {
    width: 35%;
    right: 0%;
    left: auto;
    transform: translate(-15%, -50%);
    padding: 50px 30px;
    background: #fff;
  }
  .c-banner-col1-06__inner h3 {
    margin-bottom: 20px;
    line-height: 1.2;
    font-size: clamp(30px, 4.3859649123vw, 50px);
  }
  .c-banner-col1-06__inner p {
    font-size: 20px;
  }
}
@media screen and (min-width: 1200px) {
  .c-banner-col1-06__inner {
    width: 25%;
    transform: translate(-45%, -50%);
  }
  .c-banner-col1-06__inner h3 {
    font-size: clamp(25px, 3.0701754386vw, 50px);
  }
}
/*
　パンくず
================================*/
.c-breadcrumbs {
  margin-top: 10px;
}

.c-breadcrumbs li {
  margin-right: 10px;
  font-size: 14px;
  display: inline;
}

.c-breadcrumbs li a {
  text-decoration: none;
}

.c-breadcrumbs li:first-child:before {
  content: "";
}

.c-breadcrumbs li:before {
  content: " > ";
  color: #888;
  margin-right: 10px;
}

.c-breadcrumbs li a span {
  display: inline;
}

@media screen and (min-width: 768px) {
  .c-breadcrumbs {
    margin-top: 20px;
  }
  .c-breadcrumbs li {
    font-size: 15px;
  }
}
/*
 フォーム-03
================================*/
.c-form-03__inner {
  background: #FFF;
  box-sizing: border-box;
  padding: 40px 20px;
  margin-bottom: 20px;
  border-radius: 10px;
}

.c-form-03 h2 {
  width: 90%;
  font-size: 1.4rem;
  font-weight: 900;
  text-align: center;
  color: #000;
  margin: 0 auto 30px auto;
}

.c-form-03__field-group {
  margin-bottom: 20px;
}

.c-form-03__field-group,
.c-form-03__field {
  width: 100%;
  height: auto;
}

.c-form-03__field {
  margin-bottom: 20px;
}

.c-form-03__field__label {
  display: inline-block;
  font-size: 17px;
  font-weight: 500;
  color: #2B8666;
  max-width: 90%;
  margin-right: 20px;
  margin-bottom: 10px;
}

.c-form-03__field-group-required {
  font-size: 15px;
  color: #c1272d;
}

.c-form-03__field__checkbox span,
.c-form-03__field__radio span {
  position: relative;
  display: inline-block;
  font-size: 17px;
  font-weight: 500;
  color: #333;
  cursor: pointer;
}

.c-form-03__field__input {
  display: inline-block;
  box-sizing: border-box;
  width: 100%;
  height: 50px;
  line-height: 50px;
  background: #fff;
  font-size: 17px;
  border: 2px solid #98BCAE;
  border-radius: 10px;
  text-align: left;
  padding: 0 15px;
}

.c-form-03__field__textarea {
  box-sizing: border-box;
  width: 100%;
  height: 150px;
  background: #fff;
  font-size: 17px;
  border: 2px solid #98BCAE;
  border-radius: 10px;
  padding: 10px 15px;
}

.c-form-03__field__select {
  display: block;
  width: 100%;
  height: 50px;
  line-height: 50px;
  background: #fff;
  font-size: 18px;
  text-align: left;
  padding: 0 15px;
  cursor: pointer;
  border: 2px solid #98BCAE;
  border-radius: 10px;
  box-sizing: border-box;
}

.c-form-03__field__select:invalid {
  color: #969696;
}

.c-form-03__field__select option {
  color: #333;
}

.c-form-03__field__detail p {
  margin: 6px 0 0;
  font-size: 15px;
  line-height: 1.5;
  color: #535353;
}

.c-form-03__field__detail p::before {
  content: "※";
}

.c-form-03__field__line {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.c-form-03__tel-list {
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
}

.c-form-03__tel-list li {
  font-size: 18px;
  line-height: 1.5;
  color: #333;
}

.c-form-03__field__line-label {
  display: inline-block;
  width: 90px;
  min-width: 90px;
  font-size: 16px;
  font-weight: 500;
  color: #333;
}

.c-form-03__field__line-control {
  flex: 1;
  min-width: 0;
}

.c-form-03__field__zip {
  max-width: 260px;
}

.c-form-03__field__detail input[name="form[property_zip]"],
.c-form-03__field__detail input[name="form[live_zip]"] {
  display: inline-block;
  width: 120px;
  margin: 0 6px 10px;
  vertical-align: middle;
}

.c-form-03__field__detail input[name="form[cstmr_tel_1]"],
.c-form-03__field__detail input[name="form[cstmr_tel_2]"],
.c-form-03__field__detail input[name="form[cstmr_tel_3]"] {
  display: block;
  width: 100%;
  margin-bottom: 8px;
}

.c-form-03__field__detail input[name="form[property_layout]"] {
  display: inline-block;
  width: calc(100% - 70px);
  margin-right: 8px;
  vertical-align: middle;
}

.c-form-03__field__detail input[name="form[property_city]"],
.c-form-03__field__detail input[name="form[property_address]"],
.c-form-03__field__detail input[name="form[live_city]"],
.c-form-03__field__detail input[name="form[live_address]"],
.c-form-03__field__detail input[name="form[live_building]"] {
  margin: 6px 0 10px;
}

.c-form-03__field__checkbox,
.c-form-03__field__radio {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: flex-start;
  gap: 1em;
}

.c-form-03__field__checkbox label {
  display: flex;
  align-items: center;
  -moz-column-gap: 5px;
       column-gap: 5px;
  width: -moz-fit-content;
  width: fit-content;
  line-height: 1;
  cursor: pointer;
  color: #535353;
}

.c-form-03__field__detail p::before {
  content: "※";
}

.c-form-03__field__checkbox:not(:last-of-type) {
  margin-bottom: 16px;
}

.c-form-03__field__checkbox label input {
  list-style: none;
  position: relative;
  top: 1px;
  width: clamp(21px, 2.9947916667vw, 23px);
  height: clamp(21px, 2.9947916667vw, 23px);
  border: 2px solid #98BCAE;
  border-radius: 3px;
  display: inline-block;
  width: 120px;
  margin: 0 6px 10px;
  vertical-align: middle;
  content: "";
  position: absolute;
  top: 2px;
  left: 3px;
  width: 12px;
  height: 6px;
  border-bottom: 2px solid #2B8666;
  border-left: 2px solid #2B8666;
  transform: rotate(-45deg);
}

.c-form-03__field__radio input {
  display: none;
}

.c-form-03__field__radio span {
  padding-left: clamp(35px, 5.2083333333vw, 40px);
}

.c-form-03__field__radio span::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: clamp(27px, 3.90625vw, 30px);
  height: clamp(27px, 3.90625vw, 30px);
  border: 1px solid #CCC;
  border-radius: 6px;
  background: #fff;
  border-radius: 50%;
  box-sizing: border-box;
}

.c-form-03__field__radio input:checked + span::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: clamp(27px, 3.90625vw, 30px);
  height: clamp(27px, 3.90625vw, 30px);
  border: 1px solid #CCC;
  border-radius: 6px;
  background: #2B8666;
  border-radius: 50%;
  transform: scale(0.7);
  box-sizing: border-box;
}

.c-form-03__submit-btn {
  display: block;
  width: 100%;
  background: #2B8666;
  border-radius: 10px;
  font-size: 20px;
  color: #fff;
  font-weight: bold;
  text-align: center;
  margin: 40px auto 15px auto;
  padding: 15px;
  border: none;
}

.c-form-03__submit-btn:hover {
  background: #c1272d;
}

/* カレンダー */
.c-form-03__date {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.3em;
  margin-bottom: 20px;
}

.c-form-03__date p {
  margin-bottom: 5px;
  font-size: 17px;
  font-weight: bold;
  color: #333;
}

.c-form-03__date__calendar {
  display: inline-block;
  padding: 0 15px;
  width: 100%;
  height: 50px;
  font-size: 18px;
  line-height: 50px;
  border: 2px solid #98BCAE;
  border-radius: 10px;
  box-sizing: border-box;
}

.c-form-03__date__time {
  display: block;
  width: 100%;
  height: 50px;
  line-height: 50px;
  background: #fff;
  font-size: 18px;
  text-align: left;
  padding: 0 15px;
  cursor: pointer;
  border: 2px solid #98BCAE;
  border-radius: 10px;
  box-sizing: border-box;
}

.c-form-03__date__time:invalid {
  color: #969696;
}

.c-form-03__date__time option {
  color: #333;
}

.c-form-03__note {
  width: 95%;
  margin: 0 auto;
}

.c-form-03__note p {
  margin-bottom: 5px;
  font-size: 15px;
  color: #333;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-form-03__inner {
    padding: 50px 80px 40px 80px;
  }
  .c-form-03 h2 {
    width: 100%;
    font-size: 2.5rem;
  }
  .c-form-03__field-group {
    margin-top: 10px;
  }
  .c-form-03__field {
    display: flex;
    margin-bottom: 30px;
  }
  .c-form-03__datebox-detail,
  .c-form-03__field__detail {
    width: 77%;
  }
  .c-form-03__field__checkbox span,
  .c-form-03__field__radio span {
    font-size: 19px;
  }
  .c-form-03__field__label {
    display: inline-block;
    font-size: 17px;
    font-weight: bold;
    width: 23%;
    min-width: 200px;
    margin-right: 20px;
    margin-bottom: 0;
  }
  .c-form-03__field__input {
    width: 77%;
    height: 55px;
    line-height: 55px;
    padding: 0 15px;
  }
  .c-form-03__field__textarea {
    width: 77%;
    height: 200px;
    padding: 10px 15px;
  }
  .c-form-03__field__checkbox,
  .c-form-03__field__radio {
    flex-direction: row;
    gap: 1em 2.5em;
  }
  .c-form-03__field__line {
    gap: 12px;
  }
  .c-form-03__field__line-label {
    width: 100px;
    min-width: 100px;
    font-size: 18px;
  }
  .c-form-03__field__zip {
    max-width: 300px;
  }
  .c-form-03__field__detail input[name="form[property_zip]"],
  .c-form-03__field__detail input[name="form[live_zip]"] {
    width: 110px;
  }
  .c-form-03__field__detail input[name="form[cstmr_tel_1]"],
  .c-form-03__field__detail input[name="form[cstmr_tel_2]"],
  .c-form-03__field__detail input[name="form[cstmr_tel_3]"] {
    display: inline-block;
    width: calc((100% - 48px) / 3);
    margin: 0 0 8px;
  }
  .c-form-03__field__detail input[name="form[property_layout]"] {
    width: min(100%, 430px);
  }
  .c-form-03__field__checkbox label input:checked::after {
    top: 3px;
    border-bottom: 3px solid #2B8666;
    border-left: 3px solid #2B8666;
  }
  .c-form-03__submit-btn {
    width: 35%;
  }
  /* カレンダー */
  .c-form-03__date {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.7em;
  }
  .c-form-03__date p {
    margin-bottom: 0;
  }
  .c-form-03__date__calendar,
  .c-form-03__date__time {
    width: 38%;
    height: 55px;
    line-height: 55px;
  }
  .c-form-03__note {
    width: 100%;
  }
  .c-form-03__note p {
    font-size: 16px;
  }
}
/*
　ブログリスト-02
================================*/
.c-blog-list-02 {
  margin-bottom: 40px;
}

.c-blog-list-02 li {
  max-width: 400px;
  margin: 0 auto 50px auto;
}

.c-blog-list-02 li:last-child {
  border-bottom: none;
}

.l-section--gray .c-blog-list-02 li,
.l-section--blue .c-blog-list-02 li,
.l-section--yellow .c-blog-list-02 li {
  background-color: #fff;
}

.c-blog-list-02 li a {
  display: block;
  text-decoration: none;
}

.c-blog-list-02__image img {
  display: block;
  width: 100%;
  max-width: 400px;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0 auto;
}

.c-blog-list-02__content {
  padding-top: 10px;
  padding-bottom: 10px;
}

.l-section--gray .c-blog-list-02__content,
.l-section--blue .c-blog-list-02__content,
.l-section--yellow .c-blog-list-02__content {
  padding-left: 8px;
  padding-right: 8px;
}

.c-blog-list-02__content__inner {
  padding-bottom: 10px;
}

.c-blog-list-02__content__date {
  color: #666;
}

.c-blog-list-02__content__title {
  display: inline-block;
  margin-bottom: 5px;
  font-size: 20px;
  font-weight: bold;
  color: #0c8422;
  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: #f27405;
}

/* 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;
  }
}
/*
　コンタクト（４カラム）-01
================================*/
.c-contact-col4-01__card {
  background: #fff;
  border-style: solid;
  border-width: 2px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.c-contact-col4-01__tel {
  border-color: #1f3c88;
}

.c-contact-col4-01__mail {
  border-color: #5893d4;
}

.c-contact-col4-01__line {
  border-color: #00b900;
}

.c-contact-col4-01__card__icon {
  text-align: center;
  padding: 8px 0;
}

.c-contact-col4-01__tel .c-contact-col4-01__card__icon {
  background: #1f3c88;
}

.c-contact-col4-01__mail .c-contact-col4-01__card__icon {
  background: #5893d4;
}

.c-contact-col4-01__line .c-contact-col4-01__card__icon {
  background: #00b900;
}

.c-contact-col4-01__card__icon img {
  width: 50px;
}

.c-contact-col4-01__card__text {
  padding: 12px 12px 0;
}

.c-contact-col4-01__tel .c-contact-col4-01__card__text__title {
  color: #1f3c88;
}

.c-contact-col4-01__mail .c-contact-col4-01__card__text__title {
  color: #5893d4;
}

.c-contact-col4-01__line .c-contact-col4-01__card__text__title {
  color: #00b900;
}

.c-contact-col4-01__card__text__title {
  font-weight: 900;
  font-size: clamp(18px, 1.7543859649vw, 23px);
  text-align: center;
}

.c-contact-col4-01__card__text__title span {
  font-size: clamp(22px, 2.1929824561vw, 28px);
}

.c-contact-col4-01__card__text__description {
  padding-top: 6px;
  font-weight: 500;
  font-size: 16px;
}

.c-contact-col4-01__card a {
  display: block;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  margin: 8px 8px 14px;
  padding: 6px 0;
}

.c-contact-col4-01__card a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.c-contact-col4-01__card a:hover {
  opacity: 0.6;
}

.c-contact-col4-01__tel a {
  background: #1f3c88;
  padding: 0;
  font-size: 24px;
}

.c-contact-col4-01__mail a {
  background: #5893d4;
}

.c-contact-col4-01__line a {
  background: #00b900;
}

.c-contact-col4-01__tel a i {
  margin-right: 4px;
}

.c-contact-col4-01 ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 18px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.c-contact-col4-01__shop {
  margin-top: 16px;
}

.c-contact-col4-01__shop p {
  font-weight: bold;
  font-size: 16px;
  text-align: center;
}

.c-contact-col4-01__note {
  font-weight: bold;
  font-size: 16px;
  text-align: center;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-contact-col4-01 ul {
    gap: 28px;
  }
  .c-contact-col4-01__card__icon {
    padding: 20px 0;
  }
  .c-contact-col4-01__card__icon img {
    width: 65px;
  }
  .c-contact-col4-01__card a {
    width: 90%;
    margin: 12px auto;
  }
  .c-contact-col4-01__tel a {
    font-size: clamp(16px, 2.1052631579vw, 24px);
    line-height: 1.5;
  }
  .c-contact-col4-01__mail a,
  .c-contact-col4-01__line a {
    font-size: clamp(12px, 1.4035087719vw, 16px);
  }
  .c-contact-col4-01__shop {
    display: flex;
    justify-content: center;
    margin-top: 32px;
  }
  .c-contact-col4-01__shop p:first-of-type {
    margin-right: 20px;
  }
  .c-contact-col4-01__card__text {
    min-height: 120px;
  }
}
/*
　概要-05
================================*/
.c-about-05 {
  position: relative;
}

.c-about-05__image {
  margin-bottom: 10px;
}

.c-about-05__image img {
  width: 100%;
  height: 235px;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-about-05__text {
  width: 90%;
  margin: 0 auto;
}

.c-about-05__text h2 {
  font-size: 55px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #333;
  font-family: "Century Gothic", "Arial", sans-serif;
  line-height: 1;
}

.c-about-05__text h2 span {
  margin-right: 10px;
  color: #fff;
  -webkit-text-stroke: 2px #333;
}

.c-about-05__text h3 {
  font-size: 25px;
  margin-bottom: 15px;
  font-weight: bold;
  font-family: "Noto Serif JP", serif;
}

.c-about-05__text p {
  line-height: 1.8;
  font-weight: 500;
  margin-bottom: 15px;
}

.c-about-05__text p span {
  font-weight: bold;
  color: #f27405;
}

.c-about-05__text p a {
  color: #0c8422;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-about-05 {
    max-width: 1300px;
    margin: 0 auto;
  }
  .c-about-05__inner {
    display: flex;
  }
  .c-about-05__image {
    position: relative;
    width: 40%;
    height: 500px;
    flex: 1;
    margin-left: calc(50% - 50vw);
  }
  .c-about-05__image img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
  }
  .c-about-05__text {
    position: relative;
    width: 60%;
    padding-left: 60px;
    box-sizing: border-box;
  }
  .c-about-05__text h2 {
    position: absolute;
    top: -50px;
    left: -50px;
    font-size: 110px;
    font-size: clamp(95px, 4.3vw, 110px);
  }
  .c-about-05__text h3 {
    font-size: clamp(21px, 2.5vw, 30px);
    margin-bottom: clamp(20px, 2vw, 30px);
    padding-top: 75px;
  }
  .c-about-05__text p {
    font-size: clamp(15px, 1.8vw, 17px);
  }
}
/*
　会社概要-02
================================*/
.c-company-02__detail {
  width: 95%;
  max-width: 1140px;
  margin: 0 auto;
}

.c-company-02__detail__list {
  display: flex;
  align-items: flex-start;
  padding: 10px 0;
}

.c-company-02__detail__list:nth-child(even) {
  background: #FFF;
}

.c-company-02__detail__list dt {
  width: 25%;
  padding-left: 2%;
  box-sizing: border-box;
}

.c-company-02__detail__list dd {
  width: 75%;
  padding-right: 2%;
  box-sizing: border-box;
}

.c-company-02__detail__list dt,
.c-company-02__detail__list dd {
  font-size: 14px;
}

.c-company-02__detail__feature {
  display: flex;
  flex-wrap: wrap;
}

.c-company-02__detail__feature li {
  margin: 0 5px 5px 0;
  padding: 2px 5px;
  font-size: 14px;
  background-color: #0c8422;
  border-radius: 3px;
  color: #FFF;
}

.c-company-02__detail__data-type {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.c-company-02__detail__data-type--buy span,
.c-company-02__detail__data-type--rent span {
  margin-right: 5px;
  padding: 2px 5px;
  font-size: 14px;
  background-color: #cc0000;
  border-radius: 3px;
  color: #FFF;
}

.c-company-02__detail__data-type--rent span {
  background-color: #0066cc;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-company-02__detail__list {
    padding: 20px 0;
  }
  .c-company-02__detail__list dt {
    width: 19%;
  }
  .c-company-02__detail__list dd {
    width: 81%;
  }
  .c-company-02__detail__list dt,
  .c-company-02__detail__list dd {
    font-size: 16px;
  }
  .c-company-02__detail__feature li {
    margin: 0 7px 5px 0;
    padding: 2px 10px 4px 10px;
    font-size: 16px;
  }
  .c-company-02__detail__data-type--buy span,
  .c-company-02__detail__data-type--rent span {
    margin-right: 7px;
    padding: 2px 10px 4px 10px;
    font-size: 16px;
  }
}
/*
　バナー（2カラム）-05
================================*/
.c-banner-col2-05 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 20px;
  width: 95%;
  margin: 0 auto;
}

.c-banner-col2-05 li {
  width: 100%;
  text-align: center;
}

.c-banner-col2-05 li a {
  position: relative;
  display: block;
  width: 100%;
  color: #fff;
}

.c-banner-col2-05 dl {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  height: 100%;
  text-align: center;
  z-index: 1;
}

.c-banner-col2-05 dt {
  height: 29.4117647059%;
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  font-weight: bold;
  font-family: "Arial", "Century Gothic", "Noto Sans JP", sans-serif;
}

.c-banner-col2-05__title {
  font-size: 1.1rem;
  font-weight: bold;
  line-height: 1.5;
  height: 47.0588235294%;
}

.c-banner-col2-05 dd.c-banner-col2-05__arrow {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 35px;
  height: 35px;
  display: block;
  background-color: #0c8422;
  transition: background-color 0.4s;
}

.c-banner-col2-05 a:hover .c-banner-col2-05__arrow {
  background-color: #fff;
}

.c-banner-col2-05 dd.c-banner-col2-05__arrow span {
  display: block;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -12px 0 0 -5px;
}

.c-banner-col2-05 a:hover .c-banner-col2-05__arrow span {
  color: #0c8422;
}

.c-banner-col2-05__image {
  position: relative;
  display: block;
  height: 170px;
  overflow: hidden;
  z-index: 0;
}

.c-banner-col2-05__image:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #222;
  z-index: 1;
  opacity: 0.5;
}

.c-banner-col2-05 a:hover .c-banner-col2-05__image:before {
  opacity: 0.7;
}

.c-banner-col2-05__image img {
  display: block;
  position: relative;
  transition: 0.2s ease-in-out;
  will-change: transform;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
}

.c-banner-col2-05 a:hover .c-banner-col2-05__image img {
  transform: scale(1.025);
}

/* PC */
@media screen and (min-width: 768px) {
  .c-banner-col2-05 {
    width: 100%;
  }
  .c-banner-col2-05 li {
    width: 48%;
  }
  .c-banner-col2-05 dt {
    font-size: clamp(25px, 3.0701754386vw, 35px);
    height: 33.3333333333%;
  }
  .c-banner-col2-05__title {
    font-size: 1.3rem;
    height: 33.3333333333%;
  }
  .c-banner-col2-05 dd.c-banner-col2-05__arrow {
    width: 45px;
    height: 45px;
  }
  .c-banner-col2-05__image {
    height: 240px;
  }
}
/*
　お悩み-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: #b22222;
  font-weight: 900;
}

.c-trouble-06__note {
  margin-top: 30px;
  font-size: clamp(15px, 2.34375vw, 18px);
  text-align: center;
  color: #000;
  font-weight: bold;
}

@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);
  }
}
@media screen and (min-width: 1000px) {
  .c-trouble-06 li {
    padding: 16px 20px 16px 50px;
  }
}
/*
　ルビ付き-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: #0c8422;
}

.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-accordion-menu-01 {
  width: 100%;
  margin: 0 auto 30px auto;
}

.c-accordion-menu-01 li {
  display: block;
  background: #fff;
  border-top: 1px solid #dcdcdc;
  border-right: 1px solid #dcdcdc;
  border-left: 1px solid #dcdcdc;
}

.c-accordion-menu-01 li:last-child {
  border-bottom: 1px solid #dcdcdc;
}

.c-accordion-menu-01__check {
  display: none;
}

.c-accordion-menu-01__check:checked + .c-accordion-menu-01__question + .c-accordion-menu-01__answer {
  padding: 10px;
  height: auto;
  opacity: 1;
  visibility: visible;
}

.c-accordion-menu-01__check:checked + .c-accordion-menu-01__question::after {
  content: "－";
}

.c-accordion-menu-01__question {
  position: relative;
  display: block;
  padding: 15px 50px 15px 20px;
  font-size: 18px;
  font-weight: bold;
  color: #345887;
  background: #fff;
}

.c-accordion-menu-01__question::after {
  position: absolute;
  display: block;
  top: 50%;
  transform: translate(0, -50%);
  right: 0;
  padding: 15px;
  box-sizing: border-box;
  content: "＋";
}

.c-accordion-menu-01__answer {
  padding: 0 10px;
  height: 0;
  opacity: 0;
  visibility: hidden;
  border-top: 1px solid #dcdcdc;
  transition: 0.5s;
  background-color: #f5f5f5;
}

.c-accordion-menu-01__answer p {
  width: 95%;
  margin: 0 auto;
  line-height: 1.4;
  font-size: 16px;
  word-break: break-word;
}

@media screen and (min-width: 768px) {
  .c-accordion-menu-01 {
    margin-bottom: 50px;
  }
  .c-accordion-menu-01__question {
    padding-right: 70px;
    font-size: 22px;
    cursor: pointer;
  }
  .c-accordion-menu-01__question::after {
    padding: 20px;
  }
  .c-accordion-menu-01__answer p {
    width: 98%;
    line-height: 1.6;
  }
}
/*
　ポイント（３カラム）-09
================================*/
.c-point-col3-09 {
  position: relative;
  margin-bottom: 20px;
  padding: 60px 0 100px;
}

.c-point-col3-09:before {
  content: "";
  width: 100%;
  height: 100%;
  background: #f4f4f4;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
}

.c-point-col3-09:after {
  content: "";
  width: 100%;
  height: 200px;
  background: url(../img/point-col3-09__bg.jpg) center center no-repeat #333;
  background-size: cover;
  background-blend-mode: overlay;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.c-point-col3-09__inner {
  width: 90%;
  margin: 0 auto;
}

.c-point-col3-09__title {
  position: relative;
}

.c-point-col3-09__title:before {
  display: inline-block;
  content: "Reason";
  color: #d11b0b;
  border-top: 1px solid #d11b0b;
  font-size: 1.3rem;
  font-weight: bold;
  line-height: 2.5;
}

.c-point-col3-09__title p {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.6;
  color: #3a5369;
}

.c-point-col3-09__title h2 {
  font-size: 1.5rem;
  margin-top: 10px;
  font-weight: 900;
  line-height: 1.2;
}

.c-point-col3-09__card-list {
  position: relative;
  margin-top: 40px;
}

.c-point-col3-09__card {
  width: 100%;
  margin-bottom: 40px;
  background: #fff;
  border-radius: 8px 8px 0px 0px;
}

.c-point-col3-09__card h3 {
  padding: 10px;
  background: #0c8422;
  font-size: 1.3rem;
  font-weight: bold;
  color: #fff;
  text-align: center;
  border-radius: 8px 8px 0px 0px;
  position: relative;
}

.c-point-col3-09__card h3:before {
  content: "";
  border-style: solid;
  border-width: 14px 10px 0 10px;
  border-color: #0c8422 transparent transparent transparent;
  position: absolute;
  left: 50%;
  bottom: -14px;
  margin-left: -10px;
}

.c-point-col3-09__card img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-point-col3-09__card p {
  padding: 20px;
  line-height: 1.6;
}

/* PC */
@media screen and (min-width: 769px) {
  .c-point-col3-09 {
    margin-bottom: 80px;
    padding: 90px 0 140px;
  }
  .c-point-col3-09:after {
    height: 45%;
  }
  .c-point-col3-09__inner {
    width: 100%;
    max-width: 1200px;
  }
  .c-point-col3-09__title {
    padding-left: 120px;
  }
  .c-point-col3-09__title:before {
    position: absolute;
    top: 20px;
    left: 0;
  }
  .c-point-col3-09__title p {
    font-size: 1.6rem;
    line-height: 1.8;
  }
  .c-point-col3-09__title h2 {
    font-size: 2.8rem;
    margin-top: 0;
  }
  .c-point-col3-09__card-list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-bottom: 100px;
  }
  .c-point-col3-09__card {
    width: 30.5%;
  }
  .c-point-col3-09__card p {
    padding: 20px 25px;
  }
}
/*
　コンタクト-17
================================*/
.c-contact-17 {
  width: 90%;
  margin: 0 auto;
}

.c-contact-17__title {
  margin-bottom: 30px;
  font-size: 1.6rem;
  font-weight: 900;
  text-align: center;
  color: #000;
}

.c-contact-17__inner {
  margin-bottom: 30px;
  text-align: center;
}

.c-contact-17__button {
  margin-bottom: 30px;
}

.c-contact-17__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 #f27405;
  border-radius: 30px;
  line-height: 1;
  font-weight: 700;
}

.c-contact-17__button-balloon span {
  color: #f27405;
  font-size: 1.1rem;
}

.c-contact-17__button__tel .c-contact-17__button-balloon {
  border: 3px solid #B22222;
}

.c-contact-17__button__tel .c-contact-17__button-balloon span {
  color: #B22222;
}

.c-contact-17__button__line .c-contact-17__button-balloon {
  border: 3px solid #00b900;
}

.c-contact-17__button__line .c-contact-17__button-balloon span {
  color: #00b900;
}

.c-contact-17__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-17__button a {
  position: relative;
  display: block;
  padding: 25px 20px 20px 20px;
  border-radius: 60px;
  text-decoration: none;
  color: #fff;
  font-size: clamp(20px, 3.2552083333vw, 25px);
  text-align: center;
  background: #f27405;
  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-17__button a:hover {
  background: #787878;
}

.c-contact-17__button__tel a {
  background: #B22222;
  font-size: clamp(27px, 4.1666666667vw, 32px);
  font-family: "Arial", "Century Gothic", sans-serif;
  letter-spacing: 0.05em;
  line-height: 1.1;
}

.c-contact-17__button__line a {
  background: #00b900;
  font-size: clamp(20px, 3.2552083333vw, 25px);
  letter-spacing: 0.1em;
  line-height: 1.1;
}

.c-contact-17__button a::before {
  content: "";
  position: absolute;
  top: 52%;
  left: 5.5%;
  transform: translateY(-50%);
  display: block;
  width: 30px;
  height: 30px;
}

.c-contact-17__button__mail a::before {
  content: "\f003";
  font-family: "FontAwesome";
  font-weight: 600;
  color: #fff;
  font-size: 30px;
}

.c-contact-17__button__tel a::before {
  background: url(../img/contact-17__tel.svg) no-repeat center/contain !important;
}

.c-contact-17__button__line a::before {
  background: url(../img/contact-17__line.svg) no-repeat center/contain !important;
}

.c-contact-17__button a::after {
  content: "";
  position: absolute;
  top: 52%;
  right: 6%;
  transform: translateY(-50%);
  display: block;
  width: 10px;
  height: 15px;
  background: url(../img/contact-17__arrow.svg) no-repeat center/contain;
  width: 10px;
  height: 15px;
}

.c-contact-17__time {
  text-align: center;
  font-weight: 500;
}

/* スマホ */
@media screen and (max-width: 400px) {
  .c-contact-17__button a::before {
    left: 4%;
  }
}
/* PC */
@media screen and (min-width: 1000px) {
  .c-contact-17 {
    width: 95%;
    max-width: 1250px;
  }
  .c-contact-17__title {
    font-size: 2.5rem;
  }
  .c-contact-17__inner {
    display: flex;
    justify-content: space-between;
  }
  .c-contact-17__button {
    margin-bottom: 0;
    width: 32%;
  }
  .c-contact-17__button-balloon {
    letter-spacing: 0.05em;
  }
  .c-contact-17__button a {
    padding: 28px 10px 26px 30px;
    font-size: clamp(20px, 1.76vw, 24px);
    line-height: 40px;
  }
  .c-contact-17__button__tel a {
    font-size: clamp(30px, 2.8vw, 35px);
  }
  .c-contact-17__button a::before {
    top: 50%;
    width: clamp(22px, 2.8vw, 35px);
    height: clamp(22px, 2.8vw, 35px);
  }
  .c-contact-17__button:first-child a:before {
    left: 8.5%;
  }
  .c-contact-17__button:nth-child(2) a:before {
    left: 7.5%;
  }
  .c-contact-17__button:nth-child(3) a:before {
    left: 7.5%;
  }
  .c-contact-17__button a::after {
    width: 16px;
    height: 20px;
    right: 3%;
  }
  .c-contact-17__time {
    font-size: 18px;
  }
}
/*
　メニュー-11
=================================*/
.c-menu-11 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 95%;
  margin: 0 auto;
}

.c-menu-11 li {
  width: 48%;
  margin-bottom: 25px;
  text-align: center;
}

.c-menu-11 li a {
  position: relative;
  display: block;
  width: 100%;
  color: #fff;
}

.c-menu-11 dl {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  height: 100%;
  text-align: center;
  z-index: 1;
}

.c-menu-11 dt {
  height: 17.6470588235%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 25px;
  font-weight: bold;
  font-family: "Arial", "Century Gothic", "Noto Sans JP", sans-serif;
}

.c-menu-11__title {
  font-size: 1.1rem;
  font-weight: bold;
  line-height: 1.5;
  height: 41.1764705882%;
}

.c-menu-11 dd.c-menu-11__arrow {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 35px;
  height: 35px;
  display: block;
  background-color: #0c8422;
  transition: background-color 0.4s;
}

.c-menu-11 a:hover .c-menu-11__arrow {
  background-color: #fff;
}

.c-menu-11 dd.c-menu-11__arrow span {
  display: block;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -12px 0 0 -5px;
}

.c-menu-11 a:hover .c-menu-11__arrow span {
  color: #0c8422;
}

.c-menu-11__image {
  position: relative;
  display: block;
  height: 170px;
  overflow: hidden;
  z-index: 0;
}

.c-menu-11__image:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #6d311b;
  z-index: 1;
  opacity: 0.3;
}

.c-menu-11 a:hover .c-menu-11__image:before {
  opacity: 0.7;
}

.c-menu-11__image img {
  display: block;
  position: relative;
  transition: 0.2s ease-in-out;
  will-change: transform;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
}

.c-menu-11 a:hover .c-menu-11__image img {
  transform: scale(1.025);
}

/* PC */
@media screen and (min-width: 768px) {
  .c-menu-11 {
    width: 100%;
  }
  .c-menu-11 li {
    width: 31%;
  }
  .c-menu-11 dt {
    height: 21.2121212121%;
    font-size: 45px;
  }
  .c-menu-11__title {
    font-size: 1.3rem;
    height: 33.3333333333%;
  }
  .c-menu-11 dd.c-menu-11__arrow {
    width: 45px;
    height: 45px;
  }
  .c-menu-11__image {
    height: 330px;
  }
}
/*
　会社概要-10
================================*/
.c-company-10-title {
  width: 95%;
  margin: 0 auto 40px auto;
}

.c-company-10-title h2 {
  position: relative;
  margin-bottom: 30px;
  padding: 50px 0 0 0;
  font-size: 1.2rem;
  font-weight: 900;
  font-family: "Noto Serif JP", serif;
  line-height: 1.4;
}

.c-company-10-title h2 span {
  display: block;
  margin-bottom: 15px;
  font-size: 1.8rem;
  font-weight: 900;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.4;
}

.c-company-10-title h2::before {
  content: attr(data-en);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  color: #a9aabe;
  opacity: 0.2;
  font-size: 4rem;
  font-weight: normal;
  font-style: italic;
  font-family: Times, "Times New Roman", "Noto Serif JP", serif;
  z-index: -1;
}

.c-company-10-title h2 em {
  display: inline-block;
  font-size: 2.2rem;
  font-style: normal;
  font-weight: 900;
  color: #e60012;
}

.c-company-10 {
  width: 100%;
}

.c-company-10 ul {
  margin-bottom: 50px;
}

.c-company-10 ul li {
  margin-bottom: 50px;
}

.c-company-10 img {
  width: 100%;
}

.c-company-10__info__shop img {
  width: 45px;
  margin-right: 10px;
}

.c-company-10__info__shop h3 {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  margin-left: auto;
  font-size: 24px;
  font-weight: bold;
  color: #000;
}

.c-company-10__image img {
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 25px;
}

.c-company-10__info dl > div {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #DCDCDC;
  margin-bottom: 10px;
  padding-bottom: 10px;
}

.c-company-10__info dt {
  width: 20%;
  font-weight: bold;
  color: #555;
}

.c-company-10__info i {
  margin-right: 5px;
}

.c-company-10__info dd {
  width: 80%;
}

.c-company-10__info dd a {
  text-decoration: none;
  color: #333;
  font-size: clamp(20px, 2.9947916667vw, 23px);
  font-weight: bold;
  font-family: "Arial", "Century Gothic", sans-serif;
}

.c-company-10__info__free-dial a {
  position: relative;
}

.c-company-10__info dd i {
  color: #333;
}

.c-company-10__info .button__line {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px 0 30px 0;
  padding: 15px 0;
  font-size: 20px;
  text-decoration: none !important;
  background-color: #00b900;
  box-shadow: 0 4px 0 0 #048904;
  border-radius: 5px;
}

.c-company-10__info .button__line img {
  position: relative;
  width: clamp(30px, 3.90625vw, 30px);
  height: auto;
  top: 1px;
  margin-right: 10px;
}

.c-company-10__info .button__line span {
  color: #fff;
  font-weight: bold;
}

.c-company-10__map iframe {
  width: 100%;
  height: 250px;
}

.c-company-10__note {
  display: flex;
  justify-content: center;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 1.6px;
}

/* PC */
@media screen and (min-width: 950px) {
  .c-company-10-title {
    margin-bottom: 60px;
  }
  .c-company-10-title h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    padding: 70px 0 0 0;
    text-align: center;
    line-height: 1.4;
  }
  .c-company-10-title h2 span {
    margin-bottom: 25px;
    font-size: 3rem;
  }
  .c-company-10-title h2::before {
    top: -23px;
    font-size: 7rem;
    letter-spacing: -3px;
  }
  .c-company-10-title h2 em {
    font-size: 3.3rem;
  }
  .c-company-10-title p {
    font-size: 18px;
    text-align: center;
    line-height: 1.7;
  }
  .c-company-10 ul {
    display: flex;
    justify-content: space-between;
  }
  .c-company-10 ul li {
    width: 47%;
    margin-bottom: 0;
  }
  .c-company-10__info__shop img {
    width: 10%;
    margin-right: 10px;
  }
  .c-company-10__info__shop h3 {
    font-size: clamp(20px, 2.1052631579vw, 24px);
  }
  .c-company-10__detail {
    min-height: 200px;
    display: flex;
    justify-content: space-between;
  }
  .c-company-10__info {
    width: 48%;
  }
  .c-company-10__info dl > div {
    flex-direction: column;
    align-items: baseline;
  }
  .c-company-10__info dt {
    width: 30%;
    margin-right: 15px;
  }
  .c-company-10__info dd {
    width: auto;
  }
  .c-company-10__info dd a {
    font-size: 22px;
    font-size: clamp(18px, 1.9298245614vw, 22px);
  }
  .c-company-10__info .button__line {
    margin: 20px 0 0 0;
    padding: 10px 0;
  }
  .c-company-10__info .button__line img {
    flex: none;
    top: 2px;
  }
  .c-company-10__info .button__line:hover {
    opacity: 0.7;
  }
  .c-company-10__map {
    width: 47%;
  }
  .c-company-10__map iframe {
    height: 100%;
  }
  .c-company-10__note {
    font-size: clamp(16px, 1.5789473684vw, 18px);
  }
}
/*
　ページリンク-06
================================*/
.c-page-link-06 {
  width: 95%;
  margin: 0 auto;
}

.c-page-link-06 h2 {
  margin-bottom: 20px;
  line-height: 1.4;
  font-family: "Noto Serif JP", serif;
  font-size: 25px;
  font-weight: 700;
  color: #111;
}

.c-page-link-06__image {
  display: block;
  width: 100%;
  margin-bottom: 20px;
}

.c-page-link-06__image img {
  width: 100%;
  height: auto;
}

.c-page-link-06__text {
  display: block;
  width: 100%;
  padding: 0 5px;
  box-sizing: border-box;
}

.c-page-link-06__text h3 {
  margin: 0 0 20px 0;
  padding: 0;
  font-size: 1.4rem !important;
  font-weight: bold;
  color: #0c8422;
}

.c-page-link-06__text p {
  line-height: 1.6;
  font-size: 16px;
}

.c-page-link-06__text p span {
  color: #C00000;
  font-weight: bold;
}

.c-page-link-06__btn--outline {
  display: block;
  width: 90%;
  margin: 0 auto;
  padding: 15px 10px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  border: 1.5px solid #111;
}

.c-page-link-06__btn--outline,
.c-page-link-06__btn--outline:link,
.c-page-link-06__btn--outline:visited {
  text-decoration: none;
  color: #111;
}

/* PC */
@media screen and (min-width: 900px) {
  .c-page-link-06 {
    position: relative;
    width: 100%;
    min-height: 700px;
  }
  .c-page-link-06 h2 {
    margin-bottom: 45px;
    font-size: 45px;
  }
  .c-page-link-06__image {
    width: 700px;
  }
  .c-page-link-06__text {
    position: absolute;
    top: 40%;
    right: 10px;
    width: 65vw;
    height: auto;
    margin: 0 calc(50% - 50vw);
    padding: 40px 50px;
    background-color: #FFF;
  }
  .c-page-link-06__text__inner {
    width: 100%;
  }
  .c-page-link-06__text h3 {
    width: 100%;
    font-size: 2rem !important;
    line-height: 1.3;
  }
  .c-page-link-06__text p {
    width: 100%;
    line-height: 1.8;
    font-size: 17px;
  }
  .c-page-link-06 .c-block {
    width: 70%;
    margin: 0;
  }
  .c-page-link-06__btn--outline {
    width: 40%;
    font-size: 20px;
  }
  .c-page-link-06__btn--outline:hover {
    color: #FFF;
    border-color: transparent;
    background-color: #0c8422;
  }
  .c-page-link-06__text .c-page-link-06__btn--outline {
    width: 100%;
    box-sizing: border-box;
  }
}
/* PC */
@media screen and (min-width: 1500px) {
  .c-page-link-06__text {
    width: 50vw;
  }
  .c-page-link-06__text__inner {
    width: 70%;
  }
}
/*
　流れ-10
================================*/
.c-flow-10 {
  overflow-x: hidden;
  padding: 0 5%;
  max-width: 1300px;
  margin: 0 auto;
}

.c-flow-10__note {
  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: #0c8422;
}

.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: 240px;
  flex-shrink: 0;
  position: relative;
  background: #f2f2f2;
  box-shadow: 5px 5px 5px 0 rgba(48, 38, 36, 0.1);
  height: auto;
  padding: 3.2rem 1rem 1.7rem 1rem;
  box-sizing: border-box;
}

.c-flow-10__item::after {
  position: absolute;
  left: 95%;
  bottom: 0;
  transform: translateX(-50%);
  display: block;
  content: "";
  width: 70px;
  height: 37px;
  background-image: url("../img/flow-10--arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 10;
}

.c-flow-10__image {
  max-width: 150px;
  margin: 0 auto;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
}

.c-flow-10__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-flow-10__text {
  padding: 20px 0;
}

.c-flow-10__text h3 {
  font-size: 19px;
  text-align: center;
  color: #0c8422;
  font-weight: 900;
  margin-bottom: 10px;
}

.c-flow-10__date {
  position: absolute;
  bottom: 8px;
  right: 50%;
  transform: translateX(50%);
  font-size: 16px;
  text-align: center;
  color: #f27405;
  font-weight: 700;
  width: 100%;
}

.c-flow-10__date--last {
  position: absolute;
  width: 190px;
  bottom: 1px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 15px;
  text-align: center;
  color: #fff;
  font-weight: 700;
  background-color: #0c8422;
  padding: 10px 10px;
}

.c-flow-10__wrapper--bottom .c-flow-10__item:last-child::after {
  display: none;
}

/* 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;
  }
}
@media screen and (min-width: 1300px) {
  .c-flow-10 {
    padding: 0;
  }
  .c-flow-10__wrapper {
    justify-content: center;
  }
}
/*
　追従メニュー-02
================================*/
.c-follow-menu-02 {
  transform: translateY(100%);
  transition: transform 0.4s ease;
  position: sticky;
  bottom: 0;
  z-index: 50;
}

.c-follow-menu-02.is-visible {
  transform: translateY(0);
}

.c-follow-menu-02__inner {
  display: flex;
  justify-content: space-between;
  text-align: center;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
}

.c-follow-menu-02__contact {
  align-items: center;
  width: 33%;
  background: #00b900;
}

.c-follow-menu-02__tel {
  width: 34%;
  background: #fff;
  color: #000;
}

.c-follow-menu-02__request {
  align-items: center;
  flex-wrap: wrap;
  width: 33%;
  background: #f27405;
}

.c-follow-menu-02__contact a,
.c-follow-menu-02__tel a,
.c-follow-menu-02__request a {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  text-decoration: none;
  padding: 8px 0 3px;
  width: 100%;
  color: #fff;
  font-size: 14px;
}

.c-follow-menu-02__contact a:hover,
.c-follow-menu-02__tel a:hover,
.c-follow-menu-02__request a:hover {
  opacity: 0.7;
}

.c-follow-menu-02__tel__pc {
  display: none;
}

.c-follow-menu-02__tel__time {
  color: #000;
  font-size: 13px;
}

.c-follow-menu-02__img {
  height: 20px;
  margin-bottom: 2px;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-follow-menu-02 {
    bottom: -1px;
  }
  .c-follow-menu-02__contact a,
  .c-follow-menu-02__request a {
    flex-direction: row;
    padding: 15px 0;
  }
  .c-follow-menu-02__contact a,
  .c-follow-menu-02__tel a,
  .c-follow-menu-02__request a {
    align-items: center;
  }
  .c-follow-menu-02__contact .c-follow-menu-02__title,
  .c-follow-menu-02__request .c-follow-menu-02__title {
    margin-left: 8px;
  }
  .c-follow-menu-02__title {
    font-family: "Trebuchet MS", "Arial", "Century Gothic", sans-serif;
    font-weight: bold;
    font-size: clamp(25px, 2.8947368421vw, 33px);
    padding-left: 5px;
  }
  .c-follow-menu-02__tel .c-follow-menu-02__title {
    font-size: clamp(25px, 2.6315789474vw, 38px);
  }
  .c-follow-menu-02__text {
    font-size: 18px;
    margin-left: 10px;
  }
  .c-follow-menu-02__tel__pc {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    padding: 10px 0;
  }
  .c-follow-menu-02__tel__text {
    font-size: 15px;
    font-weight: bold;
  }
  .c-follow-menu-02__tel__time {
    font-size: 14px;
  }
  .c-follow-menu-02__tel__telno {
    display: flex;
  }
  .c-follow-menu-02__img {
    height: 33px;
    margin-bottom: 0;
  }
  .c-follow-menu-02__img--tel {
    width: 25px;
    margin-left: 15px;
  }
  .c-follow-menu-02__tel a.c-follow-menu-02__tel__sp {
    display: none;
  }
}
/* ━━━━━━━━━━━━━━━━

 ■レイアウト

━━━━━━━━━━━━━━━━ */
/*
　ヘッダー-20
================================*/
html {
  scroll-padding-top: 90px;
}

.l-header-20 {
  position: relative;
  width: 100%;
  height: 75px;
  margin: 0;
}

.l-header-20__wrapper {
  position: fixed;
  width: 100%;
  height: 75px;
  top: 0;
  background-color: #fff;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
  z-index: 99;
}

.l-header-20__title {
  padding: 3px 5px;
  font-size: 0.8em;
  color: #fff;
  background-color: #0c8422;
}

.l-header-20__title h1 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}

.l-header-20__inquiry {
  display: none;
}

.l-header-20__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
}

.l-header-20__logo a {
  display: block;
  font-size: 0;
}

.l-header-20__logo img {
  width: 240px;
}

.l-header-20__nav {
  display: none;
}

.l-header-20__nav a:hover {
  background-color: #fef4ee;
}

.l-header-20__menu__button i {
  font-size: 35px;
}

.l-header-20__menu__button a {
  display: block;
  text-align: center;
  text-decoration: none;
  color: #1f2a34;
}

.l-header-20__sp-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 120px 20px 65px 20px;
  transform: translateY(min(-100%, -1000px));
  transition: transform 0.5s;
  overflow-y: auto;
  background: #fefefe;
  box-sizing: border-box;
  z-index: 50;
}

.l-header-20__sp-menu.__open {
  transform: translateY(0);
  transition: transform 0.5s;
}

.l-header-20__sp-menu ul li {
  width: 100%;
  height: auto;
  border-top: 1px solid #919191;
  position: relative;
}

.l-header-20__sp-menu ul li:last-child {
  border-bottom: 1px solid #919191;
}

.l-header-20__sp-menu ul li a {
  display: block;
  position: relative;
  line-height: 3.7em;
  text-decoration: none;
  font-size: 1em;
  color: #0b3c5d;
  transition: all 0.2s ease;
}

.l-header-20__sp-menu__nav-child > a::after {
  display: block;
  position: absolute;
  content: "";
  top: 50%;
  right: 5%;
  width: 7px;
  height: 7px;
  margin-top: -4px;
  border-top: solid 2px #7f7f7f;
  border-right: solid 2px #7f7f7f;
  transform: rotate(135deg);
}

.l-header-20__sp-menu__nav-child a.is-open {
  border-bottom: 1px dotted #919191;
}

.l-header-20__sp-menu__nav-child a.is-open::after {
  transform: rotate(315deg);
}

.l-header-20__sp-menu__nav ul li ul {
  display: none;
}

.l-header-20__sp-menu__nav ul li ul li {
  width: 93%;
  margin: 0 0 0 auto;
  border-bottom: 1px dotted #919191;
  border-top: none;
  position: relative;
}

.l-header-20__sp-menu__nav ul li ul li::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 1px;
  border-bottom: solid 1px #F27406;
  transition: 0.3s;
}

.l-header-20__sp-menu__nav ul li ul li:hover:after {
  width: 100%;
}

.l-header-20__sp-menu__nav ul li ul li:last-child {
  border-bottom: none;
}

.l-header-20__sp-menu__nav ul li ul li a {
  display: block;
  margin-left: 10px;
  font-size: 1em;
  color: #0b3c5d;
  position: relative;
}

.l-header-20__sp-menu__nav ul li ul li a::after {
  content: "";
  position: absolute;
  right: 5px;
  top: 42%;
  width: 20px;
  height: 10px;
  padding: 3px;
  background-color: #F27406;
  border-radius: 3px;
  transition: 0.3s;
}

.l-header-20__sp-menu__nav ul li ul li a::before {
  font-family: "FontAwesome";
  content: "\f105";
  position: absolute;
  right: 14px;
  top: 5%;
  width: 0;
  height: 0;
  z-index: 1;
  color: #fff;
}

.l-header-20__sp-menu__nav ul li ul li a:hover:before {
  color: #F27406;
}

.l-header-20__sp-menu__nav ul li ul li a:hover::after {
  width: 8px;
  background-color: #FDEAD9;
}

.l-header-20__sp-menu__nav ul li ul li a.is-open ul {
  display: block;
}

.l-header-20__sp-menu.is-open {
  transform: translateY(0);
  transition: transform 0.5s;
}

.l-header-20__sp-menu--tel a {
  margin-top: 30px;
  line-height: 1;
  text-decoration: none;
  font-family: "Arial", "Noto Sans JP", sans-serif;
  font-size: 32px;
  font-weight: bold;
  color: #0c8422;
}

.l-header-20__sp-menu--tel p {
  text-align: center;
}

.l-header-20__sp-menu--inquiry {
  display: flex;
  justify-content: center;
  margin: 20px auto 0 auto;
}

.l-header-20__sp-menu--inquiry__mail {
  width: 60%;
}

.l-header-20__sp-menu--inquiry__mail a {
  display: block;
  padding: 20px;
  text-decoration: none;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  color: #FFF;
  background-color: #0c8422;
  box-sizing: border-box;
}

.l-header-20__sp-menu--inquiry__mail a:hover {
  background: #767171;
}

.l-header-20__sp-menu--tel a {
  display: block;
  text-align: center;
}

@media print {
  .l-header-20__sp-menu {
    display: none;
  }
}
/* PC */
@media screen and (min-width: 1100px) {
  html {
    scroll-padding-top: 110px;
  }
  .l-header-20 {
    height: 105px;
    margin: 0;
  }
  .l-header-20__wrapper {
    justify-content: flex-end;
    height: 105px;
    padding: 0;
    background-color: rgba(255, 255, 255, 0.9);
  }
  .l-header-20__title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 0 0 20px;
    height: 35px;
    font-size: 16px;
    box-sizing: border-box;
  }
  .l-header-20__title h1 {
    width: calc(100% - 530px);
  }
  .l-header-20__inquiry {
    display: flex;
    align-items: center;
  }
  .l-header-20__inquiry--tel {
    display: block;
    margin-right: 20px;
  }
  .l-header-20__inquiry--tel a {
    line-height: 1;
    text-decoration: none;
    font-family: "Century Gothic", "Arial", sans-serif;
    font-size: 28px;
    color: #FFF;
  }
  .l-header-20__inquiry--mail {
    background-color: #f27405;
  }
  .l-header-20__inquiry--line a,
  .l-header-20__inquiry--mail a {
    display: block;
    height: 35px;
    padding: 9px 20px;
    line-height: 1;
    text-decoration: none;
    text-align: center;
    color: #FFF;
    font-size: 16px;
    box-sizing: border-box;
  }
  .l-header-20__inquiry--mail:hover {
    opacity: 0.5;
  }
  .l-header-20__inquiry--line {
    background-color: #00b932;
  }
  .l-header-20__inner {
    height: 70px;
    padding: 0 0 0 20px;
  }
  .l-header-20__logo {
    position: static;
    margin: 0 auto 0 0;
  }
  .l-header-20__logo a {
    width: clamp(180px, 21.9298245614vw, 350px);
  }
  .l-header-20__logo img {
    width: 100%;
  }
  .l-header-20__nav {
    display: block;
  }
  .l-header-20__nav ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
  }
  .l-header-20__nav li {
    border-left: 1px solid #CCC;
  }
  .l-header-20__nav a {
    position: relative;
    display: inline-block;
    padding: 0 30px;
    line-height: 70px;
    text-align: center;
    text-decoration: none;
    font-size: 17px;
    color: #000;
  }
  .l-header-20__nav ul > li {
    border-left: 1px solid #CCC;
  }
  .l-header-20__nav ul > li ul {
    display: none;
  }
  .l-header-20__nav ul > li .l-header-20__nav__parallel {
    width: 100%;
    position: absolute;
    left: 0;
    top: 70px;
    padding: 18px 20px;
    box-sizing: border-box;
    background-color: #FFF;
    box-shadow: 0 2px 7px 1px rgba(118, 118, 118, 0.3);
    display: none;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0 18px;
    z-index: 200;
  }
  .l-header-20__nav ul > li ul li {
    border-left: none;
    border-bottom: 1px dotted #DCDCDC;
    position: relative;
  }
  .l-header-20__nav ul > li .l-header-20__nav__parallel li {
    display: block;
    width: auto;
    margin: 0;
  }
  .l-header-20__nav ul > li .l-header-20__nav__parallel li::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    border-bottom: solid 1px #F27406;
    transition: 0.3s;
  }
  .l-header-20__nav ul > li .l-header-20__nav__parallel li:hover:after {
    width: 100%;
  }
  .l-header-20__nav ul > li ul li a {
    display: block;
    padding: 20px 30px 20px 5px;
    line-height: 1.2;
    position: relative;
  }
  .l-header-20__nav ul > li ul li a::after {
    content: "";
    position: absolute;
    right: 5px;
    top: 42%;
    width: 20px;
    height: 10px;
    padding: 3px;
    background-color: #F27406;
    border-radius: 3px;
    transition: 0.3s;
  }
  .l-header-20__nav ul > li ul li a::before {
    font-family: "FontAwesome";
    content: "\f105";
    position: absolute;
    right: 14px;
    top: 40%;
    width: 0;
    height: 0;
    z-index: 1;
    color: #fff;
  }
  .l-header-20__nav ul > li ul li a:hover:before {
    color: #F27406;
  }
  .l-header-20__nav ul > li ul li a:hover::after {
    width: 8px;
    background-color: #FDEAD9;
  }
  .l-header-20__nav ul > li .l-header-20__nav__parallel li a {
    text-align: left;
    font-size: 16px;
  }
  .l-header-20__nav ul > li ul li a:hover {
    opacity: 1;
  }
  /* .l-header-20__nav__parallel は常に grid で表示制御 */
  .l-header-20__nav ul > li:hover > .l-header-20__nav__parallel {
    display: grid;
  }
  /* parallel 以外の通常サブメニュー (念のため残す) */
  .l-header-20__nav ul > li:hover > ul:not(.l-header-20__nav__parallel) {
    position: absolute;
  }
  .l-header-20__menu__button {
    display: none;
  }
}
@media screen and (min-width: 1100px) and (max-width: 1300px) {
  .l-header-20__nav ul > li > a {
    padding: 0 20px;
    font-size: 16px;
  }
  .l-header-20__nav ul > li ul li a {
    font-size: 14px;
  }
}
/*=========================================

* フッター-05

==========================================*/
.l-footer-05 {
  padding: 68px 0;
  background: #f5f5f5;
}

.l-footer-05__inner {
  padding: 0 35px;
}

.l-footer-05__inner__info__logo {
  max-width: 230px;
  margin-bottom: 30px;
}

.l-footer-05__inner__info__logo img {
  display: block;
  max-width: 100%;
  width: 100%;
  height: auto;
}

.l-footer-05__inner__info__address {
  margin-bottom: 15px;
}

.l-footer-05__inner__info__tel {
  margin-bottom: 30px;
}

.l-footer-05__inner__info__tel a {
  text-decoration: none;
  letter-spacing: 1.5px;
  font-size: 20px;
  color: #061934;
}

.l-footer-05__inner__info__contact {
  margin-bottom: 25px;
}

.l-footer-05__inner__info__contact a {
  display: block;
  width: 187px;
  padding: 8px 0;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  color: #0c8422;
  background: #fff;
  border: 1px solid #0c8422;
}

.l-footer-05__inner__info__contact a:hover {
  color: #fff;
  background: #0c8422;
  border: 1px solid #0c8422;
  transition: all 0.3s;
  opacity: 1;
}

.l-footer-05__contact__sns {
  display: flex;
}

.l-footer-05__contact__sns a:hover {
  opacity: 0.7;
}

.l-footer-05__contact__sns img {
  width: 35px;
}

.l-footer-05__contact__sns a:not(:first-child) {
  margin-left: 15px;
}

.l-footer-05__inner__nav {
  display: none;
}

@media screen and (min-width: 1100px) {
  .l-footer-05 {
    padding: 100px 0 50px;
    border-top: none;
  }
  .l-footer-05__inner {
    display: flex;
    justify-content: space-between;
    width: 96%;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0;
    gap: 40px;
  }
  .l-footer-05__inner__info {
    flex-basis: 23%;
  }
  .l-footer-05__contact__sns img {
    width: 40px;
  }
  .l-footer-05__contact__sns a:not(:first-child) {
    margin-left: 15px;
  }
  .l-footer-05__inner__nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 30px 1%;
    flex-basis: 75%;
  }
  .l-footer-05__inner__nav__unit {
    width: 24%;
    max-width: 200px;
  }
  .l-footer-05__inner__nav__unit__head {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    text-decoration: none;
    border-bottom: 1px solid #d5dae1;
  }
  .l-footer-05__inner__nav__unit__head p {
    font-size: 16px;
    font-weight: bold;
    color: #17417d;
  }
  .l-footer-05__inner__nav__unit__head span {
    position: relative;
    width: 20px;
    height: 20px;
    display: block;
    background: #5bb1d9;
    border-radius: 50%;
  }
  .l-footer-05__inner__nav__unit__head span::before {
    content: "";
    position: absolute;
    top: 6px;
    left: 2px;
    width: 11px;
    height: 4px;
    border-bottom: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: skew(45deg);
  }
  .l-footer-05__inner__nav__unit__list li {
    margin-bottom: 13px;
  }
  .l-footer-05__inner__nav__unit__list li:last-child {
    margin-bottom: 0;
  }
  .l-footer-05__inner__nav__unit__list li a {
    position: relative;
    display: block;
    padding-left: 15px;
    text-decoration: none;
    font-size: 14px;
    color: #061934;
  }
  .l-footer-05__inner__nav__unit__list li a::before {
    content: "";
    position: absolute;
    top: 49%;
    left: 0;
    width: 7px;
    height: 1px;
    background: #018ac0;
  }
  .l-footer-05__inner__nav__unit__list a:hover {
    transition: all 0.3s;
    opacity: 0.7;
  }
  .btn__page_top {
    position: fixed;
    right: 10px;
    bottom: 90px;
    font-size: 1.2rem;
    line-height: 1.2rem;
    background: #fff;
    color: #737373;
    padding: 13px;
    border: solid 1px;
    border-radius: 50%;
    box-shadow: 0 2px 10px -6px rgba(0, 0, 0, 0.5), 0 3px 10px -4px rgba(0, 0, 0, 0.2);
  }
  .btn__page_top i {
    font-size: 1.2rem;
    opacity: 1;
    margin: 0;
  }
  .btn__page_top span {
    display: none;
  }
}
/* SP */
@media screen and (max-width: 767px) {
  .btn__page_top {
    display: none !important;
  }
}
/**
 * Section
 */
/*==================================
* Section
==================================*/
.l-section {
  padding: 50px 0;
}

.l-section.l-section--gray {
  background: #F5F5F5;
}

.l-section.l-section--blue {
  background: #eaf3f9;
}

.l-section.l-section--green {
  background: #f7fbf8;
}

.l-section.l-section--yellow {
  background: #fefaf7;
}

.l-section.l-section--beige {
  background: #F5EFE6;
}

.l-section.l-section--stripe {
  background: repeating-linear-gradient(#fefcfa, #fefcfa 20px, #fff 20px, #fff 41px);
}

.l-section__container {
  padding: 0 8px;
}

/* PC */
@media screen and (min-width: 768px) {
  .l-section {
    padding: 80px 0;
  }
  .l-section__container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0;
  }
}
/* ━━━━━━━━━━━━━━━━

 ■プロジェクト

━━━━━━━━━━━━━━━━ */
/*=================================

* トップ

=================================*/
/*
　メインビジュアル
================================*/
.p-main-visual {
  font-family: "Arial", "Noto Sans JP", sans-serif;
}

.p-main-visual__inner {
  position: relative;
  width: 100%;
  display: flex;
  padding: 20px 0 50px;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
}

.p-main-visual__title {
  position: relative;
  font-size: max(48px, 6.1277705346vw);
  font-weight: 900;
  color: #fff;
  text-shadow: #fff 3px 3px 3px, #fff -3px -3px 3px, #fff -3px 3px 3px, #fff 3px -3px 3px, #fff 3px 0px 3px, #fff -3px 0px 3px, #fff 0px 3px 3px, #fff 0px -3px 3px;
  color: #b31312;
  font-weight: 900;
  margin-bottom: 20px;
}

.p-main-visual__sub-title {
  font-family: "Noto Serif JP", serif;
  display: inline-block;
  line-height: 31px;
  font-weight: 700;
  font-size: max(23px, 2.8683181226vw);
  text-shadow: #fff 3px 3px 3px, #fff -3px -3px 3px, #fff -3px 3px 3px, #fff 3px -3px 3px, #fff 3px 0px 3px, #fff -3px 0px 3px, #fff 0px 3px 3px, #fff 0px -3px 3px;
}

.p-main-visual__text {
  margin-top: 20px;
  margin-bottom: 20px;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  color: #0c8422;
  border: 2px solid #0c8422;
  padding: 5px 15px;
  display: flex;
  align-items: self-end;
  width: -moz-fit-content;
  width: fit-content;
  background-color: rgba(255, 255, 255, 0.8);
}

.p-main-visual__text--number {
  font-size: 30px;
  font-weight: bold;
  padding: 0 5px;
  line-height: 1;
}

.p-main-visual__point {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}

.p-main-visual__point__circle {
  position: relative;
  width: clamp(100px, 18.2291666667vw, 140px);
  height: clamp(100px, 18.2291666667vw, 140px);
  background-color: #f27405;
  border-radius: 70px;
}

.p-main-visual__point__circle__text {
  position: absolute;
  width: 100%;
  top: 48%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
}

.p-main-visual__point__circle__image {
  display: flex;
  align-items: flex-end;
  width: 40%;
  height: auto;
  margin: 0 auto 3px auto;
}

.p-main-visual__point__circle__text img {
  width: 100%;
  aspect-ratio: 1/1;
}

.p-main-visual__point__circle__text p {
  margin-top: 5px;
  font-size: clamp(17px, 2.2135416667vw, 20px);
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 2px 2px 0 #f27405, -2px -2px 0 #f27405, -2px 2px 0 #f27405, 2px -2px 0 #f27405, 0px 2px 0 #f27405, 0 -2px 0 #f27405, -2px 0 0 #f27405, 2px 0 0 #f27405;
}

.p-main-visual__point__circle__text p span {
  font-size: clamp(15px, 1.953125vw, 18px);
}

.p-main-visual__point__circle__text p b {
  font-size: clamp(23px, 2.9947916667vw, 28px);
  font-family: "Arial", sans-serif;
  line-height: 1;
}

.p-main-visual__image {
  position: relative;
  width: 100%;
  margin: 0;
  font-size: 0;
  top: -10px;
  z-index: -1;
}

.p-main-visual__image img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 90% 10%;
     object-position: 90% 10%;
}

.p-main-visual__image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 20%);
  z-index: 1;
}

@media screen and (min-width: 550px) {
  .p-main-visual__title {
    font-size: max(60px, 7.8226857888vw);
    text-align: center;
  }
  .p-main-visual__sub-title {
    font-size: max(30px, 3.9113428944vw);
  }
  .p-main-visual__text {
    font-size: max(20px, 2.6075619296vw);
    text-align: center;
    margin: 20px auto;
  }
  .p-main-visual__point {
    justify-content: center;
  }
}
/* PC */
@media screen and (min-width: 768px) {
  .p-main-visual__inner {
    flex-direction: row;
    padding: 0;
  }
  .p-main-visual__title {
    line-height: 1.2;
    font-size: min(95px, 5.9375vw);
    text-align: left;
  }
  .p-main-visual__sub-title {
    margin-bottom: 15px;
    font-size: min(55px, 3.4375vw);
    line-height: 140%;
  }
  .p-main-visual__text {
    line-height: 1.1;
    font-size: min(40px, 2.5vw);
    text-align: left;
    margin: revert;
    margin-bottom: 50px;
  }
  .p-main-visual__text--number {
    font-size: min(80px, 5vw);
    font-family: "Century Gothic", "Arial", sans-serif;
  }
  .p-main-visual__point {
    gap: 20px;
    justify-content: flex-start;
  }
  .p-main-visual__point__circle {
    width: clamp(140px, 12.2807017544vw, 190px);
    height: clamp(140px, 12.2807017544vw, 190px);
    border-radius: 50%;
  }
  .p-main-visual__point__circle__text {
    top: 50%;
  }
  .p-main-visual__point__circle__image {
    width: 40%;
  }
  .p-main-visual__point__circle__text img {
    width: 100%;
    margin-bottom: 5px;
  }
  .p-main-visual__point__circle__text p {
    font-size: clamp(23px, 2.0175438596vw, 25px);
  }
  .p-main-visual__point__circle__text p span {
    font-size: clamp(20px, 1.7543859649vw, 23px);
  }
  .p-main-visual__point__circle__text p b {
    font-size: clamp(35px, 3.0701754386vw, 40px);
  }
  .p-main-visual__image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 20%);
    z-index: 1;
  }
  .p-main-visual__content {
    position: absolute;
    top: 50%;
    transform: translateY(calc(-50% - 10px));
    left: calc(10% - 20px);
  }
  .p-main-visual__image {
    position: relative;
    width: 70%;
    margin: 0;
    font-size: 0;
    margin-left: 30%;
    top: 0;
  }
  .p-main-visual__image img {
    width: 100%;
    min-height: 830px;
    aspect-ratio: auto;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: 72% 10%;
       object-position: 72% 10%;
  }
}
/*
　リード文
================================*/
.p-section-read {
  font-size: 18px;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #333;
  margin: 40px auto 40px auto;
  width: 94%;
}

.p-lead {
  margin: 0 auto 30px auto;
  width: 90%;
  font-size: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1.8;
}

/* PC */
@media screen and (min-width: 768px) {
  .p-section-read {
    font-size: clamp(18px, 1.7543859649vw, 25px);
    margin: 60px auto 60px auto;
    text-align: center;
  }
  .p-lead {
    font-size: 17px;
    margin: 0 auto 80px auto;
    width: 90%;
    font-size: 18px;
    text-align: center;
  }
}
/*
　任意売却とは
================================*/
.p-voluntary-sale {
  width: 100%;
  margin: 50px auto 0;
}

.p-voluntary-sale__title {
  font-size: 20px;
  font-weight: bold;
  color: #f27405;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1.6;
}

.p-voluntary-sale__text {
  line-height: 1.6;
  font-size: 16px;
  margin-bottom: 40px;
}

.p-voluntary-sale__image {
  width: 90%;
  max-width: 900px;
  height: auto;
  margin: 30px auto;
  display: block;
}

.p-voluntary-sale__image img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-voluntary-sale__note {
  font-size: 20px;
  color: #C00000;
  margin-top: 10px;
  display: flex;
  justify-content: center;
  font-weight: bold;
}

.p-voluntary-sale__read {
  display: flex;
  justify-content: center;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 1.6px;
}

/* PC */
@media screen and (min-width: 768px) {
  .p-voluntary-sale {
    margin: 80px auto 0;
  }
  .p-voluntary-sale__title {
    font-size: clamp(20px, 2.1929824561vw, 25px);
    text-align: center;
    margin-bottom: 50px;
  }
  .p-voluntary-sale__text {
    line-height: 1.8;
    font-size: 18px;
    margin-bottom: 60px;
  }
  .p-voluntary-sale__image {
    margin: 80px auto 50px;
  }
  .p-voluntary-sale__note {
    font-size: clamp(20px, 2.1929824561vw, 25px);
    margin-top: 20px;
    text-align: center;
  }
  .p-voluntary-sale__read {
    font-size: clamp(16px, 1.5789473684vw, 18px);
  }
}
/*
　任意売却と競売との違い
================================*/
.p-comparison {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.p-comparison h2 {
  margin-bottom: 20px;
  padding: 7px;
  text-align: center;
  font-size: 25px;
  font-weight: bold;
  color: #FFF;
}

.p-comparison__ninbai, .p-comparison__keibai {
  width: 47%;
  height: auto;
}

.p-comparison__ninbai h2 {
  background: #f27405;
}

.p-comparison__keibai h2 {
  background: #3C486B;
}

.p-comparison__ninbai__body,
.p-comparison__keibai__body {
  display: flex;
  flex-direction: column;
  height: 240px;
  margin-bottom: 20px;
  padding: 10px;
  border: 2px solid #f27405;
  border-radius: 5px;
}

.p-comparison__keibai__body {
  border: 2px solid #3C486B;
}

.p-comparison__image {
  width: 75px;
  margin: 0 auto 5px auto;
}

.p-comparison__image img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-comparison__ninbai__body h3,
.p-comparison__keibai__body h3 {
  margin-bottom: 10px;
  font-weight: 800;
  color: #f27405;
}

.p-comparison__keibai__body h3 {
  color: #3C486B;
}

.p-comparison__text p {
  font-size: 14px;
  font-weight: bold;
}

/* PC */
@media screen and (min-width: 768px) {
  .p-comparison {
    margin-bottom: 30px;
  }
  .p-comparison h2 {
    margin-bottom: 20px;
    padding: 7px;
    text-align: center;
  }
  .p-comparison__ninbai__body h3,
  .p-comparison__keibai__body h3 {
    margin-bottom: 7px;
  }
  .p-comparison__ninbai__body,
  .p-comparison__keibai__body {
    flex-direction: row;
    justify-content: flex-start;
    height: 130px;
    margin-bottom: 20px;
    padding: 10px 10px 10px 20px;
  }
  .p-comparison__image {
    width: 35%;
    max-width: 85px;
    min-width: 80px;
    margin: 0;
  }
  .p-comparison__text {
    padding: 0 0 0 15px;
    text-align: left;
  }
}
/* PC */
@media screen and (min-width: 1000px) {
  .p-comparison__ninbai__body,
  .p-comparison__keibai__body {
    height: auto;
    padding: 20px 20px 20px 20px;
  }
  .p-comparison__text p {
    font-size: 16px;
  }
  .p-comparison__ninbai__body h3,
  .p-comparison__keibai__body h3 {
    font-size: 20px;
  }
}
/*
　サポート弁護士
================================*/
.p-lawyer {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.p-lawyer__image img {
  width: 100%;
}

.p-lawyer__profile {
  margin-top: 20px;
  text-align: center;
}

.p-lawyer__name {
  margin-bottom: 5px;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
}

.p-lawyer__position {
  margin-bottom: 10px;
  line-height: 1.5;
}

.p-lawyer__url {
  margin-top: 10px;
}

.p-lawyer__url a {
  font-size: 1.2rem;
  text-decoration: underline;
  word-break: break-all;
}

.p-lawyer__text h3 {
  margin-bottom: 25px;
  font-size: 2.6rem;
  font-weight: 700;
  color: #0c8422;
}

.p-lawyer__text p {
  line-height: 2;
}

.p-lawyer__text p + p {
  margin-top: 1em;
}

.p-lawyer__btn {
  margin-top: 35px;
}

.p-lawyer__btn a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 320px;
  height: 60px;
  padding: 0 30px;
  box-sizing: border-box;
  background: #0c8422;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
}

.p-lawyer__btn a:hover {
  opacity: 0.8;
}

@media screen and (min-width: 768px) {
  .p-lawyer {
    flex-direction: row;
    align-items: flex-start;
    gap: 50px;
  }
  .p-lawyer__image {
    width: 32%;
    flex-shrink: 0;
  }
  .p-lawyer__text {
    width: calc(68% - 50px);
  }
  .p-lawyer__profile {
    text-align: left;
  }
}
@media screen and (max-width: 767px) {
  .p-lawyer__text h3 {
    margin-bottom: 20px;
    font-size: 2rem;
  }
  .p-lawyer__btn a {
    width: 100%;
  }
}
/*
　相談員紹介
================================*/
.p-counselor__member {
  display: block;
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
}

.p-counselor__member__text {
  padding: 0 10px;
}

.p-counselor__member__text h3 {
  font-size: 23px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #0c8422;
  line-height: 1.3;
}

.p-counselor__member__image {
  width: 100%;
  margin-bottom: 15px;
}

.p-counselor__member__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-counselor__member__text p {
  line-height: 1.7;
  font-size: 16px;
}

.p-counselor__member__text p span {
  color: #f27405;
  font-weight: bold;
}

/* PC */
@media screen and (min-width: 650px) {
  .p-counselor h3 {
    font-size: clamp(20px, 2.1929824561vw, 30px);
    font-weight: bold;
    margin-bottom: 25px;
  }
  .p-counselor p {
    font-size: clamp(16px, 1.4035087719vw, 17px);
    line-height: 1.7;
  }
  .p-counselor__member {
    flex-direction: row-reverse;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2%;
    margin-bottom: 60px;
  }
  .p-counselor__member__text {
    flex: 0 1 66%;
  }
  .p-counselor__member__image {
    flex: 0 1 29%;
    margin-bottom: 0;
  }
}
/*
　任意売却のメリット・デメリット
=================================*/
.p-merits-demerits {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.p-merits-demerits__list,
.p-merits-demerits__list--center {
  width: 95%;
  margin: 0 auto;
}

.p-merits-demerits__list li,
.p-merits-demerits__list--center li {
  position: relative;
  padding-left: 30px;
  line-height: 1.5;
  margin-bottom: 10px;
  font-size: 16px;
}

.p-merits-demerits__list li::before,
.p-merits-demerits__list--center li::before {
  position: absolute;
  top: 2px;
  left: 0;
  width: 20px;
  height: 20px;
  content: url(../img/icon__check.svg);
}

.p-merits-demerits__link {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  border: 1px solid #0c8422;
  color: #0c8422 !important;
  font-weight: bold;
  text-decoration: none !important;
  transition: 0.3s;
  font-size: 15px;
}

.p-merits-demerits__link:hover {
  background-color: #0c8422;
  color: #fff !important;
}

@media screen and (min-width: 600px) {
  .p-merits-demerits {
    display: flex;
    flex-direction: row;
    gap: 60px;
  }
  .p-merits-demerits__list,
  .p-merits-demerits__list--center {
    width: 100%;
    margin: 0;
  }
  .p-merits-demerits__list--center {
    display: flex;
    justify-content: center;
  }
  .p-merits-demerits__list li,
  .p-merits-demerits__list--center li {
    font-size: clamp(15px, 1.6666666667vw, 19px);
    margin-bottom: 20px;
  }
  .p-merits-demerits__list li::before,
  .p-merits-demerits__list--center li::before {
    width: 25px;
    height: 25px;
  }
  .p-merits-demerits__list li,
  .p-merits-demerits__list--center li {
    padding-left: 33px;
  }
  .p-merits-demerits__list li::before,
  .p-merits-demerits__list--center li::before {
    top: 0;
  }
}
/*
　任意売却に移行できる期間 
=================================*/
.p-period {
  width: 100%;
  margin: 0 auto;
}

.p-period__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.p-period__table thead tr th {
  background-color: #0c8422;
  color: #fff;
  font-weight: bold;
  padding: 14px 5px;
  border: none;
}

.p-period__table tbody tr {
  border-bottom: 1px solid #ccc;
}

.p-period__table tbody tr:last-child {
  border-bottom: none;
}

.p-period__table tbody tr td {
  padding: 20px 8px;
  vertical-align: middle;
  background-color: #fff;
  min-width: 60px;
}

.p-period__table tbody tr td:last-child {
  font-weight: bold;
  text-align: center;
  width: 19%;
}

.p-period__table tbody tr td.p-period__table--label {
  background-color: #f0ede8;
  font-weight: bold;
  width: 33%;
  letter-spacing: -0.5px;
}

/* PC */
@media screen and (min-width: 600px) {
  .p-period__table {
    font-size: 17px;
  }
  .p-period__table thead tr th {
    padding: 10px 20px;
    text-align: center;
  }
  .p-period__table tbody tr td {
    padding: 25px 20px;
  }
  .p-period__table tbody tr td.p-period__table--label {
    width: 22%;
    text-align: center;
  }
}
/*=================================

* A様の任意売却ストーリー

=================================*/
/*
　ページタイトル
================================*/
.p-astory__page-title {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.p-astory__page-title__image {
  position: relative;
  width: 100%;
  margin: 0;
  font-size: 0;
}

.p-astory__page-title__image img {
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 90% 50%;
     object-position: 90% 50%;
}

.p-astory__page-title__image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 40%);
  z-index: 1;
}

.p-astory__page-title__text {
  width: 90%;
  margin: 0 auto;
  z-index: 1;
  padding-bottom: 20px;
}

.p-astory__page-title__text__inner {
  margin-top: 25px;
}

.p-astory__page-title__text__inner h2 {
  margin-bottom: 20px;
  font-size: clamp(27px, 4.296875vw, 33px);
  font-weight: 900;
  color: #0c8422;
}

.p-astory__page-title__text__inner p {
  line-height: 1.75;
  font-weight: bold;
}

/* PC */
@media screen and (min-width: 768px) {
  .p-astory__page-title {
    flex-direction: row;
    position: relative;
    justify-content: flex-end;
    min-height: clamp(280px, 30.701754386vw, 400px);
  }
  .p-astory__page-title__image {
    width: 55%;
  }
  .p-astory__page-title__image img {
    height: clamp(280px, 30.701754386vw, 400px);
    -o-object-position: top right;
       object-position: top right;
  }
  .p-astory__page-title__image::before {
    background: linear-gradient(to right, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 40%);
    z-index: 0;
  }
  .p-astory__page-title__text {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1140px;
    height: 100%;
    padding: 0;
    margin: 0 auto;
    pointer-events: none;
  }
  .p-astory__page-title__text__inner {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    max-width: 600px;
    margin: 0;
    z-index: 2;
    pointer-events: auto;
  }
  .p-astory__page-title__text__inner h2 {
    margin-bottom: 20px;
    font-size: clamp(30px, 2.6315789474vw, 40px);
    line-height: 1.2;
    text-shadow: #fff 3px 3px 3px, #fff -3px -3px 3px, #fff -3px 3px 3px, #fff 3px -3px 3px, #fff 3px 0px 3px, #fff -3px 0px 3px, #fff 0px 3px 3px, #fff 0px -3px 3px;
  }
  .p-astory__page-title__text__inner p {
    letter-spacing: 0.08em;
    line-height: clamp(1.3em, 2vw, 1.6em);
    font-size: clamp(18px, 1.5789473684vw, 20px);
    text-shadow: #fff 3px 3px 3px, #fff -3px -3px 3px, #fff -3px 3px 3px, #fff 3px -3px 3px, #fff 3px 0px 3px, #fff -3px 0px 3px, #fff 0px 3px 3px, #fff 0px -3px 3px;
  }
}
/*
　文章(共通)
================================*/
.p-astory__description {
  padding-top: 30px;
  padding-bottom: 30px;
}

.p-astory__description p {
  line-height: 1.8;
  font-size: clamp(16px, 2vw, 18px);
}

/*
　文章(アコーディオン共通)
================================*/
.p-astory__accordion {
  width: 100%;
  margin-bottom: 20px;
}

.p-astory__accordion__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 26px;
  background-color: #f27405;
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.p-astory__accordion__header:hover {
  opacity: 0.9;
}

/* 開いている時のアイコン回転 */
.p-astory__accordion__header.is-active .p-astory__accordion__icon {
  transform: rotate(180deg);
}

.p-astory__accordion__title {
  font-weight: 700;
  margin: 0;
  font-size: 20px;
}

.p-astory__accordion__icon {
  width: 32px;
  height: 32px;
  background-color: #fff;
  border-radius: 50%;
  position: relative;
  transition: transform 0.3s ease;
}

.p-astory__accordion__icon::after {
  content: "";
  position: absolute;
  top: 40%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid #f27405;
  border-bottom: 2px solid #f27405;
  transform: translate(-50%, -50%) rotate(45deg);
}

.p-astory__accordion__content {
  display: none;
  background: #fff;
}

.p-astory__accordion__content-inner {
  padding: 25px 0;
  line-height: 1.8;
}

@media screen and (min-width: 768px) {
  .p-astory__accordion {
    margin-bottom: 30px;
  }
  .p-astory__accordion__header {
    padding: 20px 40px;
  }
  .p-astory__accordion__header:hover {
    background-color: #ff8820;
    opacity: 1;
  }
  .p-astory__accordion__title {
    font-size: 24px;
  }
  .p-astory__accordion__icon {
    width: 40px;
    height: 40px;
  }
  .p-astory__accordion__icon::after {
    width: 10px;
    height: 10px;
    border-right-width: 3px;
    border-bottom-width: 3px;
    top: 38%;
  }
  .p-astory__accordion__content-inner {
    padding: 30px 40px;
    font-size: 18px;
  }
}
/*
　概要
================================*/
.p-consult-program {
  width: 100%;
}

.p-consult-program h2 {
  width: 90%;
  margin: 0 auto 50px auto;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.03em;
  color: #0c8422;
  font-family: "Noto Serif JP", serif;
  line-height: 1.6;
}

.p-consult-program__voice__inner {
  width: 90%;
  margin: 0 auto;
  padding: 50px 0;
}

.p-consult-program__voice__list li {
  margin-bottom: 30px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  align-content: flex-start;
  width: 100%;
}

.p-consult-program__voice__list li:last-child {
  margin-bottom: 0;
}

.p-consult-program__voice__list li.p-consult-program__voice__list__staff {
  justify-content: flex-end;
}

.p-consult-program__voice__list img {
  width: 20%;
}

.p-consult-program__voice__list p {
  position: relative;
  display: inline-block;
  width: 70%;
  margin-left: 15px;
  padding: 10px 15px;
  text-align: left;
  background: #FFF;
  border-radius: 15px;
  box-sizing: border-box;
  font-size: 15px;
  font-weight: bold;
  color: #333;
}

.p-consult-program__voice__list .p-consult-program__voice__list__staff p {
  margin-right: 15px;
  margin-left: 0;
  padding: 15px 15px;
  background: #def5d3;
}

.p-consult-program__voice__list p:before {
  content: "";
  position: absolute;
  top: 50%;
  left: -23px;
  margin-top: -15px;
  border: 15px solid transparent;
  border-right: 20px solid #FFF;
  z-index: 0;
}

.p-consult-program__voice__list .p-consult-program__voice__list__staff p:before {
  right: -10px;
  left: auto;
  margin-top: -15px;
  border-left: 20px solid #def5d3;
  border-right: none;
}

/* PC */
@media screen and (min-width: 768px) {
  .p-consult-program h2 {
    width: 100%;
    font-size: clamp(25px, 2.6315789474vw, 30px);
    text-align: center;
  }
  .p-consult-program__voice__inner {
    width: 100%;
    max-width: 1000px;
    padding: 60px 0;
  }
  .p-consult-program__voice__list img {
    width: 8%;
  }
  .p-consult-program__voice__list p {
    width: auto;
    max-width: 70%;
    margin-left: 20px;
    padding: 15px 20px;
    font-size: 19px;
    background: #F5F5F5;
  }
  .p-consult-program__voice__list p:before {
    content: "";
    position: absolute;
    top: 50%;
    left: -26px;
    margin-top: -12px;
    border: 12px solid transparent;
    border-right: 20px solid #FFF;
    z-index: 0;
  }
  .p-consult-program__voice__list .p-consult-program__voice__list__staff p {
    margin-right: 20px;
    padding: 15px 20px;
  }
  .p-consult-program__voice__list .p-consult-program__voice__list__staff p:before {
    right: -15px;
    margin-top: -10px;
  }
}
/*=================================

* 任意売却エージェント.comについて

=================================*/
/*
　任意売却エージェント.comについて
================================*/
.p-company-content {
  position: relative;
}

.p-company-content__image {
  margin-bottom: 30px;
}

.p-company-content__image img {
  width: 100%;
  height: 235px;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-company-content__text {
  width: 90%;
  margin: 0 auto;
}

.p-company-content__text h2 {
  font-size: 25px;
  margin-bottom: 20px;
  font-weight: bold;
  font-family: "Noto Serif JP", serif;
}

.p-company-content__text p {
  line-height: 1.8;
  font-weight: 500;
  margin-bottom: 15px;
}

.p-company-content__text p span {
  font-weight: bold;
  color: #f27405;
}

.p-company-content__text p a {
  color: #0c8422;
}

/* PC */
@media screen and (min-width: 768px) {
  .p-company-content {
    max-width: 1300px;
    margin: 0 auto;
  }
  .p-company-content__inner::after {
    content: "";
    display: block;
    clear: both;
  }
  .p-company-content__image {
    float: right;
    width: 50%;
    margin-right: calc(50% - 50vw);
    margin-left: 50px;
    margin-bottom: 20px;
  }
  .p-company-content__image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .p-company-content__text {
    position: static;
    width: 95%;
    padding-right: 0;
    padding-left: 0;
    box-sizing: border-box;
  }
  .p-company-content__text h2 {
    font-size: clamp(23px, 2.5vw, 40px);
    margin-bottom: clamp(20px, 2vw, 30px);
    padding-top: 0;
  }
  .p-company-content__text p {
    font-size: clamp(15px, 1.8vw, 17px);
  }
}
/* 店舗写真
======================= */
.p-company__image__img {
  width: 100%;
}

.p-company__image__img:not(:first-child) {
  margin-top: 20px;
}

.p-company__image__img img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (min-width: 768px) {
  .p-company__image {
    display: flex;
    justify-content: center;
  }
  .p-company__image__img {
    width: auto;
    margin: 0 10px;
    max-width: 30%;
    min-width: 23%;
  }
  .p-company__image__img:not(:first-child) {
    margin-top: unset;
  }
}
/*
　アクセス
================================*/
.p-company__access {
  font-size: 0;
}

.p-company__access__read {
  width: 90%;
  margin: 0 auto 30px auto;
  font-size: 16px;
}

.p-company__access iframe {
  width: 100%;
  height: 450px;
  border: 0;
}

/* PC */
@media screen and (min-width: 768px) {
  .p-company__access__read {
    max-width: 1140px;
    margin: 0 auto 40px auto;
    text-align: center;
  }
}
/*=================================

* ケース別解決事例

=================================*/
/*
　ケース別解決事例
================================*/
.p-kaiketsujirei-case ul {
  display: grid;
  justify-content: center;
  gap: 10px;
}

.p-kaiketsujirei-case ul li {
  width: 100%;
}

.p-kaiketsujirei-case li a {
  display: flex;
  margin-bottom: 0;
  background-color: #fff;
  border: 1px solid #FFF;
  text-decoration: none;
  align-items: center;
  gap: 10px;
  transition: background-color 0.3s ease;
  padding: 10px;
}

.p-kaiketsujirei-case li h3 {
  font-size: 15px;
  font-weight: bold;
  color: #333;
}

.p-kaiketsujirei-case li a:hover {
  background-color: #f5f9f5;
  border: 1px solid #0c8422;
}

.p-kaiketsujirei-case li a:hover h3 {
  color: #0c8422;
}

.p-kaiketsujirei-case__image {
  width: 10%;
  min-width: 30px;
}

.p-kaiketsujirei-case__image img {
  display: block;
  width: 100%;
}

.p-kaiketsujirei-case__detail {
  width: 75%;
  padding: 20px;
}

.p-kaiketsujirei-case__tag {
  margin: 0 0 10px 0;
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #333;
}

.p-kaiketsujirei-case__tag--area {
  padding: 5px 10px;
  color: #ffffff;
  background-color: #0c8422;
}

.p-kaiketsujirei-case__tag--name {
  margin-left: 10px;
}

.p-kaiketsujirei-case__text {
  font-size: 16px;
  line-height: 1.3;
  color: #333;
  overflow: hidden;
}

/* PC */
@media screen and (min-width: 768px) {
  .p-kaiketsujirei-case ul {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
  .p-kaiketsujirei-case li {
    width: 100%;
    margin-bottom: 0;
  }
  .p-kaiketsujirei-case li:last-child {
    margin-bottom: 0;
  }
  .p-kaiketsujirei-case li h3 {
    font-size: clamp(16px, 1.5789473684vw, 18px);
  }
}