@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;
  display: inline-block;
}

.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: 10px;
  display: block;
  margin-left: 0%;
}
  .mainTtlBox {
  margin-bottom: 100px;
}
  
 .mainTtlBox h2 {
  text-align: center;
  font-size: 4.8rem;
}
}

/*-------------------------------------------
代表的メッセージ
-------------------------------------------*/
.message {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  max-width: 1280px;
  margin: 0 auto 350px;
}

.message .conL {
  width: 80%;
  display: flex;
}

.message .HeadE {
  writing-mode: vertical-rl;
  font-family: source-sans-pro, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 6.8rem;
  line-height: 4.9rem;
  display: inline-block;
  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;
  position: absolute;
  left: -6px;
}

.message .TxtBox {
  width: 60%;
  margin-left: 25%;
  position: relative
}

.message .TxtBox h3 {
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0.4rem;
  color: #027319;
  margin-bottom: 20px;
}

.message .TxtBox p {
  line-height: 1.6rem;
}

.BtnBox {
  display: flex;
}


.MoreBtn01 {
  /*アニメーションの起点とするためrelativeを指定*/
  position: relative;
  overflow: hidden;
  /*ボタンの形状*/
  text-decoration: none;
  display: inline-block;
  border: 1px solid #007ca6;/* ボーダーの色と太さ */
  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: 30px 0 0 auto;
  width: 73%;
}

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

.MoreBtn01:hover span{
	color:#fff;
}

.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:#027319;
}

.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);
}

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

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

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

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

/* 線の描写 */
.message .scrolldown::after{
  content:"";
    /*描画位置*/
  position: absolute;
  bottom:0;
  left:0;
    /*線の形状*/
  width: 1px;
  height: 400px;
  background:#027319;
}


.message .conR {
  width: 40%;
}
@media screen and (max-width: 1024px) {
.message {
  max-width: 960px;
}
  .message .TxtBox {
  width: 55%;
  margin-top: 50px;
}
/*スクロールダウン全体の場所*/
.message .scrolldown {
  top:450px;
}
.message .scrolldown::after{
  height: 450px;
}
  /*下からの距離が変化して丸の全体が上から下に動く*/
@keyframes circlemove{
      0%{bottom: 450px;}
     100%{bottom:-5px;}
 }

}

