@charset "UTF-8";
/* CSS Document */
html {
    font-size: 62.5%; /* 16px * 62.5% = 10px */
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
  }
  body {
    color: #333333; /* RGB */
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    font-size: 1.6em;
    line-height: 1.6rem;
    overflow-x: hidden;
  }
  a:hover {
      opacity: 0.5;
      /* transition: all 0.5s 1s ease-in-out; */
  }
  *, *:before, *:after {
    box-sizing: border-box;
  }
  img {
    width: 100%;
    height: auto;
  }
  section {
    padding: 50px 0;
  }
  .sp-only {
    display: none;
  }
  @media screen and (max-width: 1024px) {
    .sp-only {
      display: block;
    }
    .pc-only {
      display: none;
    }
    body {
      font-size: 1.4em;
      line-height: 1.4rem;
    }
  }
  /* mv */
  header {
    position: fixed;
    z-index: 100;
    background-color: #FFFFFF;
    width: 100%;
  }
  header .pc-header {
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    padding: 15px 0;
  }
  header .logo {
    width: auto;
    height: 55px;
  }
  header .contact-btn {
    display: flex;
    align-items: center;
    font-size: 2.0rem;
    text-align: center;
  }
  .contact-icon {
    width: 250px;
    height: auto;
    display: block;
    padding: 15px;
    margin-left: 9px;
    border: solid 1px #333333;
    background-color: #FFF;
  }
  .contact-icon.line {
    border: solid 1px #06C755;
    color: #06C755;
  }
  .contact-icon.mail {
    background-color: #FA7916;
    color: #fff;
    padding: 8px;
    border: none;
  }
  .contact-icon img {
    height: 23px;
    width: auto;
    margin-right: 9px;
    vertical-align: middle;
  }
  .contact-icon.mail img {
    height: 40px;
  }
  .mv {
    background-image: url(../images/mv-bg.png);
    background-size: cover;
    background-position: left top;
    padding: 0;
    height: calc(100vh - 168px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .mv_main {
    padding-top: 20px;
    padding-left: calc(50vw - 600px);
  }
  .mv_supplement {
    font-weight: bold;
    color: #fff;
    padding: 20px 10px;
    margin-bottom: 10px;
    font-size: 30px;
    transform: skew(-15deg);
    background-image: linear-gradient(to right, #FA7916 0%, #FBB178 100%);
    max-width: 350px;
  }
  .mv h1 {
    max-width: 480px;
    margin-bottom: 30px;
    position: relative;
  }
  .mv h1::after {
    content: "";
    display: inline-block;
    width: 31px;
    height: 38px;
    background-image: url('../images/mv-decoration01.png');
    background-size: contain;
    transform: rotate(16deg);
    position: absolute;
    top: 0px;
    left: 330px;
  }
  .mv h1::before {
    content: "";
    display: inline-block;
    width: 31px;
    height: 42px;
    background-image: url('../images/mv-decoration02.png');
    background-size: contain;
    transform: rotate(16deg);
    position: absolute;
    top: -5px;
    left: 370px;
  }
  .mv_points li {
    font-size: 3.0rem;
    color: #004D84;
    line-height: 3.0rem;
    margin-bottom: 15px;
  }
  .mv_points li:last-child{
    margin-bottom: 0;
  }
  .mv_points li span {
    color: #EB1D2A;
    font-size: 5.0rem;
    margin: 0 9px;
  }
  .mv_points li img{
    width: 30px;
    height: 30px;
    vertical-align: middle;
    margin-right: 9px;
  }
  .contact_number {
    width: 375px;
    height: 58px;
    background-color: #FFF;
    display: flex;
    justify-content: flex-end;
    border: 1px solid #004D84;
  }
  .contact_number img {
    width: 40px;
    height: 51px;
    margin-right: 9px;
    vertical-align: middle;
  }
  .contact_number p {
    font-size: 2.0rem;
    color: #004D84;
    padding: 15px 0;
    margin-right: 9px;
  }
  .contact_number p span {
    color: #EB1D2A;
    font-size: 3.2rem;
    margin: 0 9px;
  }
  .fixed-area {
    height: 86px;
  }
  .open-btn {
    display: none;
  }
  .header_nav {
    position: fixed;
    top: -150%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #E5F4FF;
    transition: all 0.6s;
    overflow: auto;
  }
  @media screen and (max-width: 1024px) {
    header {
      position: fixed;
      padding: 15px 25px;
    }
    header .logo {
      width: 100px;
      height: auto;
    }
    header .pc-header {
      padding: 0;
    }
    .open-btn {
        display: block;
        width: 27px;
        height: 16px;
        cursor: pointer;
        position: absolute;
        right: 25px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 9999;
    }
    .open-btn span {
      width: 100%;
      height: 2px;
      background-color: #333;
      display: block;
      content: "";
      position: absolute;
      top: 0;
    }
    .open-btn span:nth-of-type(2) {
      top: 6px;
    }
    .open-btn span:nth-of-type(3) {
      top: 12px;
    }
    .open-btn.active span:nth-of-type(1) {
      transform: translateY(6px) rotate(-45deg);
      width: 100%;
    }
    .open-btn.active span:nth-of-type(2) {
      opacity: 0;
    }
    .open-btn.active span:nth-of-type(3) {
      transform: translateY(-6px) rotate(45deg);
      width: 100%;
    }
    .header_nav.panelactive {
      top: 0;
      z-index: 999;
    }
    .header_nav {
      padding: 50px 25px 50px;
      text-align: center;
    }
    .header_nav img {
      height: 77px;
      width: auto;
      margin-bottom: 20px;
    }
    .header_nav ul {
      text-align: left;
      max-width: 500px;
      margin: 0 auto;
    }
    .header_nav ul li{
      color: #004D84;
      margin-bottom: 20px;
    }
    .header_contact-btn img {
      height: 23px;
      width: auto;
      margin-right: 9px;
      vertical-align: middle;
      margin-bottom: 0;
    }
    .header_contact-btn .tel {
      text-align: center;
      padding-bottom: 0;
    }
    .header_contact-btn .contact-icon {
      margin: 0 auto 10px;
      padding: 15px;
    }
    .header_contact-btn .contact-icon.mail img {
      height: 30px;
    }
    .header_contact-btn .contact-icon.line {
      background-color: #fff;
    }
    header .contact-btn {
      display: none;
    }
    .mv {
      background-position: 50% 50%;
      background-repeat: no-repeat;
      background-image: url(../images/mv-bg-s.png);
      height: calc(100vh - 85px);
    }
    .fixed-area {
      height: 85px;
    }
    .mv_main {
      padding-left: 0;
      margin: 0 auto;
    }

    .mv h1 {
      width: 250px;
    }
    .mv_supplement {
      padding: 10px 10px;
      font-size: 2.0rem;
      text-align: center;
      margin: 0 auto 10px;
    }
    .mv h1::before {
      height: 35px;
      background-repeat: no-repeat;
      left: 240px;
      top: 0;
    }
    .mv h1::after {
      left: -15px;
      height: 30px;
      background-repeat: no-repeat;
      transform: rotate(-16deg);
    }
    .mv_points li {
      font-size: 2.0rem;
      margin-bottom: 10px;
      line-height: 2.0rem;
    }
    .mv_points li span {
      font-size: 4.0rem;
    }
    .mv_points li img {
      width: 20px;
      height: 20px;
    }
    .contact_number {
      width: 90%;
      max-width: 500px;
    }
  }
  @media screen and (max-width: 768px) {
    .mv_main {
      padding-top: 20px;
    }
  }
  /* navi */
  .grobal-nav {
    background-color: #E5F4FF;
  }
  .grobal-nav ul{
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
  }
  .grobal-nav li{
    color: #004D84;
    margin: 33px 0;
    width: calc(100% / 6);
    text-align: center;
    border-right: 1px solid;
  }
  .grobal-nav li:last-child {
    border-right: none;
  }
  @media  (max-width: 1024px) {
    .grobal-nav {
      display: none;
    }
  }
  @media screen and (min-width: 1920px) {
    .mv_main {
      padding-left: calc(50vw - 700px);
    }
  }
  /* 料金 */
  .kakaku {
    background-image: url(../images/kakaku-bg.png);
    background-size: cover;
    padding: 50px 0;
    position: relative;
  }
  .kakau-txt {
    color: #004D84;
    font-size: 4.6rem;
    line-height: 6.9rem;
    text-align: center;
    margin-bottom: 30px;
  }
  .kakau-txt .kakau-sub {
    font-size: 3.0rem;
    line-height: 3.0rem;
    margin-bottom: 20px;
  }
 .kakaku_message{
  font-size: 4.6rem;
  line-height: 6.9rem;
 }
 .kakaku_message span {
  font-size: 5.6rem;
  margin: 0 9px;
 }
 .kakaku_message.txt-under span {
  -webkit-text-stroke: 10px #FFF;
 }
 .kakaku_message.txt-fornt {
  position: absolute;
  top: 100px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
 }
 .kakaku_message.txt-fornt span {
  color: #FA7916;
 }
  .kakaku-complement {
    font-size: 2.4rem;
    line-height: 4.0rem;
    text-align: center;
    margin-bottom: 45px;
  }
  .kakaku-table-area {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
  }
  .kakaku-table {
    background-color: #FFF;
    border: 4px solid #004D84;
    padding: 46px 30px;
  }
  .comparison {
    background-color: #004D84;
    color: #FFF;
    font-size: 2.4rem;
    text-align: center;
    padding: 18px;
    position: absolute;
    top: -25px;
    left: -4px;
    z-index: 1;
  }
  .table-ex, .table-major, .table-our-price {
    text-align: center;
    border-bottom: 1px solid #333;
  }
  .table-our-price {
    margin-bottom: 0;
    background-color: #FFFDE6;
  }
  .table-company, .table-customer, .table-intermediate-money, .table-cost {
    width: 11%;

  }
  .table-minus, .table-equal {
    width: 5%;
  }
  .table-merit {
    width: 35%;
  }
  .table-major {
    font-size: 2.0rem;
  }
  .table-major span{
    font-size: 1.6rem;
  }
  .table-major .table-merit {
    font-size: 1.6rem;
    line-height: 2.5rem;
  }
  .table-our-price .table-company span {
    color: #FFF;
    background-color: #FA7916;
    font-size: 3.0rem;
    line-height: 3.0rem;
    padding: 20px 25px;
    position: relative;
    display: inline-block;
  }
  .table-our-price .table-company span::after {
    content: "";
    background-image: url(../images/table-accent.png);
    width: 22px;
    height: 14px;
    background-size: cover;
    position: absolute;
    top: 10px;
    right: 10px;
  }
  .table-our-price .table-customer span, .table-our-price .table-intermediate-money span, .table-our-price .table-cost span {
    color: #FA7916;
    font-size: 3.0rem;
  }
  .kakau-orange {
    font-size: 2.0rem;
    line-height: 3.0rem;
    color: #FA7916;
  }
  .table-ex th, .table-major td, .table-our-price td{
    padding: 20px 0;
  }
  .table-major td, .table-our-price td{
    vertical-align: middle;
  }
  @media  (max-width: 1024px) {
    .kakaku {
      padding: 50px 25px;
    }
    .kakau-txt .kakau-sub {
      font-size: 2.0rem;
      margin-bottom: 15px;
    }
    .kakaku_message {
      font-size: 2.4rem;
      line-height: 3.6rem;
    }
    .kakaku_message span {
      font-size: 3.6rem;
      line-height: 5.4rem;
    }
    .kakaku_message.txt-fornt {
      top: 95px;
    }
    .kakau-txt {
      margin-bottom: 20px;
    }
    .kakaku-complement {
      font-size: 1.6rem;
      line-height: 2.4rem;
      text-align: left;
    }
    .kakaku-table-area {
      position: static;
    }
    .kakaku-table {
      padding: 0;
    }
    .comparison {
      font-size: 1.6rem;
      position: static;
    }
    .table_wrap {
      padding: 20px 10px;
    }
    .table_wrap table {
      white-space: nowrap;
    }
    .table-company, .table-customer, .table-intermediate-money, .table-cost {
      min-width: 110px;
    }
    .table-minus, .table-equal {
      min-width: 20px;
    }
    .table-merit {
      width: 215px;
    }
    .table-company {
      padding-left: 10px;
    }
  }
  /* お悩み */
  .worries {
    background-color: #EFF3F4;
    padding: 50px 0;
  }
  h2 {
    font-size: 4.6rem;
    line-height: 4.6rem;
    text-align: center;
    margin-bottom: 30px;
  }
  h2 span {
    font-size: 5.6rem;
  }
  .worries-list {
    display: flex;
    justify-content: space-between;
    max-width: 757px;
    margin: 0 auto;
    background-color: #FFF;
    padding: 30px 0 0;
  }
  .worries-list div {
    width: 40%;
    height: auto;
    position: relative;
  }
  .worries-list div img {
    max-width: 280px;
    height: auto;
    position: absolute;
    bottom: 0;
  }
  .worries-list ul {
    width: 60%;
    padding: 0 30px 30px;
    margin-left: 20px;
  }
  .worries-list ul li {
    position: relative;
    border-bottom: 1px dashed;
    padding-bottom: 10px;
    margin-bottom: 10px;
    font-size: 2.0rem;
  }
  .worries-list ul li::before{
    content: "";
    background-image: url(../images/woriies-check.png);
    height: 25px;
    width: 33px;
    background-size: cover;
    position: absolute;
    left: -40px;
  }
  .worries-list ul li:last-child {
    margin-bottom: 0;
  }
  .worries::after {
    content: "";
  }
  @media screen and (min-width:1024px) and ( max-width:1280px) {
    .mv {
      height: calc(100vh - 85px);
    }
  }
  @media  (max-width: 1024px) {
    h2 {
      font-size: 2.0rem;
    }
    h2 span {
      font-size: 2.4rem;
    }
    .worries {
        padding: 50px 25px;
      }
    .worries-list {
      flex-direction: column-reverse;
      max-width: 370px;
      padding: 20px 10px 0;
    }
    .worries-list ul {
      width: 100%;
      margin-left: 0;
      padding: 0 0 0 25px;
    }
    .worries-list ul li {
      font-size: 1.4rem;
      position: relative;
    }
    .worries-list ul li::before {
      width: 25px;
      height: 17px;
      background-size: contain;
      background-repeat: no-repeat;
      position: absolute;
      left: -25px;
    }
    .worries-list div {
      width: 80%;
      margin: 10px auto 0;
    }
    .worries-list div img {
      max-width: 280px;
      height: auto;
      position: static;
    }
  }

/* 選ばれる理由 */
.triangle {
  width: 90px;
  height: 45px;
  border-right: 50px solid transparent;
  border-left: 50px solid transparent;
  border-top: 50px solid #EFF3F4;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.strong {
  position: relative;
  padding: 95px 0 50px;
  background-image: url(../images/strong-bg.png);
  background-size: cover;
  text-align: center;
}
.strong p {
  display: inline-block;
  color: #FFF;
  font-size: 2.4rem;
  padding-bottom: 15px;
  margin-bottom: 20px;
  border-bottom: 1px solid #FFF;
}
.strong p span {
  font-size: 3.0rem;
}
.strong h2 {
  color: #FFF;
}
.strong-points {
  display: flex;
  align-items: center;
  text-align: left;
  max-width: 1200px;
  margin: 0 auto;
  background-color: #FFF;
}
.strong-points img {
  width: 412px;
}
.strong-list {
  padding: 25px 30px;
  font-size: 2.4rem;
  line-height: 2.4rem;
}
.strong-list li {
  margin-bottom: 20px;
}
.strong-list li:last-child {
  margin-bottom: 0;
}
.storng-txt {
  color: #FA7916;
}
.strong-number {
  color: #004D84;
  font-family: "Oswald", sans-serif;
  margin-right: 9px;
}
@media (max-width: 1024px) {
  .triangle {
    width: 40px;
    height: 25px;
    border-right: 20px solid transparent;
    border-left: 20px solid transparent;
    border-top: 20px solid #EFF3F4;
  }
  .strong {
    padding: 50px 25px;
  }
  .strong p {
    font-size: 1.6rem;
    line-height: 2.4rem;
  }
  .strong p span{
      font-size: 2.0rem;
  }
  .strong-points {
    display: block;
    max-width: 500px;
  }
  .strong-points img {
    width: 100%;
  }
  .strong-list {
    padding: 20px 10px;
    font-size: 1.6rem;
  }
  .strong-list li {
    margin-bottom: 10px;
  }
}
/*  CTAエリア*/
.cta-btn {
  background-color: #E5F4FF;
  padding: 50px 0;
  text-align: center;
}
.cta-btn p {
  color: #004D84;
  font-size: 4.6rem;
  line-height: 4.6rem;
  margin-bottom: 30px;
}
.cta-upper {
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  max-width: 720px;
  margin: 0 auto 20px;
}
.cta-upper a {
  padding: 22px 0;
  color: #FFF;
  font-size: 2.4rem;
  display: block;
  width: calc((100% / 2) - 10px);
}
.cta-line {
  background-color: #06C755;
}
.cta-mail {
  background-color: #FA7916;
}
.cta-tel {
  background-color: #FFF;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 720px;
  margin: 0 auto;
  padding: 22px 0;
}
.cta-btn img {
  max-width: 60px;
  vertical-align: middle;
  margin-right: 9px;
}
.tel-number {
  font-size: 3.0rem;
  line-height: 4.5rem;
}
@media (max-width: 1024px) {
  .cta-btn {
    padding: 30px;
  }
  .cta-btn p {
    font-size: 2.0rem;
    line-height: 3.5rem;
  }
  .cta-upper {
    display: block;
    margin: 0 auto;
    max-width: 500px;
  }
  .cta-lower {
    max-width: 500px;
    margin: 0 auto;
  }
  .cta-btn img {
    width: 50px;
  }
  .cta-upper a {
    width: 100%;
    padding: 10px 0;
    font-size: 1.6rem;
    margin-bottom: 10px;
  }
  .cta-tel {
    padding: 10px 0;
    font-size: 1.4rem;
  }
  .tel-number {
    font-size: 2.0rem;
    line-height: 2.0rem;
  }
}
/*失敗しないポイント */
.failure {
  background-color: #E5F4FF;
  padding: 0 0 50px;
  font-size: 3.0rem;
  line-height: 4.5rem;
  text-align: center;
}
.failure h2 {
  padding: 50px 0;
  background-color: #004D84;
  color: #FFF;
  position: relative;
}
.failure h2 span {
  margin-top: 30px;
  display: inline-block;
}
.failure h2 img {
  width: 33px;
  transform: rotate(54deg);
  vertical-align: middle;
  margin-left: 9px;
}
.failure-txt {
  text-align: center;
  margin-bottom: 30px;
}
.failure-txt span {
  color: #FA7916;
}
.failure-point {
  background-color: #FFF;
  max-width: 1200px;
  margin: 0 auto 30px;
  display: flex;
  justify-content: space-between;
  text-align: left;
}
.point-number {
  color: #FFF;
  background-color: #004D84;
  padding: 25px;
  text-align: center;
  font-size: 2.4rem;
}
.point-title {
  font-size: 3.0rem;
  line-height: 3.0rem;
  color: #FA7916;
  margin: 20px 0 20px 25px;
}
.point-txt {
  margin-left: 25px;
  font-size: 1.6rem;
  line-height: 2.4rem;
}
.failure-point img {
  max-width: 380px;
  margin: 20px 20px 20px 0;
}
@media (max-width: 1024px) {
  .failure {
    font-size: 2.0rem;
    line-height: 3.0rem;
  }
  .failure h2 {
    padding: 30px 25px;
    line-height: 3rem;
  }
  .failure h2 span {
    margin-top: 10px;
    font-size: 2.4rem;
  }
  .failure h2 img {
    width: 20px;
  }
  .failure-txt {
    font-size: 2.0rem;
    line-height: 3rem;
  }
  .failure-point-area {
    max-width: 500px;
    margin: 0 auto;
  }
  .failure-point {
    display: block;
    margin: 0 25px 30px;
    text-align: center;
  }

  .point-number {
    font-size: 1.6rem;
    line-height: 1.6rem;
    padding: 18px;
  }
  .point-title {
    font-size: 2.0rem;
    margin: 10px auto 10px;
    text-align: center;
  }
  .point-txt {
    font-size: 1.4rem;
    line-height: 2.1rem;
    margin-left: 0;
    padding: 0 10px;
    margin-bottom: 10px;
    text-align: left;
  }
  .failure-point img {
    margin: 0;
    padding: 0 10px;
  }
  .failure_attention {
    padding: 0 25px;
  }
}
@media (min-width: 1024px) {
  .point-number {
    max-width: 160px;
  }
}
/* なぜ地域を絞るの */
.region {
  text-align: center;
  background-image: url(../images/region-bg.png);
  background-size: contain;
}
.region h2 {
  color: #004D84;
  margin-bottom: 30px;
}
.target {
  background-color: #004D84;
  color: #FFF;
  padding: 15px 25px;
  font-size: 3.0rem;
  line-height: 3.0rem;
  display: inline-block;
  margin-bottom: 30px;
}
.target-area {
  display: flex;
  justify-content: space-between;
  text-align: left;
  max-width: 1115px;
  margin: 0 auto;
}
.target-area img{
  max-width: 527px;
}
.target-txt {
  margin-left: 30px;
  line-height: 2.4rem;
}
.target-city span{
  font-size: 3.0rem;
  color: #FA7916;
  line-height: 3.0rem;
}
.target-city {
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px){
  .region {
    padding: 50px 25px;
  }
  .target {
    font-size: 2.0rem;
    display: block;
    padding: 18px;
    max-width: 500px;
    margin: 0 auto;
  }
  .target-area {
    display: block;
    text-align: center;
    max-width: 500px;
  }
  .target-area img {
    margin-bottom: 10px;
  }
  .target-txt {
    margin-left: 0;
  }
  .target-txt p{
    text-align: left;
  }
  .target-txt .target-city {
    text-align: center;
  }
  .target-city span {
    font-size: 2.0rem;
  }
}
/* リフォーム詐欺 */
.attention {
  background-color: #efefef;
  position: relative;
  padding: 80px 0;
}
.attention::before,
.attention::after {
    position: absolute;
    height: 30px;
    width: 100%;
    content: '';
    background: repeating-linear-gradient(45deg, #ffd900 0, #ffd900 20px, #333 20px, #333 40px);
}
.attention::before {
    top: 0;
    left: 0;
}
.attention::after {
    bottom: 0;
    left: 0;
}
.attention-icon img{
  max-width: 60px;
  vertical-align: middle;
  margin:0 9px;
}
.attention-content p {
  text-align: center;
  font-size: 2.0rem;
  margin-bottom: 10px;
  line-height: 3.0rem;
}
@media screen and (max-width: 1024px){
  .attention {
    padding: 60px 30px;
  }
  .attention-content {
    max-width: 500px;
    margin: 0 auto;
  }
  .attention-icon img{
    max-width: 30px;
  }
  .attention-icon.sp-only {
   text-align: center;
   margin-bottom: 10px;
  }
  .attention-content p {
    font-size: 1.4rem;
    line-height: 2.1rem;
    text-align: left;
  }
}
/* 施工実績 */
.works h2 {
  color: #004D84;
  margin-bottom: 30px;
}
.works-slider {
  max-width: 1115px;
  margin: 0 auto;
  position: relative;
}
.works-slider li {
  padding: 30px;
  background-color: #004D84;
  margin: 0 9px;
}
.works-slider li img {
  margin-bottom: 20px;
  width: 100%;
  height: 211px;
  object-fit: cover;
}
.works-slider .tate img {
  height: 211px;
  width: auto;
  margin: 0 auto 20px;
}
.works-slider li p {
  color: #FFF;
  text-align: center;
  font-size: 2.4rem;
  line-height: 2.4rem;
}
.slick-prev, .slick-next {
  position: absolute;
  width: 50px;
  height: 50px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}
.slick-next {
  right: -30px;
}
.slick-prev {
  left: -30px;
  transform: translateY(-50%) rotate(180deg);
}
@media screen and (max-width: 1024px) {
  .works {
    padding: 50px 25px;
  }
  .works-slider {
    max-width: 500px;
  }
  .slick-next {
    right: -20px;
  }
  .slick-prev {
    left: -20px;
  }
}
/* お客様の声 */
.voice {
  background-image: url(../images/voice-bg.png);
  background-size: cover;
}
.voice-sub {
  color: #004D84;
  font-size: 2.4rem;
  margin-bottom: 20px;
  text-align: center;
}
.voice-sub img {
  width: 47px;
  height: auto;
  vertical-align: bottom;
  margin-left: 9px;
}
.voice h2 {
  color: #004D84;
}
.voice-area {
  display: flex;
  max-width: 1115px;
  margin: 0 auto;
}
.customer-voice {
  width: calc(100% / 3);
  padding: 30px;
  display: flex;
  flex-direction: column;
  background-color: #E5F4FF;
  margin: 0 9px;
}
.customer-voice img {
  max-width: 150px;
  margin: 0 auto 20px;
}
.customer-voice p {
  flex-grow: 1;
  line-height: 2.4rem;
}
.boice-bld {
  font-weight: bold;
  display: block;
  margin-bottom: 10px;
}
@media (max-width: 1024px) {
  .voice {
    padding: 50px 25px;
  }
  .voice-sub {
    font-size: 2.0rem;
    margin-bottom: 10px;
  }
  .voice-sub img {
    width: 30px;
  }
  .voice-area {
    display: block;
  }
  .customer-voice {
    width: 100%;
    margin: 0 auto 30px;
    max-width: 500px;
  }
  .voice-area div:last-child {
    margin-bottom: 0;
  }
  .customer-voice img {
    max-width: 100px;
  }
}
/* 保有資格 */
.skill-sub {
  text-align: center;
  color: #004D84;
  margin-bottom: 20px;
  font-size: 2.4rem;
}
.skill h2{
  color: #004D84;
}
.skill-area {
  background-color: #E5F4FF;
  max-width: 1115px;
  margin: 0 auto;
  padding: 30px;
}
.skill-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: 720px;
  margin: 0 auto;
}
.skill-list li {
  width: calc((100% / 2) - 10px);
  margin-bottom: 20px;
  text-align: center;
}
.skill-list li img {
  margin-bottom: 10px;
  width: auto;
  max-height: 200px;
}
.skill-list li.none-img ul li{
  width: 100%;
}
.awards {
  text-align: center;
  margin-top: 20px;
}
.awards p {
  font-size: 2.4rem;
  line-height: 2.4rem;
}
.awards-area {
  font-size: 1.6rem!important;
}
.awards-area img {
  max-height: 200px;
  width: auto;
  display: block;
  margin: 20px auto 10px;
}
@media screen and (max-width: 1024px) {
  .skill {
    padding: 50px 25px;
  }
  .skill-sub {
    font-size: 2.0rem;
    margin-bottom: 10px;
  }
  .skill-area {
    display: block;
  }
  .skill-list {
    flex-direction: column;
  }
  .skill-list li {
    width: 100%;
  }
  .skill-list li:last-child {
    margin-bottom: 0;
  }
  .skill-list li img {
    max-width: 265px;
    height: auto;
    max-height: none;
  }
}
/* 外壁を放置することのリスク */
.risk {
  background-image: url(../images/risk-bg.png);
  background-size: cover;
  padding-top: 0;
}
.risk h2 {
  padding: 50px 0;
  background-color: #004D84;
  color: #FFF;
}
.risk-area {
  max-width: 1115px;
  background-color: #FFF;
  margin: 0 auto 30px;
}
.risk-area.last {
  margin-bottom: 0;
}
.risk-point {
  font-size: 3.0rem;
  background-color: #FFFDE6;
}
.risk-point span {
  background-color: #333;
  color: #FFF;
  font-size: 2.4rem;
  font-family: "Oswald", sans-serif;
  display: inline-block;
  padding: 15px;
  margin-right: 9px;
}
.risk-explanation {
  padding: 20px 47px;
  display: flex;
  align-items: center;
}
.risk-explanation img {
  max-width: 150px;
  margin-right: 50px;
}
.risk-explanation p {
  font-size: 2.0rem;
  line-height: 3.0rem;
}
@media (max-width: 1024px){
  .risk {
    background-position: 100% 0;
  }
  .risk h2 {
    padding: 30px 25px;
  }
  .risk-wrapper {
    max-width: 500px;
    margin: 0 auto;
  }
  .risk-area {
    margin: 0 25px;
  }
  .risk-point span {
    font-size: 1.6rem;
    padding: 10px;
  }
  .risk-point {
    font-size: 1.6rem;
    font-weight: bold;
  }
  .risk-explanation {
    display: block;
    padding: 20px 10px;
    text-align: center;
  }
  .risk-explanation img {
    margin: 0 auto 10px;
    width: 100px;
  }
  .risk-explanation p {
    font-size: 1.4rem;
    line-height: 2.1rem;
    text-align: left;
  }
}
/* 提携メーカー */
.partnership {
  background-color: #E5F4FF;
}
.partnership-sub {
  text-align: center;
  font-size: 2.4rem;
  color: #004D84;
  margin-bottom: 30px;
}
.partnership h2 {
  color: #004D84;
}
.partnership-area {
  max-width: 1115px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 auto;
  text-align: center;
}
.partnership-area li{
  width: calc((100% / 3) - 8px);
  margin-bottom: 30px;
}
.partnership-area li:nth-child(4), .partnership-area li:nth-child(5), .partnership-area li:nth-child(6){
  margin-bottom: 0;
}
.partnership-area li img{
  margin-bottom: 20px;
}
@media (max-width: 1024px) {
  .partnership {
    padding: 50px 25px;
  }
  .partnership-sub {
    font-size: 2.0rem;
    margin-bottom: 10px;
  }
  .partnership-area {
    max-width: 500px;
  }
  .partnership-area li {
    width: calc((100% / 2) - 8px);
    margin-bottom: 20px;
  }
  .partnership-area li:nth-child(4){
    margin-bottom: 20px;
  }
}
/* Q&A */
.faq h2 {
  color: #004D84;
}
.accordion_area {
  max-width: 785px;
  margin: 0 auto;
}
.accordion_one {
  margin-bottom: 30px;
}
.accordion_area .accordion_one .ac_header {
  background-color: #004D84;
  border: 1px solid #004D84;
  padding: 10px 25px;
  position: relative;
  z-index: +1;
  cursor: pointer;
  transition: .2s;
  color: #EEE;
}

.accordion_area .accordion_one:nth-child(odd) .ac_header {
  background-color: #004D84;
}

.accordion_area .accordion_one .ac_header .i_box {
  position: absolute;
  top: 50%;
  right: 2rem;
  width: 20px;
  height: 20px;
  margin-top: -10px;
}

.accordion_area .accordion_one .ac_header .i_box:before,
.accordion_area .accordion_one .ac_header .i_box:after {
  position: absolute;
  content: "";
  margin: auto;
  box-sizing: border-box;
  vertical-align: middle;
}

.accordion_area .accordion_one .ac_header .i_box:before {
  border-top: 2px solid #FFF;
  width: 20px;
  height: 0;
  top: 0;
  bottom: 0;
  right: 0;
}

.accordion_area .accordion_one .ac_header .i_box:after {
  border-left: 2px solid #FFF;
  width: 0;
  height: 20px;
  top: 0;
  bottom: 0;
  right: 9px;
  transition: .3s;
}

.accordion_area .accordion_one .ac_header.open .i_box:after {
  height: 0;
}

.accordion_area .accordion_one .ac_inner {
  display: none;
  padding: 20px 25px;
  border-left: 1px solid #004D84;
  border-right: 1px solid #004D84;
  border-bottom: 1px solid #004D84;
  box-sizing: border-box;
  background: #fff;
}

@media screen and (max-width: 736px) {
  .accordion_area .accordion_one .ac_header {
    padding: 1.5rem 2rem 1.5rem 1.0rem;
  }

  .accordion_area .accordion_one .ac_header .i_box {
    right: 0.8rem;
    width: 15px;
    height: 15px;
    margin-top: -7px;
  }

  .accordion_area .accordion_one .ac_header .i_box:before {
    width: 15px;
  }

  .accordion_area .accordion_one .ac_header .i_box:after {
    height: 15px;
    right: 7px;
  }

  .accordion_area .accordion_one .ac_inner {
    padding: 1.5rem 1.5rem 1.5rem 1.5rem;
  }
}
.p-faq__headinner {
  display: block;
  padding-left: 35px;
  position: relative;
  line-height: 1.5;
}

.p-faq__headinner::before {
  position: absolute;
  left: 0;
  content: "Q．";
  color: #FFF;
  font-size: 20px;
  font-weight: bold;
}

.p-faq__headinner p.p-faq__q-txt {
  font-size: 2.4rem;
  color: #FFF;
}

@media screen and (max-width: 736px) {
  .p-faq__headinner {
    padding-left: 25px;
  }

  .p-faq__headinner::before {
    font-size: 14px;
  }

  .p-faq__headinner p.p-faq__q-txt {
    font-size: 14px;
  }
}
.p-faq__bodyinner {
  display: block;
  padding-left: 35px;
  position: relative;
  line-height: 1.5;
}
.p-faq__bodyinner p.p-faq__a-txt {
  font-size: 1.6rem;
}

@media screen and (max-width: 736px) {
  .p-faq__bodyinner {
    padding-left: 25px;
  }

  .p-faq__bodyinner::before {
    font-size: 14px;
  }

  .p-faq__bodyinner p.p-faq__a-txt {
    font-size: 14px;
  }
}
@media (max-width: 1024px) {
  .faq {
    padding: 50px 25px;
  }
}
/* お問い合わせ */
.contact {
  background-color: #EFF3F4;
}

.contact h2 {
  color: #004D84;
}

.contact_box {
  background-color: #F3F6FA;
  max-width: 1102px;
  padding: 70px 0;
  margin: 0 auto;
}

form {
  text-align: left;
}

.contact_categoly {
  max-width: 1115px;
  margin: 0 auto;
  padding: 20px 0;
  border-bottom: 1px solid #CCC;
}

.contact_categoly.first {
  border-top: 1px solid #CCC;
}

.contact_categoly p {
  font-size: 2.0rem;
  line-height: 2.0rem;
  font-weight: 500;
  padding-left: 25px;
}

.require {
  background-color: #EB1D2A;
  font-size: 1.4rem;
  color: #ffffff;
  display: inline-block;
  line-height: 2.0rem;
  padding: 4px 14px;
}

input[type="text"],
input[type="tel"],
input[type="tel"],
input[type="email"],
textarea {
  background-color: #ffffff;
  width: 698px;
  height: 56px;
}

form dl dd textarea {
  min-height: 180px;
}

input,
textarea {
  -webkit-appearance: auto;
  appearance: auto;
  border-width: 1px;
  background-color: #fff;
  font-size: 0.9em;
  padding: 0.4em;
}

.checkbox-area input {
  margin-right: 9px;
  margin-left: 20px;
}

.checkbox-area input:first-child {
  margin-left: 0;
}

.privacy {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1115px;
  padding: 20px 0 20px 25px;
  margin: 0 auto 15px;
}

.privacy-title {
  position: relative;
  width: 392px;
}

.privacy p {
  font-size: 2.0rem;
}

.privacy_require {
  background-color: #EB1D2A;
  font-size: 1.4rem;
  color: #ffffff;
  display: inline-block;
  line-height: 2.0rem;
  padding: 4px 14px;
  margin-left: 10px;
}

.privacy-policy {
  width: 698px;
  height: 230px;
  padding: 25px;
  background-color: #ffffff;
  overflow-y: scroll;
}

.privacy-policy div {
  margin-bottom: 15px;
}

.privacy-policy div:last-child {
  margin-bottom: 0;
}

.privacy-policy h3 {
  margin-bottom: 15px;
}

.privacy-policy h3,
.privacy-policy h4 {
  font-size: 1.4rem;
}

.privacy-policy p,
.privacy-policy h4 {
  font-weight: 400;
}

.privacy-policy p {
  font-size: 1.4rem;
  line-height: 2.3rem;
}

.privacy_checkbox {
  font-weight: 400;
  max-width: 1115px;
  margin: 0 auto 40px;
  padding-left: 415px;
}

.privacy_checkbox label {
  display: flex;
  align-items: baseline;
}

.privacy_checkbox label input {
  display: block;
  width: 16px;
  height: 16px;
  background-color: #ffffff;
  border: 1px solid #002183;
  cursor: pointer;
  margin-right: 8px;
}

.privacy_checkbox label span {
  font-size: 2.0rem;
  line-height: 2.0rem;
}

.privacy_checkbox label span .privacy_check-supplement {
  font-size: 1.6rem;
}

.sendbtn {
  display: block;
  margin: 0 auto;
  font-size: 2.4rem;
  height: 64px;
  width: 360px;
  text-align: center;
  background-color: #004D84;
  color: #ffffff;
  font-weight: 700;
  border-radius: 50px;
}

input[type="checkbox"] {
  cursor: pointer;
  vertical-align: initial;
}

.totop img {
  width: 60px;
  height: auto;
  transform: rotate(270deg);
  position: absolute;
  bottom: 0;
  right: 0;
}

@media screen and (min-width: 1025px) {
  .contact {
      position: relative;
      padding: 50px 25px;
  }
  .contact_categoly {
    position: relative;
    padding-left: 417px;
  }

  form dt {
    position: absolute;
    width: 392px;
    left: 0;
    top: 35%;
  }

  .require {
    position: absolute;
    right: 0;
  }
  .privacy_require {
    position: absolute;
    right: 20px;
  }
}

@media screen and (max-width: 1024px) {
  .contact {
      padding: 50px 25px;
    }
  .contact_box {
    padding: 50px 0;
  }
  .contact_categoly {
    width: 100%;
  }
  .accordion_area {
    max-width: 600px;
  }
  .contact_categoly p {
    font-size: 1.4rem;
    margin-bottom: 10px;
    padding-left: 0;
  }
  form {
    max-width: 500px;
    margin: 0 auto;
  }
  .require
   {
    margin-left: 10px;
  }

  form dl dd {
    padding-left: 0;
  }

  input[type="text"],
  input[type="tel"],
  input[type="tel"],
  input[type="email"],
  textarea {
    width: 100%;
    height: 46px;
  }

  .privacy {
    display: block;
    width: 100%;
    padding: 20px 0;
  }

  .privacy p {
    margin-bottom: 10px;
  }

  .privacy-policy {
    width: 100%;
    height: 300px;
    padding: 15px;
  }

  .privacy-policy h3 {
    margin-bottom: 10px;
  }

  .privacy-policy h3,
  .privacy-policy h4 {
    font-size: 1.2rem;
  }

  .privacy-policy p {
    font-size: 1.1rem;
  }

  .privacy_checkbox {
    max-width: 310px;
    padding-left: 0;
    margin: 0 auto 30px;
  }

  .privacy_checkbox label {
    justify-content: center;
    align-items: flex-start;
  }

  .sendbtn {
    width: 225px;
    height: 45px;
  }

  .totop img {
    width: 40px;
    height: auto;
  }
  .privacy_checkbox label span {
    font-size: 1.6rem;
  }
  .privacy_checkbox label span .privacy_check-supplement {
    font-size: 1.4rem
  }
  .privacy_checkbox label input {
    width: 30px;
    height: 20px;
  }
}
/* フッター */
footer {
  background-color: #E5F4FF;
  padding: 50px 0 20px;
}
.footer-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
}
.footer-left {
  display: flex;
}
.footer-left img {
  height: 77px;
  width: auto;
}
.footer-left ul {
  margin-left: 50px;
}
.footer-left ul li{
  color: #004D84;
  margin-bottom: 20px;
}
footer .contact-btn {
  font-size: 2.0rem;
}
footer .contact-icon {
  width: 250px;
  height: auto;
  display: block;
  padding: 15px;
  margin-bottom: 28px;
  margin-left: 0;
}
footer .contact-icon.mail{
  margin-bottom: 0;
}
footer .contact-icon.tel img{
  margin-right: 45px;
}
footer .contact-icon.line {
  background-color: #FFF;
}
.contact-icon.mail img {
  margin-right: 35px;
}
small {
 font-size: 1.0rem;
 text-align: center;
 display: block;
}
@media (max-width: 1024px) {
  footer {
    padding: 50px 10px 20px;
  }
  .footer-wrapper {
    display: block;
    max-width: 500px;
  }
  .footer-left {
    display: block;
    text-align: center;
  }
  .footer-left img {
    margin-bottom: 20px;
  }
  .footer-left ul {
    margin-left: 10px;
    font-size: 1.6rem;
    line-height: 2.4rem;
    text-align: left;
  }
  footer .contact-icon {
    margin: 0 auto 10px;
  }
}
/* スマホ追従 */
.cv_sp {
  background-color: #FFFFFF;
  padding: 20px;
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 10;
}
.cv-sp_txt {
  text-align: center;
  margin-bottom: 10px;
}
.cv_sp .cv_area {
  display: flex;
  justify-content: space-between;
}
.cv_sp .cv_area div {
  width: calc((100% / 3) - 5px);
  border: solid 2px #333;
  text-align: center;
  padding: 10px;
}
.cv_sp .cv_area div.tel-area {
  padding: 10px 5px;
}
.cv_sp .cv_area div.line-area {
  border: solid 2px #06C755;
  color: #06C755;;
}
.cv_sp .cv_area div.mail-area {
  border: solid 2px #FA7916;
  color: #FA7916;
}
.cv_sp .cv_area div img {
  width: auto;
  height: 40px;
  margin-bottom: 10px;
}
.cv_sp .cv_area div p {
  white-space: nowrap;
}
.is-hidden {
  visibility: hidden;
  opacity: 0;
  transition: 0.5s;
}
/* サンクスページ */
.thanks {
  text-align: center;
}
.title {
  font-size: 3.2rem;
  line-height: 3.2rem;
  font-weight: 900;
  margin-bottom: 40px;
  color: #004D84;
}
.thanks p {
  font-size: 2.0rem;
  line-height: 3.0rem;
  color: #333;
  text-align: center;
}
.thanks a {
  display: inline-block;
  color: #ffffff;
  line-height: 5.0rem;
  background-color: #FA7916;
  width: 500px;
  margin: 70px auto 0;
  font-size: 2.0rem;
  opacity: 1;
  text-align: center;
}
@media screen and (max-width: 1130px) {
.title {
  font-size: 2.2rem;
    margin-bottom: 30px;
}
.thanks p {
    font-size: 1.8rem;
    line-height: 2.6rem;
}
.thanks a {
    line-height: 4.5rem;
    width: 225px;
    margin-top: 30px;
    font-size: 1.8rem;
}
.footer_flex-thanks {
  display: block;
  max-width: 370px;
  margin: 0 auto 40px;
}
}
@media screen and (max-width: 1130px) {
.mv_bg-image {
  min-height: 580px;
}
}