@charset "utf-8";
@media print {
    body { display: none }
}

*,
::before,
::after {
  box-sizing: border-box;
  border-width: 0;
  border-style: solid;
}

html{
	width:100%;
	height:100%;
}

body {
	color: #4a3f3b;
	font-family: Oswald;
	font-size: 16px;
	margin: 0 auto;
}

main{
	display: block;
	width:100%;
	height:100%;
}

section{
	margin: 20px auto;
}

a {
	text-decoration: none;
	color: #4a3f3b;
	cursor: pointer;
	transition: 0.3s;
}

a:hover{
	background color:  #e8e8e8;
}

img {
	max-width: 100%;
	/* PCの右クリック禁止 */
	pointer-events: none;
}

h2{
	width: 1200px;
	margin: 0;
	font-size: 25px;
	text-align: left;
    margin-left: 10px;
}


ul{
	list-style: none;
	margin: 0;
	padding: 0;
}

.pc{
	display: block;
}

.sp{
	display: none;
}

/*-------------------------------------------
ヘッダー
-------------------------------------------*/
.header {
	position: relative;
}

.header .site-title {
	margin: 0 auto;
	margin-left: 130px;
	width: 350px;
}

.header .site-title a {
	display: block;
	width: 100%;
	heught: 100%;
	font-size: 30px;
}

.top{
	position: absolute;
    top: 10%;
    right: 2%;
    width: 35px;
    height: 35px;
    border: solid rgb(76 134 192) 1px;
    border-radius: 24px;
}

.top a{
	color: #333333;
    font-size: 17px;
    position: absolute;
    left: 15%;
    top: 10%;
}

p{
	margin: 0;
	padding: 0;
	font-size: 16px;
}


/*--------------------------------
profile / timeline / skill /vision
---------------------------------*/
/*------- 共通 -------*/
.item01, .item04{
	width: 1200px;
	margin: 0 auto 30px;
	padding: 10px;
	border: solid #939191 1px;
	border-radius: 20px;
}


.tlskill{
	display: flex;
	width: 1200px;
}

.item02{
	width: 510px;
	margin-right: 30px;
}

.item02 h2, .item03 h2{
	width: 200px;
}

.item03{
	width: 630px;
}

table , td, th {
	border: solid 1px #595959;
	border-collapse: collapse;
}

th{
padding: 3px;
width: 95px;
}

td {
padding: 3px;
width: 415px;
}

.item03 th{
	width: 135px;
}

.item03 td{
	font-size: 14px;
	width: 545px;
}

/*--------------------------------
content
---------------------------------*/
/*------- 共通 -------*/
.contents{
	display: block;
	width: 1360px;
	margin: 0 auto;
}

/*------- 制作コメント -------*/
.txt{
	width: 1200px;
	margin: 0 auto 30px;
	padding: 10px
}

.txt h3{
	width: 120px;
}

.txt p{
	font-size: 18px;
	margin-bottom: 30px;
}

/*------- 作品コンテンツ -------*/
.content{
	display: flex;
	flex-direction: column;
	padding: 4px;
	border: solid #939191 1px;
	border-radius: 20px;
}

.content h3{
	text-align: center;
}

.content01, .content02{
	display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
}

.item05{
	width: 400px;
	height: 770px;
	margin: 10px;
	background-color: #f4fff3;
}

.item06{
	width: 430px;
	height: 250px;
	margin: 10px;
	background-color: #f7f8f9;
	position: relative;
}

.item06:after{
	position: absolute;
	content: '';
	right: 0px;
	top: 0px;
	border-width: 0 15px 15px 0;
	border-style: solid;
	border-color: #ccc #fff  #ccc;
	box-shadow: -1px 1px 1px rgba(0, 0, 0, 0.15);
}

.item06 h2{
	width: 400px;
}

.item_img{
	width: 400px;
	height:475px;
	padding: 10px;
	margin: 0 auto;
}

.item_img img{
	width: 100%;
	max-width: 100%
}

.notice{
	font-size: 14px;
}

.comment ul{
	list-style: none;
	padding: 0 15px;
	margin: 5px auto;
}

.more{
	width: 260px;
	margin: 0 auto;
}

.more a{
	color: #d95d18;
}

/*--------------------------------
作品詳細
---------------------------------*/
/*------- 共通 -------*/
.detail{
	display: block;
}

/*------- 作品コンテンツ -------*/
.detail01{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
}

.detail01 .item .item01{
	width: 400px;
	height: 100%;
	background-color: unset;
}

/*-------------------------------------------
footer
-------------------------------------------*/
.footer {
	padding: 10px 0;
	text-align: center;
}

.footer p {
	font-size: 10px
}

