@charset "UTF-8";
.bk-wh {
  background-color: #fff;
}

.padding {
  padding-top: max(50px, 6.25%);
  padding-bottom: max(50px, 6.25%);
}

/* ページタイトル────────────────*/
.page-title-area {
  height: 430px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.page-title {
  justify-content: center;
  align-items: center;
  width: 700px;
  padding-top: 30px;
  padding-bottom: 30px;
  text-align: center;
  background: url("../images/page-title-back.png") no-repeat;
  background-position: center center;
  background-size: contain;
  font-size: clamp(2rem, 4.6vw, 4.4rem);
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-weight: 600;
}
.page-title span {
  font-size: clamp(1.6rem, 3vw, 3rem);
}

@media (max-width: 600px) {
  .page-title-area {
    height: 160px;
    margin-top: -20px;
  }

  .page-title {
    width: 80%;
  }
}
/* コンテンツヘッド────────────────*/
.content-head {
  padding-top: max(60px, 10%);
  padding-bottom: max(50px, 7%);
  text-align: center;
}

.content-head__txt {
  color: #3C2800;
  font-size: clamp(1.8rem, 2.6vw, 2.6rem);
  font-weight: 500;
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
}
.content-head__txt::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 2px;
  background-color: #3C2800;
  display: inline-block;
  top: -25px;
  left: 50%;
  transform: translate(-50%);
}

/* セクションタイトル────────────────*/
.section-ttl {
  color: #3C2800;
  font-size: clamp(1.8rem, 2.6vw, 2.6rem);
  font-weight: 700;
  text-align: center;
  position: relative;
}
.section-ttl::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 2px;
  background-color: #3C2800;
  display: inline-block;
  top: -25px;
  left: 50%;
  transform: translate(-50%);
}
.section-ttl span {
  display: block;
  font-size: clamp(1.4rem, 2vw, 2rem);
}

.section-ttl2 {
  padding: 20px 30px;
  font-size: clamp(1.8rem, 2.8vw, 2.8rem);
  font-weight: 700;
  background: #A2A29E;
  background: linear-gradient(to right, #F2F2F0 0%, #A2A29E 100%);
}

.section-ttl3 {
  padding: 20px 30px;
  font-size: clamp(1.8rem, 2.8vw, 2.8rem);
  font-weight: 700;
  background: #3C2800;
  color: #fff;
}

/* テーブル────────────────*/
.common-table {
  border-top: solid 1px #B5B5B4;
}
.common-table th {
  border-bottom: solid 1px #B5B5B4;
  background-color: #EFEFEF;
  width: 21%;
  text-align: left;
}
.common-table td {
  border-bottom: solid 1px #B5B5B4;
  background-color: #fff;
}

@media (max-width: 600px) {
  .common-table {
    border-top: none;
  }
  .common-table th, .common-table td {
    border-bottom: none;
    width: 100%;
    display: block;
    padding: 15px;
  }
}
/* リンクボタン────────────────*/
.link-btn .btns {
  max-width: 1000px;
  width: 100%;
  margin: max(50px, 8%) auto 0;
  padding: 40px 20px 20px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-wrap: wrap;
  z-index: 999;
}
.link-btn .btns li {
  width: calc((1000px - 85px) / 4);
  font-size: 1.4rem;
  letter-spacing: 0;
  text-align: center;
}
.link-btn .btns li figure {
  background-color: #E0E0E0;
  height: 150px;
  padding: 20px;
  font-weight: 500;
  margin-bottom: 10px;
}
.link-btn .btns li figure figcaption {
  font-size: 1.5rem;
}
.link-btn .btns li figure img {
  margin-bottom: 7px;
}
.link-btn .btns li:not(:first-child) {
  margin-left: 15px;
}

@media (max-width: 1020px) {
  .link-btn {
    text-align: center;
    margin: auto;
  }
  .link-btn .btns {
    width: 96%;
    padding: 30px 15px 15px;
    margin-left: auto;
    margin-right: auto;
  }
  .link-btn .btns li {
    width: 49%;
    margin-bottom: 25px;
  }
  .link-btn .btns li figure {
    padding: 15px;
  }
  .link-btn .btns li:not(:first-child) {
    margin-left: 0;
  }
  .link-btn .btns li:nth-child(even) {
    margin-left: 2%;
  }
}
@media (max-width: 600px) {
  .link-btn .btns {
    top: -10px;
  }
  .link-btn .btns li {
    font-size: 1.3rem;
    margin-bottom: 5px;
  }

  .link-btn .btns li figure {
    height: 60%;
  }

  .link-btn .btns li figure figcaption {
    font-size: 1.2rem;
  }

  .link-btn .btns li figure img {
    width: 17%;
  }

  .link-btn .btns li:last-child figure img {
    width: 8%;
  }
}
/*ページャ───────────────*/
.page-numbers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.page-numbers li {
  margin-left: 5px;
  margin-right: 5px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background-color: #EBEBEB;
}

.page-numbers li .current {
  color: #fff;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #000;
}

.page-numbers li a {
  display: block;
}

/* ▼コンテンツページ──────────────────*/
/* 簡単見積シュミレーション───────────────*/
#simulation .page-title-area {
  background-image: url("../images/simulation.jpg");
}

