@charset "utf-8";

/* ――――――――――――――――――――――――――

共通

―――――――――――――――――――――――――― */
/* ----- .page_title ----- */
.page_title {
	position: relative;
	text-align: center;
}
.page_title h2,
.page_title p {
	font-family: 'Oswald', sans-serif;
	font-weight: 700;
	font-size: 2.5em;
	line-height: 1em;
	letter-spacing: -0.01em;
}
.page_title p {
	position: absolute;
	top: 0.9em;
	left: 50%;
	transform: translateX(-50%);
	-webkit-user-select: none;
		 -moz-user-select: none;
					user-select: none;
	z-index: -1;
}
.page_title p span {
	display: block;
	color: -webkit-linear-gradient(top,  rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
	color:    -moz-linear-gradient(top,  rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
	-webkit-transform: scaleY(-1);
		 -moz-transform: scaleY(-1);
					transform: scaleY(-1);
}
.page_title p {
	background: linear-gradient(0deg, rgba(255,255,255,0), rgba(255,255,255,0) 50%, rgba(255,255,255,0.05) 75%, rgba(255,255,255,0.2));
	-webkit-background-clip: text;
	-webkit-text-fill-color: rgba(255,255,255,0.0);
	color: #ff0000;
}
.page_title h6 {
	position: relative;
	top: 1em;
	font-size: 0.875em;
	line-height: 1em;
	font-weight: 700;
}
.page_title h6:before,
.page_title h6:after {
	content: "";
	display: inline-block;
	width: 1.75em;
	height: 1px;
	margin-bottom: 0.25em;
	background: #ffffff;
	vertical-align: middle;
}
.page_title h6:before {
	margin-right: 0.75em;
}
.page_title h6:after {
	margin-left: 0.75em;
}
@media (min-width: 576px) {
	.page_title h2,
	.page_title p {
		font-size: 3.0em;
		line-height: 1em;
	}
}
@media (min-width: 768px) {
	.page_title h2,
	.page_title p {
		font-size: 3.5em;
		line-height: 1em;
	}
}
/*  IEで未対応の場合  */
@media all and (-ms-high-contrast:none){
	.page_title p {
		display: none;
	}
	.page_title h6 {
		top: 0.75em;
	}
}

/* ----- .page_subtitle ----- */
.page_subtitle {
	position: relative;
	text-align: center;
	margin-bottom: 2em;
}
.page_subtitle:before,
.page_subtitle:after {
	content: "";
	position: absolute;
	bottom: -0.75em;
	width: 140px;
	height: 3px;
}
.page_subtitle:before {
	left: calc(50% - 140px);
	background: -webkit-linear-gradient(right, rgba(255,255,255,0.75) 10%, rgba(255,255,255,0) 100%);
	background:    -moz-linear-gradient(right, rgba(255,255,255,0.75) 10%, rgba(255,255,255,0) 100%);
	background:       linear-gradient(to left, rgba(255,255,255,0.75) 10%, rgba(255,255,255,0) 100%);
}
.page_subtitle:after {
	right: calc(50% - 140px);
	background: -webkit-linear-gradient(left, rgba(255,255,255,0.75) 10%, rgba(255,255,255,0) 100%);
	background:    -moz-linear-gradient(left, rgba(255,255,255,0.75) 10%, rgba(255,255,255,0) 100%);
	background:     linear-gradient(to right, rgba(255,255,255,0.75) 10%, rgba(255,255,255,0) 100%);
}

/* ----- .page_cap ----- */
.page_cap {
	text-align: center;
	padding: 0.1em 0;
	border-top-style: solid;
	border-top-width: 1px;
	border-bottom-style: solid;
	border-bottom-width: 1px;
	margin-bottom: 0.75em;
}
/* ----- .floating ----- */
.floating {
	animation-name: floating_time;
	animation-timing-function: ease-in-out;
	animation-iteration-count: infinite;
	animation-direction: alternate;
	animation-duration: 2s;
}
@keyframes floating_time {
	0% {
		transform: translate(0,0px);
	}
	100% {
		transform: translate(0,-10px)
	}
}
.floating.delay1 {
	animation-delay:0.4s;
}
.floating.delay2 {
	animation-delay:0.8s;
}
.floating.delay3 {
	animation-delay:1.2s;
}

/* ----- .contact_bt ----- */
.contact_bt {
	position: relative;
	text-align: center;
	height: 5em;
}
.contact_bt a {
	position: absolute;
	display: block;
	width: 90%;
	margin-left: auto;
	margin-right: auto;
	top: 50%;
	left: 50%;
	transform: translate(-50% , -50%);
	padding: 0.4em 1em;
	border-radius: 5em;
	background: #ffffff;
	border: 4px solid #dddddd;
	-webkit-transition: .4s all ease;
			-ms-transition: .4s all ease;
					transition: .4s all ease;
}
.contact_bt a:after {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	height: 50%;
	left: 0;
	background: rgba(0,0,0,0.08);
	border-bottom-left-radius: 5em;
	border-bottom-right-radius: 5em;
}
.contact_bt a:link,
.contact_bt a:visited,
.contact_bt a:active,
.contact_bt a:hover {
	color: #000000;
	text-decoration: none;
}
.contact_bt a:hover {
	top: 45%;
	border: 4px solid #bbbbbb;
	box-shadow: 0 20px 20px -5px rgba(0,0,0,0.25);
}
.contact_bt span {
	display: inline-block;
	white-space: nowrap;
}
@media (min-width: 768px) {
	.contact_bt a {
		width: 640px;
	}
}




/* ――――――――――――――――――――――――――

トップページ
./
#pg_home

―――――――――――――――――――――――――― */

/* ----- #visual ----- */
#pg_home #visual {
}
#pg_home #visual h1 img {
	width: 100%;
	max-width: 280px;
}
#pg_home #visual #slot {
	font-family: 'YakuHanJP', 'Oswald', sans-serif;
	font-weight: 700;
	letter-spacing: 0.11em;
	font-size: 24px;
	height: 28px;
}
#pg_home #visual .inner {
	position: relative;
	width: 100%;
	margin-top: 4rem;
	text-align: center;
}
#pg_home #visual .inner .box_01 {
	position: relative;
	width: 300px;
	margin: 0 auto 1em;
}
#pg_home #visual .inner .box_02 {
	position: relative;
	display: inline-block;
	width: 160px;
	margin-right: 0.75em;
}
#pg_home #visual .inner .box_03 {
	position: relative;
	display: inline-block;
	width: 100px;
	margin-left: 0.75em;
}
#pg_home #visual .inner .box_03 .ph img {
	margin-top: 30px;
}
#pg_home #visual .inner .box_01 .monitor,
#pg_home #visual .inner .box_02 .monitor,
#pg_home #visual .inner .box_03 .monitor {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
}
#pg_home #visual .inner .box_01 .monitor {
	width: 280px;
	top: 12px;
}
#pg_home #visual .inner .box_02 .monitor {
	width: 150px;
	top: 19px;
}
#pg_home #visual .inner .box_03 .monitor {
	width: 90px;
	top: 46px;
}
#pg_home #visual .inner .box_01 .monitor img,
#pg_home #visual .inner .box_02 .monitor img,
#pg_home #visual .inner .box_03 .monitor img {
	width: 100%;
}
@media (min-width: 576px) {
	#pg_home #visual h1 img {
		max-width: 340px;
	}
	#pg_home #visual #slot {
		font-size: 28px;
	}
	#pg_home #visual .inner .box_01 {
		width: 560px;
	}
	#pg_home #visual .inner .box_02 {
		width: 230px;
		margin-right: 1em;
	}
	#pg_home #visual .inner .box_03 {
		width: 122px;
		margin-left: 1em;
	}
	#pg_home #visual .inner .box_01 .monitor {
		width: 522px;
		top: 22px;
	}
	#pg_home #visual .inner .box_02 .monitor {
		width: 215px;
		top: 31px;
	}
	#pg_home #visual .inner .box_03 .monitor {
		width: 110px;
		top: 78px;
	}
	#pg_home #visual .inner .box_03 .ph img {
		margin-top: 60px;
	}
}
@media (min-width: 768px) {
	#pg_home #visual .inner {
		height: 490px;
	}
	#pg_home #visual .inner .box_01 {
		position: absolute;
		display: block;
		margin: 0;
		bottom: 0;
		left: calc(50% - 280px);
	}
	#pg_home #visual .inner .box_02 {
		position: absolute;
		display: block;
		margin: 0;
		bottom: 5%;
		left: calc(50% - 420px);
	}
	#pg_home #visual .inner .box_03 {
		position: absolute;
		display: block;
		margin: 0;
		bottom: 7.5%;
		right: calc(50% - 390px);
	}
	#pg_home #visual .inner .box_03 .ph img {
		margin-top: 0;
	}
	#pg_home #visual .inner .box_03 .monitor {
		top: 20px;
	}
}
@media (min-width: 992px) {
	#pg_home #visual .inner {
		height: 560px;
	}
	#pg_home #visual .inner .box_01 {
		width: 640px;
		height: 560px;
	}
	#pg_home #visual .inner .box_02 {
		width: 270px;
		left: calc(50% - 500px);
	}
	#pg_home #visual .inner .box_03 {
		width: 140px;
		right: calc(50% - 490px);
	}
	#pg_home #visual .inner .box_01 .monitor {
		width: 596px;
		top: 26px;
	}
	#pg_home #visual .inner .box_02 .monitor {
		width: 252px;
		top: 36px;
	}
	#pg_home #visual .inner .box_03 .monitor {
		width: 127px;
		top: 22px;
	}
}
@media (min-width: 1200px) {
	#pg_home #visual .inner {
		height: 640px;
	}
	#pg_home #visual .inner .box_01 {
		width: 730px;
		height: 640px;
		left: calc(50% - 365px);
	}
	#pg_home #visual .inner .box_02 {
		width: 300px;
		left: calc(50% - 650px);
	}
	#pg_home #visual .inner .box_03 {
		width: 160px;
		right: calc(50% - 540px);
	}
	#pg_home #visual .inner .box_01 .monitor {
		width: 680px;
		top: 30px;
	}
	#pg_home #visual .inner .box_02 .monitor {
		width: 280px;
		top: 40px;
	}
	#pg_home #visual .inner .box_03 .monitor {
		width: 145px;
		top: 25px;
	}
}



