@charset "UTF-8";
/* CSS Document */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
    vertical-align:baseline;
}
body {
    line-height:1;
    -webkit-text-size-adjust: 100%;
}
ol, ul {
    list-style: none;
}
a img {
	border: none;
}

a, a:link, a:visited{
	text-decoration:none;
	color:#fff;
}
a:hover{
	opacity: 0.7;
}
.cl{
	clear:both;
}
/* iOSでのデフォルトスタイルをリセット */
input[type="submit"],
input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus {
  outline-offset: -2px;
}

body{
	position: relative;
}
.bg_img{
	position: fixed;
	top:0;
	right: 0;
	bottom: 0;
	left: 0;
}
.bg_img div{
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	height: 100vh;
	margin: 0;
	background-attachment: fixed;
	display: flex;
}
.bg_img div.img01{
	background-image: url("../images/img01.jpg")
}
.bg_img div.img02{
	background-image: url("../images/img02.jpg")
}
.bg_img div.img03{
	background-image: url("../images/img03.jpg")
}
.bg_img div.img04{
	background-image: url("../images/img04.jpg")
}
.bg_img div.img05{
	background-image: url("../images/img05.jpg")
}
.bg_img div.img06{
	background-image: url("../images/img06.jpg")
}

.contents_area{
	width: 1000px;
	margin: auto;
	overflow: hidden;
}
@media screen and (max-width:1100px){
	.contents_area{
		width: 90%;
	}
}
/*--  ヘッダー　--*/
/*--  メインエリア  */
main{
	position: fixed;
	top:0;
	width: 100%;
	z-index: 999;
	text-align: center;
}
.logo{
	margin: 2%;
}
.contents{
	background-color: rgba(255,255,255,0.7);
	width: 1000px;
	margin: auto;
	padding: 1%;
	font-size: 150%;
	border-radius: 10px;
	box-shadow: 0 0 20px #fff;
}
@media screen and (max-width:1100px){
	.logo{
		width: 60%;
	}
	.contents{
		width: 90%;
	}
}
/*--  フッター  --*/
footer{
	position: fixed;
	width: 100%;
	bottom: 0;
	background-color: rgba(0,0,0,0.5);
	color: #fff;
	box-shadow: 0 0 2px 1px #000;
	padding: 1%;
	text-align: center;
	font-size: 120%;
}
.footer_box{
	text-align: center;
	margin: 1% 0 2%;
}