@charset "UTF-8";

/* CSS Document */

/*ヘッダー
-------------------------------------*/
.header {
  position: relative;
  background: url(../images/top/main_img.jpg) center / cover no-repeat;
  width: 100%;
  padding-bottom: 46.875%;
}

.header-child {
  padding-bottom: 5.5729%;
}



h1 img {
  max-width: 378px; 
}

.catch {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

.catch img {
  width: 100%;
}

#nav-container {
  margin: 0 auto;
  /* max-width: 1450px;*/

  position: fixed;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  z-index: 99999;
}


.site-header {
  background: rgba(255, 255, 255, 0);
  display: flex;
  padding: 50px 70px;
  position: fixed;
  justify-content: space-between;
  transition: .5s;
  width: 100%;
}

.site-header.transform {
  background: rgba(255, 255, 255, 0.9);
  padding: 0 20px;
}

.site-header-child {
  padding: 2rem 5rem;
  background: rgba(255, 255, 255, 0.9);
}

#menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
  margin: 0 30px;
}

#menu-btn {
  display: none;
}

#menu-content {
  margin: 0;
  list-style-type: none;
}

#menu-content>li {
  position: relative;
  float: left;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

#menu-content>li>a {
  display: block;
  padding: 0 15px;
  line-height: 40px;
  color: #104b8b;
  font-size: clamp(1.6rem, calc(1.3rem + 0.625vw), 2.1rem);
  font-weight: bold;
  text-decoration: none;
}

#menu-content>li>a>.blogicon-chevron-down {
  margin-right: 5px;
}

#menu-content>li>ul.second-content {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  padding: 20px 30px;
  list-style-type: none;
  background: white;
  top: 40px;
  /* -webkit-box-shadow: 1px 1px 7px #bbb;
          box-shadow: 1px 1px 7px #bbb;*/
  /*display: flex;*/
  border-radius: 10px;
}

#menu-content>li>ul.second-content:before {
  content: '';
  display: block;
  width: 201px;
  height: 141px;
  background-image: url("../images/common/nav_business.jpg");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  left: 10px;
	transform: translateY(-50%);
}



#menu-content>li:hover>ul.second-content {
  visibility: visible;
  opacity: 1;
  -webkit-transition: opacity 0.2s, visibility 0.2s;
  transition: opacity 0.2s, visibility 0.2s;
}


#menu-content>li>ul.second-content>li {
  text-align: left;
  width: 420px;
  padding-left: 210px;
}

#menu-content>li>ul.second-content>li>a {
  display: block;
  line-height: 40px;
  color: #000;
  font-size: 18px;
  text-decoration: none;
}

#menu-content>li>ul.second-content>li>a:hover {
  background: #eee;
  color: #000;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}




@media screen and (max-width: 1280px) {
  #nav-container {
    padding: 2rem;
  }

  #menu {
    width: 100%;
    margin: 0;
  }

  #menu-content>li>ul.second-content {
    padding: 10px;
  }

  #menu-content>li>ul.second-content:before {
    width: 150px;
    height: 105px;
    /*top: 10px;*/
    left: 10px;
  }

  #menu-content>li>ul.second-content>li {
    text-align: left;
    width: 300px;
    padding-left: 160px;
  }

  #menu-content>li>ul.second-content>li>a {
    display: block;
    line-height: 35px;
    color: #000;
    font-size: 14px;
    text-decoration: none;
  }
}

@media screen and (max-width: 1024px) {

  #nav-container {
    padding: 0;
  }

  nav {
    position: fixed;
    top: 0;
    left: -300px;
    bottom: 0;
    width: 60%;
    background: #fff;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    z-index: 3;
    opacity: 0;
  }

  h1 img {
    padding: 1rem;
  }

  .open nav {
    left: 0;
    opacity: 1;
  }

  nav .inner {
    padding: 25px;
  }

  nav .inner ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  nav .inner ul li {
    position: relative;
    margin: 0;
  }

  nav .inner ul li a {
    display: block;
    color: #333;
    font-size: 14px;
    text-decoration: none;
    -webkit-transition-duration: 0.2s;
    transition-duration: 0.2s;
  }

  .toggle_btn {
    display: block;
    position: fixed;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    cursor: pointer;
    z-index: 3;
  }

  .toggle_btn span {
    position: absolute;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: #104b8b;
    border-radius: 4px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }

  .toggle_btn span:nth-child(1) {
    top: 4px;
  }

  .toggle_btn span:nth-child(2) {
    top: 14px;
  }

  .toggle_btn span:nth-child(3) {
    bottom: 4px;
  }

  .open .toggle_btn span {
    background-color: #fff;
  }

  .open .toggle_btn span:nth-child(1) {
    -webkit-transform: translateY(10px) rotate(-315deg);
    transform: translateY(10px) rotate(-45deg);
  }

  .open .toggle_btn span:nth-child(2) {
    opacity: 0;
  }

  .open .toggle_btn span:nth-child(3) {
    -webkit-transform: translateY(-10px) rotate(315deg);
    transform: translateY(-10px) rotate(45deg);
  }

  #mask {
    display: none;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }

  .open #mask {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.5;
    z-index: 2;
    cursor: pointer;
  }

  #menu-content>li {
    width: 100%;
    margin-bottom: 15px;
  }

  #menu-content>li:hover {
    background: none;
  }

  #menu-content>li>a {
    height: 100%;
    padding: 0px;
    font-size: 100%;
    /*border-bottom: 1px solid #000;*/
  }

  #menu-content>li>ul.second-content {
    visibility: visible;
    opacity: 1;
    width: 100%;
    position: relative;
    -webkit-box-shadow: none;
    box-shadow: none;
  }

  #menu-content>li>ul.second-content>li {
    width: 100%;
    text-align-last: left;
  }

  #menu-content>li>ul.second-content>li>a {
    padding-left: 15px;
  }

  #menu-content>li>ul.second-content>li>a:hover {
    background: none;
  }

  #menu-content>li>ul.second-content {
    top: 0px;
  }


}

@media screen and (max-width: 620px) {

  .header {
    height: 50vh;
  }

  h1 img {
    max-width: 250px;
  }

  #menu-content>li>ul.second-content:before {
    display: none;
  }

  #menu-content>li>ul.second-content>li {
    padding-left: 0;
  }


}

/*メイン
-------------------------------------*/
.main-ttl {
  font-size: clamp(1.8rem, calc(2.8rem + 0.625vw), 3.6rem);
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.1em;
  line-height: 1.6;
  margin: 4rem auto 8rem;
}


.position-r {
  position: relative;
}

.flex-box {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10rem;
}

.flex-box-cp {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10rem;
}

.point-text-left {
  position: relative;
  background-color: #dcf2ff;
  width: 540px;
  height: 320px;
  border-radius: 20px;
  padding: 5rem;
  margin-bottom: 4rem;
}

.point-ttl-left {
  position: absolute;
  top: -73px;
  left: 50px;
  font-size: 10rem;
  color: #104b8b;
}