/* ----- #page01 ----- */
#pg_home #page01 {
}
#pg_home #page01 ul.word {
	width: 100%;
	max-width: 400px;
	letter-spacing: -.4em;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}
#pg_home #page01 ul.word li {
	display: inline-block;
	width: 25%;
	letter-spacing: normal;
	text-align: center;
}
#pg_home #page01 ul.word li .en_900 {
	line-height: 1.25em;
}
#pg_home #page01 ul.word .name {
	font-size: 0.875em;
	margin: 0;
}
@media (min-width: 576px) {
	#pg_home #page01 ul.word .name {
		font-size: 1.125em;
	}
}

#pg_home #page01 .outer {
	position: relative;
	width: 90%;
	margin-left: auto;
	margin-right: 0;
}
#pg_home #page01 .box {
	position: relative;
	width: 300px;
	height: 375px;
	margin: 0 auto 2em;
}
#pg_home #page01 .monitor {
	position: absolute;
	top: 0;
	left: 0;
	width: 300px;
	height: 240px;
	text-align: center;
}
#pg_home #page01 .monitor img {
	width: 100%;
}
#pg_home #page01 .inner {
	width: 100%;
}
#pg_home #page01 .inner dl {
	text-align: center;
	display: table;
	margin-bottom: 1.5em;
}
#pg_home #page01 .inner dl:last-child {
	margin-bottom: 0;
}
#pg_home #page01 .inner dl dt,
#pg_home #page01 .inner dl dd {
	display: table-cell;
	vertical-align: middle;
	text-align: left;
}
#pg_home #page01 .inner dl dt {
	width: 55px;
}
#pg_home #page01 .inner dl dt img {
	width: 80%;
}
#pg_home #page01 .inner p {
	line-height: 1em;
	margin-bottom: 0;
}
@media (min-width: 400px) {
	#pg_home #page01 .outer {
		width: 80%;
		margin-right: auto;
	}
	#pg_home #page01 .inner {
		width: 310px;
		margin-left: auto;
		margin-right: auto;
	}
}
@media (min-width: 576px) {
	#pg_home #page01 .box {
		width: 400px;
		height: 500px;
		margin: 10vh auto;
	}
	#pg_home #page01 .monitor {
		width: 400px;
	}
	#pg_home #page01 .inner {
		width: 390px;
		margin-right: auto;
		margin-top: 1.5em;
	}
}
@media (min-width: 768px) {
	#pg_home #page01 .outer {
		width: 768px;
		height: 500px;
	}
	#pg_home #page01 .box {
		position: absolute;
		left: 60%;
		margin: 0 auto;
	}
	#pg_home #page01 .inner {
		position: absolute;
		width: auto;
		top: 50%;
		left: 3%;
		transform: translateY(-50%);
		margin: 0;
	}
	#pg_home #page01 .inner dl {
		margin-bottom: 1.75em;
	}
	#pg_home #page01 .inner dl dt {
		width: 65px;
	}
}
@media (min-width: 992px) {
	#pg_home #page01 .outer {
		width: 992px;
		height: 625px;
	}
	#pg_home #page01 .box {
		left: 55%;
		width: 500px;
		height: 625px;
	}
	#pg_home #page01 .monitor {
		width: 500px;
	}
	#pg_home #page01 .inner {
		left: 7.5%;
		font-size: 110%;
	}
	#pg_home #page01 .inner dl dt {
		width: 75px;
	}
}



