@charset "utf-8";

/*------------------------------------------------------------
メインビジュアル
------------------------------------------------------------*/
.template0001_01{
    width: 100%;
    height: auto;
    position: relative;
    margin: 0;
    overflow: hidden;
}

.template0001_01 > div {
    width: 100%;
    height: 100vh;
    position: relative;
    background: #000;
}

.template0001_01 .child {
    position: absolute;
    top: 0;
    left: 0;
	width: 100%;
    height: 100%;
}

.template0001_01 .overlay {
	display: block;
	width: 100%;
	height: 100%;
	z-index: 2;
	position: absolute;
	left: 0px;
	top: 0px;
	background: url(../images/dot.png);
	opacity: .5;
}

/*------------------------------
テキスト
------------------------------*/
.template0001_01 .content {
    position: absolute;
    text-align: center;
    z-index: 5;
    margin: -30px auto auto;
    left: 0;
    right: 0;
    top: 50%;
    transform: translate3d(0, -50%, 0);
}

.template0001_01 .child:not(.zoom) .content {
    display: none;
}

.template0001_01 .title,
.template0001_01 .title_s {
    padding: 0 15px;
    color: #fff;
}

.template0001_01 .title {
	font-size: 50px;
}

.template0001_01 .title_s {
	font-size: 30px;
}

@media screen and (max-width:767px){
	.template0001_01 .title {
		font-size: 34px;
	}

	.template0001_01 .title_s {
		font-size: 20px;
	}
}

/*------------------------------
画像
------------------------------*/
.template0001_01 img {
    position: absolute;
    width: auto;
    height: auto;
    min-width: 100%;
    min-height: 100%;
    max-width: inherit;
    opacity: 0;
}

.template0001_01 .child.zoom img {
    animation: zoom_opa 5s ease forwards;
}

@keyframes zoom_opa {
	0%{
		transform: scale(1);
		opacity: 0
	}
	100%{
		transform: scale(1.5);
		opacity: 1
	}
}

/*------------------------------
スクロールボタン
------------------------------*/
.template0001_01 .mainv_arrow{
	display:block;
	position: absolute;
	bottom: 120px;
    left: 0;
    right: 0;
    margin:auto;
    width: 100px;
    text-align: center;
	color:#0f5494;
    font-weight: bold;
	z-index:100;
}

.template0001_01 .mainv_arrow:after{
	display: block;
    content: '';
    position: absolute;
    margin-left:-10px;
    left: 50%;
    width:20px;
    height:20px;
    border-top: 3px solid #0f5494;
    border-right: 3px solid #0f5494;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
}

@media (min-width: 768px) {
    .template0001_01 .child img {
        top: 0;
        left: 0;
        transform-origin: 80% 50%;
    }

	.template0001_01 .mainv_arrow:hover{
		opacity: 0.8;
	}
}

/*スクロールボタンのジャンプ先*/
@media (min-width:1001px) {
	.template0001_01_jump{
		padding-top: 70px;
		margin-top: -70px;
	}
}