.point-text-right {
  position: relative;
  background-color: #dcf2ff;
  width: 540px;
  height: 320px;
  border-radius: 20px;
  padding: 5rem 5rem 5rem 8rem;
  margin-bottom: 4rem;
}

.point-ttl-right {
  position: absolute;
  top: -73px;
  left: 80px;
  font-size: 10rem;
  color: #104b8b;
}

.point-sub {
  font-size: clamp(1.4rem, calc(2.0rem + 0.625vw), 2.8rem);
  font-weight: bold;
  margin: 2rem 0;
}

.point-text p {
  font-size: clamp(1.4rem, calc(1.4rem + 0.625vw), 1.8rem);
  text-align: left;
}


.point-img {
  position: relative;
  margin-bottom: 4rem;
  width: 450px;
  height: 320px;

}

.img-right {
  position: absolute;
  top: -50px;
  left: -70px;
  z-index: 9999;
}

.img-right img {
  border-radius: 20px;
}

.img-left {
  position: absolute;
  top: -50px;
  right: -50px;
  z-index: 9999;
}

.img-left img {
  border-radius: 20px;
}

.img-right-panel {
  position: absolute;
  top: -50px;
  left: -70px;
  z-index: 9999;
}

.img-right-panel img {
  border-radius: 20px;
}


.btnarrow {
  /*矢印の基点とするためrelativeを指定*/
  position: relative;
  /*ボタンの形状*/
  background: #fff;
  padding: 5px 60px 5px 30px;
  display: inline-block;
  text-align: center;
  transition: all .2s linear;
  color: #000;
  text-decoration: none;
  border: transparent 2px solid;
  outline: none;
  border-radius: 30px;
  border-color: #000;
  font-weight: bold;
}

/*hoverした際のボタンの形状*/
.btnarrow:hover {
  background: #000;
  color: #fff;
  border-color: #fff;
}

/*矢印と線の形状*/

.btnarrow:before {
  content: "";
  /*絶対配置で線の位置を決める*/
  position: absolute;
  top: 50%;
  right: 20px;
  /*線の形状*/
  width: 20px;
  height: 1px;
  background: #000;
	transform: translateY(-50%);
}

.btnarrow::after {
  content: '';
  /*絶対配置で矢印の位置を決める*/
  position: absolute;
  top: 50%;
  right: 12px;
	transform: translateY(-50%);
  /*矢印の形状*/
  border: 4px solid transparent;
  border-top-width: 4px;
  border-bottom-width: 4px;
  border-left-color: #000;
  /*アニメーションの指定*/
  transition: all .2s linear;
}

/*hoverした際の矢印の形状*/
.btnarrow:hover::before {
  background: #fff;
  right: 25px;
}

.btnarrow:hover::after {
  border-left-color: #fff;
  right: 20px;
}



.works-bg {
  background: url("../images/top/works_bg.jpg") no-repeat;
  position: relative;
  -webkit-background-size: cover;
  background-size: cover;
  height: auto;
  background-position: 50% 50%;
}

.section-ttl {
  font-size: clamp(5rem, calc(8rem + 0.625vw), 10rem);
  color: rgba(16, 75, 131, 0.13);
  text-align: center;
}

.section-sub {
  font-size: clamp(1.8rem, calc(3.0rem + 0.625vw), 3.6rem);
  text-align: center;
  margin: 0 auto 4rem;
  letter-spacing: normal;
}

.sub-line {
  border-top: solid 3px #104b83;
  width: 155px;
  margin: 1rem auto;
}

.sub-line2 {
  border-top: solid 3px #104b83;
  width: 504px;
  margin: 1rem auto;
}

.sub-line3 {
  border-top: solid 3px #104b83;
  width: 244px;
  margin: 1rem auto;
}


article {
  margin: 10rem auto;
}

.btnarrow-b {
  /*矢印の基点とするためrelativeを指定*/
  position: relative;
  /*ボタンの形状*/
  background: #000;
  padding: 5px 60px 5px 30px;
  display: inline-block;
  text-align: center;
  transition: all .2s linear;
  color: #fff;
  text-decoration: none;
  border: transparent 2px solid;
  outline: none;
  border-radius: 30px;
  border-color: #fff;
  font-weight: bold;
}

/*hoverした際のボタンの形状*/
.btnarrow-b:hover {
  background: #fff;
  color: #000;
  border-color: #000;
}

/*矢印と線の形状*/

.btnarrow-b:before {
  content: "";
  /*絶対配置で線の位置を決める*/
  position: absolute;
  top: 50%;
  right: 20px;
  /*線の形状*/
  width: 20px;
  height: 1px;
  background: #fff;
}

.btnarrow-b::after {
  content: '';
  /*絶対配置で矢印の位置を決める*/
  position: absolute;
  top: 40%;
  right: 12px;
  /*矢印の形状*/
  border: 4px solid transparent;
  border-top-width: 4px;
  border-bottom-width: 4px;
  border-left-color: #fff;
  /*アニメーションの指定*/
  transition: all .2s linear;
}

/*hoverした際の矢印の形状*/
.btnarrow-b:hover::before {
  background: #000;
  right: 25px;
}

.btnarrow-b:hover::after {
  border-left-color: #000;
  right: 20px;
}

.panel_bn {
  text-align: center;
  margin: 4rem auto;
}

.panel_bn a:hover {
  opacity: 0.6;
}

.cp-line {
  margin: 0 auto;
}

.cp-line img {
  width: 100vw;
}


.cp-sub {
  font-size: clamp(1.2rem, calc(2.0rem + 0.625vw), 2.4rem);
}

.cp-left {
  text-align: center;
  margin-bottom: 2rem;
}

.cp-center {
  text-align: center;
  margin-bottom: 2rem;
}

.cp-right {
  text-align: center;
  margin-bottom: 2rem;
}

.cp-center::before {
  content: url("../images/top/vertical_line.png");
  vertical-align: middle;
  padding-right: 50px;
}


.cp-center::after {
  content: url("../images/top/vertical_line.png");
  vertical-align: middle;
  padding-left: 50px;
}

.recruit-sub {
  font-size: clamp(1.8rem, calc(3.0rem + 0.625vw), 3.6rem);
  text-align: center;
  margin: 0 auto 2rem;
  letter-spacing: normal;
}

.recruit-text {
  font-size: clamp(1.2rem, calc(1.6rem + 0.625vw), 2.1rem);
  text-align: center;
}

.recruit-bn {
  text-align: center;
}

.recruit-bn a:hover {
  opacity: 0.6;
}

.recruit-con {
  flex-basis: 30%;
}

.recruit-con a:hover {
  opacity: 0.6;
}

#footer {
  background-color: #104b8b;
  padding: 4rem 0;
}

.container {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  padding: 2rem;
}

.foot-logo {
  text-align: center;
  margin: 2rem auto 4rem;
}

.info-menu {
  border: solid 1px #fff;
  border-radius: 5px;
  color: #fff;
  font-size: 16px;
  padding: 5px;
}

