
*{
	margin: 0;
	padding: 0;
	color:  #243746;
	font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
	font-weight: 500;
	text-decoration: none;
	list-style: none;
	box-sizing: border-box;
	font-family: Yu-Gothic;
	border: none;
}

html, body{
	width: 100%;
	height: 100%;
}

body{
	width: 100%;
}

header{
	height: 60px;
	box-shadow: 0px 4px 4px #00000011;
	display: flex;
	justify-content: space-between;
	position: sticky;
}

header .logo{
	display: block;
	width: 370px;
	height: 40px;
	background: url("../img/sitelogo.svg");
	margin-top: 10px;
	margin-left: 20px;
}

header .justdblogo{
	display: block;
	width: 170px;
	height: 40px;
	background: url("../img/justdblogo.svg");
	margin-top: 10px;
	margin-left: 100px;
}

header .menu{
	display: flex;
}


header .menu a{
	display: block;
	height: 100%;
	text-align: center;
	line-height: 60px;
	word-wrap: break-word;
	position: relative;
	transition: 0.3s all;
	padding: 0 1.5em;
}
/*
header .menu a:first-child::before{
	content: "";
	display: block;
	width: 24px;
	height: 24px;
	position: absolute;
	top:17px;
	left: 28px;
	background: url("../img/home.svg");
	filter: invert(50%) sepia(75%) saturate(2977%) hue-rotate(145deg) brightness(96%) contrast(100%);
}*/

header .menu a:hover{
	background: #F0F3F5;
	cursor: pointer;
}

header .menu a.current::after{
	content: "";
	display: block;
	width: 100%;
	height: 6px;
	background: #00afaa;
	border-top-left-radius: 6px;
	border-top-right-radius: 6px;
	position: absolute;
	bottom: 0;
	margin-left: -1.5em;
}

header .inquiry{
	width: 160px;
	margin-top: 10px;
	margin-right: 20px;
	font-size: 16px;
}

header .faq{
	width: 160px;
	margin-top: 10px;
	margin-right: 20px;
	font-size: 16px;
	background: #243746;
}

header .faq:hover{
	background: #3a4b58;

}

.breadcrumb{
	display: flex;
	font-size: 15px;
	height: 48px;
	line-height: 48px;
	width: 1080px;
	margin: 0 auto;
}

.breadcrumb p{
	margin-right: 0.6em;
}

.breadcrumb a{
	color: #00afaa;
}

.breadcrumb a:hover{
	text-decoration: underline;
}

main{
	min-height: calc(100vh - 275px);
}

main.home{
	padding-top: 50px;
	margin-top: 0;
	background-image: linear-gradient(180deg, #D2ECEB 0%, #FFFFFF 100%);
}

.home h1{
	height: 40px;
	font-size: 32px;
	color:#00afaa;
	text-align: center;
}

.home h1::after{
	display: none;
}

.home p{
	margin-top: 16px;
	font-size: 14px;
	text-align: center;
	line-height: 28px;
}

.home .steps{
	width: 840px;
	display: flex;
	margin: 0 auto;
	justify-content: space-between;
	margin-top: 20px;
}

.home .steps .step{
	width: 400px;
	height: 440px;
	position: relative;
	box-shadow: 0px 4px 4px #24374622;
	border-radius: 8px;
}

.home .steps .step:hover{
	cursor: pointer;
	opacity: 0.7;
}

.home .steps .step.step1{
	background: url("../img/step1.png"),#fff;
	background-size: 400px;
}

.home .steps .step.step2{
	background: url("../img/step2.png"),#fff;
	background-size: 400px;
}

.home .steps .step.step3{
	background: url("../img/step3.png");
}

footer{
	font-size: 14px;
	text-align: center;
	margin-top: 40px;
}

footer p{
	margin: 20px auto;
}

footer .email{
	font-size: 16px;
	font-weight: bold;
	margin-left: 2em;
}

footer .copyright{
	background: #F0F3F5;
	text-align: right;
	height: 70px;
	line-height: 70px;
	padding-right: 40px;
	margin-top: 40px;
}

h1{
	margin: 20px 0;
	font-size: 32px;
	text-align: center;
	margin-bottom: 40px;
	font-weight: bold;
}

h1 span{
	font-size: 20px;
	font-weight: normal;
}

h1:after{
	content: "";
	display: block;
	margin: 0 auto;
	height: 4px;
	width: 60px;
	background: #00afaa;
	margin-top: 30px;
}

.column_2{
	display: flex;
	margin-top: 20px;
}

.button{
	display: block;
	width: 100%;
	height: 40px;
	font-size: 18px;
	text-align: center;
	line-height: 40px;
	background: #00afaa;
	border-radius: 4px;
	color: #fff;
	cursor: pointer;
}

.button:hover{
	background: #1cc4bf;
}