.simulation-ttl {
  text-align: center;
  color: #fff;
  background-color: #A2A29E;
  font-size: clamp(1.8rem, 2.6vw, 2.6rem);
  font-weight: 500;
  padding: 20px;
  margin-bottom: 5vh;
}

.simulation-calc, .simulation-check {
  width: 48%;
}

/* 計算部分*/
.simulation-calc__number-box {
  width: 45%;
  margin-right: 3%;
}
.simulation-calc__number-box input[type=text] {
  background-color: #fff;
  border: solid 1px #333;
  border-radius: 10px;
  box-shadow: inset 2px 2px 0 0 rgba(0, 0, 0, 0.1);
}

.simulation-calc__select {
  width: 12%;
}
.simulation-calc__select input[type="radio"] {
  margin-top: 10px;
}

.simulation-calc__btn {
  width: 40%;
}
.simulation-calc__btn input[type="button"] {
  width: 100%;
  padding: 10px;
  background-color: #3C2800;
  color: #fff;
  font-size: clamp(1.6rem, 2.6vw, 2.6rem);
  font-weight: 500;
  border-radius: 9999px;
  cursor: pointer;
}

.simulation-calc__resett input[type="button"] {
  width: 200px;
  padding: 5px;
  background-color: #3C2800;
  color: #fff;
  font-size: clamp(1.5rem, 1.8vw, 1.8rem);
  font-weight: 500;
  border-radius: 9999px;
  cursor: pointer;
}

@media (max-width: 600px) {
  .simulation-calc .flex-between {
    align-items: center;
  }

  .simulation-calc__number-box {
    width: 66%;
  }

  .simulation-calc__select {
    width: 30%;
  }

  .simulation-calc__btn {
    width: 100%;
    margin-top: 30px;
  }
}
/* チェック部分*/
.simulation-check__all {
  background-color: #A80000;
  color: #fff;
  padding: 15px;
  margin-bottom: 20px;
}

.simulation-check__select {
  display: flex;
  flex-wrap: wrap;
}
.simulation-check__select li {
  width: 100%;
  padding: 15px;
  border: solid 1px #333;
  margin-top: -1px;
  margin-left: -1px;
  letter-spacing: 0;
}
.simulation-check__select li:last-child {
  width: 100%;
}
.simulation-check__select input {
  vertical-align: top;
}
.simulation-check__select label {
  display: inline-block;
}
@media (max-width: 600px) {
  .simulation-check__select li {
    width: 100%;
  }
}

/* 結果部分*/
.simulation-result-area .column3 {
  justify-content: space-between;
}
.simulation-result-area .column3 .item {
  border: solid 5px #A2A29E;
  padding: 20px;
}