/* ----- #page02 ----- */
#pg_home #page02 {
}
#pg_home #page02 .outer {
	position: relative;
	width: 100%;
}
#pg_home #page02 .outer_01 .box {
	position: relative;
	margin-left: auto;
	margin-right: auto;
	width: 360px;
	height: 220px;
}
#pg_home #page02 .outer_01 .monitor {
	position: absolute;
	top: 11px;
	left: 50%;
	transform: translateX(-50%);
	width: 275px;
	text-align: center;
}
#pg_home #page02 .outer_01 .monitor img {
	width: 100%;
}
#pg_home #page02 .outer_01 .inner,
#pg_home #page02 .outer_02 .inner,
#pg_home #page02 .outer_03 .inner,
#pg_home #page02 .outer_04 .inner {
	position: relative;
	width: 80%;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 4rem;
	z-index: 2;
}
#pg_home #page02 .outer_04 .inner {
	margin-bottom: 0;
}
#pg_home #page02 .outer_02 .parallax,
#pg_home #page02 .outer_03 .parallax {
	height: 280px;
}
#pg_home #page02 .logo {
	display: none;
}
#pg_home #page02 .outer_04 .box {
	width: 100%;
	padding: 0.75em 0;
	text-align: center;
	background: rgba(0,0,0,0.125);
}
#pg_home #page02 .outer_04 .box .icons {
	width: 90%;
	margin: 0 auto;
	z-index: 2;
}
#pg_home #page02 .outer_04 .box .icons .ph {
	padding: 0.5em;
}
@media (min-width: 576px) {
	#pg_home #page02 .outer_01 .box {
		width: 520px;
		height: 320px;
	}
	#pg_home #page02 .outer_01 .monitor {
		top: 14px;
		width: 400px;
	}
	#pg_home #page02 .outer_04 .box .icons {
		width: 80%;
	}
}
@media (min-width: 768px) {
	#pg_home #page02 .outer_01 .box {
		width: 640px;
		height: 390px;
	}
	#pg_home #page02 .outer_01 .monitor {
		top: 20px;
		width: 490px;
	}
	#pg_home #page02 .outer_02 .parallax,
	#pg_home #page02 .outer_03 .parallax {
		height: 360px;
	}
	#pg_home #page02 .outer_04 .box {
		padding: 0.75em 0;
	}
	#pg_home #page02 .outer_04 .box .icons .ph {
		padding: 0.75em 1em;
	}
}
@media (min-width: 1200px) {
	#pg_home #page02 .outer_01 .inner,
	#pg_home #page02 .outer_02 .inner,
	#pg_home #page02 .outer_03 .inner,
	#pg_home #page02 .outer_04 .inner {
		max-width: 640px;
		padding: 4rem 0;
		margin-bottom: 0;
	}
	#pg_home #page02 .outer_02 .inner {
		padding: 4rem 0 6rem;
	}
	#pg_home #page02 .outer_04 .inner {
		padding: 4rem 0 0;
	}
	#pg_home #page02 .outer_01 .inner,
	#pg_home #page02 .outer_03 .inner {
		margin-left: 7.5%;
		margin-right: auto;
	}
	#pg_home #page02 .outer_02 .inner,
	#pg_home #page02 .outer_04 .inner {
		margin-left: auto;
		margin-right: 7.5%;
	}
	#pg_home #page02 .outer_01 .box {
		position: absolute;
		top: 50%;
		right: 0;
		transform: translateY(-50%);
		width: 770px;
		height: 470px;
		margin: 0;
	}
	#pg_home #page02 .outer_01 .monitor {
		top: 25px;
		width: 590px;
	}
	#pg_home #page02 .outer_02 .parallax,
	#pg_home #page02 .outer_03 .parallax {
		height: auto;
		min-height: 660px;
	}
	#pg_home #page02 .outer_02 .parallax {
		-webkit-clip-path: polygon(0 5%, 100% 0, 100% 100%, 0 95%);
			 -moz-clip-path: polygon(0 5%, 100% 0, 100% 100%, 0 95%);
						clip-path: polygon(0 5%, 100% 0, 100% 100%, 0 95%);
	}
	#pg_home #page02 .outer_03 .parallax {
		-webkit-clip-path: polygon(0 0, 100% 5%, 100% 95%, 0% 100%);
			 -moz-clip-path: polygon(0 0, 100% 5%, 100% 95%, 0% 100%);
						clip-path: polygon(0 0, 100% 5%, 100% 95%, 0% 100%);
	}
	#pg_home #page02 .logo {
		display: block;
		position: relative;
		width: 100%;
		z-index: 100;
	}
	#pg_home #page02 .logo img {
		position: absolute;
		bottom: -46px;
		left: 50%;
		transform: translateX(-50%);
		width: 300px;
		height: 93px;
	}
	#pg_home #page02 .outer_04 .box {
		text-align: center;
		background: none;
		margin-top: 3rem;
	}
	#pg_home #page02 .outer_04 .box ul {
		width: 550px;
		margin: 0 auto 0 0;
	}
	#pg_home #page02 .outer_04 .box li:nth-child(n+17) {
		display: none;
	}
}

