/* reset */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html, body, h1, h2, h3, h4, h5, h6, p,
ul, ol, li, figure, blockquote, dl, dd {
	margin: 0;
	padding: 0;
}

ul, ol {
	list-style: none;
}

img, picture, video, canvas, svg {
	display: block;
	max-width: 100%;
	height: auto;
}

/* ベース */
html, body {
	height: 100%;
	margin: 0;
}

body {
	display: flex;
	flex-direction: column;
	font-family: sans-serif;
	font-size: 16px;
	text-align: center;
	color: #333;
	line-height: 1.6;
}

/* 見出し */
h1 {
	text-align: left;
}

h1.title {
	font-size: 24px;
}

h1.title .title-sub {
	font-size: 14px;
	display: block;
}

@media (max-width: 767px) {
	h1.title {
		font-size: 18px;
	}
	h1.title .title-sub {
		font-size: 11px;
	}
}

h2 {
	font-size: 24px;
	margin-bottom: 20px;
}

@media (max-width: 767px) {
	h2 {
		font-size: 22px;
	}
}

/* 装飾 */
.font-small {
	font-size: 12px;
}

a {
	color: #63c7e0;
	text-decoration: none;
}
a:hover {
	color: #36A9CF;
	text-decoration: underline;
}

/* header */
header {
	background-color: #ff5223;
	color: #fff;
	padding: 15px 35px;
	font-size: 24px;
	font-weight: bold;
	line-height: normal;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

header .logo {
	margin-left: auto;
	padding: 8px;
	background-color: #fff;
	border-radius: 4px;
}

@media (max-width: 767px) {
	header {
		padding: 10px;
		flex-wrap: wrap;
	}
	header .logo {
		max-width: 40%;
		margin-top: 10px;
	}
}

/* head-image */
.head-image{
	background: url(../img/hero.png) ;
	background-position: top center; background-repeat: no-repeat;
	background-size: contain;
}
.head-image_inner {
	height: 0;
	background-color: rgba(0, 0, 0, 0.3);
	position: relative;
	padding-bottom:22.3%;
}

/* main */
main {
	flex: 1;
	padding: 0 15px;
	margin: 40px 0;
}

main p {
	line-height: 1.6;
	margin-bottom: 20px;
}

@media (max-width: 767px) {
	main p {
		font-size: 14px;
	}
}

/* domain-list */
.domain-list-wrapper {
	text-align: left;
	display: inline-block;
	margin: 20px auto;
}

.domain-list {
	font-size: 16px;
}

.domain-list li {
	margin-bottom: 8px;
}

.domain-link {
	display: inline-block;
	color: #63c7e0;
}

@media (max-width: 767px) {
	.domain-link {
    display: block;
    margin: 4px 0 8px 0;
	}
}

/* footer */
footer {
	padding: 20px 0;
	font-size: 14px;
	color: #ffffff;
	text-align: center;
	background: #333333;
}
