@charset "utf-8";
/*フォント・文字色の一括設定--------------------*/

*{
	box-sizing: border-box;
}

body{
	font-family: 'Noto Sans JP', sans-serif;
	color: #1C2116;
	margin: 0;
	padding: 0;
}

.blue-sq{
	width: calc(100% - 30px);
	background: #CDE1FF;
	margin: 0;
	font-size: 22px;
	padding: 6px 0 6px 40px;
	font-family: 'Noto Serif JP', serif;
	font-weight: 600;
}
/*フォント・文字色の一括設定end----------------*/


/*カーソルの一括設定-------------------------*/
body:hover{
	cursor: default;
}
/*カーソルの一括設定-------------------------*/


/*----------------------header-------------------------------*/
header{
	position: fixed;
	display: flex;
	width: 100%;
	justify-content: left;
	align-items: center;
	padding: 10px 20px;
	margin: 0 auto;
	height: 80px;
	top: 0;
	left: 0;
	box-shadow: 0 2px 4px rgba(0,0,0,0.1);
	background: #fff;
	z-index: 50;
}

.logo{
	height: 40px;
	margin: 0 40px 0 0;
}

nav{
	display: inline-block;
	gap: 10px;
	z-index: 75;
}

nav ul{
	list-style: none;
	display: flex;
	gap: 20px;
}

nav ul li a{
	text-decoration: none;
	font-size: 1em;
	color: #1C2116;
}

.contact-hamburger{
	display: none;
}

.contact{
	position: fixed;
	right: 10px;
	top: 10px;
	height: 60px;
	display: flex;
	align-items: center;
	background-color: #ff9914;
	padding: 4px 16px;
	border-radius: 20px;
}

.contact p{
	font-size: 0.9em;
	text-align: center;
	color: #fff;
	margin-right: 10px;
	margin-block: 0;
}

.contact span{
	font-size: 1.6em;
	line-height: 1.1em;
}

.contact-content{
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	border-left:1px solid #fff;
	padding-left: 10px;
}

.phone, .mail{
	display: flex;
	align-items: center;
	gap: 4px;
	margin: 2px 0;
}

.contact-img{
	display: inline-block;
	height: 18px;
}

input[type="checkbox"]{
	display: none;
}

.hamburger-icon{
	width: 30px;
	height: 30px;
	top: 22px;
	right: 20px;
	cursor: pointer;
	display: none;
	position: relative;
}

.hamburger-icon span{
	display: block;
	height: 3px;
	margin: 6px 0;
	background: #333;
	border-radius: 2px;
	transition: 0.4s;
}

/*------------------------headerend--------------------------*/


/*----------------------------main---------------------------*/

main{
	margin-top: 80px;
}

/*ページのタイトル(サービス内容・料金、お問い合わせ共通)*/
.sub-title{
	text-align: center;
	font-size: 30px;
	background: #ddd;
	padding: 20px 0;
	font-weight: lighter;
	margin: 0;
}

/*説明書き＋フォーム部分が入るボックス*/
.form-container{
	margin-top: 30px;
}

/*フォームについての説明書き*/
.contact-exp{
	width: 80%;
	margin: 0 auto;
}

.contact-exp span{
	text-decoration: underline;
}

/*フォーム*/
form{
	width: 80%;
	margin: 50px auto 30px auto;
	font-size: 17px;
}

/*「ご希望の連絡方法：」の文言*/
form p{
	display: inline;
}

/*入力欄*/
input[type="text"],
input[type="tel"],
input[type="email"]{
	background: rgba(239, 239, 239, 0.5);
	border: 1px #bbb solid;
	padding: 3px 5px;
	margin: 10px 10px;
}

/*ラジオボタン*/
input[type="radio"]{
	margin: 10px 0 10px 20px;
}

/*電話番号の入力欄幅設定*/
#phone-number-1,
#phone-number-2,
#phone-number-3{
	width: 70px;
}

/*相談内容(自由記述)入力欄*/
textarea{
	background: rgba(239, 239, 239, 0.5);
	border: 1px #bbb solid;
	padding: 3px 5px;
	width: 100%;
	height: 10vh;
	margin: 10px;
}

/*送信ボタン*/
input[type="submit"]{
	background: #192f60;
	color: #fff;
	margin: 30px 0;
	padding: 3px 0;
	width: 70px;
}

.submit-button{
	text-align: center;
}
/*------------------------mainend----------------------------*/

/*---------------------------footer--------------------------*/
footer{
	height: 180px;
	background: #eee;
	position: absolute;
	text-align: center;
	width: 100%;
}

/*フッター内メニューボタン*/
footer ul{
	list-style-type: none;
	display: flex;
	justify-content: center;
}

footer li{
	margin: 20px 0;
	padding: 0 10px;
}