.simulation-result__ttl {
  text-align: center;
  font-size: clamp(1.6rem, 1.8vw, 1.8rem);
  font-weight: 500;
}

.simulation-result__box {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
}
.simulation-result__box dt {
  width: 50%;
  padding-top: 20px;
  padding-bottom: 20px;
  border-bottom: solid 1px #A2A29E;
}
.simulation-result__box dd {
  width: 50%;
  padding-top: 20px;
  padding-bottom: 20px;
  border-bottom: solid 1px #A2A29E;
}
.simulation-result__box dd:nth-of-type(2), .simulation-result__box dd:nth-of-type(3) {
  color: #A80000;
}
.simulation-result__box dd:nth-of-type(3) {
  font-size: clamp(1.5rem, 2.6vw, 2.6rem);
  font-weight: 500;
  line-height: 1;
}

@media (max-width: 840px) {
  .simulation-calc, .simulation-check {
    width: 100%;
  }

  .simulation-calc {
    order: 2;
    margin-top: 40px;
  }

  .simulation-check {
    order: 1;
  }

  .simulation-result-area .item {
    width: 90%;
    margin: 10px auto;
  }
}
/*割引適応条件*/
.discount-lists {
  justify-content: space-between;
  margin-top: max(40px, 5%);
}
.discount-lists li {
  margin-bottom: 30px;
}
@media (max-width: 600px) {
  .discount-lists li {
    width: 100%;
  }
}

.discount-item {
  padding: 10px;
  background-color: #fff;
  border: solid 1px #B5B5B4;
}

.discount-item__ttl {
  padding: 10px;
  color: #fff;
  font-size: clamp(1.6rem, 1.8vw, 1.8rem);
  font-weight: 500;
  background-color: #A80000;
}

.discount-item__main {
  text-align: center;
  margin-top: max(25px, 2.5%);
  color: #A80000;
  font-size: clamp(2rem, 4.6vw, 4.6rem);
  line-height: 1;
  font-weight: 700;
}
.discount-item__main span {
  font-size: clamp(2.8rem, 7.6vw, 7.6rem);
}

.discount-item__txt {
  margin: 20px 10px 10px;
}

/* 施工実績────────────────*/
#works .page-title-area {
  background-image: url("../images/works.jpg");
}

#works-new-glascoat-rex .page-title-area {
  background-image: url("../images/new-glascoat-rex.jpg");
}

#works-glascoat-rex .page-title-area {
  background-image: url("../images/glascoat-rex.jpg");
}

#works-siliconcoat-rex .page-title-area {
  background-image: url("../images/siliconcoat-rex.jpg");
}

/*タブ*/
.works-tabs {
  margin-top: max(60px, 8%);
  display: flex;
}
.works-tabs > * + * {
  border-left: solid 1px #fff;
}
.works-tabs li {
  width: calc( 100% / 3 );
  background-color: #9F9F9F;
}
.works-tabs li:hover {
  background-color: #3C2800;
}
.works-tabs li a {
  display: block;
  width: 100%;
  padding: 30px;
  color: #3C2800;
}
.works-tabs li a:hover {
  color: #fff;
}
.works-tabs li.active {
  background-color: #3C2800;
}
.works-tabs li.active a {
  color: #fff;
}

.works-tabs li:last-child a::before {
  content: "";
  display: block;
  height: 1em;
  width: 1em;
}

@media (max-width: 600px) {
.works-tabs li:last-child a::before {
  display: none;
} 
}

@media (max-width: 840px) {
  #works-area .column3 li {
    width: calc((100% - 60px) / 2);
  }
  #works-area .column3 li::after {
    width: calc((100% - 60px) / 2);
  }

  .works-tabs li a {
    padding: 20px;
  }
}
@media (max-width: 600px) {
  #works-area .column3 li {
    width: 100%;
  }
  #works-area .column3 li::after {
    width: 0;
  }

  .works-tabs li a {
    padding: 10px;
    font-size: 1.3rem;
  }
}
/*一覧*/
.works-lists {
  padding: 30px 60px 60px;
}