.info-text {
  color: #fff;
  font-size: 16px;
}

.btnarrow-g {
  position: relative;
  /* background: #fff; */
  padding: 5px 60px 5px 30px;
  display: inline-block;
  text-align: center;
  transition: all .2s linear;
  color: #fff;
  text-decoration: none;
  border: transparent 2px solid;
  outline: none;
  border-radius: 30px;
  border-color: #fff;
  font-weight: bold;
}

/*hoverした際のボタンの形状*/
.btnarrow-g:hover {
  background: #000;
  color: #fff;
  border-color: #fff;
}

/*矢印と線の形状*/

.btnarrow-g:before {
  content: "";
  /*絶対配置で線の位置を決める*/
  position: absolute;
  top: 50%;
  right: 20px;
  /*線の形状*/
  width: 20px;
  height: 1px;
  background: #fff;
}

.btnarrow-g::after {
  content: '';
  /*絶対配置で矢印の位置を決める*/
  position: absolute;
  top: 40%;
  right: 12px;
  /*矢印の形状*/
  border: 4px solid transparent;
  border-top-width: 4px;
  border-bottom-width: 4px;
  border-left-color: #fff;
  /*アニメーションの指定*/
  transition: all .2s linear;
}

/*hoverした際の矢印の形状*/
.btnarrow-g:hover::before {
  background: #fff;
  right: 25px;
}

.btnarrow-g:hover::after {
  border-left-color: #fff;
  right: 20px;
}

.flex-foot {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10rem;
}

.foot-tbl {
  width: 100%;
  text-align: center;
  border-collapse: collapse;
  border-spacing: 0;
  margin-bottom: 4rem;
  font-size: 16px;
}

.foot-tbl th {
  padding: 10px;
  border-bottom: none;
  color: #fff;
}

.foot-tbl td {
  padding: 10px;
  border-bottom: none;
  text-align: left;
  color: #fff;
}

.foot-tel {
  font-size: clamp(1.3rem, calc(2.0rem + 0.625vw), 2.6rem);
  font-weight: 600;
}

.group {
  font-size: clamp(1.2rem, calc(1.6rem + 0.625vw), 2.1rem);
  text-align: center;
  color: #fff;
  margin-bottom: 2rem;
}

.group-item {
  flex-basis: 48%;
  margin-bottom: 2rem;
  text-align: center;
}

/*コピーライト
-------------------------------------*/
.copyright {
  text-align: center;
  padding: 1rem 0;
  color: #fff;
  font-size: 12px;
  width: 100%;
}

/*========= ページトップのためのCSS ===============*/
/*リンクの形状*/
#page-top a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 60px;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
}

#page-top a:hover {
  opacity: 0.6;
}

/*リンクを右下に固定*/
#page-top {
  position: fixed;
  right: 10px;
  z-index: 99998;
  /*はじめは非表示*/
  opacity: 0;
  transform: translateY(100px);
}

/*　上に上がる動き　*/

#page-top.UpMove {
  animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*　下に下がる動き　*/

#page-top.DownMove {
  animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 1;
    transform: translateY(100px);
  }
}



/*子ページ
-------------------------------------*/
.child-page-ttl {
  position: relative;
  background: url("../images/company/page-ttl-bg.jpg") no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
  padding: 50px 0;
  height: 400px;
  background-position: 50% 50%;
}

.recruit-page-ttl {
  position: relative;
  background: url("../images/recruit/page-ttl-bg.jpg") no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
  padding: 50px 0;
  height: 400px;
  background-position: 60% 50%;
}

.paint-page-ttl {
  position: relative;
  background: url("../images/painting/painting-pagetop.jpg") no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
  padding: 50px 0;
  height: 400px;
  background-position: 35% 50%;
}


.other-page-ttl {
  position: relative;
  background: url("../images/other/page-ttl-bg.jpg") no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
  padding: 50px 0;
  height: 400px;
  background-position: 20% 50%;
}

.proof-page-ttl {
  position: relative;
  background: url("../images/waterproof/page-ttl-bg.jpg") no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
  padding: 50px 0;
  height: 400px;
  background-position: 65% 50%;
}

.contact-page-ttl {
  position: relative;
  background: url("../images/contact/page-ttl-bg.jpg") no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
  padding: 50px 0;
  height: 400px;
  background-position: 80% 50%;
}




.child-ttl {
  position: absolute;
  font-weight: bold;
  font-size: 48px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
}

.child-ttl{
	position: absolute;
  font-weight: bold;
  font-size: 72px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  color: #fff;
  letter-spacing: 0.3em;
  text-shadow: 1px 1px 2px black;
  text-align: center;
  width: 100%;
}

.recruit-ttl {
  position: absolute;
  font-weight: bold;
  font-size: 72px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  color: #fff;
  letter-spacing: 0.3em;
  text-shadow: 1px 1px 2px black;
  text-align: center;
  width: 100%;
}

.paint-ttl {
  position: absolute;
  font-weight: bold;
  font-size: clamp(2.4rem, calc(6.0rem + 0.625vw), 7.2rem);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  color: #fff;
  letter-spacing: 0.3em;
  text-shadow: 1px 1px 2px black;
  text-align: center;
  width: 100%;
}

.other-ttl {
  position: absolute;
  font-weight: bold;
  font-size: clamp(2.4rem, calc(6.0rem + 0.625vw), 7.2rem);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  color: #fff;
  letter-spacing: 0.3em;
  text-shadow: 1px 1px 2px black;
  text-align: center;
  width: 100%;
}

.proof-ttl {
  position: absolute;
  font-weight: bold;
  font-size: clamp(2.4rem, calc(6.0rem + 0.625vw), 7.2rem);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  color: #fff;
  letter-spacing: 0.3em;
  text-shadow: 1px 1px 2px black;
  text-align: center;
  width: 100%;
}

.contact-ttl {
  position: absolute;
  font-weight: bold;
  font-size: clamp(2.4rem, calc(6.0rem + 0.625vw), 7.2rem);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
}



.greetings-area {
  background: url("../images/company/greetings_bg.jpg") no-repeat;
  position: relative;
  -webkit-background-size: cover;
  background-size: cover;
  height: auto;
  background-position: 50% 50%;
}


.white-box {
  background-color: #fff;
  padding: 4rem;
  width: 100%;
  height: auto;
}



.flex-box2 {
  display: flex;
  justify-content: space-between;
}

.greetings-text {
  flex-basis: 68%;
  padding-right: 4rem;
}

.greetings-img {
  flex-basis: 32%;
  text-align: right;
}

.greetings-text p {
  font-size: 18px;
  text-align: left;

}

.greetings-sign {
  font-size: 4.4rem;
  font-weight: bold;
  text-align: right;
}

.about-area {
  width: 74%;
  margin: 4rem auto;
}

.about-area table {
  font-size: 18px;
  margin: 40px auto;
  width: 100%;
}

.about-area th,
td {
  padding: 14px;
  font-weight: normal;
  border-bottom: 1px solid #040000;
}