/*-------------------------------------------
タブレット版
-------------------------------------------*/
@media screen and (min-width:769px) and ( max-width:1024px) {

	h2{
		width: 100%;
	}

/*--------------------------------
profile / timeline / skill /vision
---------------------------------*/
/*------- 共通 -------*/
	.item01, .item04{
		width: 97%;
	}

	.tlskill{
		width: 100%;
		gap: calc((20 / 1024)* 100vw);
		flex-direction: column;
	}

	.item02, .item03{
		width: 100%;
		margin: 15px;
		padding: 10px;
	}

	th{
		width: 95px;
	}

	td {
		width: 415px;
	}

	.item03 th{
		width: 135px;
	}

	.item03 td{
		width: 545px;
	}

/*--------------------------------
content
---------------------------------*/
/*------- 共通 -------*/
	.contents{
		width: 100%;
	}

/*------- 制作コメント -------*/
	.txt{
		width: 100%;
		margin: 0 auto 30px;
	}
	
	.txt h3{
	margin-left: 15px;
	}

	.txt p{
		font-size: 18px;
		margin-bottom: 30px;
		margin-left: 15px;
	}

/*------- 作品コンテンツ -------*/
	.content{
		margin: 5px;
		}

	.item05{
		width: 45%;
		height: 100%;
		margin: 15px;
	}

	.item06{
		width: 45%;
		height: 100%;
		margin: 15px;
	}


	.item_img{
		width: 100%;
		height: 76%;
		padding: 10px;
	}

	.notice{
		font-size: 14px;
	}

	.comment ul{
		padding: 0 15px;
		margin: 5px auto;
	}

	.more{
		width: 60%;
	}

/*--------------------------------
作品詳細
---------------------------------*/
/*------- 作品コンテンツ -------*/
	.detail01 .item .item01{
		width: 400px;
	}

/*-------------------------------------------
footer
-------------------------------------------*/
	.footer {
		padding: 10px 0;
	}

	.footer p {
		font-size: 10px
	}
}

/*-------------------------------------------
スマホ版
-------------------------------------------*/
@media screen and (max-width: 768px) {

	html{
	max-width: 768px !important;
	margin: 0 auto;
	}
	

	img{
	/* SPの長押し禁止 */
	-webkit-touch-callout:none;
	-webkit-user-select:none;
	-moz-touch-callout:none;
	-moz-user-select:none;
	user-select:none;
}

	h2{
		width: 100%;
	}

	p{
		font-size: 18px;
	}

/*--------------------------------
profile / timeline / skill /vision
---------------------------------*/
/*------- 共通 -------*/
	.item01, .item04{
		width: 97%;
	}

	.tlskill{
		width: 100%;
		gap: calc((20 / 1024)* 100vw);
		flex-direction: column;
	}

	.item02, .item03{
		width: 100%;
		margin: 15px;
		padding: 10px;
	}

	th{
		width: 95px;
	}

	td {
		width: 415px;
	}

	.item03 th{
		width: 135px;
	}

	.item03 td{
		width: 545px;
	}

/*--------------------------------
content
---------------------------------*/
/*------- 共通 -------*/
	.contents{
		width: 100%;
	}

/*------- 制作コメント -------*/
	.txt{
		width: 100%;
		margin: 0 auto 30px;
	}
	
	.txt h3{
	margin-left: 15px;
	}

	.txt p{
		font-size: 18px;
		margin-bottom: 30px;
		margin-left: 15px;
	}

/*------- 作品コンテンツ -------*/
	.content{
		margin: 5px;
		flex-direction: column;
	}

	.item05{
		width: 100%;
		height: 100%;
		margin: 15px;
	}

	.item06{
		width: 100%;
		height: 100%;
		margin: 15px;
	}


	.item_img{
		width: 100%;
		height: 76%;
		padding: 10px;
	}

	.notice{
		font-size: 14px;
	}

	.comment ul{
		padding: 0 15px;
		margin: 5px auto;
	}

	.more{
		width: 60%;
	}

/*--------------------------------
作品詳細
---------------------------------*/
/*------- 作品コンテンツ -------*/
	.detail01 .item .item01{
		width: 400px;
	}

/*-------------------------------------------
footer
-------------------------------------------*/
	.footer {
		padding: 10px 0;
	}

	.footer p {
		font-size: 10px
	}
}

@media screen and (min-width:320px) and ( max-width:750px) {

	h2{
		font-size: 20px;
	}

	p{
		font-size: 18px;
	}

/*--------------------------------
profile / timeline / skill /vision
---------------------------------*/
/*------- 共通 -------*/
	.item01, .item04{
		width: 97%;
	}

	.tlskill{
		width: 100%;
		gap: calc((20 / 1024)* 100vw);
		flex-direction: column;
	}

	.item02, .item03{
		width: 92%;
		margin: 15px;
		padding: 10px;
	}

	th{
		width: 95px;
	}

	td {
		width: 415px;
	}

	.item03 th{
		width: 135px;
	}

	.item03 td{
		width: 545px;
	}

/*--------------------------------
content
---------------------------------*/
/*------- 共通 -------*/
	.contents{
		width: 100%;
	}

/*------- 制作コメント -------*/
	.txt{
		width: 100%;
		margin: 0 auto 30px;
	}
	
	.txt h3{
	margin-left: 15px;
	}

	.txt p{
		font-size: 18px;
		margin-bottom: 30px;
		margin-left: 15px;
	}

/*------- 作品コンテンツ -------*/
	.content{
		margin: 5px;
		flex-direction: column;
	}

	.item05{
		width: 99%;
		height: 100%;
		margin: 0 5px 15px 5px;
	}

	.item06{
		width: 97%;
		height: 100%;
		margin: 0 5px 15px 5px;
	}


	.item_img{
		width: 100%;
		height: 76%;
		padding: 10px;
	}

	.notice{
		font-size: 14px;
	}

	.comment ul{
		padding: 0 15px;
		margin: 5px auto;
	}

	.more{
		width: 65%;
	}

/*--------------------------------
作品詳細
---------------------------------*/
/*------- 作品コンテンツ -------*/
	.detail01 .item .item01{
		width: 400px;
	}

/*-------------------------------------------
footer
-------------------------------------------*/
	.footer {
		padding: 10px 0;
	}

	.footer p {
		font-size: 10px
	}
}