#works-area {
  background-color: #fff;
  padding-bottom: max(60px, 6.25%);
}
#works-area .column3 {
  justify-content: space-between;
}
#works-area .column3 li {
  margin-top: 50px;
}

.works-item__img {
  width: 100%;
  aspect-ratio: 43 / 29;
  overflow: hidden;
}
.works-item__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .5s;
}
.works-item__img img:hover {
  transform: scale(1.2, 1.2);
}

.works-item__ttl {
  padding: 10px;
}

@media (max-width: 840px) {
  .works-lists {
    padding: 20px 40px 40px;
  }
}
@media (max-width: 600px) {
  .works-lists {
    padding: 20px;
  }
}
/*詳細*/
#works-post {
  background-color: #fff;
  padding: max(30px, 5%);
}

.works-post__ttl {
  font-size: clamp(1.6rem, 2vw, 2rem);
  font-weight: 700;
}

.works-post__cat-name {
  margin-top: 10px;
  background-color: #FBE46C;
  padding: 3px 20px;
  width: fit-content;
}

.works-post__detail {
  margin-top: max(40px, 5%);
  border-top: 1px solid #B5B5B4;
  padding-top: max(40px, 5%);
}

.works-beforeafter.column2 {
  justify-content: space-between;
}

.works-beforeafter li figure {
  width: 100%;
  aspect-ratio: 503 /415;
}
.works-beforeafter li figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.works-beforeafter li figure figcaption {
  display: block;
  padding: 13px;
  text-align: center;
  color: #fff;
  background-color: #3C2800;
}

.works-post__table {
  margin-top: max(40px, 5%);
  border-top: solid 1px #B5B5B4;
}
.works-post__table th {
  width: 20%;
  background-color: #EFEFEF;
  border-bottom: solid 1px #B5B5B4;
}
.works-post__table td {
  border-bottom: solid 1px #B5B5B4;
}

@media (max-width: 600px) {
  .works-beforeafter.column2 li {
    width: 100%;
  }
  .works-beforeafter.column2 li:first-child {
    margin-bottom: 30px;
  }

  .works-post__table {
    border-top: none;
  }
  .works-post__table th {
    width: 100%;
    border-bottom: none;
  }
  .works-post__table td {
    border-bottom: none;
  }
}
/* コーティング何でも解決────────────────*/
#qa .page-title-area {
  background-image: url("../images/qa.jpg");
}

/*qa*/
.qa-lists dt {
  padding: 20px 50px 20px 6em;
  background-color: #333;
  color: #fff;
  position: relative;
}
.qa-lists dt::before {
  content: "Q";
  color: #FBE46C;
  position: absolute;
  top: 15px;
  left: 50px;
  font-size: clamp(2rem, 2.4vw, 2.4rem);
  font-weight: 700;
}

.qa-lists dd {
  padding: 30px 50px 30px 6em;
  background-color: #fff;
  position: relative;
  line-height: 2.2;
}
.qa-lists dd::before {
  content: "A";
  position: absolute;
  top: 20px;
  left: 50px;
  font-size: clamp(2rem, 2.4vw, 2.4rem);
  font-weight: 700;
}

@media (max-width: 600px) {
  .qa-lists dt, .qa-lists dd {
    padding: 20px 20px 20px 3em;
  }
  .qa-lists dt::before, .qa-lists dd::before {
    left: 20px;
  }
}
/*施工後のお手入れ方法について*/
#care-area {
  background-color: #fff;
}

.care-daily {
  margin-top: max(40px, 5%);
}

.care-items {
  justify-content: space-between;
}

.care-item {
  border: solid 5px #B5B5B4;
  padding: 2em;
  margin-top: 30px;
}

.care-item__img {
  text-align: center;
}

