@charset "UTF-8";



body{
  margin:0 auto;
  padding: 0;
  letter-spacing: 0.1em;
  color:rgb(59, 59, 59);
  font-weight: normal;
  font-family: Arial, Helvetica, sans-serif;
}

a{text-decoration: none;}

p{
  font-size: 16px;
  line-height: 2;
}

.inner{
  max-width: 980px;
  margin:0 auto;
}

img{width: 100%;}

.white{
  background-color: #ffffff;
  padding: 50px 0;
}
.gray{
  background-color: #f5f5f5;
  padding: 50px 0;
}

@media screen and (max-width: 1000px){
  .inner{padding:0 5%;}
}

@media screen and (max-width: 767px){
  p{
    font-size: 14px;
    line-height: 1.6;
  }
}

@media screen and (max-width: 450px){
  p{font-size: 12px;}
}


/*------レスポンシブ-----*/
.pc { display: block !important; }
.sp { display: none !important; }

@media screen and (max-width: 767px){
  .pc { display: none !important; }
  .sp { display: block !important; }
}




/*------ヘッダー-----*/
header{
  display: flex;
  justify-content: space-between;
}

.logo{
  width: 400px;
  padding: 20px;
  cursor: pointer;
  transition: 0.3s;
}

.logo:hover{opacity: 0.7;}

.contact-btn{
  display: flex;
  justify-content: center;
  align-items: center;
  width:30%;
  background-color: #78be32;
  color: #fff;
  font-size: 24px;
  transition: 0.3s;
  cursor: pointer;
}