#pg_home #page02 .inner .icon {
	width: 80px;
	margin: 0 auto 1em;
	text-align: center;
}
@media (min-width: 768px) {
	#pg_home #page02 .inner .icon {
		width: 90px;
	}
}





/* ----- #page03 ----- */
#pg_home #page03 {
}





/* ----- #page04 ----- */
#pg_home #page04 {
}
#pg_home #page04 #frame {
	position: relative;
	width: 280px;
	height: 515px;
	margin-left: auto;
	margin-right: auto;
}
#pg_home #page04 #frame .f_shadow,
#pg_home #page04 #frame .top,
#pg_home #page04 #frame .left,
#pg_home #page04 #frame .right,
#pg_home #page04 #frame .bottom,
#pg_home #page04 #frame .mainarea,
#pg_home #page04 #frame .camera,
#pg_home #page04 #frame .home {
	position: absolute;
}
#pg_home #page04 #frame .top,
#pg_home #page04 #frame .left,
#pg_home #page04 #frame .right,
#pg_home #page04 #frame .bottom {
	background: #111111;
	z-index: 2;
}
#pg_home #page04 #frame .camera,
#pg_home #page04 #frame .home {
	left: 50%;
	transform: translateX(-50%);
	background: #222222;
	z-index: 3;
}
#pg_home #page04 #frame .f_shadow {
	bottom: -20px;
	left: 0;
	width: 100%;
	height: 20px;
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
	background: -webkit-linear-gradient(top, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0) 100%);
	background:    -moz-linear-gradient(top, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0) 100%);
	background:   linear-gradient(to bottom, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0) 100%);
}
#pg_home #page04 #frame .mainarea {
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: rgba(255,255,255,0.2);
	z-index: 1;
}
#pg_home #page04 #frame .top,
#pg_home #page04 #frame .bottom {
	width: 280px;
}
#pg_home #page04 #frame .top {
	height: 20px;
	top: 0;
	left: 0;
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
}
#pg_home #page04 #frame .left,
#pg_home #page04 #frame .right {
	top: 20px;
	width: 5px;
	height: 460px;
}
#pg_home #page04 #frame .left {
	left: 0;
}
#pg_home #page04 #frame .right {
	left: 275px;
}
#pg_home #page04 #frame .bottom {
	height: 35px;
	top: 480px;
	left: 0;
	border-bottom-left-radius: 20px;
	border-bottom-right-radius: 20px;
}
#pg_home #page04 #frame .camera {
	top: 8px;
	width: 30px;
	height: 4px;
	border-radius: 2px;
}
#pg_home #page04 #frame .home {
	top: 485px;
	width: 24px;
	height: 24px;
	border-radius: 12px;
}
#pg_home #page04 #frame .mainarea {
	top: 19px;
	left: 50%;
	transform: translateX(-50%);
	width: 272px;
	height: 462px;
}
@media (min-width: 576px) {
	#pg_home #page04 .adjust {
		margin-left: 40px;
	}
	#pg_home #page04 #frame {
		width: 480px;
		height: 790px;
	}
	#pg_home #page04 #frame .top,
	#pg_home #page04 #frame .bottom {
		width: 480px;
	}
	#pg_home #page04 #frame .top {
		height: 35px;
		top: 0;
		left: 0;
		border-top-left-radius: 25px;
		border-top-right-radius: 25px;
	}
	#pg_home #page04 #frame .left,
	#pg_home #page04 #frame .right {
		top: 35px;
		width: 10px;
		height: 700px;
	}
	#pg_home #page04 #frame .left {
		left: 0;
	}
	#pg_home #page04 #frame .right {
		left: 470px;
	}
	#pg_home #page04 #frame .bottom {
		height: 55px;
		top: 735px;
		left: 0;
		border-bottom-left-radius: 25px;
		border-bottom-right-radius: 25px;
	}
	#pg_home #page04 #frame .camera {
		top: 16px;
		width: 40px;
		height: 8px;
		border-radius: 4px;
	}
	#pg_home #page04 #frame .home {
		top: 747px;
		width: 30px;
		height: 30px;
		border-radius: 25px;
	}
	#pg_home #page04 #frame .mainarea {
		top: 34px;
		left: 50%;
		transform: translateX(-50%);
		width: 462px;
		height: 702px;
	}
}
@media (min-width: 768px) {
	#pg_home #page04 #frame {
		width: 580px;
		height: 860px;
	}
	#pg_home #page04 #frame .top,
	#pg_home #page04 #frame .bottom {
		width: 580px;
		height: 70px;
	}
	#pg_home #page04 #frame .top {
		top: 0;
		left: 0;
		border-top-left-radius: 40px;
		border-top-right-radius: 40px;
	}
	#pg_home #page04 #frame .left,
	#pg_home #page04 #frame .right {
		top: 70px;
		width: 15px;
		height: 720px;
	}
	#pg_home #page04 #frame .left {
		left: 0;
	}
	#pg_home #page04 #frame .right {
		left: 565px;
	}
	#pg_home #page04 #frame .bottom {
		top: 790px;
		left: 0;
		border-bottom-left-radius: 40px;
		border-bottom-right-radius: 40px;
	}
	#pg_home #page04 #frame .camera {
		top: 30px;
		left: 50%;
		width: 10px;
		height: 10px;
		transform: translateX(-50%);
		border-radius: 5px;
	}
	#pg_home #page04 #frame .home {
		top: 805px;
		left: 50%;
		width: 40px;
		height: 40px;
		transform: translateX(-50%);
		border-radius: 20px;
	}
	#pg_home #page04 #frame .mainarea {
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		width: 552px;
		height: 722px;
	}
}
@media (min-width: 992px) {
	#pg_home #page04 .adjust {
		margin-left: 0;
	}
	#pg_home #page04 #frame {
		width: 860px;
		height: 580px;
	}
	#pg_home #page04 #frame .top,
	#pg_home #page04 #frame .bottom {
		border-radius: 0;
		width: 720px;
		height: 15px;
	}
	#pg_home #page04 #frame .top {
		top: 0;
		left: 70px;
	}
	#pg_home #page04 #frame .left,
	#pg_home #page04 #frame .right {
		width: 70px;
		height: 580px;
	}
	#pg_home #page04 #frame .left {
		top: 0;
		left: 0;
		border-top-left-radius: 40px;
		border-bottom-left-radius: 40px;
	}
	#pg_home #page04 #frame .right {
		top: 0;
		left: 790px;
		border-top-right-radius: 40px;
		border-bottom-right-radius: 40px;
	}
	#pg_home #page04 #frame .bottom {
		top: 565px;
		left: 70px;
	}
	#pg_home #page04 #frame .camera {
		top: 50%;
		left: 29px;
		width: 12px;
		height: 12px;
		transform: translateX(none);
		transform: translateY(-50%);
		border-radius: 6px;
	}
	#pg_home #page04 #frame .home {
		top: 50%;
		left: 805px;
		width: 40px;
		height: 40px;
		transform: translateX(none);
		transform: translateY(-50%);
		border-radius: 20px;
	}
	#pg_home #page04 #frame .f_shadow {
		border-top-left-radius: 40px;
		border-top-right-radius: 40px;
	}
	#pg_home #page04 #frame .mainarea {
		width: 722px;
		height: 552px;
	}
}

