/*==================================================Main Visual==================================================*/
.mainvisual_wrap{
  width: 100vw;
  height: 100vh;
  position: relative;
  text-align: center;
  background-image: url(../img/mv.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  background-color:rgba(255,255,255,0.8);
  background-blend-mode:lighten;
}
.mv_textwrap{
  width: fit-content;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit- transform: translateY(-50%) translateX(-50%);
  font-family: hannnariMintyo;
    font-weight: lighter;
}
.mv_textwrap h2 {
  font-size: 3.5rem;
  margin: 0 0 1rem;
}
.mv_textwrap h3{
  font-size: 2rem;
  margin: 0 0 1rem;
}
@media screen and (max-width: 500px) {
  .mainvisual_wrap {
  width: 100vw;
    height: 100vh;
    position: relative;
    text-align: center;
    background-image: url(../img/mv.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: scroll;
    background-position: bottom;
    background-color: rgba(255, 255, 255, 0.8);
    background-blend-mode: lighten;  }
}
/*--------------- Scroll ---------------*/
.mv_scroll > a {
  padding-top: 70px;
}
.mv_scroll > a > span {
  position: absolute;
  bottom: 10%;
  left: 50%;
  width: 24px;
  height: 24px;
  margin-left: -12px;
  border-left: 1px solid #006db9;
  border-bottom: 1px solid #006db9;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-animation: sdb 1.5s infinite;
  animation: sdb 2s infinite;
  box-sizing: border-box;
}
@-webkit-keyframes sdb { 0% {-webkit-transform: rotate(-45deg) translate(0, 0); opacity: 0;} 50% {opacity: 1;} 100% {-webkit-transform: rotate(-45deg) translate(-20px, 20px); opacity: 0;}}
@keyframes sdb { 0% {transform: rotate(-45deg) translate(0, 0); opacity: 0;} 50% {opacity: 1;} 100% {transform: rotate(-45deg) translate(-20px, 20px); opacity: 0;}}
/*--------------- Under 850px ---------------*/
@media screen and (max-width: 850px) {
.mv_textwrap h2 {
    font-size: 3.5rem;
    margin: 0 0 1rem;
  }
.mv_textwrap h2 span::after{
  content: "\A";
  white-space: pre;
}
  .mv_textwrap h3 {
    font-size: 1.5rem;
    margin: 0 0 1rem;
  }
}
/*--------------- Under 600px ---------------*/
@media screen and (max-width: 600px) {
.mv_textwrap h2 {
  font-size: 2rem;
  margin: 0 0 1rem;
  }
  .mv_textwrap h3 {
    font-size: 1rem;
    margin: 0 0 2rem;
  }
  .mv_textwrap p {
    font-size: 0.7rem;
  }
  .mv_textwrap p span::after{
  content: "\A";
    white-space: pre;
  }
}

/*==================================================
Greeting
==================================================*/
#anniversary{
  background-color: #006db9;
  color: #fff;
  width: 100vw;
  margin: 0 auto;
  padding: 3rem 20vw 0;
  text-align: center;
  position: relative;
  margin-bottom: 7vw;
  display: flex;
  justify-content: center;
  align-items: center;
}
#anniversary:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  bottom: -5rem;
  left: 0;
  border-style: solid;
  border-color: #006db9 transparent transparent transparent;
  border-width: 5rem 50vw 0 50vw;
}
#anniversary img {
  height: 10rem;
  opacity: 0.8;
}
.anniversary_textwrap{
  width: 60%;
  display: inline-block;
}
.g_t_years{
  padding: 0 5rem;
  margin: 0 auto;
  font-size: 3rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid #fff;
}
@media screen and (max-width: 950px) {
  #anniversary {
    padding: 3rem 10vw 0;
    margin-bottom: 15rem;
    }
  #anniversary img {
    height: 10rem;
    opacity: 0.8;
  }
  .anniversary_textwrap {
    width: 80%;
    display: inline-block;
  }
  .g_t_years {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 700px) {
  #anniversary {
      margin-bottom: 10rem;
  }
  #anniversary img {
    height: 8rem;
    opacity: 0.8;
  }
  .anniversary_textwrap {
    width: 100%;
    font-size: 0.7rem;
  }
  .g_t_years {
    padding: 0 1rem;
  }
}
/*==================================================
NEWS
==================================================*/
#news {
  width: 100vw;
  margin: 15vw auto 10vw;
  display: grid;
  grid-template-columns: 40vw auto;
}
.news_ttlBox{
  text-align: right;
  padding-right: 2rem;
}
.news_ttlBox h3 {
  font-size: 1.5rem;
}
.news_contentBox{
  text-align: left;
  padding-left: 1.5rem;
}
.news_contentBox ul li {
  display: block;
  width: fit-content;
  padding: 0.5rem 0;
}
.news_date::after {
  content: "-";
  margin: 0 1rem;
}
@media all and (-ms-high-contrast: none) {
#news {
    width: 100vw;
    margin: 15vw auto 10vw;
    display: block;
    grid-template-columns: ;
  }

  .news_ttlBox {
    text-align: center;
    padding-right: 2rem;
  }

  .news_ttlBox h3 {
    font-size: 1.5rem;
  }

  .news_contentBox {
    text-align: center;
    padding-left: 1.5rem;
  }

  .news_contentBox ul li {
    display: block;
    width: fit-content;
    padding: 0.5rem 0;
  }

  .news_date::after {
    content: "-";
    margin: 0 1rem;
  }
}
@media screen and (max-width: 900px) {
#news {
    display: block;
    grid-template-columns: none;
    margin: 5rem auto 8rem;
  }
  .news_ttlBox {
    text-align: center;
    padding-right: 0;
    margin-bottom: 2rem;
  }
  .news_ttlBox h3 {
    font-size: 1.5rem;
  }
  .news_contentBox {
    text-align: center;
    padding-left: 1.5rem;
  }
  .news_contentBox ul li {
    display: block;
    margin: 0 auto;
    width: fit-content;
    padding: 0.5rem 0;
  }
  .news_date::after {
    content: "-";
    margin: 0 1rem;
  }
}
@media screen and (max-width: 500px) {
  .news_contentBox ul li {
    font-size: 90%;
  }
}
/*--------------- Modal ---------------*/
.modal_container {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: auto;
}
.modal_open{
  cursor: pointer;
}
.modal_overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
}
.modal_body {
  display: table;
  width: 100%;
  height: 100%;
}
.modal_main {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
  padding: 25px;
}
.modal_content {
  position: relative;
  display: inline-block;
  width: 70vw;
  background: #fff;
  padding: 25px;
  box-sizing: border-box;
}
.modal_text {
  line-height: 1.8;
  padding: 2rem 2rem 25px;
}
.modal_close{
  padding: 1rem 3rem;
  background-color: #666;
  color: #fff;
}
.modal_close:hover{
  opacity: 0.5;
}

