@charset "UTF-8";
/*---------------------
変数
-----------------------*/
/**************************

  カラーパレット

**************************/
/*-- mixinフォルダの中の_index.scss --*/
/*------------------------------------
SP特化サイト用メディアクエリ MIXIN
---------------------------------*/
/*---------------------
 ★ 文字関連一括指定（フォントサイズ+2px対応版）
-----------------------*/
/*---------------------
//Fontサイズ vw可変指定（SP特化サイト用）
----------------------*/
/* @include font-vw(font-size, 440px, 16px, 12px);
SP特化サイトの最大幅440pxのとき16pxの文字sizeをvw変換し、
幅を狭めるごとに比率で縮めるが、そのまま適用すると早々に小さくなりすぎるので、
最小値12pxを指定。最小値になる幅sizeを割り出し、メディアクエリにmin指定することで
16pxの比率のまま縮め、12px以下には縮まないという指定にしている。
*/
/*---------------------
 ★ リンク文字色 一括指定
-----------------------*/
/*---------------------
 ★ リンク下線復活
-----------------------*/
/*-------------------------------------
 ★ リンク下線消去 一括指定//フォーカスのみ下線
---------------------------------------*/
/*-------------------------------------
 ★ floatのあとは自動 clear: both;
 @include clearfix;
 float: left;
 のように使用する
---------------------------------------*/
/*-------------------------------------
 ★セレクトのプロパティをサイズ指定して変更
---------------------------------------*/
/*-------------------------------------

   レイアウト汎用

---------------------------------------*/
/*-----------------------------------

 上部余白

-----------------------------------*/
/*-----------------------------------

 改行制御

-----------------------------------*/
/*-----------------------------------

 中央寄せと左寄せ制御

-----------------------------------*/
/*--------------------------------------------
//文字数を指定行数で丸めて…で省略・複数行対応mixin
----------------------------------------------*/
/*-----------------------------------

 文章段落

-----------------------------------*/
/*--------------------------------
ホームページ
---------------------------------*/
.home {
  /*--------------------------------
  ヒーローセクション
  ---------------------------------*/
}
.home .hero {
  padding: 0;
  margin: 0;
  text-align: center;
  width: 100%;
  overflow: hidden;
}
.home .hero__content {
  padding: 0;
  margin: 0;
  width: 100%;
}
.home .hero__content img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0;
  padding: 0;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.home .hero__content img:hover {
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
}
.home {
  /*--------------------------------
  インフォセクション
  ---------------------------------*/
}
.home .info-section {
  padding: 0 6.25vw 30px;
  margin: 0 auto;
}
@media screen and (min-width: 800px) {
  .home .info-section {
    padding: 0 50px 60px;
  }
}
.home .info-section__speech-bubble {
  position: relative;
  background: #ffffff;
  border: 2px solid #4a90e2;
  border-radius: 12px;
  padding: 20px 25px;
  margin-bottom: 30px;
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  /* 吹き出しの三角：枠線（青） */
}
.home .info-section__speech-bubble::before {
  content: "";
  position: absolute;
  bottom: -18px;
  left: 50%;
  border: 8px solid transparent;
  border-top: 10px solid #4a90e2;
  z-index: 1;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.home .info-section__speech-bubble {
  /* 吹き出しの三角：背景色（白） */
}
.home .info-section__speech-bubble::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  border: 10px solid transparent;
  border-top: 14px solid #ffffff;
  z-index: 2;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.home .info-section__speech-text {
  font-style: normal;
  font-weight: normal;
  font-size: calc(18 / 16 * 1rem);
  color: #333;
  letter-spacing: 0.03em;
  line-height: 1.6;
  margin: 0;
  line-height: 1.6;
}
.home .info-section__banner {
  width: 100%;
  height: auto;
  display: block;
  margin-top: -8px;
}
.home {
  /*--------------------------------
  サービスコンテンツセクション
  ---------------------------------*/
}
@media (min-width: 800px) {
  .home .service-content {
    padding-bottom: 62px;
  }
}
@media (min-width: 320px) and (max-width: 799px) {
  .home .service-content {
    padding-bottom: calc(6.25vw + 12px);
  }
}
@media (max-width: 319px) {
  .home .service-content {
    padding-bottom: 32px;
  }
}
.home .service-content {
  background: #ffffff;
}
.home .service-content__title {
  font-style: normal;
  font-weight: bold;
  font-size: calc(26 / 16 * 1rem);
  color: #333;
  letter-spacing: 0.05em;
  line-height: 1.2;
}
@media (min-width: 800px) {
  .home .service-content__title {
    font-size: 26px;
  }
}
@media (min-width: 320px) and (max-width: 799px) {
  .home .service-content__title {
    font-size: calc(0.8333333333vw + 19.3333333333px);
  }
}
@media (max-width: 319px) {
  .home .service-content__title {
    font-size: 22px;
  }
}
.home .service-content__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 8px;
  margin-bottom: 0;
}
.home .service-content__title-main {
  font-weight: bold;
  background: linear-gradient(135deg, #1e3a8a, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: inherit;
}
.home .service-content__decoration-image {
  width: 100%;
  height: auto;
  overflow: hidden;
  margin-top: 30px;
}
@media only screen and (max-width: 768px) {
  .home .service-content__decoration-image {
    margin-top: 20px;
  }
}
.home .service-content__decoration-image {
  margin-bottom: 30px;
}
@media only screen and (max-width: 768px) {
  .home .service-content__decoration-image {
    margin-bottom: 20px;
  }
}
.home .service-content__decoration-image img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}
.home .service-content__lead {
  font-style: normal;
  font-weight: 400;
  font-size: calc(18 / 16 * 1rem);
  color: #333;
  letter-spacing: 0.03em;
  line-height: 1.6;
}
@media (min-width: 800px) {
  .home .service-content__lead {
    font-size: 18px;
  }
}
@media (min-width: 320px) and (max-width: 799px) {
  .home .service-content__lead {
    font-size: calc(0.4166666667vw + 14.6666666667px);
  }
}
@media (max-width: 319px) {
  .home .service-content__lead {
    font-size: 16px;
  }
}
.home .service-content__lead {
  margin-bottom: 40px;
}
@media only screen and (max-width: 768px) {
  .home .service-content__lead {
    margin-bottom: 25px;
  }
}
.home .service-content__lead {
  line-height: 1.8;
}
.home .service-content__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-bottom: 20px;
}
@media only screen and (max-width: 768px) {
  .home .service-content__link {
    margin-bottom: 15px;
  }
}
.home .service-content__link:last-child {
  margin-bottom: 0;
}
.home .service-content {
  /*
  &__quick-links {
    @include pp-mb(40px, 25px);
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;

    &-title {
      @include font-cg(14, 500, $primary-color, 20, 1.4);
      @include property-vw(font-size, 800px, 14px, 320px, 12px);
      margin: 0 0 15px 0;
      display: flex;
      align-items: center;
      gap: 6px;

      .material-icons {
        font-size: 10px;
        color: $primary-color;

        @include sp480 {
          font-size: 8px;
        }
      }

      &-text {
        color: $primary-color;
      }
    }

    &-list {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }
  }

  &__quick-link {
    @include font-cg(14, 400, $text-primary, 20, 1.4);
    @include property-vw(font-size, 800px, 14px, 320px, 12px);
    display: inline-block;
    padding: 6px 12px;
    background: $bg-white;
    border: 1px solid $border-light;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.2s ease;

    &:hover {
      background: $primary-color;
      color: $text-white;
      border-color: $primary-color;
      transform: translateY(-1px);
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    &:focus {
      outline: 2px solid $primary-color;
      outline-offset: 2px;
    }
  }
  */
}
.home .service-content__price-links-title {
  font-style: normal;
  font-weight: 600;
  font-size: calc(20 / 16 * 1rem);
  color: #333;
  letter-spacing: 0.03em;
  line-height: 1.4;
}
@media (min-width: 800px) {
  .home .service-content__price-links-title {
    font-size: 20px;
  }
}
@media (min-width: 320px) and (max-width: 799px) {
  .home .service-content__price-links-title {
    font-size: calc(0.4166666667vw + 16.6666666667px);
  }
}
@media (max-width: 319px) {
  .home .service-content__price-links-title {
    font-size: 18px;
  }
}
.home .service-content__price-links-title {
  margin-top: 50px;
}
@media only screen and (max-width: 768px) {
  .home .service-content__price-links-title {
    margin-top: 35px;
  }
}
.home .service-content__price-links-title {
  margin-bottom: 20px;
}
@media only screen and (max-width: 768px) {
  .home .service-content__price-links-title {
    margin-bottom: 15px;
  }
}
.home .service-content__price-links-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.home .service-content__price-links-title .material-icons {
  font-size: 10px;
  color: #214287;
}
@media screen and (min-width: 800px) {
  .home .service-content__price-links-title .material-icons {
    font-size: 12px;
  }
}
.home .service-content__price-links-title-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.home .service-content__price-links {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
}
@media (min-width: 800px) {
  .home .service-content__price-links {
    gap: 14px;
  }
}
@media (min-width: 320px) and (max-width: 799px) {
  .home .service-content__price-links {
    gap: calc(0.4166666667vw + 10.6666666667px);
  }
}
@media (max-width: 319px) {
  .home .service-content__price-links {
    gap: 12px;
  }
}
.home .service-content__price-links {
  margin-bottom: 15px;
}
@media only screen and (max-width: 768px) {
  .home .service-content__price-links {
    margin-bottom: 10px;
  }
}
@media screen and (min-width: 600px) {
  .home .service-content__price-links {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
.home .service-content__price-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  padding: 0;
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  text-decoration: none;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
          box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}
@media screen and (min-width: 800px) {
  .home .service-content__price-card {
    border-radius: 8px;
  }
}
.home .service-content__price-card:hover {
  background: linear-gradient(135deg, #f0f7ff, #ffffff);
  border-color: #214287;
  -webkit-box-shadow: 0 4px 12px rgba(74, 144, 226, 0.2);
          box-shadow: 0 4px 12px rgba(74, 144, 226, 0.2);
}
.home .service-content__price-card:hover .service-content__price-card-name {
  color: #214287;
}
.home .service-content__price-card:hover .service-content__price-card-image img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.home .service-content__price-card:focus {
  outline: 2px solid #214287;
  outline-offset: 2px;
}
.home .service-content__price-card-image {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 60px;
  height: auto;
  overflow: hidden;
}
@media screen and (min-width: 600px) {
  .home .service-content__price-card-image {
    width: 70px;
  }
}
@media screen and (min-width: 800px) {
  .home .service-content__price-card-image {
    width: 80px;
  }
}
.home .service-content__price-card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  -webkit-transition: -webkit-transform 0.25s ease;
  transition: -webkit-transform 0.25s ease;
  transition: transform 0.25s ease;
  transition: transform 0.25s ease, -webkit-transform 0.25s ease;
}
.home .service-content__price-card-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 4px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media (min-width: 800px) {
  .home .service-content__price-card-content {
    padding: 18px;
  }
}
@media (min-width: 320px) and (max-width: 799px) {
  .home .service-content__price-card-content {
    padding: calc(0.8333333333vw + 11.3333333333px);
  }
}
@media (max-width: 319px) {
  .home .service-content__price-card-content {
    padding: 14px;
  }
}
@media screen and (min-width: 800px) {
  .home .service-content__price-card-content {
    gap: 6px;
  }
}
@media screen and (min-width: 800px) and (min-width: 800px) {
  .home .service-content__price-card-content {
    padding: 20px;
  }
}
@media screen and (min-width: 800px) and (min-width: 320px) and (max-width: 799px) {
  .home .service-content__price-card-content {
    padding: calc(1.25vw + 10px);
  }
}
@media screen and (min-width: 800px) and (max-width: 319px) {
  .home .service-content__price-card-content {
    padding: 14px;
  }
}
.home .service-content__price-card-name {
  font-style: normal;
  font-weight: 500;
  font-size: calc(16 / 16 * 1rem);
  color: #333;
  letter-spacing: 0.02em;
  line-height: 1.3;
}
@media (min-width: 800px) {
  .home .service-content__price-card-name {
    font-size: 17px;
  }
}
@media (min-width: 320px) and (max-width: 799px) {
  .home .service-content__price-card-name {
    font-size: calc(0.4166666667vw + 13.6666666667px);
  }
}
@media (max-width: 319px) {
  .home .service-content__price-card-name {
    font-size: 15px;
  }
}
.home .service-content__price-card-name {
  -webkit-transition: color 0.25s ease;
  transition: color 0.25s ease;
  line-height: 1.3;
}
.home .service-content__price-card-price {
  font-style: normal;
  font-weight: 700;
  font-size: calc(18 / 16 * 1rem);
  color: #eb2557;
  letter-spacing: 0.02em;
  line-height: 1;
}
@media (min-width: 800px) {
  .home .service-content__price-card-price {
    font-size: 19px;
  }
}
@media (min-width: 320px) and (max-width: 799px) {
  .home .service-content__price-card-price {
    font-size: calc(0.625vw + 14px);
  }
}
@media (max-width: 319px) {
  .home .service-content__price-card-price {
    font-size: 16px;
  }
}
.home .service-content__price-card-price {
  color: #dc2626;
  line-height: 1.2;
}
.home .service-content__price-card-tax {
  font-style: normal;
  font-weight: 400;
  font-size: calc(13 / 16 * 1rem);
  color: #666;
  letter-spacing: 0.02em;
  line-height: 1;
}
@media (min-width: 800px) {
  .home .service-content__price-card-tax {
    font-size: 13px;
  }
}
@media (min-width: 320px) and (max-width: 799px) {
  .home .service-content__price-card-tax {
    font-size: calc(0.2083333333vw + 11.3333333333px);
  }
}
@media (max-width: 319px) {
  .home .service-content__price-card-tax {
    font-size: 12px;
  }
}
.home .service-content__price-card-tax {
  color: #6b7280;
  margin-left: 2px;
}
.home .service-content__price-links-hidden {
  grid-column: 1/-1;
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 0fr;
  grid-template-rows: 0fr;
  -webkit-transition: grid-template-rows 0.4s ease-out;
  transition: grid-template-rows 0.4s ease-out;
  transition: grid-template-rows 0.4s ease-out, -ms-grid-rows 0.4s ease-out;
}
.home .service-content__price-links-hidden.is-open {
  -ms-grid-rows: 1fr;
  grid-template-rows: 1fr;
}
.home .service-content__price-links-hidden-inner {
  overflow: hidden;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
}
@media (min-width: 800px) {
  .home .service-content__price-links-hidden-inner {
    gap: 14px;
  }
}
@media (min-width: 320px) and (max-width: 799px) {
  .home .service-content__price-links-hidden-inner {
    gap: calc(0.4166666667vw + 10.6666666667px);
  }
}
@media (max-width: 319px) {
  .home .service-content__price-links-hidden-inner {
    gap: 12px;
  }
}
.home .service-content__price-links-hidden-inner {
  padding-top: 10px;
}
@media screen and (min-width: 600px) {
  .home .service-content__price-links-hidden-inner {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    padding-top: 12px;
  }
}
.home .service-content__price-links-toggle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 4px;
  width: 100%;
  padding: 12px 20px;
  background: rgba(33, 66, 135, 0.05);
  border: 1px dashed rgba(33, 66, 135, 0.3);
  border-radius: 8px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin-top: 15px;
}
@media only screen and (max-width: 768px) {
  .home .service-content__price-links-toggle {
    margin-top: 10px;
  }
}
.home .service-content__price-links-toggle {
  margin-bottom: 25px;
}
@media only screen and (max-width: 768px) {
  .home .service-content__price-links-toggle {
    margin-bottom: 20px;
  }
}
.home .service-content__price-links-toggle-text {
  font-style: normal;
  font-weight: 500;
  font-size: calc(16 / 16 * 1rem);
  color: #214287;
  letter-spacing: 0.02em;
  line-height: 1;
}
@media (min-width: 800px) {
  .home .service-content__price-links-toggle-text {
    font-size: 16px;
  }
}
@media (min-width: 320px) and (max-width: 799px) {
  .home .service-content__price-links-toggle-text {
    font-size: calc(0.2083333333vw + 14.3333333333px);
  }
}
@media (max-width: 319px) {
  .home .service-content__price-links-toggle-text {
    font-size: 15px;
  }
}
.home .service-content__price-links-toggle .material-icons {
  font-size: 20px;
  color: #214287;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.home .service-content__price-links-toggle:hover {
  background: rgba(33, 66, 135, 0.1);
  border-color: #214287;
}
.home .service-content__price-links-toggle.is-open .material-icons {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.home .service-content__price-links-toggle.is-open .service-content__price-links-toggle-text::before {
  content: "閉じる";
}
.home .service-content__price-links-toggle.is-open .service-content__price-links-toggle-text {
  font-size: 0;
}
.home .service-content__price-links-toggle.is-open .service-content__price-links-toggle-text::before {
  font-style: normal;
  font-weight: 500;
  font-size: calc(16 / 16 * 1rem);
  color: #214287;
  letter-spacing: 0.02em;
  line-height: 1;
}
@media (min-width: 800px) {
  .home .service-content__price-links-toggle.is-open .service-content__price-links-toggle-text::before {
    font-size: 16px;
  }
}
@media (min-width: 320px) and (max-width: 799px) {
  .home .service-content__price-links-toggle.is-open .service-content__price-links-toggle-text::before {
    font-size: calc(0.2083333333vw + 14.3333333333px);
  }
}
@media (max-width: 319px) {
  .home .service-content__price-links-toggle.is-open .service-content__price-links-toggle-text::before {
    font-size: 15px;
  }
}
.home {
  /*--------------------------------
  最新施工実績セクション
  ---------------------------------*/
}
.home .home-works {
  padding-bottom: 60px;
}
@media only screen and (max-width: 768px) {
  .home .home-works {
    padding-bottom: 40px;
  }
}
.home .home-works {
  background: #ffffff;
}
.home .home-works__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 15px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 20px;
}
@media only screen and (max-width: 768px) {
  .home .home-works__grid {
    margin-top: 15px;
  }
}
@media screen and (max-width: 480px) {
  .home .home-works__grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.home .home-works__card {
  display: block;
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  -webkit-transition: -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  transition: -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  transition: transform 0.3s, box-shadow 0.3s;
  transition: transform 0.3s, box-shadow 0.3s, -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
}
.home .home-works__card:hover {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
          box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}
.home .home-works__card-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #f5f5f5;
}
.home .home-works__card-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.home-works__card:hover .home .home-works__card-thumb img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.home .home-works__card-noimage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  font-style: normal;
  font-weight: 400;
  font-size: calc(15 / 16 * 1rem);
  color: #666;
  letter-spacing: 0em;
  line-height: 1;
  background: #f5f5f5;
}
.home .home-works__card-body {
  padding: 15px;
}
.home .home-works__card-category {
  display: inline-block;
  font-style: normal;
  font-weight: 400;
  font-size: calc(13 / 16 * 1rem);
  color: #333;
  letter-spacing: 0em;
  line-height: 1.4;
  margin-bottom: 8px;
}
.home .home-works__card-title {
  font-style: normal;
  font-weight: 600;
  font-size: calc(16 / 16 * 1rem);
  color: #333;
  letter-spacing: 0em;
  line-height: 1.5;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.home .home-works__card-date {
  font-style: normal;
  font-weight: 400;
  font-size: calc(14 / 16 * 1rem);
  color: #666;
  letter-spacing: 0em;
  line-height: 1.4;
}
.home .home-works__no-posts {
  text-align: center;
  padding: 40px 20px;
  font-style: normal;
  font-weight: 400;
  font-size: calc(16 / 16 * 1rem);
  color: #666;
  letter-spacing: 0em;
  line-height: 1.6;
}
.home .home-works__more {
  margin-top: 25px;
  text-align: center;
}
.home .home-works__more-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  padding: 14px 30px;
  background: #214287;
  color: #ffffff;
  text-decoration: none;
  border-radius: 30px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-shadow: 0 4px 12px rgba(33, 66, 135, 0.3);
          box-shadow: 0 4px 12px rgba(33, 66, 135, 0.3);
}
.home .home-works__more-link:hover {
  background: rgb(24.9857142857, 49.9714285714, 102.2142857143);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 6px 16px rgba(33, 66, 135, 0.4);
          box-shadow: 0 6px 16px rgba(33, 66, 135, 0.4);
}
.home .home-works__more-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.home .home-works__more-icon .material-icons {
  font-size: 20px;
}
.home .home-works__more-text {
  font-style: normal;
  font-weight: 600;
  font-size: calc(16 / 16 * 1rem);
  color: #ffffff;
  letter-spacing: 0em;
  line-height: 1;
}
.home .home-works__more-arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.home .home-works__more-arrow .material-icons {
  font-size: 18px;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.home-works__more-link:hover .home .home-works__more-arrow .material-icons {
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
}
.home {
  /*--------------------------------
  CTAブロック
  ---------------------------------*/
}
.home .cp-cta-block-800 {
  padding-top: 60px;
}
@media only screen and (max-width: 768px) {
  .home .cp-cta-block-800 {
    padding-top: 40px;
  }
}
.home .cp-cta-block-800 {
  padding-bottom: 60px;
}
@media only screen and (max-width: 768px) {
  .home .cp-cta-block-800 {
    padding-bottom: 40px;
  }
}
.home .cp-cta-block-800 {
  background: #ebfaff;
}
.home {
  /*--------------------------------
  お客様の声
  ---------------------------------*/
}
.home .cp-swiper-slider-voice {
  padding-bottom: 60px;
}
@media only screen and (max-width: 768px) {
  .home .cp-swiper-slider-voice {
    padding-bottom: 40px;
  }
}
.home .cp-swiper-slider-voice {
  background: #ffffff;
}
.home {
  /*--------------------------------
  屋根塗装・外壁塗装セクション
  ---------------------------------*/
}
@media (min-width: 800px) {
  .home .paint-service {
    padding-bottom: 62px;
  }
}
@media (min-width: 320px) and (max-width: 799px) {
  .home .paint-service {
    padding-bottom: calc(6.25vw + 12px);
  }
}
@media (max-width: 319px) {
  .home .paint-service {
    padding-bottom: 32px;
  }
}
.home .paint-service {
  background: #ffffff;
}
@media (min-width: 800px) {
  .home .paint-service .l-main-container {
    padding-top: 32px;
  }
}
@media (min-width: 320px) and (max-width: 799px) {
  .home .paint-service .l-main-container {
    padding-top: calc(2.0833333333vw + 15.3333333333px);
  }
}
@media (max-width: 319px) {
  .home .paint-service .l-main-container {
    padding-top: 22px;
  }
}
.home .paint-service__image {
  width: 100%;
  text-align: center;
  margin-top: 30px;
}
@media only screen and (max-width: 768px) {
  .home .paint-service__image {
    margin-top: 20px;
  }
}
.home .paint-service__image {
  margin-bottom: 30px;
}
@media only screen and (max-width: 768px) {
  .home .paint-service__image {
    margin-bottom: 20px;
  }
}
.home .paint-service__image img {
  width: 100%;
  max-width: 600px;
  height: auto;
  display: inline-block;
  border-radius: 8px;
}
.home .paint-service__lead {
  font-style: normal;
  font-weight: 400;
  font-size: calc(18 / 16 * 1rem);
  color: #333;
  letter-spacing: 0.03em;
  line-height: 1.6;
}
@media (min-width: 800px) {
  .home .paint-service__lead {
    font-size: 18px;
  }
}
@media (min-width: 320px) and (max-width: 799px) {
  .home .paint-service__lead {
    font-size: calc(0.4166666667vw + 14.6666666667px);
  }
}
@media (max-width: 319px) {
  .home .paint-service__lead {
    font-size: 16px;
  }
}
.home .paint-service__lead {
  margin-bottom: 40px;
}
@media only screen and (max-width: 768px) {
  .home .paint-service__lead {
    margin-bottom: 25px;
  }
}
.home .paint-service__lead {
  line-height: 1.8;
}
.home .paint-service__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-bottom: 20px;
}
@media only screen and (max-width: 768px) {
  .home .paint-service__link {
    margin-bottom: 15px;
  }
}
.home .paint-service__link:last-child {
  margin-bottom: 0;
}
.home {
  /*--------------------------------
  住まいのリフォームセクション
  ---------------------------------*/
}
@media (min-width: 800px) {
  .home .reform-service {
    padding-bottom: 62px;
  }
}
@media (min-width: 320px) and (max-width: 799px) {
  .home .reform-service {
    padding-bottom: calc(6.25vw + 12px);
  }
}
@media (max-width: 319px) {
  .home .reform-service {
    padding-bottom: 32px;
  }
}
.home .reform-service {
  background: #ffffff;
}
@media (min-width: 800px) {
  .home .reform-service .l-main-container {
    padding-top: 32px;
  }
}
@media (min-width: 320px) and (max-width: 799px) {
  .home .reform-service .l-main-container {
    padding-top: calc(2.0833333333vw + 15.3333333333px);
  }
}
@media (max-width: 319px) {
  .home .reform-service .l-main-container {
    padding-top: 22px;
  }
}
.home .reform-service__image {
  width: 100%;
  text-align: center;
  margin-top: 30px;
}
@media only screen and (max-width: 768px) {
  .home .reform-service__image {
    margin-top: 20px;
  }
}
.home .reform-service__image {
  margin-bottom: 30px;
}
@media only screen and (max-width: 768px) {
  .home .reform-service__image {
    margin-bottom: 20px;
  }
}
.home .reform-service__image img {
  width: 100%;
  max-width: 600px;
  height: auto;
  display: inline-block;
  border-radius: 8px;
}
.home .reform-service__lead {
  font-style: normal;
  font-weight: 400;
  font-size: calc(18 / 16 * 1rem);
  color: #333;
  letter-spacing: 0.03em;
  line-height: 1.6;
}
@media (min-width: 800px) {
  .home .reform-service__lead {
    font-size: 18px;
  }
}
@media (min-width: 320px) and (max-width: 799px) {
  .home .reform-service__lead {
    font-size: calc(0.4166666667vw + 14.6666666667px);
  }
}
@media (max-width: 319px) {
  .home .reform-service__lead {
    font-size: 16px;
  }
}
.home .reform-service__lead {
  margin-bottom: 40px;
}
@media only screen and (max-width: 768px) {
  .home .reform-service__lead {
    margin-bottom: 25px;
  }
}
.home .reform-service__lead {
  line-height: 1.8;
}
.home .reform-service__quick-links {
  margin-bottom: 40px;
}
@media only screen and (max-width: 768px) {
  .home .reform-service__quick-links {
    margin-bottom: 25px;
  }
}
.home .reform-service__quick-links {
  padding: 20px;
  background: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #e9ecef;
}
.home .reform-service__quick-links-title {
  font-style: normal;
  font-weight: 500;
  font-size: calc(16 / 16 * 1rem);
  color: #214287;
  letter-spacing: 0.02em;
  line-height: 1.4;
}
@media (min-width: 800px) {
  .home .reform-service__quick-links-title {
    font-size: 16px;
  }
}
@media (min-width: 320px) and (max-width: 799px) {
  .home .reform-service__quick-links-title {
    font-size: calc(0.4166666667vw + 12.6666666667px);
  }
}
@media (max-width: 319px) {
  .home .reform-service__quick-links-title {
    font-size: 14px;
  }
}
.home .reform-service__quick-links-title {
  margin: 0 0 15px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
}
.home .reform-service__quick-links-title .material-icons {
  font-size: 10px;
  color: #214287;
}
@media screen and (max-width: 480px) {
  .home .reform-service__quick-links-title .material-icons {
    font-size: 8px;
  }
}
.home .reform-service__quick-links-title-text {
  color: #214287;
}
.home .reform-service__quick-links-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
}
.home .reform-service__quick-link {
  font-style: normal;
  font-weight: 400;
  font-size: calc(16 / 16 * 1rem);
  color: #333;
  letter-spacing: 0.02em;
  line-height: 1.4;
}
@media (min-width: 800px) {
  .home .reform-service__quick-link {
    font-size: 16px;
  }
}
@media (min-width: 320px) and (max-width: 799px) {
  .home .reform-service__quick-link {
    font-size: calc(0.4166666667vw + 12.6666666667px);
  }
}
@media (max-width: 319px) {
  .home .reform-service__quick-link {
    font-size: 14px;
  }
}
.home .reform-service__quick-link {
  display: inline-block;
  padding: 6px 12px;
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  text-decoration: none;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.home .reform-service__quick-link:hover {
  background: #214287;
  color: #ffffff;
  border-color: #214287;
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.home .reform-service__quick-link:focus {
  outline: 2px solid #214287;
  outline-offset: 2px;
}
.home .reform-service__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-bottom: 20px;
}
@media only screen and (max-width: 768px) {
  .home .reform-service__link {
    margin-bottom: 15px;
  }
}
.home .reform-service__link:last-child {
  margin-bottom: 0;
}
.home {
  /*--------------------------------
  工事後も安心セクション
  ---------------------------------*/
}
.home .aftercare {
  padding-bottom: 40px;
}
@media only screen and (max-width: 768px) {
  .home .aftercare {
    padding-bottom: 30px;
  }
}
.home .aftercare {
  background: #ffffff;
}
.home .aftercare__header {
  margin-bottom: 40px;
}
.home .aftercare__lead {
  margin-bottom: 30px;
}
.home .aftercare__lead-title {
  font-style: normal;
  font-weight: bold;
  font-size: calc(22 / 16 * 1rem);
  color: #214287;
  letter-spacing: 0.04em;
  line-height: 1.6;
  margin: 0 0 15px 0;
}
@media screen and (max-width: 480px) {
  .home .aftercare__lead-title {
    font-size: 18px;
  }
}
.home .aftercare__lead-text {
  font-style: normal;
  font-weight: normal;
  font-size: calc(18 / 16 * 1rem);
  color: #333;
  letter-spacing: 0.04em;
  line-height: 1.6;
  margin: 0;
}
.home .aftercare__features {
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 8px;
  padding: 25px;
}
@media screen and (max-width: 820px) {
  .home .aftercare__features {
    padding: 15px;
  }
}
.home .aftercare__features-list {
  list-style: none;
  margin: 0 0 20px 0;
  padding: 0;
}
.home .aftercare__features-list li {
  position: relative;
  padding-left: 25px;
  font-style: normal;
  font-weight: normal;
  font-size: calc(18 / 16 * 1rem);
  color: #333;
  letter-spacing: 0.04em;
  line-height: 1.6;
  margin-bottom: 12px;
  line-height: 1.5;
}
.home .aftercare__features-list li::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 0;
  color: #214287;
  font-size: 14px;
}
.home .aftercare__features-list li:last-child {
  margin-bottom: 0;
}
.home .aftercare__conclusion {
  font-style: normal;
  font-weight: bold;
  font-size: calc(18 / 16 * 1rem);
  color: #214287;
  letter-spacing: 0.04em;
  line-height: 1.6;
  margin: 0;
  padding-top: 15px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}