footer a{
	text-decoration: none;
	color: #000;
}

/*コピーライト*/
.copy-right{
	position: relative;
	margin: 0 auto;
	padding-top: 40px;
	font-size: 13px;
}
/*----------------------footerend----------------------------*/


/*==============メディアクエリ(max-width 1050px)===============*/
@media (max-width: 1050px) {
	
	header{
		justify-content: space-between;
	}

	.logo{
		margin: 0 20px 0 0;
	}

	nav{
		margin: 0;
		padding: 0;
		width: 30%;
		height: 100%;
		position: fixed;
		top: 0;
		right: -30%;
		background: #0c3a7f;
		transition: 0.3s;
		opacity: 0.95;
	}

	nav ul{
		display: block;
		width: 90%;
		text-align: left;
		margin: 100px auto;
		padding: 0;
	}

	nav ul li {
		margin: 30px auto;
	}

	nav ul li a{
		color: #fff;
		border-left: 4px solid #fff;
		padding-left: 6px;
	}

	nav ul li a:hover{
		color: #CDE1FF;
		border-left: 2px solid #CDE1FF;
		transition: 0.3s;
	}

	.divider{
		display: none;
	}

	.hamburger-icon{
		display: block;
		z-index: 100;
	}

	/* アイコンがクリックされたらメニューを表示 */
	#hamburger-menu:checked ~ nav {
  		right: 0;/* メニューを画面に入れる */
	}

	#hamburger-menu:checked ~ .hamburger-icon span{
		background: #fff;
	}

	label[for="hamburger-menu"]{
		display: block;
		position: fixed;
		top: 25px;
		right: 26px;
		cursor: pointer;
		z-index: 99;
	}

	.contact-hamburger{
		display: block;
		align-items: center;
		background-color: #ff9914;
		padding: 10px;
		border-radius: 20px;
		margin: 0 auto;
		width: 90%;
	}

	.contact-top{
		padding-bottom: 6px;
		border-bottom: 1px solid #fff;
	}

	.contact-hamburger p{
		font-size: 0.9em;
		text-align: center;
		color: #fff;
		margin: 0 0 10px 0;
	}

	.contact-hamburger span{
		font-size: 1.4em;
		line-height: 1em;
	}

	.contact-hamburger .contact-content{
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		border: none;
		margin-top: 6px;
		padding: 0;
	}

	.contact-hamburger .phone,
	.contact-hamburger .mail {
		display: flex;
		align-items: center;
		gap: 4px;
	}

	.contact-hamburger .contact-img {
		display: block;
		height: 18px;
	}

	.contact-hamburger p {
		margin: 0;
		line-height: 1;
	}

	.contact{
		position: relative;
		margin-right: 60px;
		top: auto;
	}
	
	footer{
		height: 70px;
	}

	footer ul{
		display: none;
	}

	.copy-right{
		padding-top: 20px;
	}

}

/*==============メディアクエリ(max-width 750px)===============*/
@media (max-width: 750px) {
	
	/*基準とするフォントサイズの変更*/
	body{
		font-size: 14px;
	}
	
	.blue-sq{
		font-size: 17px;
		width: calc(100% - 10px);
		padding-left: 14px;
	}

	/*max750pxのトップページ------------------------------*/

	header{
		height: 60px;
		padding: 10px 14px;
	}

	.contact{
		display: none;
	}
	
	nav{
		width: 50%;
		right: -50%;
	}

	nav ul li a{
		font-size: 1.2em;
	}
	.contact-hamburger{
		width: 80%;
	}
	.contact-hamburger p{
		font-size: 1.2em;
	}

	label[for="hamburger-menu"]{
	top: 14px;
	right: 14px;
	}
	
	main{
		margin-top: 60px;
	}
	
	/*ページのタイトル(グレー部分)のサイズ調整*/
	.sub-title{
		font-size: 23px;
	}

	footer li{
		margin: 10px 0px;
	}
	
	footer li a{
		font-size: 8px;
	}
}	
/*============メディアクエリ(max-width 750px)end===============*/

/*============メディアクエリ(max-width 414px)==================*/
@media (max-width: 414px) {
	
	.logo{
		height: 30px;
	}

	nav{
		width: 100%;
		right: -100%;
	}

	nav ul li a{
		font-size: 1.2em;
	}

	.contact-hamburger p{
		font-size: 1.2em;
	}
	
	/*トップバナー内文章のフォント変更*/
	.catch-copy{
		font-size: 15px;
		top: 42%;
	}
	
	/*フッター内メニューボタンの調整*/
	footer li{
		margin: 10px 5px;
	}
	
	footer li a{
		font-size: 10px;
	}
	
	/*フッター内コピーライトの調整*/
	.copy-right{
		font-size: 10px;
	}
}

/*============メディアクエリ(max-width 414px)end===============*/