html, body {
	margin: 0;
	padding: 0;
	min-width: 1400px;
}

p, div, a, h1, h2, h3, h4, h5 {
	font-family: 'Open Sans', メイリオ, Meiryo, sans-serif;
	font-size: 14px;
	color: #333333;
}

a {
	text-decoration: none;
}

section {
	display: block;
}

.d-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flex-col {
   -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.flex-row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

.align-items-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.justify-content-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.justify-content-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.is-sp {
	display: none;
}

.is-pc {
	display: block;
}

.btn {
	display: inline-block;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  outline: 0;
  border: 0;
  text-decoration: none;
   -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background: transparent;
}
.btn:hover {
	cursor: pointer;
}

@media (max-width: 768px) {
	body, html {
		min-width: auto;
	}

	.is-sp {
		display: block;
	}

	.is-pc {
		display: none;
	}

	.sp-col {
		-webkit-box-orient: vertical;
	  -webkit-box-direction: normal;
	  -ms-flex-direction: column;
	  flex-direction: column;
	}
}

/* common */
.h4 {
	color: #028e92;
	display: block;
	font-size: 15px;
	text-align: center;
	margin: 0;
	margin-bottom: 15px;
}
.h3 {
	display: block;
	font-size: 30px;
	color: #222222;
	text-align: center;
	margin: 0;
	margin-bottom: 20px;
}
.h5 {
	display: block;
	text-align: center;
	margin: 0;
	margin-bottom: 20px;
}

.container {
	max-width: 900px;
	margin: 0 auto;
	padding: 80px 20px;
}

@media (max-width: 768px) {
	.h3 {
		font-size: 27px;
	}

	.container {
		padding: 50px 20px;
	}
}


/* btn-release */
.btn-release {
	height: 50px;
	line-height: 50px;
	color: white;
	border-radius: 50px;
	background: #ed7d31;
	font-size: 18px;
	padding: 0 25px;
}

#pre-order {
	height: 70px;
	width: 70%;
	line-height: 50px;
	color: white;
	border-radius: 50px;
	background: #ed7d31;
	font-size: 1.5em;
	padding: 0 25px;
	margin-top:60px;
}


.btn-purchase {
	background: #ed7d31;
	color: white;
	width: 240px;
	text-align: center;
	font-size: 24px;
	line-height: 64px;
	vertical-align: middle;
	border-radius: 64px;
}

/* header */
.header-logo {
	display: block;
	width: 100px;
	height: 53px;
}

.header-pc {
	padding: 0 140px;
	height: 92px;
}
.header-pc .container {
	height: 100%;
	padding: 0;
	max-width: none;
}
.header-pc .btn {
	margin-left: 50px;
}

.header-menu {
	height: 100%;
}
.header-menu-item {
	height: 100%;
	margin-right: 45px;
	font-size: 15px;
	font-weight: normal;
	border-bottom: 3px solid transparent;
}
.header-menu-item.selected {
	color: #028e92;
	border-color: #028e92;
	font-weight: bold;
}
.header-sp {
	position: fixed;
	width: 100%;
  	background: white;
  	top: 0;
}
.header-sp .container {
	padding: 15px;
}
.header-sp .header-logo {
	width: 60px;
	height: 34px;
}
.header-sp .btn-menu {
	margin-left: 20px;
}
.header-sp .btn-menu > img {
	display: block;
	height: 20px;
	width: 20px;
}
.header-sp-menu {
	display: none;
	width: 100%;
	position: absolute;
	z-index: 1;
	background: #028e92;
	padding-top: 10px;
	padding-bottom: 10px;
}
.header-sp-menu-item {
	color: white;
	text-decoration: none;
	padding: 10px 20px;
}

.header-sp .btn-purchase, .header-sp .btn-release {
	font-size: 13px;
	width: auto;
	padding: 7px;
	height: auto;
	line-height: 1;
}

/* s1 */
.s1 {
	background-size: cover;
	background-image: url('./imgs/s1_bg.jpg');
	height: 720px;
}

.s1 .headline {
	color: white;
	text-align: center;
	font-size: 42px;
	line-height: 1.5;
	display: block;
	font-weight: normal;
}

@media (max-width: 768px) {
	.s1 {
		height: 460px;
	}
	.s1 .headline {
		font-size: 25px;
	}
}

/* s2 */
.s2 {
	background-color: #f6f7f7;
}

/* s3 */
.s3 .container {
	max-width: none;
}
.s3 .h5 {
	margin-bottom: 80px;
}
.s3-list-item {
	width: 360px;
	margin-right: 60px;
}
.s3-list-item:last-child {
	margin-right: 0;
}
.s3-list-item > img {
	display: block;
	width: 100%;
}
.s3-list-item-title {
	font-size: 24px;
	margin-bottom: 23px;
	margin-top: 23px;
}

@media (max-width: 768px) {
	.s3-list-item {
		width: 100%;
	}
}