.about-area th {
  text-align: right;
}

.about-area td {
  text-align: left;
}


.about-area td span {
  font-size: 90%;
}

.about-list2 {
  column-count: 2;
  width: fit-content;
  column-gap: 2em;
}

.about-list2 li {
  list-style: none;
}

.about-list3 {
  column-count: 3;
  width: fit-content;
  column-gap: 2em;
}

.about-list3 li {
  list-style: none;
}

.about-list3b {
  display: flex;
  }

.about-list3b li {
    list-style: none;
    width: 30%;
    column-gap: 2em;
    margin-right: 1rem;
}


.award-area {
  background: url("../images/company/award_bg.jpg") no-repeat;
  position: relative;
  -webkit-background-size: cover;
  background-size: cover;
  height: auto;
  background-position: 50% 50%;
}

.award-text {
  text-align: center;
  font-size: 18px;
}

.acquire-text {
  text-align: center;
  font-size: 18px;
}

.recruitment-area {
  background: url("../images/recruit/recruit_bg.jpg") no-repeat;
  position: relative;
  -webkit-background-size: cover;
  background-size: cover;
  height: auto;
  background-position: 50% 50%;
}

.recruit-area {
  width: 100%;
  margin: 0 auto 4rem;
  background-color: #fff;
  border-radius: 0 0 15px 15px;
}

.recruit-area table {
  font-size: 18px;
  margin: 0 auto 4rem;
  width: 100%;
  padding: 0 4rem 4rem;
}

.recruit-area th,
td {
  padding: 14px;
  font-weight: normal;
  border-bottom: 1px solid #808080;
}

.recruit-area th {
  width: 30%;
}

.recruit-area th {
  /*text-align: center;*/
}

.recruit-area td {
  text-align: left;
}


.recruit-area td span {
  font-size: 90%;
}

.recruit-area table tr:last-child th{ border-bottom:none; }

.recruit-area table tr:last-child td{ border-bottom:none; }



.recruit-tbl-ttl {
  font-size: 2.8rem;
  background: #104b80;
  padding: 4px;
  text-align: center;
  color: #FFF;
  font-weight: bold;
  letter-spacing: 0.05em;
  border-radius: 15px 15px 0 0;
  margin: 10rem auto 0;
}

.other-sub {
  text-align: center;
  margin: 10rem auto 6rem;
}

.column3 {
  width: 33%;
  width: -moz-calc(100% / 3);
  width: -webkit-calc(100% / 3);
  width: calc(100% / 3);
  text-align: center;
}

.kenchiku-ttl {
  text-align: center;
  font-size: clamp(1.6rem, calc(1.8rem + 0.625vw), 2.4rem);
  font-weight: bold;
  margin: 1rem auto;
}

.work-tbl table {
  border-collapse: separate;
  border-spacing: 2rem;
  text-align: center;
  width: 100%;
}

.work-tbl table td {
  padding: 5px;
  border-top: 2px solid #9a9a9a;
  border-bottom: 0;
}

.border-y {
  position: absolute;
  left: -10px;
  top: 5%;
  background: #9a9a9a;
  width: 2px;
  height: 90%;
}

.border-x {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  bottom: -20px;
  background: #9a9a9a;
  width: 90%;
  height: 2px;
}

.work-area {
  background: url("../images/other/work_bg.jpg") no-repeat;
  position: relative;
  -webkit-background-size: cover;
  background-size: cover;
  height: auto;
  background-position: 50% 50%;
}

.white-box-r {
  background-color: #fff;
  padding: 4rem;
  width: 100%;
  height: auto;
  border-radius: 2rem;
  margin-bottom: 10rem;
}

.panel_ttl {
  font-size: clamp(2.0rem, calc(4.0rem + 0.625vw), 4.8rem);
  font-weight: bold;
  color: #104b80;
  margin: 2rem auto;
}

.white-box-r p {
  font-size: 18px;
  text-align: left;
}

.panel-img {
  margin: 1rem;
}

.panel-text-left {
  position: relative;
  background-color: #fff;
  width: 540px;
  height: 320px;
  border-radius: 20px;
  padding: 3rem 5rem;
  margin-bottom: 4rem;
}

.example_ttl {
  background-color: #104b8b;
  color: #fff;
  padding: 5px 10px;
  border-radius: 10px;
  width: 350px;
  margin: 4rem auto 8rem;
  text-align: center;
  font-size: clamp(2.0rem, calc(3.2rem + 0.625vw), 4.0rem);
  font-weight: bold;
}

.proof-catch {
  text-align: center;
  font-size: 32px;
  margin: 40px 0;
}

.timing-bg {
  background: url("../images/waterproof/timing_bg.jpg") no-repeat;
  position: relative;
  -webkit-background-size: cover;
  background-size: cover;
  height: auto;
  background-position: 50% 50%;
}

.blue-box {
  background-color: #f3fcff;
  padding: 4rem;
  width: 100%;
  height: auto;
  border-radius: 20px;
}

.flex43 {
  flex-basis: 43%;
}

.flex57 {
  flex-basis: 57%;
}

.handling-text {
  font-size: 18px;
  margin-right: 1rem;
}

.blue-kakoi {
  font-size: 21px;
  font-weight: bold;
  color: #fff;
  background-color: #0d76ad;
  padding: 2px 8px;
  border-radius: 5px;
  line-height: 2.0;
}

.handling-ttl {
  font-size: clamp(2.0rem, calc(2.6rem + 0.625vw), 3.2rem);
  font-weight: bold;
  text-align: center;
  margin: 1rem auto;
}

.flow-bg {
  background: url("../images/waterproof/flow_bg.jpg") no-repeat;
  position: relative;
  -webkit-background-size: cover;
  background-size: cover;
  height: auto;
  background-position: 50% 50%;
}

.flow_ttl {
  background-color: #104b8b;
  color: #fff;
  padding: 5px 10px;
  border-radius: 10px;
  width: 400px;
  margin: 4rem auto 8rem;
  text-align: center;
  font-size: clamp(1.8rem, calc(1.8rem + 0.625vw), 2.4rem);
  font-weight: bold;
}

.yellow-box {
  background-color: #fffdf3;
  padding: 4rem;
  width: 100%;
  height: auto;
  border-radius: 20px;
  margin: 4rem auto;
}



@media screen and (max-width: 1260px) {
  .other-ttl {
    font-size: clamp(2.4rem, calc(4.0rem + 0.625vw), 6.2rem);
  }
  .proof-ttl {
    font-size: clamp(2.4rem, calc(4.0rem + 0.625vw), 6.2rem);
  }
	
  .paint-ttl {
    font-size: clamp(2.4rem, calc(4.0rem + 0.625vw), 6.2rem);
  }	

.child-ttl {
    font-size: clamp(2.4rem, calc(4.0rem + 0.625vw), 6.2rem);
  }		
	
.recruit-ttl {
    font-size: clamp(2.4rem, calc(4.0rem + 0.625vw), 6.2rem);
  }		
	
	 .contact-ttl {
    font-size: clamp(2.4rem, calc(4.0rem + 0.625vw), 6.2rem);
  }
}


