@charset "utf-8";
/* CSS Document */
body {
	font-size:10px;
	font-family: 'Noto Sans JP',"Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
	background: #EDEFF3;
}
body a { color:#333;}
body a:hover { text-decoration:none;}

.container {
	position: relative;
	background: #EDEFF3;
	-webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
    -moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
	overflow: hidden;
}
.container img { width:100%; height: auto;}

.fadeIn {
	transform: translate3d(0, 50px, 0);
	transition: 1s;
	opacity: 0;
}
.fadeIn.animated {
	transform: translate3d(0, 0, 0);
	opacity: 1;
}

@media (min-width: 641px) {
/* PC用 */
	.container {
		width:750px;
		margin:0 auto;
		overflow: hidden; 
		font-size:20px;
	}	
}
@media (max-width: 640px) {
/* SP用 */
}

/* margin
-------------------------------------------------- */

.mb-s {
	margin-bottom: 2em;
}
.mb-m {
	margin-bottom: 4em;
}
.mb-l {
	margin-bottom: 6em;
}

/* line
-------------------------------------------------- */

.line{
	position: relative;
}
.line:after {
	z-index: 99;
	position: absolute;
	content: " ";
	top: -25px;
	left: 50%;
	width: 1px;
	height: 50px;
	border-left: 1px solid #606060;
}

/* cta
-------------------------------------------------- */

.cta {
	margin-top: -5%;
}
@media (min-width: 641px) {
/* PC用 */
}
@media (max-width: 640px) {
/* SP用 */
}

/* cta-fixed
-------------------------------------------------- */

.cta-fixed {
	position: fixed;
	bottom: 0;
	z-index: 100;
}
@media (min-width: 641px) {
/* PC用 */
	.cta-fixed {width: 750px;}
}
@media (max-width: 640px) {
/* SP用 */
}

/* footer
-------------------------------------------------- */
.footer {
	display: flex;
	justify-content: space-between;
	color: #74787a;
	padding: 2em 4%;
}
.footer .link {
	width: 50%;
	text-align: left;
}
.footer .copy {
	width: 50%;
	text-align: right;
}
.footer p a { color:#74787a;}
@media (min-width: 641px) {
/* PC用 */
}
@media (max-width: 640px) {
/* SP用 */
}

