/* スマホサイズ基準 */

@import url('https://fonts.googleapis.com/css?family=M+PLUS+Rounded+1c');

* {
  box-sizing: border-box;
}

html, body, div, span, h1, h2, h3, h4, h5, h6, p, a, img,
dl, dt, dd, ol, ul, li, form, label, table, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary {
  margin: 0px;
  padding: 0px;
  font-weight: inherit;
  font-style: inherit;
  font-family: 'M PLUS Rounded 1c', sans-serif;
}


/* header関連=============== */
header{
  z-index: 8;
  width: 100%;
  background: rgba(255,255,255,1);
  position: fixed;
  top: 0;
  left: 0;
  box-shadow: 0px 3px 10px #bbb;
  display: flex;
  align-items: center;
}

.header_text{
  padding: 0 7px;
  font-size: 22px;
  font-weight: bold;
}

.header_text::before{
  margin: 0 3px 0 0;
  content: '';
  display: inline-block;
  width: 40px;/*画像の幅*/
  height: 40px;/*画像の高さ*/
  background-image: url(../img/favicon.png);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
}

nav {
  margin: 0 0 0 auto;
}

header .menu {
  display: flex; /* 中の要素を横並びにする */
  position: relative;
}

header .menu li {
  padding: 15px 15px;
  background-color: #61c322;
  list-style: none; /* リストの[・]を消す */
}

header .menu a {
  color: #fff;
  font-weight: bold;
  text-decoration: none;
}

#menu::after{
  content: "";
  position: absolute;
  top: 50%;
  right: 55%;
  width: 3px;
  height: 30px;
  background-color: #54a734;
  transform: translate(0,-50%);
  display: block;
}

/* ========================= */

/* スクロールCSS =============*/
.fade-in {
  opacity: 0;
  transition-duration: 500ms;
  transition-property: opacity, transform;
}

.fade-in-up {
  transform: translate(0, 50px);
}

.fade-in-down {
  transform: translate(0, -50px);
}

.fade-in-left {
  transform: translate(-50px, 0);
}

.fade-in-right {
  transform: translate(50px, 0);
}

.scroll-in {
  opacity: 1;
  transform: translate(0, 0);
}

/* ========================= */

.wrapper{
  background-size: 50%;
  box-shadow: 0 2px 4px gray;
}

.title{
  padding: 30px 0;
  font-size: 32px;
  font-weight: bold;
  text-align: center;
}

.contents_top{
  margin: 40px 0 0 0;
  padding: 30px 0 40px 0;
  background-size: cover;
  /* box-shadow: -4px 0 12px rgba(0, 0, 0, 0.12), 4px 0 12px rgba(0, 0, 0, 0.12); */
  position: relative;
}

.contents_top_text {
  position: absolute;
  /* bottom: 3%; */
  left: 4%;
  font-size:1.8em;
  line-height:1.5em;
  font-weight:bold;
  color: #FFF;
  text-shadow:
  0 0 0.10em #2962FF,
  0 0 0.15em #2962FF,
  0 0 0.80em #2962FF,
  0 0 1.00em #2962FF;
}

/* .contents_top > .image_work{
width:90%;
margin:0 auto;
opacity: 0.7;
} */

.area_text {
  padding: 0.2em 0.5em;
  color: #333333;
  background-color: #D8F2A0;
  position: relative;
  text-align:left;
  box-shadow: 0px 0px 0px 5px #D8F2A0;
  border: dashed 2px white;
}

.area_text:after {
  position: absolute;
  content: '';
  left: -7px;
  top: -7px;
  border-width: 0 0 13px 13px;
  border-style: solid;
  border-color: #fff #fff #3C7322;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.15);
}

.area_text1 {
  margin: 0 0 10px 0;
  color: #3C7322;
  font-size: 26px;
  font-weight:bold;
}
.area_text2 {
  margin: 0 0 10px 0;
  font-size: 30px;
  font-weight:bold;
}
.area_text3 {
  font-size: 20px;
}

.area_2{
  width: 95%;
  margin: 70px auto 0 auto;
  background-color: rgba(255, 255, 255, 0.8);
}

.area_2_text1 {
  margin: 40px 0 0 0;
  color: #333333;
  font-size: 36px;
  font-weight: bold;
  position: relative;
  padding-left: 75px;
}

