@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@300;500;700&family=M+PLUS+Rounded+1c:wght@100;400;700&display=swap');

/*---全体---*/
body {
	font-family: 'M PLUS Rounded 1c', sans-serif;
	color: #303030;
}
li {
	list-style: none;
}
a {
	text-decoration: none;
	color: #000;
}

/*---ロード画面---*/
.loadingBody {
	width: 100%;
	height: 100vh;
	background: #fff;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999;
}
.loadingBody_container {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
}
.loadingBody_logo {
	width: 6vw;
	max-width: 120px;
	min-width: 50px;
}
.loadingBody_txt {
	margin-top: max(1vw, 10px);
	font-family: sans-serif;
	font-size: max(1vw, 10px);
	letter-spacing: 0.2em;
	color: #000;
}

/*---ロード時のアニメーション---*/
.loadingBody_txt_deco {
	display: inline-block;
	animation-name: deco;
	animation-duration: 1.2s;
	animation-iteration-count: infinite;
}
.loadingBody_txt_dico.-deray1 {
	animation-delay: 0.1s;
}
.loadingBody_txt_deco.-deray2 {
	animation-delay: 0.2s;
}
.loadingBody_txt_deco.-deray3 {
	animation-delay: 0.3s;
}
.loadingBody_txt_deco.-deray4 {
	animation-delay: 0.4s;
}
.loadingBody_txt_deco.-deray5 {
	animation-delay: 0.5s;
}
.loadingBody_txt_deco.-deray6 {
	animation-delay: 0.6s;
}
.loadingBody_txt_deco.-deray7 {
	animation-delay: 0.7s;
}
.loadingBody_txt_deco.-deray8 {
	animation-delay: 0.8s;
}
.loadingBody_txt_deco.-deray9 {
	animation-delay: 0.9s;
}
@keyframes deco {
	0% {
		transform: translate(0, 0);
	}
	10% {
		transform: translate(0, -0.6em);
	}
	20% {
		transform: translate(0, 0);	
	}
	100% {
		transform: translate(0, 0);	
	}
}

/*---バックグラウンドイメージ---*/
.bodyBgimg::after {
	content: "";
	width: 100%;
	height: 100vh;
	display: block;
	background: url("../images/bg_img.jpg") top right 40% / cover no-repeat;
	position: fixed;
	top: 0;
	left: 0;
	z-index: -999;
	opacity: 0.9;
}