@media screen and (max-width: 820px) {
  .header-child {
    padding-bottom: 0;
  }

  .flex-box {
    flex-direction: column;
    margin-bottom: 1rem;
  }

  .flex-box2 {
    flex-direction: column;
  }

  .order1 {
    order: 1;
  }

  .order2 {
    order: 2;
  }

  .order3 {
    order: 3;
  }

  .order4 {
    order: 4;
  }

  .greetings-text {
    padding-right: 0;
  }
	
 .greetings-sign {
    font-size: 2.4rem;
    text-align: center;
    margin: 0 auto;
  }

  .greetings-img {
    text-align: center;
    width: 50%;
    margin: 0 auto;
  }	

  .section-ttl {
    font-size: 4rem;
    line-height: 1.0;
  }

  .point-ttl-left {
    position: absolute;
    top: -73px;
    left: 50px;
    font-size: 8rem;
    color: #104b8b;
  }

  .point-ttl-right {
    position: absolute;
    top: -73px;
    left: 50px;
    font-size: 8rem;
    color: #104b8b;
  }

 .point-text-left {
        position: relative;
        background-color: #dcf2ff;
        width: 450px;
        height: auto;
        border-radius: 20px;
        padding: 5rem 2rem;
        margin: 2rem auto;
    }

 .point-text-right {
        position: relative;
        background-color: #dcf2ff;
        width: 450px;
        height: auto;
        border-radius: 20px;
        padding: 5rem;
        margin: 2rem auto;
    }

  .img-left {
        position: absolute;
        top: -50px;
        /* left: -70px; */
        left: 85%;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        width: 100%;
        z-index: 9999;
    }

  .img-right {
        position: absolute;
        top: -50px;
        /* left: -70px; */
        left: 85%;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        width: 100%;
        z-index: 9999;
    }

	.img-right-panel {
        position: absolute;
        top: -50px;
        /* left: -70px; */
        left: 80%;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        width: 100%;
        z-index: 9999;
    }

	
	
  .sub-line {
    width: 90%;
  }

  .sub-line2 {
    width: 90%;
  }

  .sub-line3 {
    width: 90%;
  }

  .cp-center::before {
    display: none;
  }

  .cp-center::after {
    display: none;
  }

  .about-area th,
  td {
    display: block;
  }

  .about-area th {
    text-align: left;
    font-weight: bold;
  }

  .about-list2 {
    column-count: 1;
  }

  .about-list3 {
    column-count: 1;
  }

  .recruit-area th,
  td {
    display: block;
  }

  .recruit-area th {
    text-align: left;
    font-weight: bold;
  }

  .recruit-area th {
    width: 100%;
  }

  .border-y {
    display: none;
  }

  .border-x {
    display: none;
  }

     .panel-text-left {
        width: 450px;
        height: auto;
        margin: 0 auto 4rem;
    }
}

@media screen and (max-width: 768px) {

.img-left {
        position: absolute;
        top: -50px;
        /* left: -70px; */
        left: 80%;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        width: 100%;
        z-index: 9999;
    }

  .img-right {
        position: absolute;
        top: -50px;
        /* left: -70px; */
        left: 80%;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        width: 100%;
        z-index: 9999;
    }
	
	.img-right-panel {
        position: absolute;
        top: -50px;
        /* left: -70px; */
        left: 76%;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        width: 100%;
        z-index: 9999;
    }

}

@media screen and (max-width: 560px) {
  .main-ttl {
    font-size: 2.4rem;
  }

  article {
    margin: 4rem auto;
  }

  .point-img {
    width: 100%;
    height: 242px;
  }

  .point-sub {
    font-size: 2.2rem;
  }

  .cp-sub {
    font-size: 1.9rem;
  }

  .section-sub {
    font-size: 2.2rem;
  }

  .recruit-sub {
    font-size: 2.0rem;
  }

  .recruit-text {
    font-size: 1.6rem;
  }

  .foot-tbl th,
  td {
    display: block;
  }

  .foot-tbl td {
    text-align: center;
  }

  .child-ttl {
    font-size: 30px;
  }

 

  .greetings-text p {
    font-size: 16px;
  }

  .about-area {
    width: 90%;
  }

  .about-area table {
    font-size: 14px;
  }

  .acquire-text {
    font-size: 16px;
  }

  .recruit-ttl {
    font-size: 30px;
  }

  .recruit-tbl-ttl {
    font-size: 2.0rem;
  }


  .recruit-area table {
    font-size: 14px;
    padding: 0 1rem 4rem;
  }

  .other-ttl {
    font-size: 3rem;
  }
	
	.paint-ttl  {
    font-size: 3rem;
  }
    

  .proof-ttl {
    font-size: 3rem;
  }
	
  .contact-ttl {
    font-size: 3rem;
  }	

  .white-box-r {
    padding: 1rem;
  }

  .panel_ttl {
    font-size: 2.0rem;
  }

  .example_ttl {
    width: 80%;
    margin: 4rem auto 4rem;
    font-size: 2rem;
  }

  .proof-catch {
    font-size: 22px;
  }

  .handling-ttl {
    font-size: 2.0rem;
  }

  .blue-box {
    padding: 2rem;
  }

  .blue-kakoi {
    font-size: 16px;

  }

  .flow_ttl {
    width: 100%;
  }

  .yellow-box {
    padding: 1rem;
  }
	
.point-text-left {
        width: 100%;
           }
	
.img-right {
        left: 50%;
           }
	
.img-right-panel {
        left: 50%;
           }	
	
.point-text-right {
        width: 100%;
           }
	
.img-left {
        left: 50%;
           }	
	
.panel-text-left {
        width: 100%;
            }	
	
}

/************************************/
/*         塗装工事ページ             */
/************************************/
body.painting-body {
  font-size: 1.8rem;
  font-weight: 500;
}

.white-ttl {
  color: #fff;
  text-shadow: 0px 1px 15px rgba(0, 0, 0, 0.8);
}

.painting-top {
  background: url(../images/painting/painting-pagetop.jpg) no-repeat;
}

.painting-catch {
  text-align: center;
  font-size: clamp(17px, 3vw, 32px);
  margin: 40px 0;
}

.painting-top-txt {
  text-align: center;
  margin: 40px 0 80px;
}

.painting-body section,
.painting-body #contents {
  padding-bottom: 2em;
}

.painting-body .section-sub {
  margin-bottom: 80px;
}

.handling-area .point-text-left,
.handling-area .point-text-right {
  background-color: #fff;
}

.handling-area .point-sub {
  font-size: clamp(2.4rem, calc(2rem + 2vw), 4.8rem);
  color: #104b8b;
}

.handling-area .point-text-left {
  padding: 0em 6em 2em 3em;
}

.handling-area .point-text-right {
  padding: 0em 3em 2em 6em;
}

