@charset "UTF-8";

html {
    width: 100%;
    height: 100%;
    font-size: 62.5%;
}
body {
    position: relative;
    width: 100%;
    height: 100%;
    color: #333;
    font-size: 1.6rem;
    text-align: left;
    font-weight: 300;
    overflow-wrap: break-word;
    font-family: "ヒラギノ角ゴ" , "Hiragino Kaku Gothic Pro" , "メイリオ" , Meiryo , "ＭＳ Ｐゴシック" , sans-serif;
    margin: 0;
	padding: 0;
	background:linear-gradient(45deg, #ddecbd,#c7edff,#edbcff);/*グラデーションを定義*/
	background-size: 200% 200%;/*サイズを大きくひきのばす*/
	animation: bggradient 10s ease infinite;
}

@keyframes bggradient{
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

canvas {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    z-index: -1;
    opacity: 0.3;
}

header {
	width: 100%;
	display: block;
    padding: 20% 0 0;
}
h1 {
	width: 50%;
	display: block;
    margin: 0 auto 10%;
    opacity: 0.3;
}
h2 {
	font-size: 1.1em;
}
h3 {
    text-align: center;
    font-family: "Oswald" , sans-serif;
    font-weight: 300;
    color:rgba(51,51,51,0.5);
    font-size: 200%;
    margin: 1em auto 0;
}

img {
	width: 100%;
}
.content {
	text-align: center;
    margin: 0 5%;
    padding-bottom:8em;
}
.works {
	text-align: left;
    display: inline-block;
    margin: 1em auto 2em;
    padding-left: 1em;
}
.sns {
	list-style: none;
    display: flex;
    column-gap: 2em;
    font-size: 200%;
    align-items: center;
    justify-content: center;
    margin: 0.5em auto 2em;
    padding: 0;
}
.sns li{
	display: block;
}
.sns li a{
	display: block;
    text-decoration: none;
    color:#333;
}
.sns a .instagram{
    transition: all 0.2s;
}
.sns a .twitter{
    transition: all 0.2s;
}
.sns a .facebook{
    transition: all 0.2s;
}
.sns a .instagram:before{
    content: "\f16d";
	font-family: FontAwesome;
}
.sns a .twitter:before{
    content: "\f099";
	font-family: FontAwesome;
}
.sns a .facebook:before{
    content: "\f230";
	font-family: FontAwesome;
}
.sns a .instagram:hover{
    color: #ee028e;
}
.sns a .twitter:hover{
    color: #1d9bf0;
}
.sns a .facebook:hover{
    color:#1877f2;
}
.contact a {
	color: #999;
    text-decoration: none;
    padding: 0.2em;
    border-bottom: solid 1px #999;
    transition: all 0.2s;
}
.contact a:hover {
	color: #333;
    text-decoration: none;
    padding-bottom: 0.2em;
    border-bottom: none;
    background-color: #fff;
}
footer{
    background-color: rgba(0,0,0,0.8);
    position: fixed;
    bottom: 0;
    width: 100%;
}
.copyright {
	font-size: 87.5%;
    color:#fff;
    font-family: "Oswald" , sans-serif;
    font-weight: 400;
    text-align: center;
}

/*---------------------responsive start-------------------------*/

@media only screen and (max-width: 700px) {
h1 {
	width: 70%;
	padding:2em 0 1em;
}
}