/*---ヘッダー---*/
.header {
	width: 14%;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 3;
}
.header_logo {
	position: absolute;
	top: 5%;
	left: 50%;
	transform: translate(-50%, 0);
}
.header_logo_img {
	width: 3vw;
}
.header_nav {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.header_nav_listItem + .header_nav_listItem {
	margin-top: 2vw;
}
.header_nav_listItem_link {/*hover設定あり*/
	font-size: max(1.3vw, 14px);
	display: inline-block;
	transition: transform 200ms;
}

/*---セクション---*/
.section {
	width: 86%;
	padding: 6vw 5vw 0;
	margin-left: auto;
	box-sizing: border-box;
}
.section_ttl {
	font-family: 'Comfortaa';
	font-size: 4vw;
	font-weight: 700;
	color: #444444;
	text-align: center;
	text-shadow: 0.01em 0.01em 0.01em #fff;
	letter-spacing: 0.01em;
}
.section_flex {
	display: flex;
}
.section_flex_inner {
	padding: 4vw 3vw;
}

/*---セクションボックス内---*/
.section_box {
	width: 100%;
	padding: 3vw;
	border-radius: 1vw;
	background: rgba(255, 255, 255, 0.8);
	box-shadow: 0.5vw 0.5vw 1vw #303030;
	box-sizing: border-box;
}
.section_box.-worksWrap {
	padding: 0;
	display: flex;
	background: rgba(255, 255, 255, 0);
	box-shadow: none;
}
.section_box_ttl {
	margin-bottom: 1.5vw;
	font-size: max(1.4vw, 16px);
}
.section_box_txt {
	font-size: max(1.2vw, 14px);
	line-height: 1.8;
}
.section_box_txt + .section_box_txt {
	margin-top: 2vw;
}
.section_box_txt_defFlex {
	display: flex;
}
.section_box_txt_defFlex + .section_box_txt_defFlex {
	margin-top: 0.5vw;
}
.section_box_txt_defTtl {
	font-weight: 700;
	margin-bottom: 0.3vw;
}
.section_box_txt_defData {
	margin-bottom: 1.5vw;
	font-weight: 400;
}
.section_box_txt_defData:last-of-type {
	margin-bottom: 0;
}

/*---セクション別設定---*/
/*---プロフィールセクション---*/
.section_flex_inner.-leftInner.-profile {
	flex: 1;
}
.section_flex_inner.-rightInner.-profile {
	flex: 1.2;
}
.section_box.-profile {
	padding: 18vw 3vw 3vw;
	position: relative;
}
.section_box_bgName {
	font-size: 6.5vw;
	font-weight: 700;
	line-height: 1;
	color: rgba(68, 68, 68, 0.2);
	position: absolute;
	top: 4.1vw;
	left: 1.5vw;
}
.section_box_photo {
	position: absolute;
	top: 3vw;
	right: 3vw;
}
.section_box_photo_img {
	width: 11vw;
	border-radius: 1vw;
}
.section_box_txt_defTtl.-profile {
	font-size: max(1vw, 12px);
}
.section_box_txt_defData.-profile {
	margin: 0 0 0 1.3vw;
}

/*---スキルセクション---*/
.section_box_txt_defTtl_img {
	width: 2.2vw;
	margin-left: 1vw;
	display: inline-block;
	vertical-align: text-bottom;
}
.section_box_txt_defData.-skill {
	font-size: max(1.1vw, 12px);
	line-height: 1.8;
}
.section_flex_inner.-leftInner.-skill {
	flex: 1;
}
.section_flex_inner.-rightInner.-skill {
	flex: 1;
}

/*---ワークスセクション---*/
.section_flex_inner.-leftInner.-works {
	flex: 1.3;
}
.section_flex_inner.-rightInner.-works {
	flex: 1;
}
.section_box_linkBtn {
	margin-top: 2vw;
}
.section_box_linkBtn_link {/*hover設定あり*/
	font-size: max(1vw, 12px);
	font-weight: 700;
	display: inline-block;
	transition: all 800ms;
}
.section_box_linkBtn_link_icon {/*hover設定あり*/
	margin-left: 0.8vw;
	font-size: max(1.4vw, 14px);
	transition: all 800ms;
	transform: translate(0, 0);
}
.section_box_linkBtn_link_icon2 {
	font-size: max(1.4vw, 14px);
	transform: translate(-0.2em, 0);
}

/*---ワークス/ウェブサイト画像---*/
.section_box_imgItems + .section_box_imgItems {
	padding-left: 4vw;
}
.section_box_imgItems.-leftImgItems {
	flex: 1.72;
}
.section_box_imgItems.-rightImgItems {
	flex: 1;
}
.section_box_imgItem + .section_box_imgItem {
	margin-top: 2vw;
}
.section_box_imgItem_link_img {/*hover設定あり*/
	width: 100%;
	border: 0.3vw solid #303030;
	border-radius: 0.5vw;
	box-shadow: 0.5vw 0.5vw 1vw #303030;
	transition: transform 1000ms;
}

/*---フッター---*/
.footer {
	height: 10vw;
	margin-top: 10vw;
	background-color: rgba(85, 85, 85, 0.9);
	position: relative;
	clip-path: polygon(100% 0, 100% 0, 100% 100%, 87% 100%);
}
.footer_topBtn {
	position: absolute;
	top: 54%;
	right: 2%;
}
.footer_topBtn_link {
	font-size: 2.5vw;
	color: #f0f0f0;
	transition: transform 200ms;
}
.footer_topBtn_link:active {
	transform: translate(0, -1vw);
}

/*---hover設定------------------------------*/
@media (hover: hover) {
	.header_nav_listItem_link:hover {
		transform: translate(1vw, 0);
	}
	.section_box_imgItem_link_img:hover {
		transform: translate(0, -1vw);
	}
	.section_box_linkBtn_link:hover {
		transform: translate(0.5em, 0);
	}
	.section_box_linkBtn_link:hover .section_box_linkBtn_link_icon {
		transform: translate(0.5em, 0);
	}
}

@media (hover: none) {
	.header_nav_listItem_link:active {
		transform: translate(1vw, 0);
	}
	.section_box_imgItem_link_img:active {
		transform: translate(0, -1vw);
	}
	.section_box_linkBtn_link:active {
		transform: translate(0.5em, 0);
	}
	.section_box_linkBtn_link:active .section_box_linkBtn_link_icon {
		transform: translate(0.5em, 0);
	}
}
/*---メディアクエリ・タブレット用------------------------------*/
@media screen and (max-width: 1100px) {
	
	/*---ヘッダー---*/
	.header_logo_img {
		width: 4vw;
	}
	.header_nav_listItem + .header_nav_listItem {
		margin-top: 2.8vw;
	}
	.header_nav_listItem_link {/*hover設定あり*/
		font-size: max(1.6vw, 14px);
	}
	
	/*---セクション---*/
	.section {
		padding: 9vw 3vw 0;
	}
	.section_ttl {
		font-size: max(6vw, 14px);
	}
	.section_flex_inner {
		padding: 6vw 2vw;
	}
	
	/*---セクションボックス内---*/
	.section_box_ttl {
		margin-bottom: 1.5vw;
		font-size: max(1.8vw, 16px);	
	}
	.section_box_txt {
		font-size: max(1.6vw, 14px);
	}
	
	/*---セクション別設定---*/
	/*---プロフィールセクション---*/
	.section_flex_inner.-rightInner.-profile {
		flex: 1.3;
	}
	.section_box.-profile {
		padding: 18vw 2.5vw 3vw;
	}
	.section_box_bgName {
		font-size: 7vw;
		top: 3vw;
		left: 1.5vw;
	}
	.section_box_photo {
		position: absolute;
		top: 2vw;
		right: 2vw;
	}
	.section_box_photo_img {
		width: 13vw;
		border-radius: 1vw;
	}

	/*---スキルセクション---*/
	.section_box_txt_defData.-skill {
		font-size: max(1.4vw, 12px);
	}

	/*---ワークスセクション---*/
	.section_box_linkBtn {
		margin-top: 3vw;
	}
	.section_box_linkBtn_link {/*hover設定あり*/
		font-size: max(1.4vw, 12px);
	}
	.section_box_linkBtn_link_icon {/*hover設定あり*/
		margin-left: 0.8vw;
		font-size: max(1.6vw, 14px);
	}
	.section_box_linkBtn_link_icon2 {
		font-size: max(1.6vw, 14px);
	}

}
/*---メディアクエリ・スマホ用------------------------------*/
@media screen and (max-width: 767px) {
	/*---全体---*/
	.section_flex {
		display: block;
	}

	/*---ヘッダー---*/
	.header {
		width: 100%;
		height: 18vw;
		z-index: 1;
	}
	.header_logo {
		position: absolute;
		top: 4.5vw;
		left: 5vw;
		transform: translate(0, 0);
	}
	.header_logo_img {
		width: 8vw;
	}
	.header_nav {
		position: absolute;
		top: 50%;
		left: auto;
		right: 5%;
		transform: translate(0, -50%);
	}
	.header_nav_list {
		display: flex;
	}
	.header_nav_listItem + .header_nav_listItem {
		margin-top: 0;
		margin-left: 4vw;
	}
	.header_nav_listItem_link {/*hover設定あり*/
		font-size: max(4vw, 12px);
		padding: 0.6em 0.9em;
		border-radius: 1vw;
		color: #f0f0f0;
		background-color: rgba(85, 85, 85, 0.9);
		box-shadow: 0.6vw 0.6vw 0vw #303030;	
		transition: all 100ms;
	}

	/*---セクション---*/
	.section {
		width: 100%;
		padding: 25vw 5vw 0;
		margin-left: 0;
	}
	.section_ttl {
		font-size: 10vw;
	}
	.section_flex_inner {
		padding: 9vw 6vw 0;
	}
	
	/*---セクションボックス内---*/
	.section_box {
		width: 100%;
		padding: 5vw;
		border-radius: 2vw;
		box-shadow: 1vw 1vw 2vw #303030;
	}
	.section_box_ttl {
		margin-bottom: 3vw;
		font-size: max(3.5vw, 14px);
	}
	.section_box_txt {
		font-size: max(2.5vw, 12px);
	}
	.section_box_txt + .section_box_txt {
		margin-top: 1vw;
	}
	.section_box_txt_defFlex + .section_box_txt_defFlex  {
		margin-top: 1vw;
	}
	.section_box_txt_defTtl {
		font-size: max(3vw, 13px);
		margin-bottom: 1vw;
	}
	.section_box_txt_defData {
		margin-bottom: 3vw;
	}
	
	/*---セクション別設定---*/
	/*---プロフィールセクション---*/
	.section_box.-profile {
		padding: 32vw 7.5vw 3vw;
	}
	.section_box_bgName {
		font-size: 11vw;
		top: 7vw;
		left: 5.5vw;
	}
	.section_box_photo {
		top: 6vw;
		right: 6vw;
	}
	.section_box_photo_img {
		width: 25vw;
		border-radius: 2vw;
	}
	.section_box_txt_defTtl.-profile {
		font-size: max(2vw, 10px);
	}
	.section_box_txt_defData.-profile {
		margin: 0 0 0 4vw;
	}

	/*---スキルセクション---*/
	.section_box_txt_defTtl_img {
		width: 4vw;
		height: 6vw;
		margin-left: 2vw;
	}
	.section_box_txt_defData.-skill {
		font-size: max(2.5vw, 12px);
	}

	/*---ワークスセクション---*/
	.section_box_imgItems + .section_box_imgItems {
		padding-left: 6vw;
	}
	.section_box_imgItems.-leftImgItems {
		flex: 1.74;
	}
	.section_box_imgItem + .section_box_imgItem {
		margin-top: 4vw;
	}
	.section_box_imgItem_link_img {
		border: 0.6vw solid #303030;
		border-radius: 2vw;
	}
	.section_box_linkBtn {
		margin-top: 5vw;
	}
	.section_box_linkBtn_link {/*hover設定あり*/
		font-size: max(2.2vw, 12px);
	}
	.section_box_linkBtn_link_icon {/*hover設定あり*/
		margin-left: 0.8vw;
		font-size: max(3vw, 14px);
	}
	.section_box_linkBtn_link_icon2 {
		font-size: max(3vw, 14px);
	}

	/*---フッター---*/
	.footer {
		height: 20vw;
		margin-top: 20vw;
		clip-path: polygon(100% 0, 100% 0, 100% 100%, 75% 100%);
	}
	.footer_topBtn {
		top: 54%;
		right: 4%;	
	}
	.footer_topBtn_link {
		font-size: 6vw;
	}
	.footer_topBtn_link:active {
		transform: translate(0, -1vw);
	}

	/*---hover設定------------------------------*/
	@media (hover: hover) {
		.header_nav_listItem_link:hover {
			transform: translate(0, 0);
		}
		.header_nav_listItem_link:active {
			transform: translate(0.6vw, 0.6vw);
			box-shadow: none;
			background-color: rgba(130, 130, 130, 0.9);
		}
	}

	@media (hover: none) {
		.header_nav_listItem_link:active {
			transform: translate(0.6vw, 0.6vw);
			box-shadow: none;
			background-color: rgba(130, 130, 130, 0.9);
		}
	}
}