/* .mainarea内 */
#pg_home #page04 .mainarea .outer {
	position: relative;
	width: 100%;
	height: 100%;
}
#pg_home #page04 .mainarea .none {
	display: none;
}
#pg_home #page04 .mainarea .start {
	position: absolute;
	cursor: pointer;
	width: 100px;
	height: 100px;
	bottom: 10%;
	left: 50%;
	transform: translateX(-50%);
	font-size: 30px;
	line-height: 92px;
	letter-spacing: -0.03em;
	text-align: center;
	color: #000000;
	background: #FFFFFF;
	border: 4px solid #FFFFFF;
	z-index: 10;
	-webkit-border-radius: 64px;
		 -moz-border-radius: 64px;
					border-radius: 64px;
	-webkit-transition: .4s all ease;
			-ms-transition: .4s all ease;
					transition: .4s all ease;
}
#pg_home #page04 .mainarea .start:hover {
	bottom: 11%;
	border: 4px solid #dddddd;
	box-shadow: 0 20px 20px -5px rgba(0,0,0,0.25);
}
#pg_home #page04 .mainarea .start:after,
#pg_home #page04 .mainarea .start:before {
	content: "";
	position: absolute;
	top: -4px;
	left: -4px;
	width: 100px;
	height: 100px;
	border: 2px solid rgba(255,255,255,0.5);
	-webkit-border-radius: 64px;
		 -moz-border-radius: 64px;
					border-radius: 64px;
	z-index: 3;
}
#pg_home #page04 .mainarea .start:after {
	animation: startAfter 2.5s infinite;
}
#pg_home #page04 .mainarea .start:before {
	animation: startBefore 2.5s infinite;
}
@keyframes startAfter {
	0% {
		transform: scale(0.5,0.5);
		opacity: 0;
	}
	40% {
		opacity: 1;
	}
	80% {
		transform: scale(1.25,1.25);
		opacity: 0;
	}
	100% {
		opacity: 0;
	}
}
@keyframes startBefore {
	0% {
		transform: scale(0.5,0.5);
		opacity: 0;
	}
	25% {
		opacity: 1;
	}
	60% {
		transform: scale(1.25,1.25);
		opacity: 0;
	}
	100% {
		opacity: 0;
	}
}
#pg_home #page04 .mainarea .logo {
	position: absolute;
	top: 15%;
	left: 50%;
	transform: translateX(-50%);
}
#pg_home #page04 .mainarea .logo2 {
	position: absolute;
	top: 8%;
	left: 50%;
	transform: translateX(-50%);
}
#pg_home #page04 .mainarea .logo img,
#pg_home #page04 .mainarea .logo2 img {
	width: 220px;
}
#pg_home #page04 .mainarea .logo h2,
#pg_home #page04 .mainarea .logo2 h2 {
	position: absolute;
	right: -10px;
	bottom: -10px;
	font-size: 30px;
	line-height: 1em;
	white-space: nowrap;
	text-shadow: 2px 0px #fff,  -2px 0px #fff,
							 0px -2px #fff, 0px 2px #fff,
							 2px 2px #fff, -2px 2px #fff,
							 2px -2px #fff, -2px -2px #fff,
							 1px 2px #fff,  -1px 2px #fff,
							 1px -2px #fff, -1px -2px #fff,
							 2px 1px #fff,  -2px 1px #fff,
							 2px -1px #fff, -2px -1px #fff,
							 0px 0px 3px #ffffff,
							 0px 0px 3px #ffffff,
							 0px 0px 3px #ffffff,
							 0px 0px 3px #ffffff,
							 0px 0px 3px #ffffff,
							 0px 0px 3px #ffffff,
							 0px 0px 3px #ffffff,
							 0px 0px 3px #ffffff,
							 0px 0px 3px #ffffff,
							 0px 0px 3px #ffffff;
	-webkit-transform: rotate(-7deg);
					transform: rotate(-7deg);
}
#pg_home #page04 .mainarea #start p {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 80%;
}
@media (min-width: 576px) {
	#pg_home #page04 .mainarea .start {
		width: 120px;
		height: 120px;
		bottom: 15%;
		font-size: 36px;
		line-height: 112px;
	}
	#pg_home #page04 .mainarea .start:after,
	#pg_home #page04 .mainarea .start:before {
		width: 120px;
		height: 120px;
	}
	#pg_home #page04 .mainarea .start:hover {
		bottom: 16%;
	}
	#pg_home #page04 .mainarea .logo {
		top: 20%;
	}
	#pg_home #page04 .mainarea .logo img,
	#pg_home #page04 .mainarea .logo2 img {
		width: 320px;
	}
	#pg_home #page04 .mainarea .logo h2,
	#pg_home #page04 .mainarea .logo2 h2 {
		right: -20px;
		font-size: 40px;
		line-height: 1em;
	}
}
#pg_home #page04 .mainarea .qa_title {
	position: absolute;
	top: 30px;
	left: 50%;
	width: 1.6em;
	height: 1.6em;
	transform: translateX(-50%);
	background: #FFFFFF;
	font-size: 60px;
	line-height: 1.5em;
	text-align: center;
	-webkit-border-radius: 2em;
		 -moz-border-radius: 2em;
					border-radius: 2em;
}
#pg_home #page04 .mainarea .qa_title span {
	font-size: 80%;
}
@media (min-width: 576px) {
	#pg_home #page04 .mainarea .qa_title {
		position: absolute;
		top: 50px;
		left: 50%;
		width: 1.6em;
		height: 1.6em;
		transform: translateX(-50%);
		background: #FFFFFF;
		font-size: 80px;
		line-height: 1.5em;
		letter-spacing: -0.03em;
		text-align: center;
		-webkit-border-radius: 2em;
			 -moz-border-radius: 2em;
						border-radius: 2em;
	}
}
#pg_home #page04 .mainarea ul {
	position: absolute;
	width: 90%;
	bottom: 25px;
	left: 50%;
	transform: translateX(-50%);
}
#pg_home #page04 .mainarea ul.ans {
	bottom: 15px;
}
#pg_home #page04 .mainarea ul > li {
	position: relative;
	width: 100%;
	text-align: center;
}
#pg_home #page04 .mainarea ul > li:first-child {
	margin-bottom: 1em;
}
#pg_home #page04 .mainarea ul > li a,
#pg_home #page04 .mainarea ul > li div {
	cursor: pointer;
	display: block;
	width: 80%;
	color: #000000;
	background: #FFFFFF;
	font-size: 20px;
	line-height: 1em;
	padding: 5px 0;
	margin: 0 auto;
	border: 2px solid #ffffff;
	box-shadow: 0 2px 0px -5px #000000;
	-webkit-border-radius: 40px;
		 -moz-border-radius: 40px;
					border-radius: 40px;
	-webkit-transition: .4s all ease;
			-ms-transition: .4s all ease;
					transition: .4s all ease;
}
#pg_home #page04 .mainarea ul > li a:hover,
#pg_home #page04 .mainarea ul > li div:hover {
	bottom: 5px;
	border: 2px solid #dddddd;
	box-shadow: 0 3px 10px -5px #000000;
}
#pg_home #page04 .mainarea ul > li a:link,
#pg_home #page04 .mainarea ul > li a:visited,
#pg_home #page04 .mainarea ul > li a:active,
#pg_home #page04 .mainarea ul > li a:hover {
	text-decoration: none;
}
@media (min-width: 576px) {
	#pg_home #page04 .mainarea ul,
	#pg_home #page04 .mainarea ul.ans {
		bottom: 40px;
	}
	#pg_home #page04 .mainarea ul > li a,
	#pg_home #page04 .mainarea ul > li div {
		font-size: 28px;
		line-height: 1em;
		padding: 8px 0;
	}
}
@media (min-width: 992px) {
	#pg_home #page04 .mainarea ul {
		display: table;
	}
	#pg_home #page04 .mainarea ul > li {
		display: table-cell;
		width: 50%;
	}
	#pg_home #page04 .mainarea ul > li:first-child {
		margin-bottom: 0;
	}
	#pg_home #page04 .mainarea ul > li a,
	#pg_home #page04 .mainarea ul > li div {
		position: absolute;
		bottom: 0;
		left: 50%;
		transform: translateX(-50%);
		border: 3px solid #ffffff;
		box-shadow: 0 3px 0px -5px #000000;
	}
	#pg_home #page04 .mainarea ul > li a:hover,
	#pg_home #page04 .mainarea ul > li div:hover {
		border: 3px solid #dddddd;
		box-shadow: 0 3px 10px -5px #000000;
	}
	#pg_home #page04 .mainarea ul.ans {
		width: 50%;
	}
	#pg_home #page04 .mainarea ul.ans a {
		font-size: 24px;
	}
}
#pg_home #page04 .mainarea h4 {
	position: absolute;
	width: 80%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 1.75em;
	line-height: 1.25em;
	text-align: center;
}
@media (min-width: 576px) {
	#pg_home #page04 .mainarea h4 {
		font-size: 2em;
		line-height: 1.25em;
	}
}
@media (min-width: 768px) {
	#pg_home #page04 .mainarea h4 {
		font-size: 2.25em;
		line-height: 1.25em;
	}
}
@media (min-width: 992px) {
	#pg_home #page04 .mainarea h4 {
		font-size: 2.5em;
		line-height: 1.25em;
	}
}
#pg_home #page04 .mainarea .inner {
	position: absolute;
	width: 85%;
	top: 150px;
	left: 50%;
	transform: translateX(-50%);
}
#pg_home #page04 .mainarea .inner ol {
	width: 100%;
	letter-spacing: -.4em;
	margin-top: 10px;
}
#pg_home #page04 .mainarea .inner ol > li {
	display: inline-block;
	letter-spacing: normal;
	width: 49%;
	margin-bottom: 2%;
	text-align: center;
}
#pg_home #page04 .mainarea .inner ol > li:nth-child(1),
#pg_home #page04 .mainarea .inner ol > li:nth-child(3) {
	margin-right: 2%;
}
#pg_home #page04 .mainarea .inner h6 {
	width: 100%;
	padding: 0.5em;
	background: rgba(255,255,255,0.85);
	color: #000000;
	font-size: 10px;
	line-height: 1em;
	font-weight: 700;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
}
#pg_home #page04 .mainarea .inner .icon {
	width: 100%;
	background: rgba(255,255,255,0.7);
	margin-top: 1px;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
}
#pg_home #page04 .mainarea .inner .icon img {
	height: 20px;
	margin: 10px 0;
}
@media (min-width: 576px) {
	#pg_home #page04 .mainarea .inner h6 {
		font-size: 12px;
	}
	#pg_home #page04 .mainarea .inner {
		width: 80%;
		top: 230px;
	}
	#pg_home #page04 .mainarea .inner .icon {
		padding: 0.75em;
	}
	#pg_home #page04 .mainarea .inner .icon img {
		height: 30px;
		margin: 5px 0;
	}
}
@media (min-width: 768px) {
	#pg_home #page04 .mainarea .inner {
		top: 250px;
	}
}
@media (min-width: 992px) {
	#pg_home #page04 .mainarea .inner {
		top: 220px;
	}
	#pg_home #page04 .mainarea .inner ol {
		text-align: center;
	}
	#pg_home #page04 .mainarea .inner ol > li {
		width: 23.5%;
	}
	#pg_home #page04 .mainarea .inner ol > li:nth-child(2) {
		margin-right: 2%;
	}
}





