@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
----------------------------------------------*/
/*-----------------------------------

 文章段落

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

屋根工事+リフォームがお得

---------------------------------*/
.p-yane-reform-set .hero {
  padding: 0;
  margin: 0;
  text-align: center;
  width: 100%;
  overflow: hidden;
}
.p-yane-reform-set .hero__content {
  padding: 0;
  margin: 0;
  width: 100%;
}
.p-yane-reform-set .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;
}
.p-yane-reform-set .hero__content img:hover {
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
}
.p-yane-reform-set .info-section {
  padding: 0 6.25vw 60px;
  background: #f3faff;
  margin: 0 auto;
}
@media screen and (min-width: 800px) {
  .p-yane-reform-set .info-section {
    padding: 0 50px 60px;
  }
}
.p-yane-reform-set .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);
  /* 吹き出しの三角：枠線（青） */
  /* 吹き出しの三角：背景色（白） */
}
.p-yane-reform-set .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%);
}
.p-yane-reform-set .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%);
}
.p-yane-reform-set .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;
}
.p-yane-reform-set .info-section__banner {
  width: 100%;
  height: auto;
  display: block;
  margin-top: -8px;
}
.p-yane-reform-set .info-section__reform-list {
  margin: 40px 0;
}
.p-yane-reform-set .info-section__reform-title {
  font-style: normal;
  font-weight: bold;
  font-size: calc(21 / 16 * 1rem);
  color: #333;
  letter-spacing: 0.04em;
  line-height: 1.4;
  margin: 0 0 20px 0;
  text-align: center;
}
@media screen and (max-width: 480px) {
  .p-yane-reform-set .info-section__reform-title {
    font-size: 16px;
    margin-bottom: 15px;
  }
}
.p-yane-reform-set .info-section__reform-table {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 15px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 20px;
}
@media screen and (max-width: 480px) {
  .p-yane-reform-set .info-section__reform-table {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
.p-yane-reform-set .info-section__reform-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #ffffff;
  border: 2px solid #214287;
  border-radius: 8px;
  text-decoration: none;
  color: inherit;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  overflow: hidden;
  position: relative;
}
.p-yane-reform-set .info-section__reform-row:hover {
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border-color: #3867cd;
  text-decoration: none;
  color: inherit;
}
@media screen and (max-width: 480px) {
  .p-yane-reform-set .info-section__reform-row {
    gap: 0;
  }
}
.p-yane-reform-set .info-section__reform-image {
  width: 120px;
  height: 120px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 480px) {
  .p-yane-reform-set .info-section__reform-image {
    width: 100px;
    height: 100px;
  }
}
.p-yane-reform-set .info-section__reform-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.p-yane-reform-set .info-section__reform-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px;
}
@media screen and (max-width: 480px) {
  .p-yane-reform-set .info-section__reform-content {
    padding: 15px;
  }
}
.p-yane-reform-set .info-section__reform-name {
  font-style: normal;
  font-weight: bold;
  font-size: calc(18 / 16 * 1rem);
  color: #214287;
  letter-spacing: 0.04em;
  line-height: 1.4;
  margin: 0;
}
.p-yane-reform-set .info-section__reform-name span {
  font-size: 12px;
  font-weight: normal;
  color: #666;
}
@media screen and (max-width: 480px) {
  .p-yane-reform-set .info-section__reform-name span {
    font-size: 11px;
  }
}
@media screen and (max-width: 480px) {
  .p-yane-reform-set .info-section__reform-name {
    font-size: 13px;
  }
}
.p-yane-reform-set .info-section__reform-arrow {
  position: absolute;
  bottom: 8px;
  right: 8px;
  width: 20px;
  height: 20px;
  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;
}
.p-yane-reform-set .info-section__reform-arrow .material-icons {
  font-size: 16px;
  color: #214287;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 480px) {
  .p-yane-reform-set .info-section__reform-arrow {
    bottom: 6px;
    right: 6px;
    width: 18px;
    height: 18px;
  }
  .p-yane-reform-set .info-section__reform-arrow .material-icons {
    font-size: 14px;
  }
}
.p-yane-reform-set .info-section__reform-row:hover .p-yane-reform-set .info-section__reform-arrow .material-icons {
  color: #3867cd;
  -webkit-transform: translateX(2px);
          transform: translateX(2px);
}
.p-yane-reform-set .benefits {
  padding-bottom: 40px;
  background: rgba(240, 248, 255, 0.3);
}
@media only screen and (max-width: 768px) {
  .p-yane-reform-set .benefits {
    padding-bottom: 30px;
  }
}
.p-yane-reform-set .benefits__header {
  margin-bottom: 40px;
}
.p-yane-reform-set .benefits__content {
  counter-reset: point-counter;
}
.p-yane-reform-set .benefits__point-set {
  margin-bottom: 30px;
}
.p-yane-reform-set .benefits__point-set:last-child {
  margin-bottom: 0;
}
.p-yane-reform-set .benefits__point {
  background: #ffffff;
  border: 2px solid #214287;
  border-radius: 12px;
  padding: 30px;
  -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  counter-increment: point-counter;
  position: relative;
}
@media screen and (max-width: 480px) {
  .p-yane-reform-set .benefits__point {
    padding: 20px;
  }
}
.p-yane-reform-set .benefits__point::before {
  content: "Point." counter(point-counter, decimal-leading-zero);
  display: inline-block;
  font-style: normal;
  font-weight: bold;
  font-size: calc(16 / 16 * 1rem);
  color: #ffffff;
  letter-spacing: 0.01em;
  line-height: 1;
  background: #214287;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 15px;
}
@media screen and (max-width: 480px) {
  .p-yane-reform-set .benefits__point::before {
    font-size: 12px;
    padding: 3px 10px;
  }
}
.p-yane-reform-set .benefits__point-title {
  font-style: normal;
  font-weight: bold;
  font-size: calc(20 / 16 * 1rem);
  color: #214287;
  letter-spacing: 0.04em;
  line-height: 1.4;
  margin: 0 0 20px 0;
  padding-bottom: 15px;
  border-bottom: 2px solid rgba(33, 66, 135, 0.2);
}
@media screen and (max-width: 480px) {
  .p-yane-reform-set .benefits__point-title {
    font-size: 16px;
    margin-bottom: 15px;
    padding-bottom: 10px;
  }
}
.p-yane-reform-set .benefits__point-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
}
.p-yane-reform-set .benefits__point-subtitle {
  font-style: normal;
  font-weight: bold;
  font-size: calc(19 / 16 * 1rem);
  color: #214287;
  letter-spacing: 0.04em;
  line-height: 1.5;
  margin: 0;
}
@media screen and (max-width: 480px) {
  .p-yane-reform-set .benefits__point-subtitle {
    font-size: 16px;
  }
}
.p-yane-reform-set .benefits__point-paragraph {
  font-style: normal;
  font-weight: normal;
  font-size: calc(17 / 16 * 1rem);
  color: #333;
  letter-spacing: 0.04em;
  line-height: 1.7;
  margin: 0;
}
@media screen and (max-width: 480px) {
  .p-yane-reform-set .benefits__point-paragraph {
    font-size: 14px;
  }
}
.p-yane-reform-set .aftercare {
  padding-bottom: 40px;
  background: #ffffff;
}
@media only screen and (max-width: 768px) {
  .p-yane-reform-set .aftercare {
    padding-bottom: 30px;
  }
}
.p-yane-reform-set .aftercare__header {
  margin-bottom: 40px;
}
.p-yane-reform-set .aftercare__lead {
  margin-bottom: 30px;
}
.p-yane-reform-set .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) {
  .p-yane-reform-set .aftercare__lead-title {
    font-size: 18px;
  }
}
.p-yane-reform-set .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;
}
.p-yane-reform-set .aftercare__features {
  background: rgb(198, 216, 232);
  border: 1px solid rgba(240, 248, 255, 0.8);
  border-radius: 8px;
  padding: 25px;
}
@media screen and (max-width: 820px) {
  .p-yane-reform-set .aftercare__features {
    padding: 15px;
  }
}
.p-yane-reform-set .aftercare__features-list {
  list-style: none;
  margin: 0 0 20px 0;
  padding: 0;
}
.p-yane-reform-set .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;
}
.p-yane-reform-set .aftercare__features-list li::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 0;
  color: #214287;
  font-size: 14px;
}
.p-yane-reform-set .aftercare__features-list li:last-child {
  margin-bottom: 0;
}
.p-yane-reform-set .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);
}
.p-yane-reform-set .popular-reform {
  padding-bottom: 40px;
  background: #f5f5f5;
}
@media only screen and (max-width: 768px) {
  .p-yane-reform-set .popular-reform {
    padding-bottom: 20px;
  }
}
.p-yane-reform-set .popular-reform__header {
  margin-bottom: 40px;
}
.p-yane-reform-set .popular-reform__text {
  margin-bottom: 30px;
}
.p-yane-reform-set .popular-reform__text-paragraph {
  font-style: normal;
  font-weight: normal;
  font-size: calc(18 / 16 * 1rem);
  color: #333;
  letter-spacing: 0.04em;
  line-height: 1.6;
  margin: 0;
  text-align: left;
}
.p-yane-reform-set .popular-reform__examples {
  margin-top: 40px;
}
.p-yane-reform-set .popular-reform__examples-title {
  font-style: normal;
  font-weight: bold;
  font-size: calc(22 / 16 * 1rem);
  color: #333;
  letter-spacing: 0.04em;
  line-height: 1.4;
  margin: 0 0 25px 0;
  text-align: left;
  position: relative;
  padding-right: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 480px) {
  .p-yane-reform-set .popular-reform__examples-title {
    font-size: 18px;
    margin-bottom: 20px;
  }
}
.p-yane-reform-set .popular-reform__examples-title::after {
  content: "";
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 2px;
  background: #214287;
  margin-left: 20px;
}
.p-yane-reform-set .popular-reform__table {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  background: #ffffff;
}
.p-yane-reform-set .popular-reform__row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 120px 20px 1fr;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 20px;
  border-bottom: 1px solid #e0e0e0;
}
.p-yane-reform-set .popular-reform__row:last-child {
  border-bottom: none;
}
@media screen and (max-width: 480px) {
  .p-yane-reform-set .popular-reform__row {
    gap: 15px;
    padding: 15px;
  }
}
.p-yane-reform-set .popular-reform__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;
}
.p-yane-reform-set .popular-reform__name {
  font-style: normal;
  font-weight: bold;
  font-size: calc(18 / 16 * 1rem);
  color: #214287;
  letter-spacing: 0.04em;
  line-height: 1.4;
  margin: 0 0 8px 0;
}
@media screen and (max-width: 480px) {
  .p-yane-reform-set .popular-reform__name {
    font-size: 15px;
  }
}
.p-yane-reform-set .popular-reform__image {
  width: 120px;
  height: 120px;
}
@media screen and (max-width: 480px) {
  .p-yane-reform-set .popular-reform__image {
    width: 100px;
    height: 100px;
  }
}
.p-yane-reform-set .popular-reform__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
  display: block;
}
.p-yane-reform-set .popular-reform__feature {
  font-style: normal;
  font-weight: normal;
  font-size: calc(17 / 16 * 1rem);
  color: #333;
  letter-spacing: 0.04em;
  line-height: 1.6;
  margin: 0;
}
@media screen and (max-width: 480px) {
  .p-yane-reform-set .popular-reform__feature {
    font-size: 14px;
  }
}
.p-yane-reform-set .popular-reform__feature-title {
  font-style: normal;
  font-weight: bold;
  font-size: calc(17 / 16 * 1rem);
  color: #333;
  letter-spacing: 0.04em;
  line-height: 1.4;
  margin: 0 0 8px 0;
}
@media screen and (max-width: 480px) {
  .p-yane-reform-set .popular-reform__feature-title {
    font-size: 15px;
  }
}
.p-yane-reform-set .popular-reform__feature-title strong {
  font-weight: bold !important;
}
.p-yane-reform-set .popular-reform__feature-detail {
  font-style: normal;
  font-weight: normal;
  font-size: calc(15 / 16 * 1rem);
  color: #333;
  letter-spacing: 0.04em;
  line-height: 1.6;
  margin: 0 0 15px 0;
}
@media screen and (max-width: 480px) {
  .p-yane-reform-set .popular-reform__feature-detail {
    font-size: 12px;
  }
}
.p-yane-reform-set .popular-reform__feature-link {
  text-align: right;
}
.p-yane-reform-set .popular-reform__detail-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  text-decoration: none;
  color: #214287;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.p-yane-reform-set .popular-reform__detail-link:hover {
  color: #3867cd;
  text-decoration: none;
}
.p-yane-reform-set .popular-reform__detail-link-text {
  font-style: normal;
  font-weight: normal;
  font-size: calc(14 / 16 * 1rem);
  color: inherit;
  letter-spacing: 0.04em;
  line-height: 1;
  margin: 0;
}
@media screen and (max-width: 480px) {
  .p-yane-reform-set .popular-reform__detail-link-text {
    font-size: 11px;
  }
}
.p-yane-reform-set .popular-reform__detail-link-arrow {
  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;
}
.p-yane-reform-set .popular-reform__detail-link-arrow .material-icons {
  font-size: 14px;
  color: inherit;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 480px) {
  .p-yane-reform-set .popular-reform__detail-link-arrow .material-icons {
    font-size: 12px;
  }
}
.p-yane-reform-set .popular-reform__detail-link:hover .p-yane-reform-set .popular-reform__detail-link-arrow .material-icons {
  -webkit-transform: translateX(2px);
          transform: translateX(2px);
}
@media screen and (max-width: 820px) {
  .p-yane-reform-set .benefits__content,
  .p-yane-reform-set .aftercare__content {
    padding: 20px 15px;
  }
}