@charset "UTF-8";

*{box-sizing: border-box;}

body{
  margin:0;
  padding: 0;
  letter-spacing: 0.1em;
  font-family: sans-serif;
}

a{
  text-decoration: none;
  transition: 0.3s;
}


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

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

img{
    width: 100%;
}



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



@media screen and (max-width: 676px){

  p{
    font-size: 14px;
    line-height: 1.8;
  }

}

@media screen and (min-width: 500px){
  .sponly{display: none;}
}





/*------ヘッダー-----*/

header{
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 5%;
}

.head{
  display: flex;
  justify-content:space-between;
  align-items: center;
}

.name{
  font-family: Arial, Helvetica, sans-serif;
  color:#5a4f4a;
  letter-spacing: 0.05em;
  font-size: 25px;
  line-height: 1.2;
  font-weight: bold;
}

.ec{
  padding: 10px 30px;
  border: 1px solid #c84b82;
  color:#c84b82;
  text-align: center;
}

.ec:hover{
  background-color: #c84b82;
  color: #fff;
}

@media screen and (max-width: 676px){
  .name{font-size: 18px;}

  .ec{
  padding: 5px 20px;
  font-size: 13px;
}
}

/*------コピー-----*/

h1{
  font-size: 25px;
  font-weight: lighter;
  text-align: center;
  line-height: 2;
  color:#5a4f4a;
  margin: 60px 0 80px;
}

@media screen and (max-width: 676px){
  h1{
    font-size: 18px;
    margin: 40px 0 60px;
  }
}




/*------紹介-----*/

.paper{
  height: 300px;
  background: url(../img/paper.jpg) no-repeat center center / cover;
  margin-top: 100px;
}

.box{
  display: flex;
  justify-content: space-between;
  padding: 40px;
  margin-top: -200px;
  margin-bottom: 120px;
  border: 1px solid #000;
  background-color: #fff;
}

h2{
  font-family: 'Times New Roman', Times, serif;
  font-weight: lighter;
  font-size: 40px;
  border-bottom: 1px solid #000;
  padding-bottom: 20px;
  margin: 0 0 25px;
}

.text{width: 65%;}

.box img{
  width: 30%;
  height: 100%;
}

@media screen and (max-width: 740px){
h2{font-size: 30px;}
.text{width: 50%;}
.box img{width: 45%;}
}

@media screen and (max-width: 600px){
  .box{display: block;}
  .text{
    width: 100%;
    margin-bottom: 20px;
  }
 .box img{width: 100%;}
}

@media screen and (max-width: 400px){
  .paper{margin-top: 60px;}
  .box{
    padding: 20px;
    margin-top: -230px;
    margin-bottom: 70px;
  }
  h2{
    font-size: 25px;
    padding-bottom: 10px;
    margin: 0 0 15px;
  }
  .text{
    width: 100%;
    margin-bottom: 20px;
  }
 .box img{width: 100%;}
}



/*------ステップ-----*/

h3{
  text-align: center;
  font-size: 40px;
  font-weight: lighter;
  color: #5a4f4a;
  margin: 0 0 60px;
}

.pink{color: #c84b82;}

.link:hover{opacity: 0.6;}

.three{
  display: flex;
  justify-content: space-between;
  margin: 80px 0 120px;
}

.content{
  width: 30%;
}

.point{
  display: inline;
  background-color: #c84b82;
  color:#fff;
  padding: 10px;
  font-size: 20px;
  font-weight: bold;
  margin: 0;
}

h5{
  font-size: 28px;
  font-weight: normal;
  padding: 10px 0;
  margin: 0 0 12px;
  border-bottom: 1px solid #000;
}

.call{
  text-align: center;
  color: #c84b82;
  font-size: 30px;
  margin-bottom: 20px;
}


@media screen and (max-width: 676px){
  h3{
    font-size: 25px;
    margin: 0 0 40px;
  }
  .three{
    display: block;
    margin: 40px 0 100px;
  }
  .content{
    width: 100%;
    margin-bottom: 50px;
    text-align: center;
  }
  h5{
    font-size: 20px;
    margin: 0 0 10px;
  }


.call{
  font-size: 20px;
  margin-bottom: 5px;
}
}

 



/*------お問い合わせ-----*/

.back{
  background-color: #e8eaeb;
  padding: 100px 0;
  margin-top: 120px;
}

table {
	width: 100%;
  text-align: left;
	font-size: 16px;
	line-height: 1.5;
	border-left: 1px solid #5a4f4a;
	border-bottom: 1px solid #5a4f4a;	
}

tr {
	width: 100%;
}

th, td {
	border-top: 1px solid #5a4f4a;
	border-right: 1px solid #5a4f4a;
	padding: 1.5em;
  box-sizing: border-box;
  font-weight: normal;
}

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

td{background-color: #fff;}


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: #c84b82;
	text-align: center;
	color: #fff;
	height: 60px;
	line-height: 60px;
	display: block;
	width: 230px;
	margin: 40px auto;
	border: none;
	cursor: pointer;
}

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

.need{
  font-size: 12px;
  font-weight: bold;
  padding:3px 3px 4px 4px;
  background-color: rgb(192, 25, 25);
  color:rgb(255, 255, 255);
}


@media screen and (max-width: 676px){
  .back{
    padding: 60px 0;
    margin-top: 60px;
  }

  table{
		margin: 30px 0;
	}

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

  th{
    background-color: #ece1e4;
  }

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

  .need{font-size: 8px;}
}




/*-----フッター-----*/

footer{
  text-align: center;
  margin: 0 auto;
  padding:50px 0;
  background-color: #c84b82;
  color:#fff;
}

footer img{
  width: 50px;
  height: 100%;
}

h4{
  margin: 0;
  font-size: 20px;
}

footer p{
  font-size: 14px;
  line-height: 1.5;
  margin: 10px 0 0;
}
@media screen and (max-width: 676px){
footer img{width: 40px; margin-bottom: 5px;}
footer p{font-size: 12px;}
}




/*-----TOPへ-----*/

  @media screen and (max-width: 767px){

  #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;
  }
}





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

.thanksbox{padding: 100px 5%;}

.thanks{
  margin: 50px 0 20;
  padding:50px;
  border: 1px solid #444444;
  text-align: center;
}


.back_top{
  display: block;
  width: 250px;
  line-height: 70px;
  background-color: #c84b82;
  margin: 0 auto;
  font-weight: bold;
  font-size: 20px;
  text-align: center;
  color: #fff;
  transition: .4s;
}

.back_top:hover{
  background-color: #444444;
}