/* ----- #page05 ----- */
#pg_home #page05 {
}





/* ----- #page06 ----- */
#pg_home #page06 {
}






/* ――――――――――――――――――――――――――

モーダル
./
#pg_simulation

―――――――――――――――――――――――――― */
#pg_simulation {
	color: #000000;
}
#pg_simulation .container {
	width: 94%;
}

#pg_simulation .logo {
	position: relative;
	width: 200px;
	margin-left: auto;
	margin-right: auto;
}
#pg_simulation .logo img {
	width: 200px;
}
#pg_simulation .logo h2 {
	position: absolute;
	right: -10px;
	bottom: -10px;
	font-size: 28px;
	line-height: 1em;
	white-space: nowrap;
	text-shadow: 2px 0px #fff,  -2px 0px #fff,
							 0px -2px #fff, 0px 2px #fff,
							 2px 2px #fff, -2px 2px #fff,
							 2px -2px #fff, -2px -2px #fff,
							 1px 2px #fff,  -1px 2px #fff,
							 1px -2px #fff, -1px -2px #fff,
							 2px 1px #fff,  -2px 1px #fff,
							 2px -1px #fff, -2px -1px #fff,
							 0px 0px 3px #ffffff,
							 0px 0px 3px #ffffff,
							 0px 0px 3px #ffffff,
							 0px 0px 3px #ffffff,
							 0px 0px 3px #ffffff,
							 0px 0px 3px #ffffff,
							 0px 0px 3px #ffffff,
							 0px 0px 3px #ffffff,
							 0px 0px 3px #ffffff,
							 0px 0px 3px #ffffff;
	-webkit-transform: rotate(-7deg);
					transform: rotate(-7deg);
}
@media (min-width: 576px) {
	#pg_simulation .logo {
		width: 320px;
	}
	#pg_simulation .logo img {
		width: 320px;
	}
	#pg_simulation .logo h2 {
		right: -20px;
		font-size: 40px;
		line-height: 1em;
	}
}

