@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-cover-method {
  /*--------------------------------
  ヒーローセクション
  ---------------------------------*/
  /*--------------------------------
  インフォセクション
  ---------------------------------*/
  /*--------------------------------
  モデル価格セクション
  ---------------------------------*/
  /*--------------------------------
  失敗しないためにセクション
  ---------------------------------*/
  /*--------------------------------
  向いている屋根セクション
  ---------------------------------*/
}
.p-yane-cover-method .hero {
  padding: 0;
  margin: 0;
  text-align: center;
  width: 100%;
  overflow: hidden;
}
.p-yane-cover-method .hero__content {
  padding: 0;
  margin: 0;
  width: 100%;
}
.p-yane-cover-method .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-cover-method .hero__content img:hover {
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
}
.p-yane-cover-method .info-section {
  padding: 0 6.25vw 60px;
  background: #f3faff;
  margin: 0 auto;
}
@media screen and (min-width: 800px) {
  .p-yane-cover-method .info-section {
    padding: 0 50px 60px;
  }
}
.p-yane-cover-method .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-cover-method .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-cover-method .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-cover-method .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-cover-method .info-section__banner {
  width: 100%;
  height: auto;
  display: block;
  margin-top: -8px;
}
.p-yane-cover-method .model-price {
  padding-bottom: 5px;
  background: #ffffff;
}
.p-yane-cover-method .model-price__header {
  margin-bottom: 10px;
  text-align: center;
}
.p-yane-cover-method .model-price__content {
  padding: 20px 30px 40px;
  border-radius: 15px;
  position: relative;
  text-align: left;
}
.p-yane-cover-method .model-price__main {
  margin-bottom: 20px;
}
.p-yane-cover-method .model-price__image {
  margin-bottom: 20px;
  text-align: center;
}
.p-yane-cover-method .model-price__image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  -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-cover-method .model-price__price {
  text-align: center;
}
.p-yane-cover-method .model-price__price-large {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 12px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.p-yane-cover-method .model-price__total-label {
  font-style: normal;
  font-weight: bold;
  font-size: calc(34 / 16 * 1rem);
  color: #e60012;
  letter-spacing: inherit;
  line-height: inherit;
}
@media (min-width: 820px) {
  .p-yane-cover-method .model-price__total-label {
    font-size: 34px;
  }
}
@media (min-width: 320px) and (max-width: 819px) {
  .p-yane-cover-method .model-price__total-label {
    font-size: calc(3.2vw + 7.76px);
  }
}
@media (max-width: 319px) {
  .p-yane-cover-method .model-price__total-label {
    font-size: 18px;
  }
}
.p-yane-cover-method .model-price__price-number {
  font-style: normal;
  font-weight: bold;
  font-size: calc(122 / 16 * 1rem);
  color: #e60012;
  letter-spacing: inherit;
  line-height: inherit;
  line-height: 0.9;
}
@media (min-width: 820px) {
  .p-yane-cover-method .model-price__price-number {
    font-size: 122px;
  }
}
@media (min-width: 320px) and (max-width: 819px) {
  .p-yane-cover-method .model-price__price-number {
    font-size: calc(12vw + 23.6px);
  }
}
@media (max-width: 319px) {
  .p-yane-cover-method .model-price__price-number {
    font-size: 62px;
  }
}
.p-yane-cover-method .model-price__price-decimal {
  font-style: normal;
  font-weight: bold;
  font-size: calc(42 / 16 * 1rem);
  color: #e60012;
  letter-spacing: inherit;
  line-height: inherit;
  line-height: 0.9;
}
@media (min-width: 820px) {
  .p-yane-cover-method .model-price__price-decimal {
    font-size: 42px;
  }
}
@media (min-width: 320px) and (max-width: 819px) {
  .p-yane-cover-method .model-price__price-decimal {
    font-size: calc(4vw + 9.2px);
  }
}
@media (max-width: 319px) {
  .p-yane-cover-method .model-price__price-decimal {
    font-size: 22px;
  }
}
.p-yane-cover-method .model-price__tax-info {
  font-style: normal;
  font-weight: normal;
  font-size: calc(30 / 16 * 1rem);
  color: #f05050;
  letter-spacing: inherit;
  line-height: inherit;
}
@media (min-width: 820px) {
  .p-yane-cover-method .model-price__tax-info {
    font-size: 30px;
  }
}
@media (min-width: 320px) and (max-width: 819px) {
  .p-yane-cover-method .model-price__tax-info {
    font-size: calc(2.8vw + 7.04px);
  }
}
@media (max-width: 319px) {
  .p-yane-cover-method .model-price__tax-info {
    font-size: 16px;
  }
}
.p-yane-cover-method .model-price__disclaimer {
  font-style: normal;
  font-weight: normal;
  font-size: calc(18 / 16 * 1rem);
  color: #666;
  letter-spacing: inherit;
  line-height: inherit;
  text-align: right;
  margin-top: 20px;
}
@media (min-width: 820px) {
  .p-yane-cover-method .model-price__disclaimer {
    font-size: 18px;
  }
}
@media (min-width: 320px) and (max-width: 819px) {
  .p-yane-cover-method .model-price__disclaimer {
    font-size: calc(1.6vw + 4.88px);
  }
}
@media (max-width: 319px) {
  .p-yane-cover-method .model-price__disclaimer {
    font-size: 10px;
  }
}
@media screen and (max-width: 480px) {
  .p-yane-cover-method .model-price__disclaimer {
    text-align: left;
  }
}
@media screen and (max-width: 820px) {
  .p-yane-cover-method .model-price__content {
    padding: 20px 15px;
  }
  .p-yane-cover-method .model-price__price-large {
    gap: 8px;
  }
}
.p-yane-cover-method .model-price__tab {
  max-width: 700px;
  margin-inline: auto;
  margin-top: 30px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
  -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-cover-method .model-price__tab-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.p-yane-cover-method .model-price__tab-button {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 15px 20px;
  border: none;
  background: rgba(105, 205, 245, 0.47);
  color: #333;
  font-style: normal;
  font-weight: 500;
  font-size: calc(20 / 16 * 1rem);
  color: #333;
  letter-spacing: 0.02em;
  line-height: 1.5;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
}
.p-yane-cover-method .model-price__tab-button:hover {
  background: #3867cd;
  color: #333;
}
.p-yane-cover-method .model-price__tab-button.is-active {
  background: #214287;
  color: #ffffff;
  font-style: normal;
  font-weight: 500;
  font-size: calc(20 / 16 * 1rem);
  color: #ffffff;
  letter-spacing: inherit;
  line-height: inherit;
}
.p-yane-cover-method .model-price__tab-button:first-child {
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}
.p-yane-cover-method .model-price__tab-content {
  position: relative;
  background: white;
}
.p-yane-cover-method .model-price__tab-panel {
  display: none;
}
@media (min-width: 800px) {
  .p-yane-cover-method .model-price__tab-panel {
    padding: 27px;
  }
}
@media (min-width: 320px) and (max-width: 799px) {
  .p-yane-cover-method .model-price__tab-panel {
    padding: calc(3.125vw + 2px);
  }
}
@media (max-width: 319px) {
  .p-yane-cover-method .model-price__tab-panel {
    padding: 12px;
  }
}
.p-yane-cover-method .model-price__tab-panel.is-active {
  display: block;
}
.p-yane-cover-method .model-price__tab-panel-lists {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin: 0;
  padding: 0;
}
.p-yane-cover-method .model-price__tab-panel-list {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.p-yane-cover-method .model-price__tab-panel-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.p-yane-cover-method .model-price__tab-panel-list li {
  position: relative;
  padding-left: 20px;
  font-style: normal;
  font-weight: 500;
  font-size: calc(19 / 16 * 1rem);
  color: #333;
  letter-spacing: 0.01em;
  line-height: 1.5;
  line-height: 1.6;
  text-align: left;
  margin-bottom: 8px;
}
.p-yane-cover-method .model-price__tab-panel-list li::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 0;
  color: #214287;
  font-size: 12px;
}
.p-yane-cover-method .model-price__tab-panel-notes {
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.p-yane-cover-method .model-price__tab-panel-notes p {
  font-style: normal;
  font-weight: 400;
  font-size: calc(14 / 16 * 1rem);
  color: #666;
  letter-spacing: inherit;
  line-height: inherit;
  line-height: 1.5;
  margin-bottom: 8px;
  text-align: left;
}
.p-yane-cover-method .model-price__tab-panel-notes p:last-child {
  margin-bottom: 0;
}
.p-yane-cover-method .model-price__tab-panel[data-tab=secret] .model-price__tab-panel-list li {
  font-style: normal;
  font-weight: 500;
  font-size: calc(18 / 16 * 1rem);
  color: #333;
  letter-spacing: inherit;
  line-height: inherit;
}
.p-yane-cover-method .model-price__tab-panel-list--right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}
.p-yane-cover-method .model-price__tab-panel-notice {
  margin-top: 20px;
  padding: 15px;
  background-color: #f7eedd;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  text-align: left;
}
.p-yane-cover-method .model-price__tab-panel-notice-title {
  font-style: normal;
  font-weight: 700;
  font-size: calc(20 / 16 * 1rem);
  color: #eb2557;
  letter-spacing: 0.01em;
  line-height: 1.5;
  margin-bottom: 8px;
  margin-top: 0;
  text-align: left;
}
.p-yane-cover-method .model-price__tab-panel-notice-text {
  font-style: normal;
  font-weight: 400;
  font-size: calc(18 / 16 * 1rem);
  color: #666;
  letter-spacing: 0.01em;
  line-height: 1.5;
  line-height: 1.5;
  margin: 0;
  text-align: left;
}
@media screen and (max-width: 680px) {
  .p-yane-cover-method .model-price__tab-panel-lists {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
@media screen and (max-width: 480px) {
  .p-yane-cover-method .model-price__tab-button {
    padding: 12px 15px;
    font-style: normal;
    font-weight: 500;
    font-size: calc(16 / 16 * 1rem);
    color: #333;
    letter-spacing: inherit;
    line-height: inherit;
  }
  .p-yane-cover-method .model-price__tab-button.is-active {
    font-style: normal;
    font-weight: 500;
    font-size: calc(16 / 16 * 1rem);
    color: #ffffff;
    letter-spacing: inherit;
    line-height: inherit;
  }
}
@media screen and (max-width: 480px) and (min-width: 800px) {
  .p-yane-cover-method .model-price__tab-panel {
    padding: 17px;
  }
}
@media screen and (max-width: 480px) and (min-width: 320px) and (max-width: 799px) {
  .p-yane-cover-method .model-price__tab-panel {
    padding: calc(1.0416666667vw + 8.6666666667px);
  }
}
@media screen and (max-width: 480px) and (max-width: 319px) {
  .p-yane-cover-method .model-price__tab-panel {
    padding: 12px;
  }
}
.p-yane-cover-method .failure-prevention {
  background: linear-gradient(135deg, rgba(240, 248, 255, 0.8) 0%, rgba(255, 255, 255, 0.9) 100%);
  padding-bottom: 10px;
}
.p-yane-cover-method .failure-prevention__header {
  margin-bottom: 30px;
  text-align: center;
}
.p-yane-cover-method .failure-prevention__content {
  padding: 40px 30px;
  position: relative;
}
.p-yane-cover-method .failure-prevention__text {
  margin-bottom: 30px;
}
.p-yane-cover-method .failure-prevention__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-bottom: 20px;
}
.p-yane-cover-method .failure-prevention__text-paragraph:last-child {
  margin-bottom: 0;
}
.p-yane-cover-method .failure-prevention__text-paragraph strong {
  font-weight: bold;
  color: #eb2557;
}
.p-yane-cover-method .failure-prevention__emphasis {
  font-style: normal;
  font-weight: bold;
  font-size: calc(26 / 16 * 1rem);
  color: #333;
  letter-spacing: 0.04em;
  line-height: 1.6;
  text-align: left;
  margin-top: 25px;
  margin-bottom: 0;
}
.p-yane-cover-method .failure-prevention__image {
  text-align: center;
}
.p-yane-cover-method .failure-prevention__image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 820px) {
  .p-yane-cover-method .failure-prevention__content {
    padding: 20px 15px;
  }
  .p-yane-cover-method .failure-prevention__text {
    margin-bottom: 20px;
  }
  .p-yane-cover-method .failure-prevention__text p {
    margin-bottom: 15px;
  }
}
.p-yane-cover-method .suitable-roof {
  background: #ffffff;
  padding-bottom: 0;
}
.p-yane-cover-method .suitable-roof__header {
  margin-bottom: 30px;
  text-align: center;
}
.p-yane-cover-method .suitable-roof__content {
  padding: 40px 30px;
  position: relative;
}
.p-yane-cover-method .suitable-roof__intro {
  margin-bottom: 25px;
}
.p-yane-cover-method .suitable-roof__intro p {
  font-style: normal;
  font-weight: normal;
  font-size: calc(20 / 16 * 1rem);
  color: #333;
  letter-spacing: 0.04em;
  line-height: 1.6;
  text-align: center;
  margin: 0;
}
.p-yane-cover-method .suitable-roof__intro p strong {
  font-weight: bold;
}
.p-yane-cover-method .suitable-roof__list {
  margin-bottom: 30px;
  background: rgb(198, 216, 232);
  border: 1px solid rgba(240, 248, 255, 0.8);
  border-radius: 8px;
  padding: 25px;
}
.p-yane-cover-method .suitable-roof__list ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.p-yane-cover-method .suitable-roof__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-cover-method .suitable-roof__list li::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 0;
  color: #214287;
  font-size: 14px;
}
.p-yane-cover-method .suitable-roof__list li:last-child {
  margin-bottom: 0;
}
.p-yane-cover-method .suitable-roof__conclusion {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 30px;
}
@media screen and (max-width: 480px) {
  .p-yane-cover-method .suitable-roof__conclusion {
    gap: 15px;
  }
}
.p-yane-cover-method .suitable-roof__conclusion-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-yane-cover-method .suitable-roof__conclusion-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-cover-method .suitable-roof__conclusion-paragraph:first-child {
  margin-bottom: 15px;
}
.p-yane-cover-method .suitable-roof__conclusion-paragraph strong {
  font-weight: bold;
  color: #214287;
}
.p-yane-cover-method .suitable-roof__character {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 150px;
          flex: 0 0 150px;
  text-align: center;
}
@media screen and (max-width: 480px) {
  .p-yane-cover-method .suitable-roof__character {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 80px;
            flex: 0 0 80px;
  }
}
.p-yane-cover-method .suitable-roof__character img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 820px) {
  .p-yane-cover-method .suitable-roof__content {
    padding: 20px 15px;
  }
  .p-yane-cover-method .suitable-roof__intro {
    margin-bottom: 20px;
  }
  .p-yane-cover-method .suitable-roof__list {
    margin-bottom: 25px;
    padding: 15px;
  }
  .p-yane-cover-method .suitable-roof__list li {
    margin-bottom: 10px;
  }
}