.timing-subttl {
  color: #fff;
  background-color: #104b8b;
  font-size: clamp(2.4rem, 4vw, 4rem);
  font-weight: bold;
  letter-spacing: 1px;
  max-width: 400px;
  width: 9em;
  padding: 5px 1em;
  margin: 0 auto 20px;
  border-radius: 10px;
}

.qa-box {
  max-width: 800px;
  background-color: #fff;
  border-radius: 10px;
  padding: 2em;
  margin: 0 auto 2em;
}

.qa-box dt {
  font-size: 2.1rem;
  font-weight: bold;
  border-bottom: 1px #4d4d4d solid;
  padding: 0 0 20px 65px;
  position: relative;
}

.qa-box dd {
  padding: 20px 0 0 65px;
  position: relative;
}

.qa-box dt::before,
.qa-box dd::before {
  content: "Q";
  font-size: 38px;
  color: #fff;
  background-color: #104b80;
  border-radius: 24px;
  padding: 0px 0 0 8px;
  width: 50px;
  height: 50px;
  line-height: 1;
  display: inline-block;
  margin-right: 10px;
  position: absolute;
  top: -10px;
  margin-left: -65px;
}

.qa-box dd::before {
  content: "A";
  background-color: #e8841e;
  padding: 3px 0px 0 10px;
  top: 20px;
}

.construction-txt {
  font-size: 3.6rem;
  font-weight: bold;
  letter-spacing: 5px;
  margin-bottom: 20px;
}

.painting-body #footer {
  font-size: 16px;
}

@media screen and (max-width: 820px) {
  body.painting-body {
    font-size: 1.6rem;
  }

  .handling-area .point-text-left,
  .handling-area .point-text-right {
    padding: 0 1.5em 2.5em;
  }

  .painting-body .white-box {
    padding: 0;
  }
	
	.white-box {
  padding: 2rem 1rem;
  }

  .painting-top-txt {
    text-align: left;
    margin: 40px 0 80px;
  }


  .qa-box {
    padding: 1em;
    margin: 0 auto 2em;
  }

  .qa-box dt,
  .qa-box dd {
    padding-left: 50px;
  }

  .qa-box dt {
    font-size: 1.8rem;
  }

  .qa-box dt::before,
  .qa-box dd::before {
    font-size: 30px;
    width: 40px;
    height: 40px;
    margin-right: 10px;
    margin-left: -50px;
    top: -5px;
  }

  .qa-box dd::before {
    top: 17px;
  }
}

.simulation-slick {
  width: 90%;
  max-width: 1000px;
  margin: 60px auto;
}

.simulation-slick__item img {
  height: auto;
  width: 100%;
}

.dots-class button {
  display: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  padding: 0;
  border: none;
  background-color: transparent;
}

.dots-class {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  list-style-type: none;
}

.dots-class li {
  width: 15px;
  height: 15px;
  background-color: #fff;
  border: 2px solid #104b80;
  border-radius: 50%;
  margin-right: 15px;
  cursor: pointer;
  transition: background-color .5s ease;
}

.dots-class li.slick-active {
  background-color: #104b80;
  border: solid 2px white;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  box-shadow: 0 0 0 2px #104b80;
}

.dots-class li:hover {
  background-color: #104b80;
  border: solid 2px white;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  box-shadow: 0 0 0 2px #104b80;
}

.dots-class li:last-child {
  margin-right: 0;
}

.dots-class li::marker {
  list-style: none;
}

.slick__inner {
  width: min(100%, 1120px);
  margin: 0 auto;
}

.slick__container {
  position: relative;
  /* インナー幅から片側をはみ出させる */
  width: calc(100% + (100vw - 100%) / 2);
  /* / インナー幅から片側をはみ出させる */
}

.slick__images {
  padding: 60px 0;
}

.slick__prev,
.slick__next {
  position: absolute;
  bottom: 0;
  z-index: 1;
  width: 25px;
  height: 50px;
  border-radius: 50%;
  background: #fff;
}

.slick__prev {
  /* (インナー幅の右端) + (画像のマージン + ボタンの大きさ + ボタンとの間隔) */
  right: calc((100vw - 100%) + (30px + 50px + 15px));
  left: 40%;
}

.slick__next {
  /* (インナー幅の右端) + (画像のマージン) */
  right: calc((100vw - 100%) + (30px));
  left: 44%;
}

.slick__prev:before,
.slick__next:before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  border-top: 4px solid #104b80;
  border-right: 4px solid #104b80;
  opacity: 1;
  content: '';
}

.slick__prev:before {
  transform: translate(-25%, -50%) rotate(-135deg) skew(10deg, 10deg);
}

.slick__next:before {
  transform: translate(-75%, -50%) rotate(45deg) skew(10deg, 10deg);
}

.slick__image {
  position: relative;
  width: 310px;
  margin-right: 30px;
}

.slick__image:before {
  display: block;
  padding-top: calc((2 / 3) * 100%);
  content: '';
}

.slick__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.slick__image::after {
  content: '';
  background: url(../images/painting/flow-arrow.png) no-repeat center / contain;
  width: 15px;
  height: 38px;
  position: absolute;
  top: 40%;
  right: -30px;
  object-fit: contain;
}

.slick_last_image::after {
  content: none;
}

@media screen and (max-width: 820px) {
  .slick__prev:before {
    transform: translate(-75%, -50%) rotate(-135deg) skew(10deg, 10deg);
  }
	
  .slick__container {
   width: 100%;
  /* / インナー幅から片側をはみ出させる */
}
	
	
}

/************************************/
/*         お問合せページ             */
/************************************/
#formWrap {
  width: 700px;
  margin: 0 auto;
  line-height: 120%;
}

table.formTable {
  width: 100%;
  margin: 0 auto 40px;
  border-collapse: collapse;
}

table.formTable td,
table.formTable th {
  border: 1px solid #ccc;
  padding: 10px;
}

table.formTable th {
  width: 30%;
  font-weight: normal;
  background: #efefef;
  text-align: left;
}

@media screen and (max-width:572px) {
  #formWrap {
    width: 95%;
    margin: 0 auto;
  }

  table.formTable th,
  table.formTable td {
    width: auto;
    display: block;
  }

  table.formTable th {
    margin-top: 5px;
    border-bottom: 0;
  }

 /* form input[type="text"],
  form textarea {
    width: 80%;
    padding: 5px;
    font-size: 110%;
    display: block;
  }*/
	
 form input[type="text"],
  form textarea {
    width: 100%;
    padding: 5px;
    font-size: 110%;
    display: block;
  }	

  /*form input[type="submit"],
  form input[type="reset"],
  form input[type="button"] {
    display: block;
    width: 100%;
    height: 40px;
  }*/
	

form input[type="submit"],
  form input[type="reset"],
  form input[type="button"] {
    display: block;
    width: 65%;
    height: 50px;
  }	
	
}

.form-area {
  max-width: 1000px;
  padding: 60px;
  margin: 0 auto;
  font-weight: 500;
}

.required {
  color: #eb3333;
}