#pg_simulation ol {
	width: 100%;
	letter-spacing: -.4em;
	margin-top: 10px;
}
#pg_simulation ol > li {
	display: inline-block;
	letter-spacing: normal;
	width: 49%;
	margin-bottom: 2%;
	text-align: center;
}
#pg_simulation ol > li:nth-child(1),
#pg_simulation ol > li:nth-child(3) {
	margin-right: 2%;
}
#pg_simulation ol > li a:link,
#pg_simulation ol > li a:visited,
#pg_simulation ol > li a:active,
#pg_simulation ol > li a:hover {
	text-decoration: none;
}
#pg_simulation ol > li a:hover {
	opacity: 0.8;
}
#pg_simulation h6 {
	width: 100%;
	padding: 0.5em;
	background: rgba(0,0,0,0.2);
	color: #000000;
	font-size: 10px;
	line-height: 1em;
	font-weight: 700;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
}
#pg_simulation .icon {
	width: 100%;
	background: rgba(0,0,0,0.08);
	margin-top: 1px;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
}
#pg_simulation li.item_01 h6 {
	background: rgba(249,167,67,1);
	color: #ffffff;
}
#pg_simulation li.item_01 .icon {
	background: rgba(249,167,67,0.7);
}
#pg_simulation li.item_02 h6 {
	background: rgba(222,97,137,1);
	color: #ffffff;
}
#pg_simulation li.item_02 .icon {
	background: rgba(222,97,137,0.7);
}
#pg_simulation li.item_03 h6 {
	background: rgba(40,125,192,1);
	color: #ffffff;
}
#pg_simulation li.item_03 .icon {
	background: rgba(40,125,192,0.7);
}
#pg_simulation li.item_04 h6 {
	background: rgba(41,167,163,1);
	color: #ffffff;
}
#pg_simulation li.item_04 .icon {
	background: rgba(41,167,163,0.7);
}
#pg_simulation li.item_05 h6 {
	background: rgba(163,203,71,1);
	color: #ffffff;
}
#pg_simulation li.item_05 .icon {
	background: rgba(163,203,71,0.7);
}
#pg_simulation .icon img {
	height: 25px;
	margin: 15px 0;
}
@media (min-width: 576px) {
	#pg_simulation ol {
		text-align: center;
	}
	#pg_simulation ol > li {
		width: 24.25%;
		margin-bottom: 1%;
	}
	#pg_simulation ol > li:nth-child(1),
	#pg_simulation ol > li:nth-child(2),
	#pg_simulation ol > li:nth-child(3) {
		margin-right: 1%;
	}
	#pg_simulation h6 {
		font-size: 12px;
	}
	#pg_simulation .icon {
		padding: 0.75em;
	}
	#pg_simulation .icon img {
		height: 25px;
		margin: 5px 0;
	}
}