/* s4 */
.s4 {
	background-image: url('./imgs/s4_bg.jpg');
	background-size: cover;
	height: 400px;
}
.s4 .container  {
	height: 100%;
	box-sizing: border-box;
}
.s4 .container > * {
	color: white;
	margin: 0;
}

.s4 .container .s4-seperator {
	width: 180px;
	height: 2px;
	background-color: #ed7d31;
	margin: 30px auto;
}

@media (max-width: 768px) {
	.s4 .h3 {
		font-size: 20px;
	}
}

/* s5 */
.s5 .container {
	max-width: none;
}

.s5-list-item {
	width: 340px;
	padding-right: 30px;
	margin-right: 30px;
	border-right: 1px solid #d3d3d3;
}
.s5-list-item:last-child {
	padding-right: 0;
	margin-right: 0;
	border-right: 0;
}
.s5-list-item-title {
	font-size: 20px;
	margin-bottom: 23px;
	margin-top: 23px;
}
.s5-list-item > img {
	display: block;
	width: 60px;
	height: 60px;
	margin-bottom: 60px;
}

@media (max-width: 768px) {
	.s5-list-item {
		width: 100%;
		padding-right: 0;
		margin-right: 0;
		border-right: 0;

		padding-bottom: 40px;
		margin-bottom: 40px;
		border-bottom: 1px solid #d3d3d3;
	}
	.s5-list-item:last-child {
		margin: 0;
		padding: 0;
		border: 0;
	}
}

/* s6 */
.s6 {
	background: #21b0b4;
	padding-bottom: 100px;
}
.s6 .container > * {
	color: white;
}
.s6-seperator {
	width: 80px;
	height: 4px;
	margin: 0 auto 45px;
	display: block;
	background: white;
}

.s6 .container > p {
	line-height: 1.7;
}

.s6-img-group > div > img {
	width: 100%;
	display: block;
	margin: 0 auto;
}

#reportsample > div > img{
	width: 100%;
	display: block;
	margin: 0 auto;
}
@media (max-width: 768px) {
	#reportsample > img {
		width: 100%;
		display: block;
		margin: 0 auto;
	}
}
/* s7 */
.s7 .container {
	max-width: none;
}
.s7-seperator {
	width: 120px;
	height: 2px;
	margin: 0 auto 50px;
	background: #028e92;
}
.s7-price {
	margin: 0 auto;
	margin-bottom: 15px;
	max-width: 1200px;
}
.s7-price > img {
	display: block;
	width: 100%;
}
.s7-caution {
	color: #028e92;
	font-size: 17px;
	margin: 0 auto;
	width: 100%;
	max-width: 1200px;
}

.s7 .btn-purchase, .s7 .btn-release {
	display: block;
	margin: 40px auto 0;
}

.swiper-slide {
	display: block;
	width: 100%;
}

@media (max-width: 768px) {
	.s7-caution {
		font-size: 12px;
		margin-bottom: 10px;
	}
}

/* s8 */
.s8 {
	background-color: #f6f7f7;
}
.s8-list-item {
	border-top: 1px solid #d8d8d8;
	padding: 40px 0;
}
.s8-list-item:last-child {
	border-bottom: 1px solid #d8d8d8;
}
.s8-list-item:hover {
	cursor: pointer;
}
.s8-list-item-question,
.s8-list-item-signal {
	color: #018183;
	font-weight: bold;
}
.s8-list-item-question {
	padding-right: 5px;
	font-size: 17px;
}
.s8-list-item-signal {
	font-size: 20px;
}
.s8-list-item-title {
	font-size: 17px;
	font-weight: 500;
	flex: 1;
}
.s8-list-item-content {
	margin-top: 15px;
	display: none;
}

@media (max-width: 768px) {
	.s8-list-item {
		padding: 20px 0;
	}
	.s8-list-item-title {
		font-size: 14px;
		font-weight: bold;
	}
	.s8-list-item-content {
		font-weight: 300;
		font-size: 13px;
	}
}

/* s9 */
.s9 {
	text-align: center;
}
.s9-icon {
	display: inline-block;
	width: 60px;
	height: 60px;
}
.s9-link {
	color: #028e92;
	font-size: 20px;
	display: inline-block;
	padding-bottom: 5px;
	border-bottom: 1px solid #028e92;
}

@media (max-width: 768px) {
	.s9 p {
		font-size: 11px;
	}
	.s9-link {
		font-size: 15px;
	}
}

/* footer */
.footer {
	border-top: 1px solid #d8d8d8;
	height: 57px;
	line-height: 57px;
	text-align: center;
}

.footer > p {
	font-size: 12px;
	margin: 0;
}

.footer_bar {
    width: 30%;
    margin: 0 auto;
    display: box;
    display: -webkit-box;
    display: -moz-box;
    display: -o-box;
    display: -ms-box;
    box-pack: justify;
    -moz-box-pack: justify;
    -webkit-box-pack: justify;
    -o-box-pack: justify;
    -ms-box-pack: justify;
}

}
.footer_elements {
    width: 100px;
    display: block;
}


}