.Form-Item {
  padding-top: 2em;
  display: flex;
  align-items: center;
}

.Form-Item-Label {
  text-align: right;
  width: 9em;
  margin-right: 1em;
}

.Form-Item-Input {
  border: 1px solid #1e627c;
  border-radius: 10px;
  padding: 0 1em;
  height: 32px;
  flex: 1;
  width: 100%;
  max-width: 700px;
  background: #fff;
}

.Form-Item-Textarea {
  border: 1px solid #1e627c;
  border-radius: 10px;
  height: 216px;
  flex: 1;
  width: 100%;
  max-width: 700px;
  background: #fff;
  margin-bottom: 3em;
  padding: 0 1em;
}

.Form-Btn {
  background-color: #104b8b;
  border-radius: 10px;
  padding: 1rem 3em;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  color: #fff;
  margin: 0 auto;
  display: block;
}

.Form-Item-Label.isMsg {
  margin-top: 8px;
  margin-bottom: auto;
}

.Form-Item-Label-Required {
  border-radius: 6px;
  margin-right: 8px;
  padding-top: 8px;
  padding-bottom: 8px;
  width: 48px;
  display: inline-block;
  text-align: center;
  background: #5bc8ac;
  color: #fff;
  font-size: 14px;
}

@media screen and (max-width: 560px) {
  .form-area {
    padding: 0 20px 60px;
  }

  .Form-Item {
    padding-left: 14px;
    padding-right: 14px;
    padding-top: 16px;
    padding-bottom: 16px;
    flex-wrap: wrap;
  }

  .Form-Item-Label {
    max-width: inherit;
    display: flex;
    align-items: center;
    font-size: 15px;
  }

  .Form-Item-Input {
    margin-left: 0;
    margin-top: 18px;
    height: 40px;
    flex: inherit;
    font-size: 15px;
  }

  .Form-Item-Textarea {
    margin-top: 18px;
    margin-left: 0;
    height: 200px;
    flex: inherit;
    font-size: 15px;
  }

  .Form-Btn {
    margin-top: 24px;
    padding-top: 8px;
    padding-bottom: 8px;
    max-width: 65%;
    font-size: 16px;
  }

  .Form-Item-Label.isMsg {
    margin-top: 0;
  }

  .Form-Item-Label-Required {
    border-radius: 4px;
    padding-top: 4px;
    padding-bottom: 4px;
    width: 32px;
    font-size: 10px;
  }
}

/* お問合せページ */
.form-center {
  text-align: center;
}

#formWrap {
  width: 100%;
  max-width: 1000px;
  line-height: 2;
}

#formWrap td textarea {
  width: 100%;
}

.form-subttl {
  font-size: clamp(1.2rem, calc(1.6rem + 0.625vw), 2.1rem);
  text-align: center;
  margin-bottom: 1em;
  font-weight: bold;
}

.form-submit-btn, .form-reset-btn {
  background-color: #104b8b;
  color: #fff;
  padding: 10px 16px;
  border-radius: 5px;
  margin: 1em;
  margin-bottom: 40px;
  font-size: 18px;
}

.confirm-btn {
  border: 1px solid #104b8b;
  border-radius: 10px;
  padding: 1em;
  margin: 20px 30px;
  font-weight: 700;
  color: #555;
  text-decoration: none;
}

/************************************/
/*         住宅設備エコ事業ページ       */
/************************************/
/* 汎用足りない分 */
.br-sp560{display:block;}
.br-pc560{display: none;}
@media screen and (min-width:561px) {
.br-sp560{display:none;}
.br-pc560{display: block;}
} 

.pc560-only-inlineblock {display: none;}
@media screen and (min-width:561px) {
.pc560-only-inlineblock {display: inline-block;}
}

.mb0 {margin-bottom: 0;}
.mb50-100 {margin-bottom: clamp(5rem, 8vw, 10rem);}

.prl10 {
	padding-left: 1rem;
	padding-right: 1rem;
}


.row {
  display: flex;
  flex-wrap: wrap; 
  margin-left: -10px;
	margin-right: -10px;
}

.items-center { align-items: center; }
.items-top {align-items: flex-start;}

.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-around { justify-content: space-around; }
.justify-evenly { justify-content: space-evenly; }

.col {
  padding: 10px;
  box-sizing: border-box;
  flex: 0 0 auto;
}

.span-1  { width: 8.333333%; }
.span-2  { width: 16.666667%; }
.span-3  { width: 25%; }
.span-4  { width: 33.333333%; }
.span-6  { width: 50%; }
.span-8  { width: 66.666667%; }
.span-9  { width: 75%; }
.span-10 { width: 83.333333%; }
.span-11 { width: 91.666667%; }
.span-12 { width: 100%; }

.col-30 {
  flex: 1 1 30%;
  width: 30%;
}
.col-40 {
  flex: 1 1 40%;
  width: 40%;
}

