@charset "utf-8";

/* ------ FontAwesome ------ */

@font-face {
	font-family: 'FontAwesome';
	src: url('font/FontAwesome/fontawesome-webfont.eot?v=4.0.3');
	src: url('font/FontAwesome/fontawesome-webfont.eot?#iefix&v=4.0.3') format('embedded-opentype'), url('font/FontAwesome/fontawesome-webfont.woff?v=4.0.3') format('woff'), url('font/FontAwesome/fontawesome-webfont.ttf?v=4.0.3') format('truetype'), url('font/FontAwesome/fontawesome-webfont.svg?v=4.0.3#fontawesomeregular') format('svg');
	font-weight: normal;
	font-style: normal
}

/* ------ common ------ */

* {
	margin: 0;
	padding: 0;
	word-break: normal;
	line-break: strict;
	outline: none;
	box-sizing: border-box
}

html {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 62.5%;
	font-style: normal;
	line-height: 1.6;
	font-feature-settings: "palt";
	-webkit-overflow-scrolling: touch
}
 
body {                                                                                                                    
	height: 100%; 
	color: #000;
	font-size: 1.2rem;
	font-weight: 500;
	background: #fff;
	overflow-x: hidden;
	overflow-y: scroll;
    -webkit-text-size-adjust: 100%
}

h1, h2, h3, h4, h5, h6 {
	line-height: 1.0
}

img { max-width: 100% }
ol, ul, li {
  list-style: none
}

table {
	border-spacing: 0;
	border-collapse: collapse
}

form label { cursor: pointer }
button,
textarea,
select,
input {
	border-radius: 0;
	-webkit-appearance: none
}

a {
	color: #000;
	text-decoration: none;
	transition: all 0.3s ease-in-out
}

a:hover { transition: all 0.3s ease-in-out }
a:focus { outline: none }
a,
input[type=radio],
input[type=checkbox],
input[type=submit],
button, select {
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

a img { border: none }
.cf:after {
	content: '';
	display: block;
	clear: both
}

::-moz-selection {
	color: #fff;
	background: #000
}

::selection {
	color: #fff;
	background: #000
}

::-webkit-input-placeholder { color: #999 }
::-moz-placeholder {
	color: #999;
	opacity: 1
}

:-ms-input-placeholder { color: #999 }
.red { color: #f00 }
.bold { font-weight: 600 }


/* ------ header ------ */

header h1 {
    color: #fff;
    font-size: 1.3rem;
    text-align: center;
    padding: 10px;
    background: #000
}


/* ------ main wrap ------ */

.mainWrap {
	width: 760px;
	height: 672px;
	margin: 20px auto 0;
	background: url(../img/index.jpg) no-repeat;
	background-size: cover;
	position: relative
}

.mainWrap .btnWrap p:nth-child(2) { display: none }
.mainWrap .btnWrap ul {
	font-size: 0;
	margin-top: 10px
}

.mainWrap .btnWrap li {
	width: 151px;
	vertical-align: top;
	display: inline-block
}

.mainWrap .btnWrap li + li { margin-left: 20px }
.mainWrap .btnWrap ul + p {
	padding: 10px 0;
	margin-top: 10px;
	border-top: 1px dashed #c1c1c1;
	border-bottom: 1px dashed #c1c1c1
}

@media screen and (min-width: 769px) {
	.mainWrap .txtWrap {
		color: #fff;
		padding: 10px;
		background: rgba(0,0,0,0.4);
		position: absolute;
		top: 10px;
		left: 232px
	}
	
	.mainWrap .btnWrap {
		text-align: center;
		position: absolute;
		right: 30px;
		bottom: 40px;
		text-shadow: 1px 1px 0px #fff;
		display: inline-block
	}
}

@media screen and (max-width: 768px) {
	.mainWrap {
		width: 100%;
		height: auto;
		margin-top: 10px;
		background: none
	}

	.mainWrap .txtWrap {
		color: #fff;
		padding: 10px 4%;
		margin-top: 8px;
		background: #999
	}
	
	.mainWrap .btnWrap {
		text-align: center;
		padding: 0 4%;
		margin-top: 20px
	}

	.mainWrap .btnWrap ul + p { margin-top: 20px }	
}


/* ------ footer ------ */

footer { margin-top: 20px }
footer nav {
	text-align: center;
	padding: 20px;
	border-top: 1px solid #c1c1c1;
	border-bottom: 1px solid #c1c1c1;
	background: #efefef
}

footer nav li {
	position: relative;
	display: inline-block
}

footer nav li::before { content: "・" }
footer nav a:hover {
	color: #f00;
	text-decoration: underline
}

footer .copyright {
	text-align: center;
	margin: 10px auto
}

footer .copyright small { font-size: 1.2rem }

@media screen and (min-width: 769px) {
	footer .copyright small {
		width: 974px;
		height: 40px;
		line-height: 40px;
		margin: 0 auto;
		background: url(../img/copy.jpg) no-repeat;
		display: block
	}
}

@media screen and (max-width: 768px) {
	footer nav { padding: 20px 4% }
	footer .copyright { margin: 20px auto }
}


/* PC・SP SWICH */

.spOnly { display: none !important }

@media screen and (max-width: 768px) {
	.pcOnly { display: none !important }
	.spOnly { display: block !important }
}