@charset "UTF-8";

/* mixin(for Sass) */

/* ページごとのスタイル */

body {
  letter-spacing: 0.255px;
  line-height: 1.666em;
  color: #333333;
  font-family: 'Noto Sans JP', sans-serif;
}

main {
  min-width: 1200px;
  overflow: hidden;
}

.block {
  width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

h2.common-title {
  text-align: center;
  font-size: 46px;
  color: #5ab8c5;
  line-height: 1.6;
}

h2.common-title span {
  font-size: 24px;
  opacity: 0.5;
  letter-spacing: 6px;
  display: block;
}

.g-nav {
  position: fixed;
  width: 100%;
  z-index: 99;
  background: rgba(255, 255, 255, 0);
  transition: .5s;
}

.g-nav-inner {
  width: 100%;
  margin: 0 auto;
  padding: 10px 40px;
  box-sizing: border-box;
}

.g-nav-inner ul {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.g-nav-inner ul li {
  height: 45px;
  margin-left: 15px;
  transition: .5s;
}

.g-nav-inner ul li img {
  height: 100%;
  width: auto;
}

.g-nav-inner ul li.btn a {
  display: block;
  height: 100%;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 20px 0 25px;
  color: #FFF;
  border-radius: 6px;
  position: relative;
  font-family: 'Yusei Magic', sans-serif;
}

.g-nav-inner ul li.btn a::after {
  content: "";
  display: block;
  position: absolute;
  width: 5px;
  height: 5px;
  border-right: 2px solid #FFF;
  border-top: 2px solid #FFF;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  left: 7px;
  top: 0;
  bottom: 0;
  margin: auto;
}

.g-nav-inner ul li.btn a:hover {
  transition: 0.5s;
  opacity: 0.7;
}

.g-nav-inner ul li.btn a:hover::after {
  left: 10px;
  transition: 0.5s;
}

.g-nav-inner ul li.btn.contact-btn a {
  background: #66ccd3;
  border: 2px solid #FFF;
  box-sizing: border-box;
  padding-bottom: 2px;
}

.g-nav-inner ul li.btn.form-btn a {
  background: #ff619b;
  border: 2px solid #FFF;
  box-sizing: border-box;
  padding-bottom: 2px;
}

.g-nav-inner ul li a:hover {
  transition: 0.5s;
  opacity: 0.7;
}

.g-nav.header-fixed {
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  transition: .5s;
}

.g-nav.header-fixed .g-nav-inner ul li {
  height: 30px;
  transition: .5s;
}

footer {
  text-align: center;
  padding: 20px 0;
  background: #66ccd3;
}

footer p {
  font-size: 13px;
  color: #FFF;
}

.fade {
  -webkit-animation: fadeOut 1.7s 1 forwards;
  animation: fadeOut 1.7s 1 forwards;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
  background: #fff;
  position: fixed;
  z-index: 100;
  display: block;
  width: 100vw;
  height: 100vh;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
    width: 100vw;
    height: 100vh;
  }

  99% {
    opacity: 0;
    width: 100vw;
    height: 100vh;
  }

  100% {
    width: 0;
    height: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
    width: 100vw;
    height: 100vh;
  }

  99% {
    opacity: 0;
    width: 100vw;
    height: 100vh;
  }

  100% {
    width: 0;
    height: 0;
  }
}

.inview-content {
  opacity: 0;
}

.fade-content {
  -webkit-animation: fade-content 1s 1 forwards;
  animation: fade-content 1s 1 forwards;
}

@-webkit-keyframes fade-content {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}

@keyframes fade-content {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}

.contact_form header {
  height: 328px;
  background: url(../images/common/bg_house_cort.png) center top no-repeat;
  background-size: cover;
  position: relative;
}

.contact_form header::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  background: #FFF;
  opacity: 0.4;
  z-index: 1;
}