.font-blue {color: #104b80;}
.font-orange {color: #e4720a;}

span.tilt-15{
	display: inline-block;
	transform: rotate(15deg);
}

@media screen and (max-width: 768px) {
  .row:not(.flex-sm-column) [class*="span-"] {
    width: 100%;
  }
	
  .col-30,
  .col-40 {
    flex: 1 1 100%;
    width: 100%;
  }
	
	.flex-col-reverse {flex-direction: column-reverse;}
	
}

@media screen and (max-width: 560px) {
	.flex-sm-column [class*="span-"] {
    width: 100%;
  }
}


.eco-body .box900 {
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
}
.eco-body .box1200 {
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
	padding: 10rem 1.5rem 2rem;
}

.eco-body .box1200.pt0 {padding-top: 0;}


.eco-fv {
	background-image: url("../images/eco/eco-pegetop.jpg");
	background-position: center;
}

.ut-logo {max-width: clamp(clamp(18rem, 20vw, 34rem), calc(24rem + ((1200px - 100vw)* 0.1)), 50%);}

.eco-body .section-ttl img,.ansewr-img {
	max-width: clamp(70px,9vw,120px);
}
.section-sub.font-blue {font-size: clamp(16px, 3vw, 28px);}
.section-sub.font-blue span {font-size: 1.4em;}
.section-sub.font-blue .font-box-orange{
	background-color: #e4720a;
	color: #fff;
	padding: 0 .5rem;
	font-size: 1.2em;
	margin-right: .5rem;
}
.section-sub.font-blue span.font-small {font-size: .8em;}
.section-sub.font-blue span.font-medium {font-size: .9em;}
.section-sub.font-blue.mb0 {margin-bottom: 0;}
.section-sub.font-blue span.tilt-15{
	display: inline-block;
	font-size: 1em;
	transform: rotate(15deg);
}

.eco-slide li {padding: .5rem;}

.ansewr-box-mark {
	position: relative;
	background-color: #fff;
	padding: 1rem 2rem;
	border: 3px solid #104b80;
	border-radius: 10px;
	margin-left: 1rem;
    margin-right: 1rem;
	margin-bottom: clamp(6rem, 12vw, 12rem);
}
.ansewr-box-mark::before {
	content: "";
	width: 160px;
    height: 30px;
	position: absolute;
	top: 99%;
    left: 50%;
    transform: translateX(-50%);
	clip-path: polygon(50% 100%, 0 0, 100% 0);
	background-color: #fff;
	z-index: 2;
}
.ansewr-box-mark::after {
	content: "";
	width: 160px;
    height: 30px;
	position: absolute;
	top: 100%;
    left: 50%;
    transform: translateX(-50%);
	background-color: #104b80;
	clip-path: polygon(50% 100%, 0 0, 100% 0);
	z-index: 1;
}

.ansewr-img {
	position: absolute;
	top: -70px;
	left: -50px;
}

.ansewr-box-mark .row {flex-wrap: nowrap;}

.ansewr-box-mark p {
	font-size: clamp(18px, 3vw, 36px);
	margin-left: 1em;
} 
.ansewr-box-mark p span {
	font-size: 1.4em;
}

.orange-box {
	background-color: #fff;
	
	border: 3px solid #e4720a;
	border-radius: 10px;
	margin-left: 1rem;
    margin-right: 1rem;
}
.orange-box > div {
	text-align: center;
    padding: 3rem 2rem;
}

.orange-box h3 {
	background-color: #e4720a;
	color: #fff;
	text-align: center;
	font-size: clamp(18px,3vw,26px);
	padding: 2rem 1rem;
	line-height: 1.7em;
}
.orange-box h3 span {font-size: 1.5em;}

.orange-box h3 p {padding: 1rem 2rem 0;}

.orange-box .ansewr-img {position: initial;}

.dot-line {
	border-bottom: 5px dotted #9c9c9c;
	margin: 2rem 0;
}

.sub-ttl-blue-line {
	display: flex;
	border-bottom: 2px solid #104b80;
	padding-bottom: .5rem;
	font-size: clamp(20px, 2vw, 28px);
}
.sub-ttl-blue-line span {
	display: inline-flex;
    justify-content: center;
    align-items: center;
	background-color: #104b80;
	border-radius: 5px;
	color: #fff;
	font-size: clamp(18px,2vw,20px);
	width: 2em;
	height: 2em;
	aspect-ratio: 1 / 1;
	margin-right: 1rem;
}
.sub-ttl-blue-line p {
    display: inline-block;
}

.eco-value-img {max-width: clamp(120px, 19vw, 230px);}

.beige-orange-box {
	background-color: #fff1d7;
	border-radius: 10px;
	margin-left: 1rem;
    margin-right: 1rem;
	padding: 1rem 2rem;
}

.more-box-mark {
	position: relative;
}

.more-mark {
	position: absolute;
	left: -30px;
	top: -50px;
	max-width: clamp(90px,13vw,140px);
}

.more-ttl {
	color: #e4720a;
	font-size: clamp(36px,6vw,67px);
	margin-left: clamp(70px,10vw,110px);
}

.more-img-box p {
	font-size: clamp(14px,2vw,16px);
	line-height: 1.3em;
    margin-top: .5rem;
}

.ttl-slash {
    position: relative;
    display: inline-block;
    padding: 0 clamp(20px, 6.1vw, 45px);
    text-align: center;
    font-size: clamp(20px, 5vw, 40px);
	margin-top: clamp(2rem,4.5vw,4rem);
	margin-bottom: clamp(2rem,4.5vw,4rem);
}
.ttl-slash::before, .ttl-slash::after {
    content: "";
    position: absolute;
    bottom: 0;
    height: 100%;
    /*width: clamp(10px, 2vw, 20px);*/
	width: 2px;
    background-color: #000;
    /*clip-path: polygon(0 0, 100% 0, 50% 100%, 50% 100%);*/
}
.ttl-slash::before {
    left: 0;
    transform: rotate(-25deg);
}
.ttl-slash::after {
    right: 0;
    transform: rotate(25deg);
}

.eco-body .handling-area .point-text-left,
.eco-body .handling-area .point-text-right 
{background-color: #dcf2ff;}

.eco-body .handling-area .point-sub {
	text-align: left;
	font-size: clamp(24px, 2.5vw, 36px);
}
.eco-body .handling-area p {text-align: left;}

.eco-form-link {
  padding: 10px;
  margin-bottom: 40px;
}

.eco-form-link img {
  max-width: 700px;
  width: 100%;
}

@media screen and (max-width: 1024px) {
	.ansewr-img {
		position: initial;
	}
	.ansewr-box-mark p {margin-left: 1rem;}
}

@media screen and (max-width: 768px) {
	.more-box {text-align: center;}
	.more-box-mark {display: inline-block;}
	
	.more-img-box .col.span-3 {width: 50%;}
  .eco-form-link { margin-bottom: 0;}

  .eco-form-link img {
    max-width: 412px;
  }
}

@media screen and (max-width: 560px) {
	.eco-body .handling-area .point-sub {text-align: center;}
}


/* エコキュート予約フォーム */

.Form-Item-Q {
  padding-bottom: 2em;
  padding-left: 1em;
  max-width: 700px;
  margin: 0 auto;
}

.Form-Item-Q p {
  margin-bottom: 0.5em;
}

.Form-Item-Q label {
  padding-left: 3em;
}

.Form2 .Form-Item {
  max-width: 700px;
  margin: 0 auto;
}

.Form2 .Form-Item-Label {
  width: 7.5em;
}

.eco-form-attention {
  text-align: center;
  padding: 1em;
  font-size: 14px;
}

.eco-form-txt {
  max-width: 700px;
  text-align: center;
  margin: 0 auto;
  padding: 1em;
}
.eco-form-txt ul {
  list-style: none;
  margin: 20px 0 40px;
  display: inline-block;
  text-align: left;
}

.eco-form-txt li {
  text-align: left;
  text-indent: -1.4em;
  padding-left: 1.4em;
  font-size: 14px;
}

.box-news {
    margin: 2em 0;
    background: #cfe9ff;
	border-radius: 20px;
	}

.box920 {
	max-width: 920px;
	margin-left: auto;
	margin-right: auto;
	padding: 2rem;
}

.box-news .box-title {
    background: #104b83;
    padding: 15px;
    border-radius: 20px 20px 0 0;
	position: relative;
}

.box-title h3{
	 font-size: 3.6rem;
	text-align: center;
    color: #FFF;
	font-weight: bold;
    letter-spacing: 0.05em;
}

.box-news p {
    padding: 15px 20px;
    margin: 0;
}

.news-eng{
	position: absolute;
	top: -35px;
	left: 0;
	font-size: clamp(5rem, calc(8rem + 0.625vw), 10rem);
    color: rgba(255,255,255,0.3);
	z-index: 9999
}

@media screen and (max-width: 768px) {
  .eco-form-attention {
    text-align: left;
  }
	
.box-title h3{
	 font-size: 2.0rem;
	    }	
	
    .news-eng {
        top: -6px;
        font-size: 40px;
    }
  
}