@charset 'utf-8';

/* ++++++++++++++++++++++++++++++++++++++++

	Reset and Clearfix

++++++++++++++++++++++++++++++++++++++++ */

html, body,
div, p,
table, tr, th, td,
ul, ol, li,
dl, dt, dd,
h1, h2, h3, h4, h5, h6,
img, a, address, figure, blockquote {
	margin: 0;
	padding: 0;
	border: 0;
	font-style: normal;
}

li {
	list-style: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

.clearfix:after {
	content: '';
	display: block;
	clear: both;
}



/* ++++++++++++++++++++++++++++++++++++++++

	Common Settings

++++++++++++++++++++++++++++++++++++++++ */

body {
	color: #10276F;
	font-size: 16px;
	line-height: 1.75;
	font-family: 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
	-webkit-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
}

img {
	display: block;
	max-width: 100%;
}

a,
input[type=submit],
input[type=image] {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	transition: .2s;
}
a {
	text-decoration: underline;
	color: #c00;
	cursor: pointer;
}
a:hover,
input[type=submit]:hover,
input[type=image]:hover {
	opacity: .7;
}

#container {
	overflow: hidden;
	position: relative;
	z-index: 1;
	min-width: 1000px;
	padding-top: 60px;
}


/* ----------------------------------------
	header
---------------------------------------- */

header {
	position: fixed;
	left: 0;
	top: 0;
	z-index: 2;
	width: 100%;
	background: #fff;
	text-align: center;
}
header>div {
	display: flex;
	justify-content: space-between;
	position: relative;
	max-width: 1000px;
	margin: auto;
	height: 60px;
}

h1 {
	width: 204px;
	padding: 16px 0 0 16px;
}

nav {
	padding: 29px 22px 0 0;
}
nav ul {
	display: flex;
}
nav li+li {
	margin-left: 67px;
}
nav a {
	display: block;
	padding: 0 10px;
}
nav li img {
	height: 13px;
}

nav .company img {
	height: 16px;
}


/* ----------------------------------------
	contents
---------------------------------------- */

#contents {
	position: relative;
	z-index: 1;
}

section,
.section {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	background: 50% 0 / 100% no-repeat #f8ffff;
}

.bg {
	background-color: #10276F;
	color: #fff;
}

section::after,
.section::after {
	content: '';
	min-height: 100vh;
}
section>div,
.section>div {
	position: relative;
	box-sizing: border-box;
	width: 1000px;
	padding: 100px 0 100px 100px;
}

h2+p {
	margin-top: 30px;
}

#top {
	background-image: url(../img/top_bg.svg);
}
#top>div {
	padding-left: 495px;
}

#top .copy {
	width: 371px;
}
#top .copy+p {
	margin: 6px 0 26px;
}

#top .logo {
	width: 418px;
}

#about,
#company {
	margin: 60px 0;
}
#about {
	background-image: url(../img/about_bg.svg);
}
#about h2 {
	width: 266px;
}

#service {
	background-image: url(../img/service_bg.svg);
	background-blend-mode: multiply;
}
#service>div {
	padding-left: 385px;
}
#service h2 {
	width: 206px;
}
#service ul {
	display: flex;
	margin-top: 20px;
}
#service li {
	width: 52px;
	margin-right: 30px;
	text-align: center;
	font-size: 10px;
	line-height: 1;
}
#service li div {
	margin: 8px -25% 0;
	white-space: nowrap;
	transform: scale(.8);
	transform-origin: 50% 0;
}

#company {
	background-image: url(../img/company_bg.svg);
}
#company h2 {
	width: 265px;
}
#company h2 span {
	display: block;
	margin-top: 18px;
	font-size: 19px;
	line-height: 1;
}
#company dl {
	margin-top: 25px;
	font-size: 13px;
	line-height: 1;
}
#company dt {
	position: absolute;
}
#company dd {
	padding-left: 80px;
}
#company dd+dt,
#company dd+dt+dd {
	margin-top: 15px;
}

#contact {
	background-image: url(../img/contact_bg.svg);
	background-position-y: 100%;
	background-blend-mode: multiply;
}
#contact>div {
	padding-left: 605px;
}

#contact .logo {
	width: 231px;
}

#contact address {
	margin-top: 15px;
	font-size: 13px;
	line-height: 1.5;
}

#contact .btn {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 30px;
	box-sizing: border-box;
	width: 166px;
	height: 42px;
	border: solid 1px #fff;
	background: #10276F;
}
#contact .btn img {
	width: 79px;
}

#contact .btnMap {
	display: block;
	width: 60px;
	margin-top: 30px;
}


/* ----------------------------------------
	footer
---------------------------------------- */

footer {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	z-index: 1;
	height: 60px;
	background: #000;
	text-align: center;
	color: #fff;
	line-height: 1;
}

footer small {
	font-size: 13px;
}

#btnPagetop {
	visibility: hidden;
	opacity: 0;
	position: fixed;
	bottom: 110px;
	right: 0;
	width: 30px;
	transition: .3s;
	transition-property: visibility, opacity;
}

#btnPagetop.on,
#btnPagetop.onScrLock {
	visibility: visible;
	opacity: 1;
}

#btnPagetop.edge,
#btnPagetop.edgeScrLock {
	position: absolute;
	bottom: 100%;
	margin-bottom: 110px;
}