/*==================================================
Works
==================================================*/
#works{
  width: 100vw;
  padding: 2rem 0;
  margin: 0 auto 3vw;
}
#works h3{
  margin-bottom: 2rem;
  font-size: 1.5rem;
  text-align: center;
}
/*--------------- slider ---------------*/
.slider {
  width: 80vw;
  margin: 0 auto;
}
.slider_box {
  width: 35vw;
    height: 30vw;
  text-align: center;
}
.slider_box img {
  width: 35vw;
  height: 30vw;
  object-fit: cover;
  margin: 0 auto;
}
.slider_box p:nth-child(2){
  margin: 0.3rem 0;
}
.slider_box p:nth-child(3) {
  font-weight: 300;
}
.slider .slick-slide {
  transform: scale(0.8);/*左右の画像のサイズを80%に*/
  transition: all .5s;
  opacity: 0.5;
}
.slider .slick-slide.slick-center {
  transform: scale(1);/*中央の画像のサイズだけ等倍に*/
  opacity: 1;
}
/*矢印の設定*//*戻る、次へ矢印の位置*/
.slick-prev,.slick-next {
  position: absolute;
  top: 42%;
  cursor: pointer;/*マウスカーソルを指マークに*/
  outline: none;/*クリックをしたら出てくる枠線を消す*/
  border-top: 2px solid #666;/*矢印の色*/
  border-right: 2px solid #666;/*矢印の色*/
  height: 15px;
  width: 15px;
}
.slick-prev {/*戻る矢印の位置と形状*/
  left: -1.5%;
  transform: rotate(-135deg);
}
.slick-next {/*次へ矢印の位置と形状*/
  right: -1.5%;
  transform: rotate(45deg);
}
/*ドットナビゲーションの設定*/
.slick-dots {
  text-align: center;
  margin: 20px 0 0 0;
}
.slick-dots li {
  display: inline-block;
  margin: 0 5px;
}
.slick-dots button {
  color: transparent;
  outline: none;
  width: 8px;  /*ドットボタンのサイズ*/
  height: 8px;  /*ドットボタンのサイズ*/
  display: block;
  border-radius: 50%;
  background: #ccc;
  /*ドットボタンの色*/
}
.slick-dots .slick-active button {
  background: #333;/*ドットボタンの現在地表示の色*/
}
@media screen and (max-width: 800px) {
  .slider {
      width: 90vw;
      margin: 0 auto;
    }
    .slider_box {
      width: 80vw;
      height: 60vw;
    }  
    .slider_box img {
      width: 80vw;
      height: 60vw;
    }
    .slider_box p:nth-child(3) {
      font-size: 110%;
    }
    .slider .slick-slide {
      transform: scale(0);
      transition: all .0s;
    }
    /*矢印の設定*/
    /*戻る、次へ矢印の位置*/
    .slick-prev,
    .slick-next {
      top: 40%;
      height: 20px;
      width: 20px;
    }
}
/*==================================================
Common Parts
==================================================*/
.section_common{
  width: 100%;
  padding: 3vw 0 3vw;
  margin: 5vw auto;
  text-align: center;
}
.s_common_main_text {
  width: fit-content;
  max-width: 60%;
  background-color: rgba(255, 255, 255, 0.734);
  margin: 0 auto;
  margin-bottom: 2vw;
  padding: 2rem 3rem;
}
.s_common_ttl {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.s_common_subtitle {
  margin-bottom: 0.5rem;
  display: inline-block;
  font-weight: 400;
}
.s_common_disc{
  padding: 0 4rem;
}
@media screen and (max-width: 1500px) {
.section_common {
    width: 100%;
    padding: 5vw 0 1vw;
  }
  .s_common_main_text {
    width: fit-content;
    max-width: 90%;
    background-color: rgba(255, 255, 255, 0.734);
    margin: 0 auto;
    margin-bottom: 2vw;
    padding: 2rem 1rem;
  }
  .s_common_ttl {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }
  .s_common_subtitle {
    margin-bottom: 0.5rem;
    display: inline-block;
    font-weight: 400;
  }
  .s_common_disc {
    padding: 0 2rem;
  }
}
@media screen and (max-width: 700px) {
.section_common {
    width: 100%;
    padding: 5vw 0;
  }
  .s_common_main_text {
    max-width: 90%;
    margin-bottom: 3vw;
    padding: 2rem 1rem;
  }
  .s_common_ttl {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 500px) {
  .section_common {
    width: 100%;
    margin: 0 auto;
    padding: 3vw 0 0vw;
  }
  .s_common_main_text {
    max-width: 100vw;
    padding: 2rem 0;
  }
  .s_common_ttl {
    font-size: 2rem;
    font-weight: 400;
  }
  .s_common_subtitle {
    margin-bottom: 0.5rem;
    font-size: 0.8rem;
    font-weight: 300;
  }
  .s_common_disc {
    padding: 0 0.5rem;
    font-size: 0.8rem;
  }
}
/*--------------- beforeafter ---------------*/
.beforeafterWrap {
  margin: 5vw auto 0;
  width: fit-content;
  text-align: center;
  display: grid;
  grid-template-columns: repeat(2, 50%);
}
.beforeafterWrap div{
  padding: 0 1rem;
}
.beforeafterWrap img{
  width: calc(100vw / 4);
  height: 20vw;
  object-fit: cover;
}
.beforeafterWrap p{
  text-align: right;
  font-size: 0.8rem;
}
@media screen and (max-width: 1500px) {
  .beforeafterWrap {
    grid-template-columns: repeat(2, calc(70vvw / 2));
  }
  .beforeafterWrap img {
    width: calc(70vw / 2);
    height: 25vw;
  }
}
@media screen and (max-width: 700px) {
  .beforeafterWrap {
    display: block;
    margin: 10vw auto 0;
  }
.beforeafterWrap div {
  margin: 2rem 0 0;
}
  .beforeafterWrap img {
    width: 90%;
    height: 60vw;
  }
  .beforeafterWrap p {
    text-align: center;
    font-size: 0.8rem;
  }
}
/*--------------- Border Circle ---------------*/
.border_circle {
  width: 80vw;
  margin: 0 auto;
  margin-bottom: 5rem;
  position: relative;
  border: solid 1px #006db9;
  border-radius: 3px 0 3px 0;
  padding: 3rem 0;
}
.border_circle:before,
.border_circle:after {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  border: solid 1px #006db9;
  border-radius: 50%;
}
.border_circle:after {
  top: -12px;
  left: -12px;
}
.border_circle:before {
  bottom: -12px;
  right: -12px;
}
.border_circle p {
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 1000px) {
.border_circle {
    width: 100vw;
    margin: 0 auto;
    margin-bottom: 5rem;
    position: relative;
    border: solid 1px #006db9;
    border-radius: 3px 0 3px 0;
    padding: 3rem 0;
  }
  .border_circle:before,
  .border_circle:after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    border: solid 1px #006db9;
    border-radius: 50%;
  }
  .border_circle:after {
    top: -12px;
    left: -12px;
  }
  .border_circle:before {
    bottom: -12px;
    right: -12px;
  }
  .border_circle p {
    margin: 0;
    padding: 0;
  }
}
@media screen and (max-width: 500px) {
  .border_circle {
      width: 100%;
      margin: 0 auto;
      margin-bottom: 5rem;
      position: relative;
      border: 0;
      border-radius: 0;
      padding: 3rem 0;
    }
  
    .border_circle:before,
    .border_circle:after {
      content: '';
      position: absolute;
      width: 0px;
      height: 0px;
      border: 0;
      border-radius: 0;
    }
  
    .border_circle:after {
      top: 0;
      left: 0;
    }
  
    .border_circle:before {
      bottom: 0;
      right: 0;
    }
    .border_circle p {
      margin: 0;
      padding: 0;
    }
}
/*--------------- Two MAIN IMG ---------------*/
.c_mainimg {
  width: fit-content;
  margin: 5vw auto 6vw;
  position: relative;
  text-align: center;
  overflow: hidden;
}
.c_mainimg div {
  width: 30vw;
  height: fit-content;
  float: left;
}
.c_mainimg img {
  width: 30vw;
  height: 20vw;
  margin-top: 0.5rem;
  object-fit: cover;
}
@media screen and (max-width: 1000px) {
.c_mainimg {
    margin: 5vw auto 6vw;
  }
  .c_mainimg div {
    width: 50vw;
    clear: both;
    margin-bottom: 2rem;
  }
  .c_mainimg img {
    width: 50vw;
    height: 30vw;
    object-fit: cover;
  }
}
@media screen and (max-width: 800px) {
  .c_mainimg div {
    width: 80vw;
  }
  .c_mainimg img {
    width: 80vw;
    height: 60vw;
  }
}
/*==================================================
外壁無機塗装
==================================================*/
#gaiheki_mukitosou{
  margin-bottom: 5rem;
}
.gh_text {
  font-size: 1.5rem;
  font-weight: 300;
}
.gh_points{
  width:100%;
  margin: 3rem auto;
  text-align: center;
  display: grid;
  grid-template-columns: repeat( 3 , calc(100% / 3));
}
.gh_points img{
  width: 5rem;
  opacity: 0.7;
  margin: 0 0 2rem;
}
.gh_pointText{
  font-size: 1rem;
  font-weight: 300;
  position: relative;
  background: #ff9;
}
@media screen and (max-width: 910px) {
#gaiheki_mukitosou {
    margin-bottom: 5rem;
  }
  .gh_text {
    font-size: 1.3rem;
  }
  .gh_text span::after {
    content: "\A";
    white-space: pre;
  }
  .gh_points {
    width: 100%;
    margin: 3rem auto;
    text-align: center;
    display: grid;
    grid-template-columns: repeat(3, calc(100% / 3));
  }
  .gh_points img {
    width: 5rem;
  }
  .gh_pointText {
    font-size: 0.8rem;
  }
  .gh_pointText span::after{
    content: "\A";
    white-space: pre;
  }
}
@media screen and (max-width: 500px) {
  #gaiheki_mukitosou {
    margin-bottom: 5rem;
  }
  .gh_text {
    font-size: 1rem;
  }
  .gh_points {
    width: 100%;
    margin: 3rem auto;
    text-align: center;
    display: block;
    grid-template-columns: none;
  }
  .gh_points li {
    margin-bottom: 3rem;
  }
  .gh_points img {
    width: 5rem;
  }

  .gh_pointText {
    font-size: 1.2rem;
  }

  .gh_pointText span::after {
    content: "";
    white-space: pre;
  }
}
/*==================================================
外壁補修
==================================================*/
#gaiheki_hoshu{
  background-image: url(../img/gaiheki_hoshu/bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  background-color:rgba(255, 255, 255, 0.7);
  background-blend-mode:lighten;
}
.gh_rcdiskBox{
  padding: 3rem 5rem;
  background-color: #fff;
  border-radius: 50px;
  width: 80vw;
  margin: 0 auto;
  text-align: center;
}
.gh_rcdiscWrap {
  margin-bottom: 2rem;
}
.gh_discTextBox h3 {
  font-size: 2rem;
  margin: 0.5rem 0;
  border-bottom: 4px solid #c21500;
  border-image: linear-gradient(to right, #c21500 0%, #ffc500 100%);
  border-image-slice: 1;
}
@media screen and (max-width: 1300px) {
  .gh_rcdiskBox {
    width: 80vw;
  }
}
@media screen and (max-width: 800px) {
.gh_rcdiskBox {
    width: 90vw;
    padding: 2rem 1rem;
    background-color: rgba(0, 0, 0, 0);
  }  
.gh_discTextBox > h3 {
    font-size: 1.5rem;
    margin: 0.5rem 0;
    border-bottom: 4px solid #c21500;
    border-image: linear-gradient(to right, #c21500 0%, #ffc500 100%);
    border-image-slice: 1;
  }
}

/*--------------- RCライフガードの説明 ---------------*/
.gh_rc_imgWrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100% auto;
  margin: 4rem auto;
}
.gh_rc_imgBox{
  position: relative;
  display: block;
  width: 250px;
  height: 250px;
  margin: 0 0.5rem;
  object-fit: contain;
}
.gh_rc_imgBox img{
  width: 250px;
  height: 250px;
  border-radius: 50%;
  border: 1px #000 solid;
}
.gh_rc_imgBox p {
  position: absolute;
  width: 250px;
  top: 3rem;
  font-size: 0.7rem;
}
.gh_rc_imgBox p span{
  font-size: 1rem;
  font-weight: 400;
}
.gh_arrow img{
  display: inline-block;
  width: 1rem;
  height: 1rem;
}
@media screen and (max-width: 1500px){
/*--------------- RCライフガードの説明 ---------------*/
.gh_rc_imgWrap {
    display: block;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 4rem auto;
  }
 .gh_rc_imgBox {
    position: static;
    display: grid;
    grid-template-columns: 20vw 15vw;
    width: fit-content;
    height: fit-content;
    background-color: ;
    border: solid 1px #dcdcdc;
    margin: 0 auto;
    text-align: center;
    padding: 1rem 2rem;
  }
  .gh_rc_imgBox img {
    width: 15vw;
    height: 15vw;
    object-fit: cover;
    object-position: bottom;
    border-radius: 50%;
    border: 1px #000 solid;
  }
  .gh_rc_imgBox div {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
  }
  .gh_rc_imgBox p {
    position: static;
    width: 100%;
    height: fit-content;
    top: 0;
    font-size: 0.7rem;
  }
  .gh_rc_imgBox p span {
    font-size: 1.3rem;
    font-weight: 300;
  }
  .gh_arrow img {
    display: inline-block;
    width: 1rem;
    height: 1rem;
    margin: 2rem 0;
    transform: rotate(90deg);
  }
}
@media screen and (max-width: 1000px) {
  /*--------------- RCライフガードの説明 ---------------*/
.gh_rc_imgBox {
    grid-template-columns: 30vw 20vw;
  }
  .gh_rc_imgBox img {
    width: 20vw;
    height: 20vw;
  }
  .gh_rc_imgBox div {
    padding: 0 1rem;
  }
  .gh_rc_imgBox p {
    position: static;
    width: 100%;
    height: fit-content;
    top: 0;
    font-size: 0.7rem;
  }
  .gh_rc_imgBox p span {
    font-size: 1.3rem;
    font-weight: 300;
  }
  .gh_arrow img {
    display: inline-block;
    width: 1rem;
    height: 1rem;
    margin: 2rem 0;
    transform: rotate(90deg);
  }
}
@media screen and (max-width: 800px) {
.gh_rc_imgWrap {
    display: block;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 4rem auto;
  }
  .gh_rc_imgBox {
    position: relative;
    display: block;
    width: 50vw;
    height: 50vw;
    margin: 0 auto;
    padding: 0;
    border: none;
  }
  .gh_rc_imgBox img {
    width: 50vw;
    height: 50vw;
    object-position: center;
  }
.gh_rc_imgBox div {
  position: absolute;
  width: 100%;
  top: 8vw;
  display: block;
  justify-content: center;
  align-items: center;
  height: fit-content;
}
  .gh_rc_imgBox p {
    font-size: 2vw;
  }
  .gh_rc_imgBox p span {
    font-size: 3vw;
    font-weight: 400;
  }
}

/*--------------- beforeafter ---------------*/
.gh_beforeafterWrap {
  margin: 0 auto;
  width: fit-content;
  text-align: center;
  display: grid;
  grid-template-columns: repeat(2, 50%);
}

.gh_beforeafterWrap img {
  width: calc(100vw / 4);
  height: 20rem;
  object-fit: contain;
}
.gh_beforeafterWrap p{
  font-size: 0.8rem;
  text-align: right;
}
@media screen and (max-width: 1500px) {
  .gh_beforeafterWrap {
    margin: 0 auto;
    width: 100%;
    text-align: center;
    display: grid;
    grid-template-columns: repeat(2, calc(100% / 2));
  }
  .gh_beforeafterWrap img {
    width: 100%;
    height: 30vw;
    object-fit: cover;
  }
}
@media screen and (max-width: 700px) {
  .gh_beforeafterWrap {
    display: block;
  }

  .gh_beforeafterWrap div {
    margin: 2rem 0 0;
  }

  .gh_beforeafterWrap img {
    width: 90%;
    height: 60vw;
  }
}
/*--------------- Wall repair ---------------*/
.wallrepair_point{
  width: fit-content;
  padding: 3rem 3rem;
  margin: 0 auto;
  text-align: center;
}
.wallrepair_point ul li{
  display: inline-block;  
}
@media screen and (max-width: 1500px) {
.wallrepair_point{
  width: fit-content;
  padding: 1rem;
  margin: 0 auto;
  text-align: center;
}
.wallrepair_point ul li{
  display: inline-block;  
  margin-top: 1.5rem;
} 
}
/*--------------- fadein toggle---------------*/
.gh_fadein>li dl {
  width: fit-content;
  padding: 1rem 2rem;
  border: 2px solid #0190bf;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 1rem;
}
.gh_fadein>li dl dt {
  font-size: 20px;
  font-weight: 600;
  color: #0190bf;
  -ms-flex-preferred-size: 20%;
  flex-basis: 20%;
  margin-right: 1rem;
  text-align: center;
}
.gh_fadein>li dl dt .icon {
  font-size: 0.5rem;
  padding: 0.3rem 1rem;
  color: #fff;
  background: #0190bf;
  background: -moz-linear-gradient(left, #0190bf 0%, #00c2bc 100%);
  background: -webkit-linear-gradient(left, #0190bf 0%, #00c2bc 100%);
  background: linear-gradient(to right, #0190bf 0%, #00c2bc 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#6b90db', endColorstr='#66d5e9', GradientType=1);
  display: block;
  border-radius: 20px;
}
.fadeIn_item.offs,
.offs .fadeIn_item {
  opacity: 0;
  transform: translateY(50px);
}
.fadeIn_item.ons,
.ons .fadeIn_item {
  transition: all 1s cubic-bezier(0, 0, 0.13, 0.79);
  opacity: 1;
  transform: translateY(0);
}
.fadeIn_item.offs,
.offs .fadeIn_item {
  opacity: 0;
  transform: translateY(50px);
}
.fadeIn_item.ons,
.ons .fadeIn_item {
  transition: all 1s cubic-bezier(0, 0, 0.13, 0.79);
  opacity: 1;
  transform: translateY(0);
}

@media screen and (max-width: 1200px) {
/*--------------- fadein toggle---------------*/
  .gh_fadein>li dl {
    width: 60vw;
    padding: 1rem 2rem;
    margin-right: 0;
    margin: 0 auto;
    background-color: #fff;
  }
  .gh_fadein>li dl dt {
    font-size: 20px;
    margin-right: 1rem;
    text-align: center;
  }
  .gh_fadein>li dl dt .icon {
    font-size: 0.5rem;
    padding: 0.3rem 1rem;
  }
  .gh_fadein>li dl dd {
    width: 30vw;
    }
}
@media screen and (max-width: 600px) {
.wallrepair_point {
    padding: 0;
    margin: 3rem auto 0;
    text-align: center;
  }
.gh_fadein>li dl {
    width: 80vw;
    padding: 1rem auto;
    border: 2px solid #0190bf;
    border-radius: 10px;
    display: block;
    justify-content: center;
    align-items: center;
    margin-right: 0;
    text-align: center;
  }
  .gh_fadein>li dl dt {
    font-size: 20px;
    font-weight: 600;
    color: #0190bf;
    -ms-flex-preferred-size: 20%;
    flex-basis: 20%;
    margin-right:0;
    text-align: center;
    margin-bottom: 0.5rem;
  }
  .gh_fadein>li dl dt .icon {
    font-size: 0.5rem;
    padding: 0.3rem 1rem;
  }
  .gh_fadein>li dl dd {
    width: 100%;
  }
}
/*==================================================
床防滑・防汚セラミックコーティング
==================================================*/
.bb_pointWrap {
  margin-top: 2rem;
}
.bb_pointBox {
  font-size: 1rem;
  width: fit-content;
  position: relative;
  font-weight: 400;
  margin: 0 auto 2rem;
  border-bottom: 1px solid #b6b6b6;
}
.bb_pointBox span {
  padding: 0.5rem 2em;
  margin: 0 auto 1rem;
  color: #fff;
  border-radius: 1rem;
  background-image: linear-gradient(150deg, rgba(255, 203, 103, 1) 10%, rgba(238, 237, 149, 1) 90%);
}
.bb_pointBox p {
  font-size: 1.5rem;
}
@media screen and (max-width: 900px) {
  .bb_pointBox {
    width: fit-content;
    max-width: 90%;
    padding: 0 1rem;
  }
  .bb_pointBox span {
    padding: 0.5rem 1.5em;
    margin: 0 auto 0.5rem;
    font-size: 0.7rem;
  }
  .bb_pointBox p {
    font-size: 1rem;
  }
}

/*==================================================
Coronax Section
==================================================*/
.cronax_wrap{
  width: 100vw;background-image: url(../img/coronax/bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  background-color:rgba(255, 255, 255, 0.9);
  background-blend-mode:lighten;
}
.c_disc_kyoutyou {
  font-weight: 300;
  border-bottom: 3px solid yellow;
}
/*--------------- POINT ---------------*/
.point_wrap_forSp {display: none;}
.point_wrap_forPc {display: block;}
.c_point_ttl{
  font-size: 2rem;
  display: flex;
  width: fit-content;
  margin: 0 auto;
  text-align: center;
}
.c_point_ttl::before,
.c_point_ttl::after {
  content: '';
  width: 1px;
  height: 40px;
  background-color: #b6921c;
}
.c_point_ttl::before {
  margin-right: 30px;
  transform: rotate(-35deg)
}
.c_point_ttl::after {
  margin-left: 30px;
  transform: rotate(35deg)
}
.point_wrap {
  width: 50vw;
  margin: 0 auto 10vh;
  text-align: center;
}
.point_wrap_title{
  font-size: 2rem; 
}
.point_grid {
  display: grid;
  grid-template-columns: repeat( 2, 50%);
  margin: 2rem 0;
  border: solid 1px #006db9;
}
.point_box:nth-child(1),
.point_box:nth-child(4) {
  background-color: #006db9;
  color: #fff;
}
.point_box {
  padding: 2rem;
}
.point_box h4 {
  font-size: 1.3rem;
}
.point_box img {
  width: 7vw;
  margin: 2rem 0;
}
@media screen and (max-width: 1000px) {
  .point_wrap {
    width: 80vw;
    margin: 0 auto 10vh;
  }
  .point_wrap_title {
    font-size: 2rem;
  }
  .point_box {
    padding: 2rem;
  }
  .point_box h4 {
    font-size: 1.3rem;
  }
  .point_box img {
    width: 10vw;
    margin: 2rem 0;
  }
}
@media screen and (max-width: 800px) {
  .point_wrap {
    width: 100vw;
    margin: 0 auto 10vh;
  }
  .point_wrap_title {
    font-size: 2rem;
  }
  .point_box {
    padding: 2rem;
  }
  .point_box h4 {
    font-size: 1.3rem;
  }
  .point_box img {
    width: 15vw;
    margin: 2rem 0;
  }
}
@media screen and (max-width: 500px) {
  .point_wrap_forSp{display: block;}
  .point_wrap_forPc {display: none;}
  .point_wrap_forSp .c_point_ttl {
    font-size: 5vw;
    display: flex;
    width: fit-content;
    margin: 0 auto;
    text-align: center;
  }
.point_wrap_forSp  .point_wrap {
    margin: 0 auto 10vh;
  }
.point_wrap_forSp  .point_wrap_title {
    font-size: 2rem;
  }
.point_wrap_forSp  .point_grid {
    display: block;
    grid-template-columns: repeat(2, 50%);
    margin: 2rem 0;
    border: solid 1px #006db9;
  }

.point_wrap_forSp  .point_box:nth-child(1),
.point_wrap_forSp  .point_box:nth-child(3) {
    background-color: #006db9;
    color: #fff;
  }
.point_wrap_forSp  .point_box:nth-child(2),
.point_wrap_forSp  .point_box:nth-child(4) {
    background-color: #fff;
    color: #006db9;
  }
.point_wrap_forSp  .point_box img {
    width: 25vw;
    margin: 2rem 0;
  }
}
/*==================================================
止水・防水
==================================================*/
.wp_tableSection > p{
  font-weight: 300;
  margin-top: 2rem;
}
.wp_tableSection > span > a{
  color: #006db9;
  font-weight: 300;
  border-bottom: 1px solid #666;
}
.wp_tableWrap{
  width: 50%;
  margin: 1rem auto;
  display: grid;
  grid-template-columns: repeat(2, 50%);
}
.wp_tableWrap .wp_tableBox:nth-child(1){
  border-right: 1px solid #b6b6b6;
}
.wp_tableWrap li {
  padding: 0.5rem 0;
}
.wp_tableBox ul li:nth-child(even) {
  background: #f5f5f5;
  color: #666;
}
.wp_tableBox ul li:nth-child(odd) {
  background: #FDFDFD;
  color: #666;
}
.wp_tableWrap_ttl{
  display: block;
  padding: 0.5rem 0;
  font-weight: bold;
  background-color: #00BCD4;
  color: #fff;
  width: 50%;
  border-radius: 10px ;
  margin: 1rem auto 0;
}
.wp_tableWrap .wp_tableBox:nth-child(1) {border-radius: 10px 0 0 15px;}
.wp_tableWrap .wp_tableBox:nth-child(2) {border-radius: 0 10px 15px 0;}
.wp_ulOne li:last-child{border-radius: 0 0 0 10px;}
.wp_ulTwo li:last-child {border-radius: 0 0 10px 0;}
@media screen and (max-width: 1000px) {
.wp_tableWrap {
    width: 100%;
    font-size: 2vw;
  }
}
@media screen and (max-width: 500px) {
  .wp_tableWrap {
    width: 100%;
    font-size: 1rem;
  }
}