.area_2_text1:before {
  position: absolute;
  font-family: "Font Awesome 5 Free";
  content: "\f0eb";
  background: #ffca2c;
  color: white;
  font-weight: 900;
  font-size: 30px;
  border-radius: 50%;
  left: 5%;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.area_2_text1:after {
  /*吹き出しのちょこんと出た部分*/
  content: '';
  display: block;
  position: absolute;
  left: 52px;
  height: 0;
  width: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 18px solid #ffca2c;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.company_profile_title{
  padding: 50px 0 35px 0;
  font-size: 26px;
  font-weight: bold;
  text-align: center;
}

.area_3 {
  width: 95%;
  margin: 50px auto 0 auto;
  background-color: rgba(255, 255, 255, 0.8);
}

.area_3_table{
  width: 100%;
  margin: 10px auto;
}

.price_list{
  position: relative;
}

.price_list p{
  position: absolute;
  top: 6px;
  left: 10px;
  color: #FFF;
  font-weight: bold;
  font-size: 20px;
  text-shadow: -4px 0 12px rgba(0, 0, 0, 1), 4px 0 12px rgba(0, 0, 0, 0.12);
  line-height: 25px;
}

.price_list > .image_work{
  width: 96%;
  margin:0 2% 10px 2%;
}


input[type="email"], input[type="text"], input[type="tel"]{
  padding: 5px;
  width: 100%;
  height: 40px;
  box-sizing: border-box;
  border: 1px solid #bfbfbf;
  border-radius: 5px;
  font-size: 16px;
  text-transform: none;
}

input[type="submit"]{
  display: inline-block;
  color: #fff;
  background-color: #61c322;
  padding: 15px 50px;
  font-weight: bold;
  font-size: 20px;
  border: none;
  border-radius: 50px;
  border-bottom: 6px solid #54a734;
}

textarea{
  padding: 5px;
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #bfbfbf;
  border-radius: 5px;
  font-size: 16px;
  text-transform: none;
  resize: none;
}

.area_4{
  margin: 70px auto 0 auto;
  padding: 5px 0 35px 0;
  text-align:center;
  background-color: rgba(255, 255, 255, 0.7);
  background-image: url(../img/green_bg.jpg);
  background-size: 350%;
  background-blend-mode:lighten;
}

.area_4_title {
  position: relative;
  color: #4d9bc1;
  z-index: 1;
}

.area_4_title::before, .area_4_title::after {
  width: 100%;
  color: #fff;
  content: attr(data-text);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

.area_4_title::before {
  -webkit-text-stroke: 5px #fff;
  z-index: -1;
}

.area_4_title::after {
  -webkit-text-stroke: 9px #454545;
  z-index: -2;
}

.area_4_text2_block {
  margin: 10px auto;
  width: 85%;
  background-color: #fff;
  border-radius: 50px;
}

.area_4_text2 {
  font-size:3em;
  text-align:center;
  line-height:1.5em;
  font-weight:bold;
  color: transparent;
  background: repeating-linear-gradient(0deg, #B67B03 0.1em, #DAAF08 0.2em, #FEE9A0 0.3em, #DAAF08 0.4em, #B67B03 0.5em);
  -webkit-background-clip: text;
}
/*
.area_4_text2::before, .area_4_text2::after {
width: 100%;
color: #fff;
content: attr(data-text);
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
-webkit-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
}

.area_4_text2::before {
-webkit-text-stroke: 5px #fff;
z-index: -1;
}

.area_4_text2::after {
-webkit-text-stroke: 9px #454545;
z-index: -2;
} */

.area_4_text3 {
  position: relative;
  padding-top: 10px;
  font-size:2em;
  text-align:center;
  line-height:0.95em;
  font-weight:bold;
  color: transparent;
  background: linear-gradient( 90deg, #14a6ff 0% 30%, #0cb4ff 40% 60%, #3ec4ff 70% 100% );
  -webkit-background-clip: text;
}

.area_4_text3:before, .area_4_text3:after {
  content:'';
  width: 20px;
  height: 30px;
  position: absolute;
  display: inline-block;
}
.area_4_text3:before {
  border-left: solid 3px #00abff;
  border-top: solid 3px #00abff;
  top:-5px;
  left: 15px;
}
.area_4_text3:after {
  border-right: solid 3px #00abff;
  border-bottom: solid 3px #00abff;
  bottom: -5px;
  right: 15px;
}

.area_4_image{
  width: 100%;
  margin: 20px auto 10px auto;
}

.tel_btn {
  padding: 15px 36px;
  color: #fff;
  background-color: #eb6100;
  font-weight: bold;
  font-size: 26px;
  position: relative;
  border-radius: 50px;
  border-bottom: 6px solid rgb(155, 65, 2, 0.5);
  text-align:center;
  display: inline-block;
}

.business_hours {
  font-size: 18px;
}

/* footer関連=============== */
footer{
  margin: 0 auto;
  z-index: 2;
  color: #FFF;
  /* background: #61c322; */
  background-color: rgba(97, 195, 34, 0.8);
  width: 100%;
  display: block;
  font-size: 78% !important;
}

footer section{
  padding: 0 0 15px 0;
  text-align: center;
  font-size: 12px;
  font-weight: bold;
}

footer #company_profile p{
  font-weight: bold;
  font-size: 18px;
}

#company_profile{
  margin: 0 0 30px 0;
}

.footer_ul{
  width: 95%;
  margin: auto;
  list-style: none;
  text-align: center;
}

.footer_li{
  padding: 20px 0;
  display: block;
}

.footer_li::after{
  content: "";
  width: 95%;
  height: 1px;
  margin: 10% auto 0 auto;
  background-color: #eff5de;
  /* transform: translate(0,-50%); */
  display: block;
}

.footer_div{
  display: flex;
}

.footer_div_kind{
  margin: auto;
}

.footer_div_content{
  width: 60%;
}

.footer_div_map{
  text-align: left;
}

.footer_div_text_left{
  text-align: left;
}

/* ========================= */


/* slick用 ================= */
.slider{
  margin: 10px auto;
  width: 95%;
  filter: drop-shadow(0px 3px 2px #555);
}
.slider .ele{
  width: 98%;
  text-align: center;
  border-radius: 25px 25% 5px 5px;
}
.slick-prev:before,
.slick-next:before {
  color: black;
}
.slick-slide img {
  margin: 0 auto;
}
/* ======================== */


/* ボタンの指定 */
.to_top {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  right: 14px;
  bottom: 14px;
  width: 60px;
  height: 60px;
  background: #65a603;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: .3s;
  z-index: 999;
}

/* 矢印アイコンのスタイル */
.to_top::before {
  content: "";
  width: 12px;
  height: 12px;
  margin-bottom: -6px;
  border-top: solid 3px #fff;
  border-right: solid 3px #fff;
  transform: rotate(-45deg);
}

/* クラス付与時の指定 */
.to_top.is-active {
  opacity: 1;
  visibility: visible;
}


/* PCサイズ用 */
@media screen and (min-width:768px) {

  /* header関連=============== */
  .header_text{
    padding: 0 10px;
    font-size: 30px;
  }

  .header_text::before{
    margin: 0 8px 0 0;
    width: 60px;/*画像の幅*/
    height: 60px;/*画像の高さ*/
  }

  header .menu li {
    padding: 25px 15px;
  }

  #menu::after{
    right: 53%;
  }

  /* PCサイズの場合、電話ボタンを無効化 */
  a[href^="tel:"]{
    pointer-events: none;
  }
  /* ========================= */

  .wrapper{
    background-size: 20%;
  }

  .title{
    font-size: 60px;
  }

  .contents_top{
    margin: 40px 0 30px 0;
    padding: 100px 0 100px 0;
  }

  .contents_top_text {
    top: 73%;
    left: 8%;
    font-size:5em;
    line-height:1.5em;
  }

  .area_2{
    margin: 90px auto 0 auto;
    box-shadow: 0px 3px 10px #bbb;
  }

  .area_2_text1 {
    padding-left: 12%;
    font-size: 46px;
  }

  .area_2_text1:before {
    left: 5%;
  }

  .area_2_text1:after {
    /*吹き出しのちょこんと出た部分*/
    left: 9%;
  }

  .area_2, .area_3{
    width: 65%;
    box-shadow: 0px 3px 10px #bbb;
  }

  .area_text3 {
    font-size: 26px;
  }

  .price_list p{
    top: 10px;
    left: 20px;
    font-size: 40px;
    line-height: 45px;
  }

  .area_4{
    width: 100%;
    background-size: 250%;
    box-shadow: 0px 3px 10px #bbb;
    padding: 5px 0 35px 0;
  }

  .area_4_text2_block {
    margin: 50px auto;
    width: 50%;
  }

  .area_4_text2 {
    font-size:5em;
  }

  .area_4_text3_block {
    margin: 50px auto;
  }

  .area_4_text3 {
    font-size: 65px;
  }

  .area_4_text3:before {
    border-left: solid 5px #00abff;
    border-top: solid 5px #00abff;
    top: -5px;
    left: 340px;
  }
  .area_4_text3:after {
    border-right: solid 5px #00abff;
    border-bottom: solid 5px #00abff;
    bottom: -5px;
    right: 340px;
  }

  .area_4_image{
    width: 50%;
  }

  input[type="email"], input[type="text"], input[type="tel"], textarea{
    width: 70%;
  }

  .tel_btn {
    font-size: 60px;
  }

  .business_hours {
    font-size: 38px;
  }

  /* footer関連=============== */
  #company_profile{
    width: 60%;
    margin: 0 auto;
  }

  #company_profile > .title{
    font-size: 40px;
    margin: 0 auto;
    padding: 64px 0;
  }

  .footer_li{
    padding: 0 0 40px 0;
  }

  .footer_li::after{
    margin: 40px auto 0 auto;
  }

  .footer_div_text_left{
    margin: 0 auto;
    width: 25%;
  }

  footer section {
    padding: 22px 0;
    font-size: 16px;
  }
  /* ========================= */

  /* slick用 ================= */
  .slider{
    margin: 10px auto;
    width: 50%;
  }
  /* ======================== */


}
