@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
-------------------------------------------*/
.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:350px;
  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: 350px;}
     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: 350px;
  background: linear-gradient(-90deg, #00a621 0%, #86bf91 100%);
background: -webkit-linear-gradient(-90deg, #00a621 0%, #86bf91 100%);
}

@media screen and (max-width: 1024px) {
.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) {
.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: 2.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;
}
/*スクロールダウン全体の場所*/
.conL .scrolldown {
    /*描画位置※位置は適宜調整してください*/
  position:absolute;
  top:350px;
  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;
}
}


.White .MoreBtn01 {
  /*アニメーションの起点とするためrelativeを指定*/
  position: relative;
  overflow: hidden;
  /*ボタンの形状*/
  text-decoration: none;
  display: inline-block;
  border: 1px solid #fff;/* ボーダーの色と太さ */
  padding: 15px 30px;
  text-align: left;
  outline: none;
  /*アニメーションの指定*/   
  transition: ease .2s;
  font-family: source-sans-pro, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size:  1rem;
  letter-spacing: 0.12em;
  margin: 0 auto;
  width: 100%;
}

/*ボタン内spanの形状*/
.White .MoreBtn01 span {
	position: relative;
	z-index: 3;/*z-indexの数値をあげて文字を背景よりも手前に表示*/
	color:#fff;
}

.White .MoreBtn01:hover {
  border: 1px solid #027319;
}
.White .MoreBtn01:hover span{
	color:#fff;
}

.White .MoreBtn01::after {
  content: "→";
  position: absolute;
  top: 55%;
  right: 10%;
  width: 20px;
  height: 20px;
  transform: translateY(-55%) translateX(-50%);
  -webkit- transform: translateY(-55%) translateX(-50%);
  color:#fff;
}

.White .MoreBtn01:hover::after {
	content: "→";
  position: absolute;
  top: 55%;
  right: 10%;
  width: 20px;
  height: 20px;
  transform: translateY(-55%) translateX(-50%);
  -webkit- transform: translateY(-55%) translateX(-50%);
  color:#fff;
  z-index: 5;
}

/*== 背景が流れる（左から右） */
.bgleft::before {
 	content: '';
    /*絶対配置で位置を指定*/
 	position: absolute;
 	top: 0;
 	left: 0;
 	z-index: 2;
    /*色や形状*/
 	background: linear-gradient(90deg, #027319 0%, #5f996a 100%);
 	width: 100%;
	height: 100%;
    /*アニメーション*/
 	transition: transform .6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
 	transform: scale(0, 1);
	transform-origin: right top;
}

/*hoverした際の形状*/
.bgleft:hover::before{
	transform-origin:left top;
	transform:scale(1, 1);
}


