@charset "utf-8";

/** 追加エリア */
.bousuiAdd .title {
  background: #FFCB00;
  width: fit-content;
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 40px;
}
.bousuiAdd .description {
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 20px;
}
.bousuiAdd .text {
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
}
@media screen and (max-width:767px){
  .bousuiAdd .title {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .bousuiAdd .description {
    font-size: 14px;
    margin-bottom: 10px;
  }
  .bousuiAdd .text {
    font-size: 14px;
  }
}

/** flex */
.flex-wrap {
  display: flex;
}
@media screen and (max-width:767px){
  .flex-wrap {
    display: block;
  }
}

/** 用途・適用部位 */
.usageArea {
  margin: 40px 0 40px 0;
}
.beforAfter {
  justify-content: space-between;
}
.beforAfter .img_box {
  width: calc(50% - 20px);
}
.beforAfter .img_area {
  position: relative;
  text-align: center;
}
.beforAfter .img_area .after_ico {
  position: absolute;
  top: 0px;
  left: 0px;
  padding: 6px 0 6px 0;
  background-color: #FECB04;
  color: #000000;
  font-size: 14px;
  font-weight: 600;
  width: 66px;
  z-index: 2;
}
.beforAfter .img_area .before_ico{
  position: absolute;
  top: 0px;
  left: 0px;
  padding: 6px 0 6px 0;
  background-color: #000000;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 600;
  width: 66px;
  z-index: 2;
}
.beforAfter .img_box img {
  width: 100%;
}
.arrowRight {
  position: relative;
}
.arrowRight::after {
  content: "";
  left: 50%;
  top: 50%;
  position: absolute;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 20px solid #FECB04;
  transform: translate(-50%, -50%);
}
@media screen and (max-width:767px){
  .beforAfter .img_box {
    width: 100%;
  }
  .beforAfter .img_box:first-child {
    margin-bottom: 40px;
  }
  .arrowRight::after {
    transform: translate(-50%, -150%) rotate(92deg);
  }
}

/** 仕上がりイメージ */
.finishArea {
  margin: 0 0 40px 0;
}
.finishImage {
  justify-content: space-between;
}
.finishImageContent {
  width: calc(50% - 20px);
}
.finishImageContent img{
  width: 100%;
}
@media screen and (max-width:767px){
  .finishImageContent {
    width: 100%;
  }
  .finishImageContent:first-child {
    margin-bottom: 20px;
  }
}

/** 色相 */
.colorArea img{
  max-width: 100%;
}
.colorArea .text {
  margin-top: 20px;
  line-height: 2;
}
@media screen and (max-width:767px){
  .colorArea .text {
    margin-top: 10px;
  }
}

/** 施工手順 */
.constructionArea p {
  font-size: 18px;
  font-weight: 500;
  line-height: 32px;
}
.usefulContentWrapper {
  padding-top: 80px;
}
.usefulContentWrapper .titleContent {
  background-color: #FFCB00;
  position: relative;
  margin-bottom: 25px;
  height: 112px;
}
.usefulContentWrapper .titleContent:after {
  content: "";
  border-style: solid;
  height: 0;
  position: absolute;
  width: 0;
  border-color: #FFCB00 transparent transparent transparent;
  border-width: 20px 10px 0 10px;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
}
.usefulContentWrapper .titleContent p {
  font-size: 32px;
  font-weight: bold;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  line-height: 1;
}
.usefulContentWrapper .containerBg {
  background-color: #f4f3ed;
  padding: 40px;
  margin-bottom: 20px;
}
.usefulContentWrapper .containerBg .titleUsefulContent {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 20px;
}
.usefulContentWrapper .containerBg .titleUsefulContent .titileNumber {
  font-size: 32px;
  font-weight: bold;
  background: #ffcb00;
  padding: 21px 12px;
  border-radius: 50%;
}
.usefulContentWrapper .containerBg .titleUsefulContent .titileWord {
  font-size: 32px;
  line-height: 32px;
  font-weight: bold;
}
.usefulContentWrapper .containerBg .mainContent {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.usefulContentWrapper .containerBg .mainContent .imgWrapper {
  display: flex;
  gap: 5px;
  width: calc((100% - 40px) / 2);
}
.usefulContentWrapper .containerBg .mainContent .imgWrapper picture {
  width: 100%;
}
.usefulContentWrapper .containerBg .mainContent .imgWrapper picture img {
  width: 100%;
}
.usefulContentWrapper .containerBg .mainContent p {
  font-size: 18px;
  font-weight: 500;
  line-height: 32px;
  width: calc((100% - 40px) / 2);
}
@media only screen and (max-width: 767px) {
  .constructionArea p {
    font-size: 14px;
  }
  .usefulContentWrapper {
    padding-top: 40px;
  }
  .usefulContentWrapper .titleContent {
    height: 67px;
  }
  .usefulContentWrapper .titleContent p {
    font-size: 20px;
  }
  .usefulContentWrapper .containerBg {
    margin-bottom: 20px;
    padding: 20px;
  }
  .usefulContentWrapper .containerBg .mainContent {
    flex-direction: column;
    gap: 10px;
  }
  .usefulContentWrapper .containerBg .mainContent p {
    line-height: 28px;
    width: 100%;
  }
  .usefulContentWrapper .containerBg .mainContent .imgWrapper {
    width: 100%;
  }
  .usefulContentWrapper .containerBg .mainContent .imgWrapper picture {
    width: 100%;
  }
  .usefulContentWrapper .containerBg .mainContent .imgWrapper picture img {
    width: 100%;
  }
  .usefulContentWrapper .containerBg .titleUsefulContent .titileWord {
    font-size: 20px;
    line-height: 28px;
  }
  .usefulContentWrapper .containerBg .titleUsefulContent picture img {
    width: 60px;
    height: auto;
  }
  .usefulContentWrapper .containerBg:last-child {
    margin-bottom: 20px;
  }
  .usefulContentWrapper .containerBg .mainContent p {
    font-size: 14px;
  }
}

/** 性能 */
.specArea {
  margin: 40px 0 0 0;
}
.specTableContent:first-child {
  width: 60%;
  margin-bottom: 40px;
}
.specTableContent:last-child {
  width: 100%;
}
.specArea table {
  border: 1px solid #AAAAAA;
  font-size: 18px;
  font-weight: 500;
  line-height: 32px;
  width: 100%;
}
.specArea table th,td {
  border: 1px solid #AAAAAA;
  padding: 20px;
  font-weight: 500;
}
.specArea table .t-text-center {
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .specTableContent:first-child {
    width: 100%;
  }
  .specArea table {
    font-size: 12px;
  }
  .specArea table th,td {
    padding: 10px 5px;
    text-align: center;
  }
}