@charset "UTF-8";

/*-------------------------------------------
メインタイトル
-------------------------------------------*/
.TtlBox {
  margin-bottom: 100px;
  margin-left: 5%;
}

.mainTtlBox {
  display: flex;
  justify-content: center;
  margin-bottom: 150px;
  position: relative;
}
.mainTtlBox h2 {
  text-align: center;
  writing-mode: horizontal-tb;
  font-family: source-sans-pro, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 7rem;
  background: linear-gradient(0deg, #027319 0%, #5f996a 100%);
  background: -webkit-linear-gradient(0deg, #027319 0%, #5f996a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.mainTtlBox h2 span {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
}
@media screen and (max-width: 1024px) {
}

@media screen and (max-width: 599px) {
  .TtlBox {
    margin-bottom: 30px;
    display: block;
    margin-left: 0%;
  }
  .mainTtlBox {
    margin-bottom: 30px;
  }

  .mainTtlBox h2 {
    text-align: center;
    font-size: 5.2rem;
  }
}

/*-------------------------------------------
背景色
-------------------------------------------*/

.GrBg {
  background: linear-gradient(90deg, #027319 0%, #5f996a 100%);
  color: #fff;
  padding: 150px 0 0;
  margin-bottom: 320px;
}

@media screen and (max-width: 599px) {
  .GrBg {
    background: linear-gradient(90deg, #027319 0%, #5f996a 100%);
    color: #fff;
    padding: 100px 0 0;
    margin-bottom: 320px;
  }
}
/*-------------------------------------------
FLOW
-------------------------------------------*/
.mTxt {
  max-width: 1080px;
  margin: 0 auto;
  margin-bottom: 100px;
  line-height: 1.8rem;
}
.FlowBox {
  max-width: 1280px;
  margin: 0 auto;
  padding-bottom: 1px;
}

.conBox {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 170px;
}

.conBox .conL {
  width: 250px;
  position: relative;
}

.conBox .conR {
  width: 80%;
}

.conBox .conL .HeadE {
  writing-mode: vertical-rl;
  font-family: source-sans-pro, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 4.8rem;
  line-height: 4.9rem;
  display: inline-block;
  background: linear-gradient(-90deg, #00a621 0%, #86bf91 100%);
  background: -webkit-linear-gradient(-90deg, #00a621 0%, #86bf91 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.conBox .conR h3 {
  font-size: 2rem;
  margin-bottom: 30px;
}

.conBox .conR p {
  margin-bottom: 20px;
  line-height: 1.8;
}

.conBox .conR .flowTel a {
  color: #ffff00;
  border-bottom: 2px solid #ffff00;
  font-size: 2rem;
  font-weight: bold;
  margin-left: 20px;
  letter-spacing: 2px;
}

.conBox .BtnBox {
  display: flex;
  width: 30%;
  margin-bottom: 20px;
}

/*スクロールダウン全体の場所*/
.conL .scrolldown {
  /*描画位置※位置は適宜調整してください*/
  position: absolute;
  top: 200px;
  left: 130px;
}

/* 丸の描写 */
.conL .scrolldown::before {
  content: "";
  /*描画位置*/
  position: absolute;
  bottom: 0;
  left: -3px;
  /*丸の形状*/
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  /*丸の動き1.6秒かけて透過し、永遠にループ*/
  animation:
    circlemove 3s ease-in-out infinite,
    cirlemovehide 3s ease-out infinite;
  z-index: 10;
}

/*下からの距離が変化して丸の全体が上から下に動く*/
@keyframes circlemove {
  0% {
    bottom: 200px;
  }
  100% {
    bottom: -5px;
  }
}

/*上から下にかけて丸が透過→不透明→透過する*/
@keyframes cirlemovehide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}

/* 線の描写 */
.conL .scrolldown::after {
  content: "";
  /*描画位置*/
  position: absolute;
  bottom: 0;
  left: 0;
  /*線の形状*/
  width: 1px;
  height: 200px;
  background: linear-gradient(-90deg, #00a621 0%, #86bf91 100%);
  background: -webkit-linear-gradient(-90deg, #00a621 0%, #86bf91 100%);
}

@media screen and (max-width: 1024px) {
  .mTxt {
    margin: 0 auto;
    width: 95%;
    margin-bottom: 100px;
    line-height: 1.8rem;
  }

  .FlowBox {
    width: 95%;
  }

  .conBox .BtnBox {
    display: flex;
    width: 40%;
    margin-bottom: 20px;
  }

  .conBox {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 170px;
  }

  .conBox .conR {
    width: 100%;
  }
}

@media screen and (max-width: 599px) {
  .mTxt {
    margin: 0 auto;
    width: 95%;
    margin-bottom: 100px;
    line-height: 1.8rem;
  }
  .conBox .conL {
    width: 110px;
    position: relative;
  }
  .conBox .conL .HeadE {
    writing-mode: vertical-rl;
    font-family: source-sans-pro, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 3.8rem;
    line-height: 4.2rem;
    display: inline-block;
    background: linear-gradient(-90deg, #00a621 0%, #86bf91 100%);
    background: -webkit-linear-gradient(-90deg, #00a621 0%, #86bf91 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  /*スクロールダウン全体の場所*/
  .conL .scrolldown {
    /*描画位置※位置は適宜調整してください*/
    position: absolute;
    top: 200px;
    left: 65px;
  }
  .conBox .BtnBox {
    display: flex;
    width: 100%;
    margin-bottom: 20px;
  }
  .conBox .conR h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
  .conBox .conR .flowTel a {
    color: #ffff00;
    border-bottom: none;
    text-decoration: underline;
    text-underline-offset: 0.2em;
    font-size: 1.4rem;
    font-weight: bold;
    margin-left: 20px;
    letter-spacing: 2px;
  }
  a[href*="tel:"] {
    color: #fff;
  }
}