.contact-btn:hover{background-color: #437412;}

.contact-btn img{
  width: 40px;
  height: 25px;
  margin-right: 10px;
}



@media screen and (max-width: 767px){
  .logo{
    width: 50%;
    margin: 0 auto;
  }
  .contact-btn{
    width:50%;
    font-size: 18px;
  }
  .contact-btn img{
    width: 40px;
    height: 25px;
  }
}

@media screen and (max-width: 450px){
  header{align-items: center;}
  .logo{width: 40%;}
  .contact-btn{
    height: 100px;
    font-size: 14px;
  }
  .contact-btn img{
    width: 30px;
    height: 20px;
    margin-right: 5px;
  }
}



/*------メインビジュアル-----*/
.mv{
  height: 600px;
  background: url(../img/mv.png) no-repeat center center / cover;
}
@media screen and (max-width: 767px){
  .mv{height: 350px;}
}
@media screen and (max-width: 400px){
  .mv{height: 250px;}
}





/*------コンテンツ-----*/
h2{
  text-align: center;
  color: #78be32;
  font-size: 30px;
}
.about{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.about img{width: 33%;}
.about p{width:60%;}

.re{flex-direction: row-reverse; }
@media screen and (max-width: 767px){
  h2{font-size: 20px;}
  .about{
    display: block;
    text-align: center;
  }
  .about img{width: 60%; margin: 10px 0;}
  .about p{width:100%; text-align: left;}
  .small{width: 30%;}

}



.stepbar {
  position: relative;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: space-between;
}

.stepbar li {
  position: relative;
  list-style: none;
  text-align: center;
  color: #000;
  font-weight: bold;
}

.stepbar li p {
  font-weight: normal;
  margin: 10px 40px;
}

.stepbar li:before {
  display: block;
  width: 18px;
  height: 18px;
  margin: 0.5em auto;
  content: "";
  text-align: center;
  border-radius: 50%;
  background-color: #fff;
  border: 1px solid #000;
}

.stepbar li:after {
  position: absolute;
  z-index: -1;
  top: 1em;
  left: -50%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #000;
}

.stepbar li:first-child:after {
  content: none;
}

@media screen and (max-width: 960px) {
  .stepbar li p {
    margin: 10px 15px;
    font-size: 12px;
  }
}






/*------お問い合わせ-----*/
table {
	width: 100%;
  text-align: left;
	font-size: 15px;
	line-height: 1.5;
	border-left: 1px solid #2c672a;
	border-bottom: 1px solid #2c672a;	
  margin-top: 20px;
}

tr {
	width: 100%;
}

th, td {
	border-top: 1px solid #2c672a;
	border-right: 1px solid #2c672a;
  background-color: #fff;
	padding: 1.5em;
  box-sizing: border-box;
  font-weight: normal;
}

th {
	width: 25%;
	vertical-align: middle;
  background-color: #e1f3de;
}


td p{
  line-height: 1.5;
  margin: 10px 0 0;
}


input[type='text'], textarea {
	min-width: 97%;
	padding: 0.5em;
	font-size: 16px;
	background-color: #fff;
	border: 1px solid #a5a5a5;
	border-radius: 5px;
}

input.short {
  min-width: initial;
}

.mb1em{
  margin: 15px 0;
}


textarea {
  min-width: 97%;
	min-height: 120px;
	line-height: 1.5;
}

.submit-btn {
	font-size: 16px;
  font-weight: bold;
	background-color: #78be32;
	text-align: center;
	color: #fff;
	height: 60px;
	line-height: 60px;
	display: block;
	width: 230px;
	margin: 40px auto 0;
	border: none;
	cursor: pointer;
  transition: 0.3s;
}

.submit-btn:hover {
	background-color: #42750f;
}

span{
  font-size: 12px;
  font-weight: bold;
  padding:3px 3px 4px 4px;
  background-color: red;
  color:rgb(255, 255, 255);
}

h5{
  margin-top: 50px;
  text-align: center;
  font-size: 25px;
}

.about_privacy p{
  font-size: 18px;
}
.privacy {
  background-color: #ffffff;
  border: 1px solid #a8c18f;
  padding: 30px;
  font-size: 18px;
  line-height: 1.5;
  text-align: center;
  margin: 50px auto 50px;
  max-width: 640px;
  }


@media screen and (max-width: 767px){
  h1{font-size: 30px;}

  .back_blue .box{
    margin: 0;
    padding: 0;
    width: 100%;
  }

  table{
		margin: 30px 0;
    border-left: none;
	}

  th, td {
		display: block;
		width: 100%;
    border-right: none;
		font-size: 13px;
		padding: 1.2em 0.8em;
	}


	.submit-btn {
		font-size: 18px;
		height: 60px;
		line-height: 40px;
		width: 50%;
    margin-bottom: 30px;
	}

  span{font-size: 8px;}

  .privacy {
    max-width: 480px;
    padding: 20px 10px;
    font-size: 13px;
    margin: 0 auto 30px;
  }
  
  .about_privacy p{
    font-size: 12px;
    margin-bottom: 20px;
  }
  h5{
    font-size: 20px;
    line-height: 1;
  }

  #page_top{
    width: 80px;
    height: 80px;
    position: fixed;
    right: 0;
    bottom: 0;
    opacity: 0.6;
  }
  #page_top a{
    width: 80px;
    height: 80px;
    text-decoration: none;
  }
  #page_top a::before{
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    content: '\f139';
    font-size: 60px;
    color: #4e4e4e;
  }
}





  /*------フッター-----*/
footer{
  background-color: #78be32;
  margin: 0 auto;
  padding: 50px 0;
}

.company{
  display: flex;
  justify-content:center;
  align-items: center;
}

footer p{
  color: #fff;
  line-height: 1.5;
}

footer a{
  color: #fff;
}

footer img{
  width: 150px;
  height: 100%;
  margin-right:30px;
}
@media screen and (max-width: 767px){
  footer{text-align: center;}
  .company{display: block;}
}







/*------サンクス-----*/

h1{
  text-align: center;
  color:#78be32;
}
.thanks{margin-top: 100px;
text-align: center;}
.back_top{
  display: block;
  width: 250px;
  line-height: 70px;
  background-color: #78be32;
  margin: 50px auto 70px;
  border-radius: 5px;
  font-weight: bold;
  font-size: 20px;
  text-align: center;
  color: #fff;
  transition: .4s;
}

.back_top:hover{
  background-color: #477b13;
}


/*------コピーライト-----*/
.copy{
  background-color: #4c8018;
  margin: 0;
  text-align: center;
  font-size: 12px;
  line-height: 3;
  color: #fff;
}
@media screen and (max-width: 400px){
  .copy{font-size: 10px;}
}