.care-item__ttl {
  text-align: center;
  font-size: clamp(1.6rem, 2vw, 2rem);
  font-weight: 500;
  margin: 20px;
}

@media (max-width: 600px) {
  #care-area .column3 li {
    width: 100%;
  }
}
/*注意が必要なもの*/
.care-caution-list dt {
  width: 20%;
  padding: 30px;
  border-bottom: solid 1px #707070;
  font-size: clamp(1.6rem, 2vw, 1.8rem);
  font-weight: 700;
  color: #3C2800;
}

.care-caution-list dd {
  width: 80%;
  padding: 30px 30px 30px 0;
  border-bottom: solid 1px #707070;
}

@media (max-width: 840px) {
  .care-caution-list dt {
    width: 30%;
  }

  .care-caution-list dd {
    width: 70%;
  }
}
@media (max-width: 600px) {
  .care-caution-list dt, .care-caution-list dd {
    width: 100%;
  }

  .care-caution-list dt {
    border-bottom: none;
    padding-bottom: 5px;
    padding-left: 0;
  }

  .care-caution-list dd {
    padding-top: 0;
  }
}
/* 価格一覧────────────────*/
#price .page-title-area {
 background-image: url("../images/price.jpg");
}
.price-table thead tr > * + * {
  border-left: solid 2px #EFEFEF;
}
.price-table thead th {
  background-color: #A2A29E;
  color: #fff;
  padding: 25px;
}
.price-table thead th:first-child {
  width: 25%;
}
.price-table thead th:nth-of-type(2), .price-table thead th:nth-of-type(3) {
  width: calc((100% - 25%) / 2);
}
.price-table tbody th {
  border-top: solid 2px #EFEFEF;
  background-color: #3C2800;
  vertical-align: middle;
  color: #fff;
  font-size: 1.7rem;
  font-weight: 700;
  text-align: left;
  padding: 25px;
  position: relative;
}
.price-table tbody th::after {
  content: "▶︎";
  display: block;
  position: absolute;
  right: -16px;
  top: 50%;
  transform: translate(0, -50%);
  color: #3C2800;
}
.price-table tbody td {
  border-top: solid 2px #EFEFEF;
  font-weight: 700;
  background-color: #fff;
  padding: 25px;
}
.price-table tbody td:nth-of-type(1) {
  text-align: right;
  vertical-align: middle;
}
.price-table tbody td:nth-of-type(2) {
  font-weight: normal;
}
.price-table tbody td.valign-middle {
  vertical-align: middle;
}
.price-table tbody td.nobr br {
  display: block;
}
.caution-msg {
  color: #f00;
}
.strong-msg {
  font-size: 1.2em;
  font-weight: bold;
}
.set-margin {
  margin: auto .25em;
}
@media (max-width: 600px) {
  /* 見出し行を消す */
  .price-table thead {
    display: none;
  }

  /* セルをブロックとして表示 */
  .price-table th, .price-table td {
    display: block;
    widows: 100%;
  }

  .price-table tbody th::after {
    content: "";
  }

  .price-table tbody th {
    padding: 15px;
  }

  .price-table tbody td {
    padding: 15px;
  }

  .price-table tbody td:nth-of-type(1) {
    text-align: left;
  }
  .price-table tbody td:nth-of-type(1)::before {
    display: inline-block;
    margin-right: 1em;
    content: '価格：';
    font-weight: normal;
  }

  .price-table tbody td:nth-of-type(2) {
    text-align: left;
    　display: contents;
    margin-bottom: 20px;
    position: relative;
    padding-left: 4.8em;
  }
  .price-table tbody td:nth-of-type(2)::before {
    position: absolute;
    left: 15px;
    content: '備考：';
    font-weight: normal;
  }
  .price-table tbody td.nobr br {
    display: none;
  }

}
/* フロアーコーティング────────────────*/
/* NEWガラスコートREX*/
#new-glascoat-rex .page-title-area {
  background-image: url("../images/new-glascoat-rex.jpg");
}

