﻿@charset "UTF-8"; 

html{
	font-size:80%;
	font-family: 'Crimson Text', serif;
	font-family: 'Nanum Myeongjo', serif;
	letter-spacing: 0.4em;
}
/*▼メインタイトル▼*/
.main-title{
	height: 95vh;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}
.top-fv{
	position: relative;
}
.top-fv img{
	width:40vw;
	height:auto;
}

.top-fv h1{
	position: absolute;
	width: 90vw;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
	line-height: 1.6em;
	padding-top: 2.4em;
}
h1 .ps{
	font-size: 3em;
	color: #ffe783;
	text-shadow: 0px 0px 9px #7f6446;
}
h1 .name{
	font-size: 2em;
	color: #ffffff;
	text-shadow: 0px 0px 7px #7f6446;
}
/*▼ワークリスト▼*/
#work-list{
	position: absolute;
	right: 5%;
	bottom: 3%;
	font-size: 1em;
	text-align: right;
	color: #B9B9B9;
	mix-blend-mode: multiply; /*乗算*/
	line-height: 2.6em;
}

/*----------------------------------------------------------------------------*/

/*▼▼▼▼▼▼▼▼▼▼▼ タブレット対応 ▼▼▼▼▼▼▼▼▼▼▼*/ 
@media screen and (min-width:768px) {
	html{
		font-size:90%;
	}
	/*▼▼▼▼ヘッダーMENU：滞在時の色変え、下線▼▼▼▼*/
	nav.globalMenuSp ul li.index a{
		color: #f45531; /* 文字色を指定 */
	}
	nav.globalMenuSp ul li.index {
		border-bottom: 2px solid; /* 線の太さ・実線 */
		border-bottom-color: #f45531; /* 文字色 */
	}
 	/*▼▼▼▼メインタイトル▼▼▼▼*/
	.main-title{
	height: 90vh;
	margin-top: 10vh;
	}
	.top-fv img {
		width: 35vw;
	}
	.top-fv h1{
	line-height: 2.2em;
	padding-top: 4em;
}
	h1 .ps{
	font-size: 4.5em;
	}
	h1 .name{
		font-size: 2.5em;
	}
	/*▼ワークリスト▼*/
	#work-list{
		font-size: 1.6em;
	}
}
		
/*▲ タブレット対応 ▲*/

/*----------------------------------------------------------------------------*/
/*▼ デスクトップPC対応 1100▼*/

@media screen and (min-width:1100px) {
	html{
		font-size:100%; /*●●100％=16px●●*/
		/*▼▼▼▼メインタイトル▼▼▼▼*/
	}
		.top-fv img {
			width: 350px;
		}
	}