﻿@charset "utf-8";

/* PC用CSS */
@media print, screen and (min-width: 640px) {

/* ここから通常のCSS */
/* 基本レイアウト ここから↓ */
body {
	background-color: #ffffff;
	color: #645242;
	font-size: 87.5%;
	line-height: 1.5;
	margin:0 auto;
	width: 80vw;
	overflow-y: scroll;
	font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", 'Noto Sans JP', sans-serif;
}


a {
	position: relative;
	display: inline-block;
	text-decoration: none;
	color: #645242;
}

nav a::after {
position: absolute;
bottom: -4px;
left: 0;
content: '';
width: 100%;
height: 2px;
background: #645242;
opacity: 0;
visibility: hidden;
transition: .3s;
}
a:hover::after {
bottom: -2px;
opacity: 1;
visibility: visible;
}

footer{
	text-align: center;
	font-size: 16px;
}

footer p,ul{
	margin: 10px;
}

footer li{
	display: inline;
	margin-right: 25px;
}

header {
	height: 30px;
	margin-bottom: 50px;
	padding-top: 30px;
	min-width: 700px;
}

header p{
	margin-left: 10px;
}

ul {
	list-style: none;
}

nav {
	margin-top: 12px;
}
nav ul li{
	font-size: 18px;
	display: inline;
	margin-right: 25px;
}

.pagetitle p{
	margin: 0 0 50px 10px;
	font-size: 20px;
}

/* 基本レイアウト ここまで↑ */

/* トップページ ここから↓ */

.container {
	display: flex;
	justify-content: space-between;
}

#maintheme{
	height: 350px ;
	background-image: url(../img/toptx.jpg);
	background-repeat: no-repeat;
	background-size: contain;
	min-width: 700px;
}

h1 {
	position: absolute;
	top: 180px;
	left: 180px;
	font-size: 40px;
	letter-spacing: 0.1em;
	font-weight: normal;
	line-height: 1;
	transform: rotate(-10deg);
}

h2{
	font-size: 48px;
	font-weight: normal;
	line-height: 1;
	margin: 0;
}

h3{
	font-size: 36px;
	font-weight: normal;
	line-height: 1;
	margin: 0;
}

h4{
	font-size: 28px;
	font-weight: normal;
	line-height: 1;
	margin: 0;
}

h5{
	font-size: 22px;
	font-weight: normal;
	line-height: 1;
	margin: 0;
}
#maintheme p {
	position: absolute;
	top: 130px;
	left: 650px;
	font-size: 20px;
}

#skill {
	margin-bottom: 50px;
}

.ability {
	display: flex;
	justify-content: space-around;
	margin: 100px 0;
}

.ability div{
	text-align: center;
	margin: 0 5px;
}

.ability div p{
	font-size: 16px;
	margin: 0px;
}

.ability img {
	width: 100%;
}

#works{
	text-align: center;
	margin: 100px 0;
	padding-top: 30px;
}

#works p{
	font-size: 24px;
}

.worksimg {
	display: flex;
	justify-content:space-around;
	margin: 50px 0;
}

.worksimg img{
	width: 20vw;
}

#contact{
	text-align: center;
	margin: 100px 0;
	padding-top: 30px;
}

#contact p{
	font-size: 24px;
}

form{
	text-align: left;
	margin-top: 50px;
}

form p{
	margin-bottom: 50px;
}

input[type="text"]{
	width: 20vw;
	height: 20px;
}

input[type="email"]{
	width: 20vw;
	height: 20px;
}

textarea{
	width: 50vw;
	height: 150px;
	overflow-y: scroll;
}

.button{
	font-size: 16px;
}
/* トップページ ここまで↑ */

/* プロフィールページ ここから↓ */
#profpage{
	margin: 100px 0 ;
	font-size: 18px;
	line-height: 1;
}
#profphoto img{
	width: 20vw;
	height: 20vw;
	float: left;
	margin-right: 100px;
	margin-bottom: 70px;
}

#profsentence{
	clear: both;
	margin-top: 70px;
}

/* プロフィールページ ここまで↑ */

/* 経歴ページ ここから↓ */
#careerpage{
	margin: 100px 0 ;
	font-size: 18px;
	line-height: 1;
}

.carphoto img{
	width: 20vw;
	height: 20vw;
	margin-right: 100px;
}

.carphoto {
	margin-bottom: 100px;
	display: flex;
	justify-content: flex-start;
}

.cartitle{
	font-size: 22px;
}

/* 経歴ページ ここまで↑ */

/* スキルページ ここから↓ */
.skillbg{
	background-image: url(../img/skillbg.jpg);
	background-repeat: no-repeat;
	background-attachment: fixed;
}

#skillpage{
	width: 80vw;
	margin: 100px 0 ;
	font-size: 18px;
	line-height: 1;
}

.sentence {
	margin-bottom: 50px;
}

/* スキルページ ここまで↑ */

/* 実績ページ ここから↓ */
.worksbox{
	text-align: center;
	width: 80vw;
	margin: 80px 0;
}

.worksbox img{
	width: 70vw;
}
.workssentence{
	text-align: left;
	margin: 30px 0;
}

.worksback{
	text-align: right;
	margin-top: 20px;
	text-decoration: underline;
	font-size: 20px;
}
/* 実績ページ ここまで↑ */

}/* ←レスポンシブ記述終わり */