#coating-summary-area {
  background-color: #fff;
}

#coating-summary-area .inner > * + * {
  margin-top: max(30px, 5%);
  padding-top: max(30px, 5%);
  border-top: solid 1px #B5B5B4;
}

[class^="coating-summary0"] {
  padding-bottom: max(30px, 5%);
}

.coating-summary__content, .coating-summary__img,
[class^="coating-feature__item0"] {
  width: 48%;
}
@media (max-width: 600px) {
  .coating-summary__content, .coating-summary__img,
  [class^="coating-feature__item0"] {
    width: 100%;
  }
}

.coating-summary__img span {
  display: block;
  text-align: right;
  margin-bottom: 20px;
}

.coating-summary03 .coating-summary__content {
  order: 2;
}

.coating-summary03 .coating-summary__img {
  order: 1;
}

.coating-feature {
  background-color: #fff;
  padding: max(30px, 5%);
}

#new-glascoat-rex .coating-feature01 .coating-feature__item01 figure img {
  width: 49%;
}

.coating-feature__icon li:first-child {
  margin-right: 10px;
}

/* ガラスコートREX*/
#glascoat-rex .page-title-area {
  background-image: url("../images/glascoat-rex.jpg");
}

.glascoat-rex-content-head {
  padding-top: max(50px, 7%);
  padding-bottom: max(50px, 7%);
}
.glascoat-rex-content-head .flex-center > * + * {
  margin-left: 30px;
}
.glascoat-rex-content-head .fit {
  margin-left: auto;
  margin-right: auto;
}

[class^="coating-summary__ttl"] {
  width: 300px;
  padding: 5px;
  text-align: center;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 700;
  border-radius: 9999px;
  color: #fff;
}

.coating-summary__ttl-virus {
  background-color: #DB002A;
}
.coating-summary__ttl-virus::before {
  content: "";
  display: inline-block;
  width: max(20px, 13.33%);
  aspect-ratio: 1 / 1;
  background: url("../images/plus.png") no-repeat;
  background-size: contain;
  margin-right: 10px;
  vertical-align: -15%;
}

.coating-summary__ttl-fungus {
  background-color: #008F84;
}

.glass-floor-beautiful {
  padding-top: max(40px, 6.77%);
  padding-bottom: max(40px, 6.77%);
  background: url("../images/glas-coat-rex-bk01.jpg");
  background-size: cover;
}
.glass-floor-beautiful__box {
  padding: max(40px, 5%);
  width: fit-content;
  margin: auto;
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 9px 5px 15px -5px #777;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.glass-floor-beautiful__ttl {
  font-size: clamp(3rem, 5.2vw, 5.2rem);
  font-weight: 500;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}

/* 施工事例*/
#bottoom-works-area {
  background-color: #F8FBFD;
}

.bottoom-works-lists {
  justify-content: space-between;
}
.bottoom-works-lists li {
  width: calc((100% - 60px) / 3);
  aspect-ratio: 43 / 29;
  overflow: hidden;
}
.bottoom-works-lists li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .5s;
}
.bottoom-works-lists li img:hover {
  transform: scale(1.2, 1.2);
}

.coating-feature03 .coating-feature__icon {
  justify-content: space-between;
}
.coating-feature03 .coating-feature__icon li {
  width: 30%;
}

@media (max-width: 840px) {
  .coating-feature__icon li {
    width: 30%;
  }
}
@media (max-width: 600px) {
  .coating-summary03 .coating-summary__content {
    order: 1;
  }

  .coating-summary03 .coating-summary__img {
    order: 2;
  }

  .coating-summary__img {
    margin-top: 25px;
  }

  .coating-feature__item02 {
    margin-top: 40px;
  }
  .coating-feature__item02 p {
    margin-top: 25px;
  }
  .coating-feature__item02 figure {
    margin-top: 25px;
  }

  #bottoom-works-area.padding {
    padding-top: 80px;
  }

  .bottoom-works-lists > * + * {
    margin-top: 20px;
  }

  .bottoom-works-lists li {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
}
/* シリコンコートREX*/
#siliconcoat-rex .page-title-area {
  background-image: url("../images/siliconcoat-rex.jpg");
}