.contact_form header .block {
  height: 100%;
  position: relative;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.contact_form header .block h1 {
  display: inline-block;
  margin-top: 25px;
  font-size: 36px;
  padding: 20px 55px;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  color: #66ccd3;
  font-family: 'Yusei Magic', sans-serif;
  letter-spacing: 2px;
  position: relative;
  z-index: 2;
}

.contact_form_content {
  padding: 130px 0;
  position: relative;
  overflow: hidden;
}

.contact_form_content::after {
  content: "";
  width: 500px;
  height: 500px;
  display: block;
  background: #ddd;
  top: -250px;
  left: -250px;
  position: absolute;
  z-index: 1;
  background: url(../images/common/bg-dot@2x.png) center top no-repeat;
  background-size: contain;
}

.contact_form_content::before {
  content: "";
  width: 500px;
  height: 500px;
  display: block;
  background: #ddd;
  bottom: -250px;
  right: -250px;
  position: absolute;
  z-index: 1;
  background: url(../images/common/bg-dot@2x.png) center top no-repeat;
  background-size: contain;
}

.contact_form_content .block {
  padding: 0 40px;
  width: 800px;
  position: relative;
  z-index: 2;
}

.contact_form_content .block p.notice {
  text-align: center;
  margin-bottom: 75px;
  font-size: 18px;
}

.contact_form_content .block-inner dl {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 50px;
}

.contact_form_content .block-inner dl dt {
  width: 30%;
  padding: 12px 0;
  font-size: 18px;
}

.contact_form_content .block-inner dl dt span {
  color: #ed1e79;
}

.contact_form_content .block-inner dl dd {
  width: 70%;
}

.contact_form_content .block-inner dl dd input {
  width: 100%;
  font-size: 18px;
  padding: 12px;
  box-sizing: border-box;
}

.contact_form_content .block-inner dl dd textarea {
  width: 100%;
  padding: 12px;
  font-size: 18px;
  box-sizing: border-box;
  resize: vertical;
  height: 250px;
}

.contact_form_content .block .submit {
  display: block;
  text-align: center;
  margin: 0 auto;
  background: #FFF;
  font-size: 25px;
  width: 530px;
  padding: 25px 0;
  font-weight: bold;
  border-radius: 8px;
  border: 2px solid #ed1e79;
  transition: 0.6s;
}

.contact_form_content .block .submit input {
  border: none;
  background: transparent;
  font-size: 25px;
  transition: 0.6s;
  color: #ed1e79;
}

.contact_form_content .block .submit:hover {
  background: #ed1e79;
  color: #FFF;
  transition: 0.6s;
}

.contact_form_content .block .submit:hover input {
  color: #FFF;
  transition: 0.6s;
}

.contact_form .screen-reader-response ul {
  display: none;
}

header.mainv {
  height: 100vh;
  min-height: 900px;
  text-align: center;
  font-size: 0;
  background: url(../images/common/bg_house.png) center top no-repeat;
  background-size: cover;
  position: relative;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  box-sizing: border-box;
}

header.mainv h1.logo {
  width: 215px;
  margin: 0 auto;
  margin-bottom: 15px;
}

header.mainv h1.logo img {
  width: 215px;
}

header.mainv .mainv-copy {
  margin-bottom: 35px;
  font-size: 53px;
  font-family: 'Yusei Magic', sans-serif;
  letter-spacing: 2px;
  color: #66ccd3;
  white-space: nowrap;
}

header.mainv .mainv-copy span {
  font-size: 40px;
}

header.mainv a {
  display: block;
  margin: 0 auto;
  background: #ff619b;
  font-size: 25px;
  color: #FFF;
  width: 530px;
  padding: 25px 0 25px 25px;
  box-sizing: border-box;
  font-weight: bold;
  border-radius: 12px;
  position: relative;
  font-family: 'Yusei Magic', sans-serif;
  letter-spacing: 2px;
  transition: 0.5s;
}

header.mainv a::after {
  content: "";
  display: block;
  position: absolute;
  width: 12px;
  height: 12px;
  border-right: 3px solid #FFF;
  border-top: 3px solid #FFF;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  left: 20px;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: 0.5s;
}

header.mainv a:hover {
  letter-spacing: 4px;
  transition: 0.5s;
}

header.mainv a:hover::after {
  left: 25px;
  transition: 0.5s;
}

.top-news {
  background: #66ccd3;
  color: #FFF;
  padding: 50px 0;
  position: relative;
}

.top-news::after {
  content: "";
  width: 120px;
  height: 100%;
  background: #FFF;
  position: absolute;
  display: block;
  top: 0;
  right: 35px;
  -webkit-transform: skewX(-25deg);
  transform: skewX(-25deg);
  opacity: 0.2;
}

.top-news::before {
  content: "";
  width: 60px;
  height: 100%;
  background: #FFF;
  position: absolute;
  display: block;
  top: 0;
  right: 195px;
  -webkit-transform: skewX(-25deg);
  transform: skewX(-25deg);
  opacity: 0.2;
}

.top-news .block {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.top-news .block h2 {
  width: 315px;
  text-align: center;
  font-size: 28px;
  font-weight: normal;
}

.top-news .block dl {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.top-news .block dl dt {
  padding-right: 50px;
  margin-bottom: 25px;
}

.top-news .block dl dd {
  margin-bottom: 25px;
}

.top-news .block dl:last-of-type dt,
.top-news .block dl:last-of-type dd {
  margin-bottom: 0;
}

.top-merit {
  padding: 130px 0 260px 0;
  background: #FFF;
  overflow: hidden;
  position: relative;
}

.top-merit::after {
  content: "";
  width: 500px;
  height: 500px;
  display: block;
  background: #ddd;
  top: -20px;
  left: -250px;
  position: absolute;
  z-index: 1;
  background: url(../images/common/bg-dot@2x.png) center top no-repeat;
  background-size: contain;
}

.top-merit::before {
  content: "";
  width: 500px;
  height: 500px;
  display: block;
  background: #ddd;
  bottom: -20px;
  right: -250px;
  position: absolute;
  z-index: 1;
  background: url(../images/common/bg-dot@2x.png) center top no-repeat;
  background-size: contain;
}

.top-merit .block {
  position: relative;
  z-index: 2;
}

.top-merit .block ul.merit-list {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0 35px;
  margin-top: 76px;
}

.top-merit .block ul.merit-list li {
  width: 346px;
}

.top-merit .block ul.merit-list li img {
  margin-bottom: 25px;
}

.top-merit .block ul.merit-list li h3 {
  font-size: 22px;
  font-weight: bold;
  color: #5ab8c5;
  text-align: center;
  line-height: 1.6;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 60px;
  margin-bottom: 18px;
}

.top-merit .block ul.merit-list li p {
  color: #5ab8c5;
}

.top-sample {
  background: url(../images/common/bg-dot_w.png) center, #fff580;
  position: relative;
}

.top-sample h2 {
  font-size: 0;
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  margin: auto;
  width: 480px;
  top: -140px;
}

.top-sample .block {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.top-sample .block-slider {
  width: 50%;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  /*slick setting*/
}

.top-sample .block-slider .slider {
  width: 460px;
  margin: 0 auto;
  position: relative;
}

.top-sample .block-slider .slick-list {
  border: 15px solid #FFF;
  background: #FFF;
  box-sizing: border-box;
  border-radius: 10px;
  margin: 0 auto;
  box-shadow: -20px 20px 0px 0px rgba(98, 40, 83, 0.1);
}

.top-sample .block-slider .slider img {
  width: 100%;
  border-radius: 10px;
}

.top-sample .block-slider .slick-prev:before,
.top-sample .block-slider .slick-next:before {
  color: #ddd;
}

.top-sample .block-slider .slick-prev {
  width: 15px;
  font-size: 0;
  height: 15px;
  border: none;
  background: transparent;
  border-left: 4px solid #5bb8c5;
  border-top: 4px solid #5bb8c5;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  z-index: 2;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 25px;
}

.top-sample .block-slider .slick-next {
  width: 15px;
  font-size: 0;
  height: 15px;
  border: none;
  background: transparent;
  border-left: 4px solid #5bb8c5;
  border-top: 4px solid #5bb8c5;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  z-index: 2;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 25px;
  margin: auto;
}

.top-sample .block-slider .slick-dots {
  position: absolute;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  right: 0;
  left: 0;
  bottom: -50px;
  margin: auto;
  width: 150px;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.top-sample .block-slider .slick-dots li button {
  border: none;
  font-size: 0;
  width: 15px;
  height: 15px;
  border-radius: 10px;
  background: #FFF;
}

.top-sample .block-slider .slick-dots li.slick-active button {
  background: #5bb8c5;
}

.top-sample .block-image {
  width: 50%;
  line-height: 0;
  padding-right: 100px;
  padding-left: 20px;
  box-sizing: border-box;
}

.top-price {
  padding: 130px 0;
  background: #FFF;
  position: relative;
}

.top-price::after {
  content: "";
  width: 500px;
  height: 500px;
  display: block;
  background: #ddd;
  top: -20px;
  left: -250px;
  position: absolute;
  z-index: 1;
  background: url(../images/common/bg-dot@2x.png) center top no-repeat;
  background-size: contain;
}

.top-price::before {
  content: "";
  width: 500px;
  height: 500px;
  display: block;
  background: #ddd;
  bottom: -20px;
  right: -250px;
  position: absolute;
  z-index: 1;
  background: url(../images/common/bg-dot@2x.png) center top no-repeat;
  background-size: contain;
}

.top-price h2 {
  margin-bottom: 80px;
}

.top-price .block {
  padding: 0 40px;
  position: relative;
  z-index: 2;
}

.top-price .block::before {
  content: "";
  width: 500px;
  height: 500px;
  display: block;
  background: #ddd;
  bottom: 0;
  right: 0;
  top: 0;
  left: 0;
  margin: auto;
  position: absolute;
  z-index: -1;
  background: url(../images/common/bg-dot@2x.png) center top no-repeat;
  background-size: contain;
}

.top-price .block ul.price-list {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.top-price .block ul.price-list > li {
  box-sizing: border-box;
  width: 350px;
  background: #FFF;
  padding: 20px;
  margin-bottom: 35px;
  border-radius: 10px;
  box-shadow: 0px 0px 10px -6px rgba(5, 94, 91, 0.6);
}

.top-price .block ul.price-list > li h3 {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  margin-top: 0px;
  margin-bottom: 5px;
  height: 54px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.top-price .block ul.price-list > li h3 span {
  display: block;
  font-size: 13px;
  font-weight: bold;
  width: 100%;
}

.top-price .block ul.price-list > li ul.price-list-inner {
  display: inline-block;
  text-align: left;
}

.top-price .block ul.price-list > li ul.price-list-inner > li {
  font-size: 14px;
}

.top-price .block ul.price-list > li ul.price-list-inner > li span {
  opacity: 0.6;
  margin-right: 5px;
}

.top-price .block .car-coating {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  background: #FFF;
  box-shadow: 0px 0px 10px -6px rgba(5, 94, 91, 0.6);
  border-radius: 10px;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 7px;
}

.top-price .block .car-coating_img {
  width: 430px;
  margin: 0;
  line-height: 1;
}

.top-price .block .car-coating_img img {
  border-radius: 10px 0 0 10px;
  margin: 0;
  line-height: 1;
}

.top-price .block .car-coating_text {
  padding: 0 50px;
  width: 690px;
  box-sizing: border-box;
}

.top-price .block .car-coating_text h3 {
  width: 100%;
  text-align: center;
  background: #66ccd3;
  display: block;
  color: #FFF;
  font-size: 26px;
  border-radius: 30px;
  font-weight: bold;
  margin-bottom: 35px;
}

.top-price .block .car-coating_text_inner dl {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 24px;
  margin-bottom: 28px;
}

.top-price .block .car-coating_text_inner dl dt {
  font-weight: bold;
  color: #66ccd3;
}

.top-price .block .car-coating_text_inner dl dd {
  font-weight: bold;
  letter-spacing: 1px;
}

.top-price .block .car-coating_text_inner dl dd span {
  font-size: 16px;
  font-weight: bold;
}

.top-price .block .car-coating_text_inner dl:last-of-type {
  margin-bottom: 0;
}

.top-price .block .attention {
  text-align: right;
}

.top-price .block .attention ul {
  display: inline-block;
  text-align: left;
}

.top-price .block .attention ul li {
  font-size: 13px;
  line-height: 1.34;
}

.top-housecoating {
  background: url(../images/common/bg_house_cort.png) center;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  padding: 130px 0;
}

.top-housecoating::before {
  width: 100%;
  height: 100%;
  content: "";
  background: #fff;
  top: 0;
  position: absolute;
  opacity: 0.55;
}

.top-housecoating .block {
  padding: 0 40px;
  position: relative;
  z-index: 2;
}

.top-housecoating .block h2 {
  font-size: 0;
}

.top-housecoating .block p {
  font-size: 24px;
  color: #66ccd3;
  text-align: center;
  line-height: 2.1;
  margin-bottom: 30px;
}

.top-housecoating .block h3 {
  width: 100%;
  text-align: center;
  background: #66ccd3;
  display: block;
  color: #FFF;
  font-size: 26px;
  border-radius: 30px;
  font-weight: bold;
  margin-bottom: 35px;
  letter-spacing: 2px;
}

.top-housecoating .block hr {
  margin: 35px auto;
  width: 95%;
  border: none;
  height: 1px;
  background: #FFF;
  opacity: 0.3;
}

.top-housecoating .block .house-price {
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  padding: 40px;
  border-radius: 10px;
  margin-bottom: 5px;
}

.top-housecoating .block .house-price-inner {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.top-housecoating .block .house-price-inner h4 {
  width: 50%;
  text-align: center;
  font-size: 22px;
  color: #66ccd3;
  font-weight: bold;
}

.top-housecoating .block .house-price-inner h4 span {
  font-size: 16px;
}

.top-housecoating .block .house-price-inner_text {
  width: 50%;
  padding: 0 40px;
  box-sizing: border-box;
}

.top-housecoating .block .house-price-inner_text dl {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-size: 22px;
  margin-bottom: 25px;
}

.top-housecoating .block .house-price-inner_text dl:last-of-type {
  margin-bottom: 0;
}

.top-housecoating .block .house-price-inner_text dl dt {
  font-weight: bold;
  letter-spacing: 1px;
}

.top-housecoating .block .house-price-inner_text dl dt span {
  font-size: 15px;
  font-weight: bold;
  margin-left: 5px;
}

.top-housecoating .block .house-price-inner_text dl dd {
  font-weight: bold;
  letter-spacing: 1px;
}

.top-housecoating .block .attention {
  text-align: right;
}

.top-housecoating .block .attention ul {
  display: inline-block;
  text-align: left;
}

.top-housecoating .block .attention ul li {
  font-size: 13px;
  line-height: 1.34;
}

.top-form {
  text-align: center;
  padding: 130px 0;
  position: relative;
  background: #FFF;
  overflow: hidden;
}

.top-form::after {
  content: "";
  width: 500px;
  height: 500px;
  display: block;
  background: #ddd;
  top: -250px;
  left: -250px;
  position: absolute;
  z-index: 1;
  background: url(../images/common/bg-dot@2x.png) center top no-repeat;
  background-size: contain;
}

.top-form::before {
  content: "";
  width: 500px;
  height: 500px;
  display: block;
  background: #ddd;
  bottom: -250px;
  right: -250px;
  position: absolute;
  z-index: 1;
  background: url(../images/common/bg-dot@2x.png) center top no-repeat;
  background-size: contain;
}

.top-form .block {
  position: relative;
  z-index: 2;
}

.top-form .block::before {
  content: "";
  width: 500px;
  height: 500px;
  display: block;
  background: #ddd;
  bottom: 0;
  right: 0;
  top: 0;
  left: 0;
  margin: auto;
  position: absolute;
  z-index: -1;
  background: url(../images/common/bg-dot@2x.png) center top no-repeat;
  background-size: contain;
  opacity: 0.3;
}

.top-form .block h2 {
  font-size: 28px;
  color: #66ccd3;
  margin-bottom: 35px;
}

.top-form .block h2 span {
  font-size: 46px;
  letter-spacing: 2px;
  font-weight: bold;
}

.top-form .block p {
  color: #66ccd3;
  font-size: 20px;
  line-height: 1.9;
  margin-bottom: 55px;
}

.top-form .block a {
  display: block;
  text-align: center;
  margin: 0 auto;
  background: #FFF;
  font-size: 25px;
  color: #ed1e79;
  width: 530px;
  padding: 25px 0;
  font-weight: bold;
  border-radius: 8px;
  border: 2px solid #ed1e79;
  transition: 0.6s;
}

.top-form .block a:hover {
  background: #ed1e79;
  color: #FFF;
  transition: 0.6s;
}

.top-flow {
  background: url(../images/common/bg-dot_w_15.png) center, #66ccd3;
  padding-top: 90px;
}

.top-flow h2 {
  color: #fff;
  width: 100%;
  position: absolute;
}

.top-flow .flex-block .block {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 40px;
  height: 100vh;
  min-height: 800px;
  position: relative;
}

.top-flow .flex-block .block .block-title {
  width: 40%;
  text-align: center;
}

.top-flow .flex-block .block .block-title h3 {
  text-align: center;
  width: 100%;
  font-family: 'Yusei Magic', sans-serif;
  font-size: 35px;
}

.top-flow .flex-block .block .block-flow {
  width: 60%;
}

.top-flow .flex-block .block .block-flow ol.flow-list {
  counter-reset: item;
  list-style-type: none;
  padding-left: 0;
}

.top-flow .flex-block .block .block-flow ol.flow-list li {
  position: relative;
  padding-left: 1.8em;
  padding-bottom: 15px;
  margin-bottom: 10px;
}

.top-flow .flex-block .block .block-flow ol.flow-list li::before {
  position: absolute;
  counter-increment: item;
  content: counter(item) ".";
  /* 以下は自由に装飾... */
  padding-right: .5em;
  font-weight: normal;
  color: #FFF;
  left: 0;
  font-size: 18px;
  top: 10px;
}

.top-flow .flex-block .block .block-flow ol.flow-list li::after {
  content: "";
  width: 1px;
  height: calc(100% - 45px);
  position: absolute;
  display: block;
  background: #fff;
  left: 6px;
  bottom: 0;
}

.top-flow .flex-block .block .block-flow ol.flow-list li h4 {
  color: #FFF;
  font-size: 26px;
  font-weight: bold;
}

.top-flow .flex-block .block .block-flow ol.flow-list li p {
  color: #FFF;
  font-size: 14px;
}

.top-flow .flex-block.block-type01 h3 {
  color: #FFF;
}

.top-flow .flex-block.block-type02 {
  background: url(../images/common/bg-dot_w.png) center, #fff580;
}

.top-flow .flex-block.block-type02 .block-title {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-order: 2;
  -ms-flex-order: 2;
  order: 2;
}

.top-flow .flex-block.block-type02 .block-flow {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-order: 1;
  -ms-flex-order: 1;
  order: 1;
  color: #333;
  padding-left: 80px;
  box-sizing: border-box;
}

.top-flow .flex-block.block-type02 .block-flow ol.flow-list li::before {
  color: #333;
}

.top-flow .flex-block.block-type02 .block-flow ol.flow-list li::after {
  background: #333;
}

.top-flow .flex-block.block-type02 .block-flow ol.flow-list li h4,
.top-flow .flex-block.block-type02 .block-flow ol.flow-list li p {
  color: #333;
}

.contact {
  padding: 130px 0;
  position: relative;
  background: #FFF;
  overflow: hidden;
}

.contact::after {
  content: "";
  width: 500px;
  height: 500px;
  display: block;
  background: #ddd;
  top: -250px;
  left: -250px;
  position: absolute;
  z-index: 1;
  background: url(../images/common/bg-dot@2x.png) center top no-repeat;
  background-size: contain;
}

.contact::before {
  content: "";
  width: 500px;
  height: 500px;
  display: block;
  background: #ddd;
  bottom: -250px;
  right: -250px;
  position: absolute;
  z-index: 1;
  background: url(../images/common/bg-dot@2x.png) center top no-repeat;
  background-size: contain;
}

.contact .block {
  width: 800px;
  margin: 0 auto;
  background: #FFF;
  padding: 40px 20px;
  box-shadow: 0px 0px 10px -6px rgba(5, 94, 91, 0.6);
  border-radius: 0 0 10px 10px;
  position: relative;
  z-index: 2;
  border-top: 10px solid #66ccd3;
}

.contact .block a:hover {
  opacity: 0.75;
  transition: 0.5s;
}

.contact .block h2 {
  text-align: center;
  color: #66ccd3;
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 35px;
}

.contact .block-inner {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.contact .block-inner-mail {
  width: 50%;
  text-align: center;
}

.contact .block-inner-mail a {
  width: 80%;
  background: #66ccd3;
  display: block;
  margin: 0 auto;
  padding: 20px 0;
  font-size: 18px;
  color: #FFF;
  font-weight: bold;
  transition: 0.5s;
}

.contact .block-inner-tel {
  width: 50%;
  text-align: center;
}

.contact .block-inner-tel h3 {
  font-size: 20px;
  font-weight: bold;
}

.contact .block-inner-tel a {
  font-size: 32px;
  letter-spacing: 1.5px;
  font-weight: bold;
  color: #66ccd3;
  display: block;
  margin-bottom: 2px;
  transition: 0.5s;
}

.contact .block-inner-tel p {
  background: #66ccd3;
  width: 225px;
  font-size: 13px;
  margin: 0 auto;
  font-weight: bold;
  color: #FFF;
  padding: 3px 0;
  border-radius: 15px;
}

.contact .block hr {
  border: none;
  height: 1px;
  width: 100%;
  background: #66ccd3;
  margin: 25px 0;
  opacity: 0.3;
}

.contact .block-line {
  text-align: center;
}

.contact .block-line a {
  background: #06c755;
  display: inline-block;
  vertical-align: middle;
  padding: 0 20px 0 0px;
  color: #FFF;
  font-size: 22px;
  font-weight: bold;
  border-radius: 8px;
  line-height: 1;
  transition: 0.5s;
  box-sizing: border-box;
}

.contact .block-line a span {
  font-weight: bold;
}

.contact .block-line a span br {
  display: none;
}

.contact .block-line a img {
  height: 75px;
  vertical-align: middle;
}

.top-sns {
  background: url(../images/common/bg_house_cort.png) center;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  padding: 50px 0;
}

.top-sns::after {
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  background: #FFF;
  opacity: 0.65;
  display: block;
  top: 0;
}

.top-sns .block {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  z-index: 2;
  padding: 0 40px;
}

.top-sns .block h2 {
  font-size: 80px;
  color: #1d9bf0;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 5px;
  width: 60%;
  padding-left: 50px;
  box-sizing: border-box;
}

.top-sns .block .list-sns {
  width: 40%;
}

.top-sns .block .list-sns ul {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0 40px;
}

.top-sns .block .list-sns ul li a:hover {
  transition: 0.5s;
  opacity: 0.7;
}

.top-about {
  padding: 130px 0;
  background: #FFF;
}

.top-about .block {
  padding: 0 80px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  box-sizing: border-box;
}

.top-about .block-image {
  width: 230px;
}

.top-about .block-text {
  width: calc(100% - 230px);
  padding: 0 40px 0 80px;
  box-sizing: border-box;
}

.top-about .block-text p {
  font-size: 17px;
  font-weight: bold;
  line-height: 1.9;
}

.top-about .block-text p span {
  font-weight: bold;
  font-size: 26px;
}

/* CSSのリセット */

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
  font-weight: normal;
}

body {
  line-height: 1.65555;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

/* remember to define focus styles! */

:focus {
  outline: 0;
}

/* remember to highlight inserts somehow! */

ins {
  text-decoration: none;
}

del {
  text-decoration: line-through;
}

/* tables still need 'cellspacing=＆quot;0＆quot;' in the markup */

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* clearfix */

.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

/* スクロールバーを強制表示 */

/* IE6だけに適用 */

*html body {
  overflow-y: auto;
}

/* IE7だけに適用 */

* + html body {
  overflow-y: auto;
}

/* その他のブラウザに適用 */

body {
  overflow-y: scroll;
}

img {
  width: auto;
  height: auto;
  max-width: 100%;
}

/* Slider */

.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

@media (max-width: 1080px) {
  .block {
    width: 100%;
  }
}

@media (max-width: 736px) {
  main {
    width: 100%;
    min-width: auto;
  }

  h2.common-title {
    font-size: 32px;
  }

  h2.common-title span {
    font-size: 18px;
  }

  .g-nav {
    display: none;
  }

  footer p {
    font-size: 10px;
  }

  .contact_form header {
    height: 220px;
  }

  .contact_form header .block h1 {
    margin-top: 0;
    font-size: 30px;
    padding: 14px 35px;
  }

  .contact_form_content {
    padding: 70px 0;
  }

  .contact_form_content::after {
    opacity: 0.3;
  }

  .contact_form_content::before {
    opacity: 0.3;
  }

  .contact_form_content .block {
    width: 100%;
    padding: 0 30px;
  }

  .contact_form_content .block p.notice {
    text-align: left;
    font-size: 16px;
    line-height: 1.7;
  }

  .contact_form_content .block-inner dl {
    display: block;
    margin-bottom: 35px;
  }

  .contact_form_content .block-inner dl dt {
    width: 100%;
  }

  .contact_form_content .block-inner dl dd {
    width: 100%;
  }

  .contact_form_content .block .submit {
    width: 100%;
    padding: 15px 0;
    background: #ed1e79;
    color: #FFF;
  }

  .contact_form_content .block .submit input {
    color: #FFF;
  }

  header.mainv {
    width: 100%;
    min-height: 800px;
    display: block;
    padding: 0 40px;
    padding-top: 90px;
  }

  header.mainv .mainv-copy {
    font-size: 30px;
  }

  header.mainv .mainv-copy span {
    font-size: 18px;
  }

  header.mainv .mainv-copy {
    width: 100%;
  }

  header.mainv a {
    width: 100%;
    font-size: 15px;
    padding: 25px 0 25px 15px;
  }

  header.mainv a::after {
    width: 6px;
    height: 6px;
    left: 10px;
  }

  header.mainv a:hover {
    letter-spacing: 2px;
  }

  header.mainv a:hover::after {
    left: 10px;
  }

  .top-news {
    padding: 50px 0 80px 0;
  }

  .top-news::after {
    opacity: 0.1;
    -webkit-transform: skewX(-45deg);
    transform: skewX(-45deg);
  }

  .top-news::before {
    opacity: 0.09;
    -webkit-transform: skewX(-45deg);
    transform: skewX(-45deg);
  }

  .top-news .block {
    display: block;
    padding: 0 20px;
  }

  .top-news .block h2 {
    width: 100%;
    margin-bottom: 25px;
  }

  .top-news .block dl {
    display: block;
  }

  .top-news .block dl dt {
    padding: 0;
    margin: 0;
    font-size: 13px;
    font-weight: normal;
  }

  .top-news .block dl dd {
    font-weight: normal;
  }

  .top-merit {
    padding-bottom: 130px;
  }

  .top-merit::after {
    opacity: 0.3;
  }

  .top-merit::before {
    opacity: 0.3;
  }

  .top-merit .block ul.merit-list {
    display: block;
  }

  .top-merit .block ul.merit-list li {
    width: 100%;
    margin-bottom: 45px;
  }

  .top-merit .block ul.merit-list li h3 {
    height: auto;
    padding: 15px 0;
  }

  .top-sample h2 {
    width: 65%;
    right: auto;
    top: -15%;
  }

  .top-sample .block {
    display: block;
    padding: 30% 20px;
    position: relative;
  }

  .top-sample .block-slider {
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
    width: 100%;
    position: relative;
    z-index: 3;
  }

  .top-sample .block-slider .slider {
    width: 100%;
  }

  .top-sample .block-slider .slick-list {
    box-shadow: -10px 10px 0px 0px rgba(98, 40, 83, 0.1);
  }

  .top-sample .block-image {
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
    position: absolute;
    padding: 0;
    top: -15%;
    right: 0;
    z-index: 2;
  }

  .top-price::after {
    opacity: 0.5;
  }

  .top-price::before {
    opacity: 0.3;
  }

  .top-price .block {
    padding: 0 20px;
  }

  .top-price .block::before {
    opacity: 0.3;
  }

  .top-price .block ul.price-list > li {
    width: 47%;
    margin-bottom: 6%;
  }

  .top-price .block ul.price-list > li h3 {
    font-size: 15px;
    height: 62px;
  }

  .top-price .block ul.price-list > li h3 span {
    font-size: 12px;
  }

  .top-price .block ul.price-list > li ul.price-list-inner > li {
    font-size: 11px;
  }

  .top-price .block .car-coating {
    display: block;
    padding-bottom: 50px;
  }

  .top-price .block .car-coating_img {
    width: 100%;
    height: 160px;
    overflow: hidden;
    margin-bottom: 25px;
  }

  .top-price .block .car-coating_img img {
    border-radius: 10px 10px 0 0;
  }

  .top-price .block .car-coating_text {
    width: 100%;
    padding: 0 20px;
  }

  .top-price .block .car-coating_text h3 {
    font-size: 22px;
  }

  .top-price .block .car-coating_text_inner dl {
    display: block;
  }

  .top-price .block .car-coating_text_inner dl dd {
    text-align: right;
  }

  .top-housecoating {
    background: transparent;
    padding: 80px 0;
  }

  .top-housecoating::after {
    width: 100%;
    height: 100%;
    content: "";
    top: 0;
    position: fixed;
    background: url(../images/common/bg_house_cort.png) center;
    background-size: cover;
    z-index: -1;
  }

  .top-housecoating .block {
    padding: 0 20px;
  }

  .top-housecoating .block p {
    font-size: 18px;
    line-height: 1.5;
    text-align: left;
  }

  .top-housecoating .block .house-price {
    padding: 40px 20px;
  }

  .top-housecoating .block .house-price-inner {
    display: block;
  }

  .top-housecoating .block .house-price-inner h4 {
    width: 100%;
    margin-bottom: 25px;
  }

  .top-housecoating .block .house-price-inner_text {
    width: 100%;
  }

  .top-housecoating .block .house-price-inner_text dl {
    display: block;
  }

  .top-housecoating .block .house-price-inner_text dl dd {
    text-align: right;
  }

  .top-form::after {
    opacity: 0.3;
  }

  .top-form::before {
    opacity: 0.3;
  }

  .top-form .block {
    padding: 0 40px;
  }

  .top-form .block::before {
    display: none;
  }

  .top-form .block h2 {
    font-size: 15px;
    font-weight: bold;
  }

  .top-form .block h2 span {
    font-size: 22px;
  }

  .top-form .block p {
    font-size: 15px;
  }

  .top-form .block a {
    width: 100%;
    padding: 15px 0;
  }

  .top-flow h2 {
    margin-bottom: 45px;
    position: relative;
  }

  .top-flow .flex-block {
    padding-bottom: 120px;
  }

  .top-flow .flex-block .block {
    height: auto;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    display: block;
    min-height: auto;
  }

  .top-flow .flex-block .block .block-title {
    width: 100%;
  }

  .top-flow .flex-block .block .block-title h3 {
    font-size: 28px;
    margin-bottom: 25px;
  }

  .top-flow .flex-block .block .block-flow {
    width: 100%;
  }

  .top-flow .flex-block .block .block-flow ol.flow-list li::before {
    top: 5px;
  }

  .top-flow .flex-block .block .block-flow ol.flow-list li::after {
    bottom: 5px;
  }

  .top-flow .flex-block .block .block-flow ol.flow-list li h4 {
    font-size: 20px;
  }

  .top-flow .flex-block.block-type02 {
    padding-top: 120px;
  }

  .top-flow .flex-block.block-type02 .block-title {
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
  }

  .top-flow .flex-block.block-type02 .block-flow {
    padding: 0;
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
  }

  .contact .block {
    width: 90%;
  }

  .contact .block h2 {
    font-size: 22px;
  }

  .contact .block-inner {
    display: block;
  }

  .contact .block-inner-mail {
    width: 100%;
    margin-bottom: 30px;
  }

  .contact .block-inner-tel {
    width: 100%;
  }

  .contact .block-inner-tel a {
    font-size: 28px;
  }

  .contact .block-line a {
    width: 80%;
    text-align: left;
    line-height: 1.4;
    font-size: 18px;
    padding-left: 10px;
    padding-right: 0;
  }

  .contact .block-line a span {
    display: inline-block;
    vertical-align: middle;
  }

  .contact .block-line a span br {
    display: block;
  }

  .top-sns {
    background: rgba(255, 255, 255, 0.75);
  }

  .top-sns::after {
    display: none;
  }

  .top-sns .block {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .top-sns .block h2 {
    width: 100%;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
    font-size: 30px;
    text-align: center;
    margin-bottom: 35px;
    padding: 0;
  }

  .top-sns .block .list-sns {
    width: 100%;
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
  }

  .top-sns .block .list-sns ul {
    padding: 0 20px;
  }

  .top-sns .block .list-sns ul li {
    width: 25%;
  }

  .top-about .block {
    padding: 0 30px;
    display: block;
  }

  .top-about .block-image {
    width: 100%;
    text-align: center;
    margin-bottom: 45px;
  }

  .top-about .block-text {
    width: 100%;
    padding: 0;
  }
}