@charset "UTF-8";

/* 下層ページ共通 */
.content_title {
	width: 100%;
	height: 20vh;
	padding: 110px 0 10px;
	margin-bottom: 50px;
}

.content_title h1 {
	width: 57vw;
	max-width: 1200px;
	margin: 0 auto;
	height: 100%;
	border: 1px solid #333;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	line-height: 1.6;
}

.content_title h1 span {
	display: block;
}

.content_title h1 .en {
	font-weight: bold;
	font-size: 2.0rem;
	border-bottom: 1px solid #333;
}

.under_cont .inner {
	width: 57vw;
	max-width: 1200px;
	margin: 0 auto;
}

.main-wrap {
	margin-bottom: 60px;
}

/* ABOUTページ */
.about .inner {
	/*display: flex;*/
	justify-content: space-between;
	/* align-items: center; */
}

.about .inner i {
	margin-right: 5px;
	color: #0B42A1;
}

/*.about_item {
	/*width: 48%;
}   */

.portrait {
	padding: 30px;
	background-color: #eee;
	border: 1px solid #333;
}

.portrait img {
	width: 100%;
}

.info {
	padding: 30px;
}

.info>li {
	margin-bottom: 20px;
}

/* work */
.work_img {
	/*border: 1px solid #333;*/
	background-color: #eee;
	padding: 40px;
	margin-bottom: 20px;
	box-shadow: 10px #aaaaaa;
}

.work_img img {
	width: 100%;
}

.works_wrap h3 {
	font-weight: bold;
	border-bottom: 1px solid #333;
	line-height: 30px;
	margin-bottom: 20px;
}

.works_wrap h3::before {
	content: "\f039";
	font-family: "Font Awesome 5 Free";
	font-weight: bold;
	color: #9966cc;
	margin-right: 10px;
}

.works_wrap ul {
	line-height: 2;
}

.work_subhead {
	padding: 0 15px;
	background-color: #9966cc;
	border-radius: 5px;
	color: #fff;
}

.works_wrap li {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
}

.work_disc {
	margin: 20px 0 50px;
}

.work_use_apri img {
	width: 44px;
	margin-right: 44px;
}

.works_disc {
	max-width: 600px;
	width: 100%;
	margin: 0 auto;
}

.works_disc+details {
	margin-bottom: 60px;
	text-align: center;
}


.works_disc+details summary {
	display: inline;
}

/* .work_img+details summary:after {
	content: "";
	width: 0;
	height: 1px;
	transition: width ease .5s;
	background: #666;
	display: block;
	position: relative;
	bottom: -4px;
}

.work_img+details summary:hover:after {
	width: 100%;
	transition: width ease .5s;
} */

/* Media Query */
@media screen and (max-width:768px) {
	.content_title {
		height: 30vh;
		padding: 50px 0 5px;
	}

	.about .inner {
		flex-direction: column;
	}

	.about_item {
		width: 100%;
	}

	.work_img {
		padding: 20px;
	}
}

/*作品画像詳細*/


summary {
	text-align: center;
	margin: 10px;
	padding-bottom: 20px;
	cursor: pointer;
	border-radius: 15px;
	background: #fafafa;
	box-shadow: 7px 7px 15px #aaaaaa,-7px -7px 15px #ffffff;
	padding: 12px 40px 12px 56px;
	appearance: none;
	border: 0;
	transition: box-shadow .3s ease-in;
	position: relative;
}
summary:hover {
	box-shadow: 0 0 0 rgba(0,0,0,0), 0 0 0 rgba(0,0,0,0);
	transition: box-shadow .3s ease-in;

}
summary .close {
	display: none;
}
summary:focus {
	outline: none;
}
summary::marker {
	display: none;
}

summary::before {
	content: '';
	width: 7px;
	height: 7px;
	border-top: solid 2px #9966cc;
	border-right: solid 2px #9966cc;
	position: absolute;
    left: 34px;
    top: 21px;
	transform: rotate(135deg);
}

summary::after {
	content: 'see more?';
}
details[open] summary::after {
	content: 'close';
}
.seemore {
	text-align: center;
}

details[open] summary::before {
	transform: rotate(-45deg);
    top: 26px;
}
/*details summary::-webkit-details-marker {
	display: none;
}*/


/****** ↓ページナビゲーション *******/
.page-nav {
	width: 57vw;
	margin: 200px auto 0;

}
/****** ↑ページナビゲーション *******/

.col02_layout {
	display: flex;
	align-items: flex-start;
}

.col02_layout .about_item:first-child {
	flex: 1;
}

.col02_layout .about_item:last-child {
	flex: 2;
}

.col02_layout .info {
	padding-top: 0;
}