#silicon-summary-area {
  background-color: #fff;
}

.silicon-summary-mark {
  text-align: center;
}
.silicon-summary-mark img {
  width: max(120px, 14.34%);
}

.silicon-summary-list {
  width: 86.5%;
  margin-left: auto;
  margin-right: auto;
}
.silicon-summary-list li {
  width: 48%;
  margin-bottom: 40px;
}
.silicon-summary-list li .silicon-summary-list__img {
  width: 25.2%;
}
.silicon-summary-list li .silicon-summary-list__text {
  width: 70.8%;
}
.silicon-summary-list li .silicon-summary-list__text p {
  margin-top: 10px;
  font-size: 1.5rem;
  line-height: 1.6;
}

.silicon-summary-bottom__text,
.silicon-summary-bottom__img {
  width: 48%;
}

.coating-feature03__right {
  background-color: #E0E0E0;
}

@media (max-width: 840px) {
  .silicon-summary-list {
    width: 100%;
  }

  .silicon-summary-bottom__text,
  .silicon-summary-bottom__img {
    width: 100%;
  }

  .silicon-summary-bottom__img {
    margin-top: max(25px, 2.5%);
  }
  .silicon-summary-bottom__img img {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .silicon-summary-list li {
    width: 100%;
  }
  .silicon-summary-list li:last-child {
    margin-bottom: 0;
  }

  .coating-feature03__right {
    margin-top: 25px;
  }
}
/* 水回りコート*/
#water-coat .page-title-area {
  background-image: url("../images/water-coat.jpg");
}

#water-summary-area {
  background-color: #fff;
}

.water-summary__img {
  margin-top: max(40px, 5%);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: max(20px, 6%);
  border: solid 10px #B5B5B4;
}
.water-summary__img img {
  width: 48%;
}

.water-construction-part, .water-construction-price {
  background-color: #fff;
  padding: max(20px, 5%);
}

.water-construction-part__img {
  display: grid;
  gap: 5px;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
}
.water-construction-part__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.water-construction-part__img .item01 {
  grid-row: span 2;
  grid-column: span 2;
}
.water-construction-front-door .water-construction-part__img .item02,
.water-construction-kitchen .water-construction-part__img .item02 {
  grid-row: span 2;
  grid-column: span 2;
}

.water-construction-part__tag {
  margin-top: max(25px, 2.5%);
}
.water-construction-part__tag li {
  display: inline-block;
  padding: 0 10px;
  background-color: #3C2800;
  color: #fff;
  font-size: 1.4rem;
}

.water-construction-toilet hr {
  border-top: 3px solid #3C2800;
}

.water-construction-price__table th, .water-construction-price__table td {
  border-bottom: solid 1px #B5B5B4;
}
.water-construction-price__table th {
  font-weight: 700;
  position: relative;
  padding-left: 25px;
  text-align: left;
}
.water-construction-price__table th::before {
  content: "●";
  color: #B5B5B4;
  display: inline-block;
  position: absolute;
  left: 0;
}
.water-construction-price__table tr td:nth-of-type(2) {
  text-align: right;
}

@media (max-width: 600px) {
  .water-construction-part__img {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr 1fr;
  }
  .water-construction-part__img .item01 {
    grid-row: span 2;
    grid-column: span 2;
  }

  .water-construction-part__tag li {
    margin-bottom: 5px;
  }

  .water-construction-price__table th, .water-construction-price__table td {
    border-bottom: none;
    width: 100%;
  }
  .water-construction-price__table th {
    padding-bottom: 10px;
  }
  .water-construction-price__table td {
    padding: 0 0 10px;
  }
  .water-construction-price__table tr td:nth-of-type(2) {
    padding-top: 10px;
    border-bottom: solid 1px #B5B5B4;
    border-top: dotted 1px #B5B5B4;
  }
}
/* お問い合わせ/無料見積り/会社概要/お知らせ─────*/
#privacy .page-title-area,
#other .page-title-area,
#news .page-title-area,
#company .page-title-area,
#contact .page-title-area,
#quote .page-title-area {
  background-image: url("../images/contact.jpg");
}