#pg_simulation .item_table.item_01 > dl > dt,
#pg_simulation .item_table.item_01 > dl > dd {
	background: rgba(249,167,67,0.15);
}
@media (max-width:767px){
	#pg_simulation .item_table.item_01 > dl > dt {
		background: rgba(249,167,67,0.3);
		margin-bottom: 1px;
	}
}
#pg_simulation .item_table.item_02 > dl > dt,
#pg_simulation .item_table.item_02 > dl > dd {
	background: rgba(222,97,137,0.15);
}
@media (max-width:767px){
	#pg_simulation .item_table.item_02 > dl > dt {
		background: rgba(222,97,137,0.3);
		margin-bottom: 1px;
	}
}
#pg_simulation .item_table.item_03 > dl > dt,
#pg_simulation .item_table.item_03 > dl > dd {
	background: rgba(40,125,192,0.15);
}
@media (max-width:767px){
	#pg_simulation .item_table.item_03 > dl > dt {
		background: rgba(40,125,192,0.3);
		margin-bottom: 1px;
	}
}
#pg_simulation .item_table.item_04 > dl > dt,
#pg_simulation .item_table.item_04 > dl > dd {
	background: rgba(41,167,163,0.15);
}
@media (max-width:767px){
	#pg_simulation .item_table.item_04 > dl > dt {
		background: rgba(41,167,163,0.3);
		margin-bottom: 1px;
	}
}
#pg_simulation .item_table.item_05 > dl > dt,
#pg_simulation .item_table.item_05 > dl > dd {
	background: rgba(163,203,71,0.15);
}
@media (max-width:767px){
	#pg_simulation .item_table.item_05 > dl > dt {
		background: rgba(163,203,71,0.3);
		margin-bottom: 1px;
	}
}
#pg_simulation .sim_title {
	text-align: center;
	padding: 0.5em 0;
	color: #FFFFFF;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
}
#pg_simulation .note {
	border-radius: 10px;
	border: 5px solid #f0f0f0;
	padding: 1em;
}
@media (min-width:768px){
	#pg_simulation .note {
		width: 90%;
		margin-left: auto;
		margin-right: auto;
		padding: 1.25em;
	}
}
@media (min-width:992px){
	#pg_simulation .note {
		width: 80%;
		padding: 1.5em;
	}
}

#pg_simulation table.formTable {
	width: 90%;
	margin: 0 auto;
	border-collapse: collapse;
}
#pg_simulation table.formTable td,
#pg_simulation table.formTable th {
	padding: 1em 0.75em;
	border: 1px solid #dddddd;
}
#pg_simulation table.formTable th {
	width: 20%;
	font-weight: bold;
	background: #f0f0f0;
	white-space: nowrap;
	text-align: center;
}
#pg_simulation p.error_messe{
	margin:5px 0;
	color:red;
}

#pg_simulation .close_btn {
	cursor: pointer;
	display: inline;
	padding: 0.5em 3em;
	border-radius: 30px;
	-webkit-transition: .2s all ease;
			-ms-transition: .2s all ease;
					transition: .2s all ease;
}



@media (min-width: 576px) {
}
@media (min-width: 768px) {
}
@media (min-width: 992px) {
}
@media (min-width: 1200px) {
}
