.main, html, * {
    margin: 0;
    padding: 0;
    border: none;
    overflow: hidden;
    font-family: 'Varela', sans-serif;
}

.ttl_block {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

h1 {
    margin: auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 10em;
    height: 1em;
    line-height: 1em;
    position: absolute;
    z-index: 2;
    text-align: center;
    letter-spacing: 0.1em;
    font-size: 70px;
		transition: all 3000ms ease;
		opacity: 0.4;
}

h1 a {
    display: block;
    color: #fff;
    text-decoration: none;
		transition: all 3000ms ease;
}
h1:hover {
	transform: scale(1.2);
	opacity: 0.9;
}

h1:hover a{
	text-shadow: 0 0 20px rgba(0,0,0,0.2);
}