/* お問い合わせ*/
#contact-tel.bk-wh {
  padding-left: 5%;
  padding-right: 5%;
}

.contact-tel__tel {
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 700;
}
.contact-tel__tel::before {
  content: "";
  display: inline-block;
  margin-right: 10px;
  width: max(14px, 2.68%);
  vertical-align: middle;
  aspect-ratio: 26 / 29;
  background: url("../images/ic-tel.png") no-repeat;
  background-size: contain;
}

.his {
  font-size: 1.2rem;
  font-weight: 500;
  color: #A80000;
}

.check-place li, .chekc-campaignk li {
  width: 33.333%;
  margin-bottom: 10px;
}
.chekc-campaignk li:last-child {
	width: 66.666%;
}

.check-place li span {
  display: inline-block;
  width: 4.5em;
}

@media (max-width: 840px) {
  .check-place li, .chekc-campaignk li {
    width: 50%;
  }
}
@media (max-width: 600px) {
  .check-place li, .chekc-campaignk li {
    width: 100%;
  }
}
/*お知らせ*/
.post-area {
  background-color: #fff;
  width: min(960px, 100%);
  padding: 40px;
  margin-left: auto;
  margin-right: auto;
}

.post-list {
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
}
.post-list dt {
  width: 20%;
  padding: 15px;
  border-bottom: solid 1px #B5B5B4;
}
.post-list dd {
  width: 80%;
  padding: 15px;
  border-bottom: solid 1px #B5B5B4;
}
.post-list dd a {
  display: block;
  height: 100%;
  width: 100%;
}

.post-ttl {
  font-size: clamp(1.6rem, 2vw, 2rem);
  font-weight: 700;
  padding-bottom: 10px;
  border-bottom: solid 3px #000;
}

.post p, .post figure, .post table, .post ul, .post ul {
  margin-top: 25px;
}

.post strong {
  font-weight: 700;
}

.post table {
  border-spacing: 0;
  border-top: 1px solid #ccc;
  border-right: 1px solid #ccc;
}

.post th {
  border-top: 0 solid #ccc;
  border-right: 0 solid #ccc;
  border-bottom: 1px solid #ccc;
  border-left: 1px solid #ccc;
  padding: 15px;
}

.post td {
  border-top: 0 solid #ccc;
  border-right: 0 solid #ccc;
  border-bottom: 1px solid #ccc;
  border-left: 1px solid #ccc;
  padding: 15px;
}

.post h2, .post h3, .post h4, .post h5 {
  font-size: clamp(1.6rem, 1.8vw, 1.8rem);
  font-weight: 700px;
  margin-bottom: 10px;
}

.oldpage, .newpage a {
  font-size: 1.4rem;
}

.oldpage {
  width: 50%;
  border-right: solid 1px #ccc;
}

.post-btn a {
  display: block;
  color: #666;
  background-color: #EFEFEF;
  padding: 5px 20px;
  text-align: center;
  margin: auto;
  border-radius: 10px;
  width: fit-content;
  font-size: 1.4rem;
}

@media (max-width: 600px) {
  .post-list {
    padding: 0;
  }
  .post-list dt {
    width: 100%;
    padding: 15px 0 0;
    border-bottom: none;
  }
  .post-list dd {
    width: 100%;
    padding: 0 0 15px;
    border-bottom: solid 1px #B5B5B4;
  }
}
/* 個人情報保護方針*/
.privacy-item dt{
 font-weight: 700;
}