@media screen and (max-width: 599px) {
.message {
  display: block;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  width: 100%;
  margin: 0 auto 100px;
}

.message .conL {
  width: 90%;
  display: flex;
  margin-bottom: 50px;
}
  .message .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(0deg, #027319 0%, #5f996a 100%);
 background: -webkit-linear-gradient(0deg, #027319 0%, #5f996a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: inherit;
  left: 0;
}
  .message .TxtBox {
  width: 75%;
  margin-left: 5%;
  margin-top: 0px;
}
  .message .TxtBox h3 {
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: 0.4rem;
  color: #027319;
  margin-bottom: 30px;
}
  .message .conR {
  width: 95%;
  margin: 0 auto;
}
  /*スクロールダウン全体の場所*/
.message .scrolldown {
  top:360px;
}
.message .scrolldown::after{
  height: 360px;
}
.MoreBtn01 {
  width: 100%;
}

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

}

/*-------------------------------------------
会社概要
-------------------------------------------*/
.profile {
  position: relative;
  max-width: 1240px;
  margin: 0 auto 250px;
}

.profile .HeadBox {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  max-width: 1280px;
  margin: 0 auto 100px;
}

.profile .HeadE {
  writing-mode: horizontal-tb;
  font-family: source-sans-pro, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 6.8rem;
  line-height: 4.9rem;
  display: inline-block;
  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;
  position: inherit;
  margin-bottom: 30px;
  
}
.profile .TxtBox {
  position: relative;
}

.profile .TxtBox h3 {
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: 0.4rem;
    color: #027319;
    margin-bottom: 50px;
}

.profileBox {
  font-size: 1.1rem;
  line-height: 1.8;
  font-family: source-sans-pro, sans-serif;
  font-weight: 500;
  font-style: normal;
  color: #027319;
}

.profileBox dl {
  border-bottom: 1px solid #027319;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 30px 50px;
  margin: 0 50px;
}
.profileBox dt {
    line-height: 1.8;
    width: 30%;
}

.profileBox dd {
}

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

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

/*下からの距離が変化して丸の全体が上から下に動く*/
@keyframes profilecirclemove{
      0%{left:120px;}
     100%{left:520px;}
 }

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

/* 線の描写 */
.profile .scrolldown::after{
  content:"";
    /*描画位置*/
  position: absolute;
  bottom:0;
  left:120px;
    /*線の形状*/
  width: 400px;
  height: 1px;
  background:#027319;
}



@media screen and (max-width: 1024px) {
.profile {
  max-width:  960px;
}
 
}

@media screen and (max-width: 599px) {
  .profile {
  width:  95%;
}
  
.profile .HeadE {
  font-size: 4.8rem;
  margin-bottom: 30px;
  line-height: 4.2rem;
}
  .profile .TxtBox h3 {
    font-size: 1.6rem;
}
  .profile .scrolldown {
    /*描画位置※位置は適宜調整してください*/
  position:absolute;
  top:-60%;
  left:0%;
}
  /*下からの距離が変化して丸の全体が上から下に動く*/
@keyframes profilecirclemove{
      0%{left:0px;}
     100%{left:370px;}
 }
/* 線の描写 */
.profile .scrolldown::after{
  content:"";
    /*描画位置*/
  position: absolute;
  bottom:0;
  left:0px;
    /*線の形状*/
  width: 370px;
  height: 1px;
  background:#027319;
}
  .profileBox {
  font-size: 1.1rem;
  line-height: 1.8;
  font-family: source-sans-pro, sans-serif;
  font-weight: 500;
  font-style: normal;
  color: #027319;
}

.profileBox dl {
  border-bottom: 1px solid #027319;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 30px 0px 10px;
  margin: 0px;
}
.profileBox dt {
    line-height: 1.8;
    width: 100px;
    font-weight: bold;
}

.profileBox dd {
  width: calc(100% - 100px)
}
}


/*-------------------------------------------
アクセス
-------------------------------------------*/
.access {
  margin-bottom: 320px;
  background: linear-gradient(90deg, #027319 0%, #5f996a 100%);
  color: #fff;
  padding-bottom: 50px;
}

.access .conBox {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.access .conL {
  width: 50%;
}

.access .HeadE {
  writing-mode: horizontal-tb;
  font-family: source-sans-pro, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 6.8rem;
  line-height: 4.9rem;
  color: #fff;
}

.access .TxtBox {
  width: 65%;
  margin-left: 15%;
  position: relative;
  margin-top: 100px;
}

.access .TxtBox h3 {
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0.4rem;
  color: #fff;
  margin-bottom: 20px;
}

.access .TxtBox p {
  line-height: 2rem;
  font-family: source-sans-pro, sans-serif;
  font-weight: 500;
  font-style: normal;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.access .TxtBox p a {
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  margin-left: 20px;
  letter-spacing:2px;
}
.BtnBox {
  display: flex;
}


.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: 30px 0 0 auto;
  width: 73%;
}

/*ボタン内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);
}

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

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

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

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

/* 線の描写 */
.access .scrolldown::after{
  content:"";
    /*描画位置*/
  position: absolute;
  bottom:0;
  left:0;
    /*線の形状*/
  width: 1px;
  height: 300px;
  background:#fff;
}

.access .conR {
  width: 50%;
  position: absolute;
  top: -50px;
  right: 0px;
}

.mapBox iframe {
  border-radius: 5px;
  border: 1px solid #027319;
}
@media screen and (max-width: 1024px) {
.access .conBox {
  max-width: 960px;
}
  .access .TxtBox {
  width: 65%;
  margin-top: 50px;
}
/*スクロールダウン全体の場所*/
.access .scrolldown {
  top:330px;
}
.access .scrolldown::after{
  height: 330px;
}
  /*下からの距離が変化して丸の全体が上から下に動く*/
@keyframes accesscirclemove{
      0%{bottom: 330px;}
     100%{bottom:-5px;}
 }

}

@media screen and (max-width: 599px) {
.access {
  display: block;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  width: 100%;
  margin: 0 auto 320px;
}

  .access .conBox {
    width: 100%;
    display: block;
  }
.access .conL {
  width: 90%;
  display: flex;
  margin-bottom: 50px;
}
  .access .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;
  color: #fff;
}
  .access .TxtBox {
  width: 75%;
  margin-left: 5%;
  margin-top: 50px;
}
  .access .TxtBox h3 {
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: 0.4rem;
  color: #fff;
  margin-bottom: 30px;
}
  .access .TxtBox p a {
    color: #fff;
    font-size: 2rem;
    font-weight: bold;
    margin-left: 0px;
    letter-spacing: 2px;
}
  .access .conR {
  width: 95%;
  margin: 0 auto;
  position: inherit;
  top: 0px;
  right: 0px;
}
  /*スクロールダウン全体の場所*/
.access .scrolldown {
  top:400px;
}
.access .scrolldown::after{
  height: 400px;
}
.White .MoreBtn01 {
  width: 100%;
}

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

}

