/*
    layout
*/
html,body{
    margin: 0;
    padding: 0;
}
body {
	background: url("../images/bg3.jpg");
	background-position: center center;
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-size: cover;
	color: #333;
	letter-spacing: 0.1em;
    overflow-x: hidden;
    font-family: helvetica, arial, 'hiragino kaku gothic pro', meiryo, 'ms pgothic', sans-serif;
}

@media only screen and (min-width:768px){
    body{
        overflow: hidden;
    }
}
.wrapper{
    display: none;
}

main{
    max-width: 830px;
	margin:40px auto;
	text-align: center;
	padding: 0 30px;
    box-sizing: border-box;
    display: block;
}
@media only screen and (max-width:768px){
	main{
		margin:20px auto;
        height: 530px;
	}
}

@media only screen and (max-height:750px) and (min-width:768px){
    main{
        margin:10px auto;
    }
}
.main__ttl{
    text-align: center;
}
.fish{
    float: left;
    opacity: 0;
    margin-left: 30px;
    position: relative;
    z-index: 1;
}

.logo{
    float: left;
    margin-left: -30px;
    position: relative;
    z-index: 2;
}

@media only screen and (max-height:750px) and (min-width:768px){
    .fish{
        width: 100px;
        margin: 0 0 0 130px;
    }
    .logo{
        width: 400px;
        margin: 0 0 0 -20px;
    }
}

@media only screen and (max-width:768px){
    .fish{
        margin-top: 5px;
        margin-left: 10px;
        width: 22%;
    }
    .logo{
        width: 74%;
        margin-top: 10px;
        margin-left: -10px;
    }
}

.main__copy{
	border-top:1px solid #111;
	border-bottom: 1px solid #111;
	padding: 6px 15px;
	font-size: 26px;
	font-weight: bold;
}

@media only screen and (max-width:768px){
	.main__copy{
		font-size: 17px;
        padding: 6px 8px;
	}
}

@media only screen and (max-height:750px){
    .main__copy{
        margin: 20px 0;
        font-size: 22px;
    }
}

.main__desc{
	margin: 10px auto 35px auto;
    padding: 0 20px;
    font-size: 20px;
    letter-spacing: 0;
    line-height: 34px;
}


@media only screen and (max-height:750px) and (min-width:768px){
    .main__desc{
        margin: 4px auto 20px auto;
        line-height: 26px;
        font-size: 17px;
    }
}



@media only screen and (max-width:768px){
	.main__desc{
		margin: 0px auto 20px auto;
        font-size: 16px;
        line-height: 28px;
	}
}

.main__btn{
	 text-align: center;
	 margin: 0 auto;
}

@media only screen and (min-width:768px){
    footer{
    	
    	display: block;
    	position: absolute;
    	bottom: 0;
    }
}

footer{
    width: 100%;
    text-align: center;
}


.footer__info{
	background: #111;
	width: 100%;
	margin: 0;
	color: #FFF;
	padding: 15px 0;
	background: rgba(0,0,0,0.5);
}
.footer__info img{
    width: 23%;
}
@media only screen and (max-width:768px){
    .footer__info img{
        width: 80%;
    }
}


.footer__copy{
	background-color: #FFF;
	font-size: 13px;
	padding: 7px 10px;
	margin: 0;
    color: #555;
}

@media only screen and (max-width:768px){
    .footer__copy{
        font-size: 10px;
    }
}

/*
	utils
*/
.main__btn {
    display: block;
    max-width: 200px;
    text-align: center;
}
.main__btn a {
    display: block;
    position: relative;
    z-index: 2;
    overflow: hidden;
    width: 100%;
    border: 1px solid #FFF;
    border-radius: 2px;
    background-color: #2828A0;
    color: #ffffff;
    padding: 13px 0px;
    text-align: center;
    text-decoration: none;
    transition: .25s linear;
    -webkit-transition: .25s linear;
    -moz-transition: .25s linear;
}
@media only screen and (max-height:750px){
    .main__btn a {
        padding: 11px 0px;
    }
}

@media only screen and (max-width:767px){
    .main__btn{
        width: 150px;
        padding: 5px 0;
    }

    .main__btn a{
        padding: 5px 0;
    }
}

.main__btn a:hover {
    color: #2828A0;
    background-color: #FFF;
    border-color: #2828A0;
}
.main__btn a:before {
    display: block;
    position: absolute;
    z-index: -1;
    left: -30%;
    top: -50%;
    content: "";
    width: 30px;
    height: 100px;
    transform: rotate(30deg);
    -webkit-transform: rotate(30deg);
    -moz-transform: rotate(30deg);
    background-image: linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 50%,rgba(255,255,255,0) 100%);
    background-image: -webkit-gradient(linear, left bottom, right bottom, color-stop(0%,rgba(255,255,255,0)), color-stop(50%,rgba(255,255,255,1)),color-stop(100%,rgba(255,255,255,0)));
    background-image: -moz-linear-gradient(left, rgba(255,255,255,0) 0%, #ffffff rgba(255,255,255,1),rgba(255,255,255,0) 100%);
    animation: shiny 3.5s infinite linear;
    -webkit-animation: shiny 3.5s infinite linear;
    -moz-animation: shiny 3.5s infinite linear;
}
@keyframes shiny {
    0% {
        left: -30%;
    }
    20% {
        left: 120%;
    }
    100% {
        left: 120%;
    }
}
@-webkit-keyframes shiny {
    0% {
        left: -30%;
    }
    20% {
        left: 120%;
    }
    100% {
        left: 120%;
    }
}
@-moz-keyframes shiny {
    0% {
        left: -30%;
    }
    20% {
        left: 120%;
    }
    100% {
        left: 120%;
    }
}

.font-8{
    font-size: 12px;
}
@media only screen and (max-width:768px){
    br.sp-hide{
        display: none;
    }
}
@media only screen and (min-width:768px){
    br.pc-hide{
        display: none;
    }
}

.clearfix:after{
  content: ".";
  display: block;
  height: 0;
  font-size:0;
  clear: both;
  visibility:hidden;
}


