@charset "utf-8";
/* CSS Document */
*, ::before, ::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
ul, li {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
}
body {
  font-family: sans-serif;
  font-size: 16px;
  color: #000000;
  line-height: 1;
  background-color: #f8f8f8;
}
img {
  max-width: 100%;
  height: auto;
}
/*----------------------headerここから--------------------------*/
.header-inner {
  max-width: 1500px;
  height: 80px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
  display: flex; /*横並び*/
  justify-content: space-between;
  align-items: center; /*水平方向揃え*/
}
.toggle-menu-button {
  display: none; /*一度見えなくする*/
}
.header img {
  display: block;
  width: 170px;
}
.site-menu ul { /*ulにかけないと横並びにならない*/
  display: flex;
}
.site-menu ul li {
  margin-left: 20px;
  margin-right: 20px;
}
.site-menu ul li a {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: bolder;
}
.footer {
  color: #ffffff;
  background-color: #000F2C;
  padding: 30px;
  padding-bottom: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer-logo {
  display: block;
  width: 170px;
  margin-top: 90px;
}
.first-view{
	height: calc(100vh - 110px);
	background-image: url("../image/contact.jpg");
	background-repeat:no-repeat;
	background-position: center center;
	background-size: cover;
}




.contact{
	
	
	width: 930px;
	max-width: 90%;
	margin-top: 75px;
	margin-left: auto;
	margin-right: auto;
}

.form-area dt{
	font-size: 15px;
	font-weight: bold;
	line-height: 24px;
	margin-top: 20px;
	margin-bottom: 5px;
}



.form-area dt .required::after {/*必須を表示*/
	content:'必須';
	font-size: 11px;
	color: #eb4f32;
	margin-left: 10px;
}

.form-area p{/*ハイフンなし*/
	font-size: 10px;
}


/*入力欄のサイズを変更*/
.input-text{
	width: 100%;
	max-width: 280px;
	height: 40px;
	padding: 0 10px;
}
.select-box{
	width: 100%;
	max-width: 280px;
	height: 40px;
	padding: 0 10px;
}

/*長文テキストの入力欄調整*/
.message{
	width: 100%;
	height: 260px;
	padding: 10px;
	line-height: 1.5;
}

.submit-button{
	color: #F0F0F0;
	font-weight: bold;
	background-color: #0E6DFF;
	display: inline-block;
	min-width: 160px;
	line-height:30px;
	border-radius: 10px;
	font-size: 14px;
	text-align: center;
	margin-top: 35px;
}

.submit-button:hover{
	background-color: #FF57C5;
}

.footer{
	margin-top: 100px;
}
















/*=============================PCここまで================================*/
/*8888888888888888888888888888スマホここから8888888888888888888888888888888888*/
@media (max-width: 750px) {
  .site-menu ul { /*navメニューを立て並びに	*/
    display: block;
    text-align: center;
  }

	.site-menu li{
		margin-top: 20px;
	}
	
	.header{/*headerを常に上部に固定*/
		width: 100vw;
		
		position:fixed;/*固定*/
		top: 0;
		left: 0;
		right: 0;
		background-color: #ffffff;
		height: 50px;
		z-index: 10;/*先にposition:fixedをかけていないと効かない*/
		box-shadow: 0 3px 6px rgba(0,0,0,0.1);
		
	}
	
	/*header内部のサイズを調整*/
	.header-inner{
		padding-left: 20px;
		padding-right: 20px;
		height: 100%;
		position: relative;/*これを基準にハンバーガーメニューを作成する*/
	}
	
	/*logoサイズ調整*/
	.header-logo{
		width: 100px;
	}
	
	/*ハンバーガーメニュー作成*/
	.header-site-menu{
		position: absolute;/*位置を指定*/
		top: 100%;
		left: 0;
		right: 0;
		background-color: #f8f8f8;
		padding-top: 30px;
		padding-bottom: 50px;
		display: none;
	}
	
	.header-site-menu.is-show{
		display: block;
	}
	
	.toggle-menu-button{
		display: block;
		width: 44px;
		height: 34px;
		background-image: url("../image/ハンバーガーアイコン.png");
		background-size: 50%;/*アイコンのデザイン調整*/
		background-position: center;
		background-repeat: no-repeat;/*ここまで*/
		background-color: transparent;/*背景色を透明に*/
		boder:none;/*境界線削除*/
		border-radius: 0;/*角丸解除*/
		outline: none;/*タップしたときに表示される枠線を削除*/
	}
	.main{
		padding-top: 50px;
		
	}
	
	
	.first-view{
		max-width: 750px;
		width: 100%;
		height: calc(110vh - 50px);
		background-image: url("../image/contact-top-ph.jpg")
	}
}