/***********************
************************

About page

************************
************************/



/* ===================================
description
=================================== */ 

.desc{
	text-align: center;
	margin-bottom: 160px;
}
.desc h2{
	font-size: 2.5em;
	letter-spacing: .3rem;
	line-height: 1.7em;
}
.desc-text {
	font-size: 2rem;
	line-height: 2em;
	letter-spacing: .15em;
	margin-top: 2em;
}
.desc p + p{
	margin-top: 1em;
}

.coverImg-about{
	background: url(../images/coverImg-about.jpg) center / cover no-repeat;
	height: 500px;
	position: relative;
}

/* ===================================
member
=================================== */ 

#member{
	margin-top: 160px;
}
#member .section-title{
	margin-bottom: 120px;
}
.member-list {
	display: flex;
}
.member-list-item {
	width: calc(100% / 3);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.member-list-item .position{
	font-family: var(--font-family--en);
	font-size: 1.8rem;
	margin-bottom: .35em;
  margin-top: 1.5em;
	font-weight: 300;
}
.member-list-item .name{
	font-size: 2.4rem;
	font-weight: 600;
	line-height: 1.6em;
}
.member-list-item .kana{
	font-family: var(--font-family--en);
	font-size: 1.5rem;
	font-weight: 300;
	line-height: 1;
}

/* ===================================
company
=================================== */ 

#company{
	margin-top: 160px;
}
#company .section-title{
	text-align: center;
}
.company-list {
	width: 65%;
	display: flex;
	flex-wrap: wrap;
	border-top: 0.5px solid var(--text-color);
	margin-left: auto;
	margin-right: auto;
}
.company-list-item{
	font-weight: 600;
	width: 15rem;
	padding-top: 1.5em;
	border-bottom: .5px solid var(--text-color);
}
.company-list-desc{
	width: calc(100% - 15rem);
	padding-top: 1.5em;
	padding-bottom: 1.5em;
	border-bottom: .5px solid var(--text-color);
}





/* **********************************************************
**********************************************************

responsive

**********************************************************
********************************************************** */

/* タブレット */
@media screen and (max-width: 769px){

	/* ===================================
	description
	=================================== */ 
	.desc{
		text-align: left;
	}
	.desc h2 {
    font-size: 2em;
    letter-spacing: .17em;
    line-height: 1.7em;
	}
	.desc-text{
		font-size: 1.2em;
	}
	.desc br{
		display: none;
	}

	/* ===================================
	member
	=================================== */ 
	#member{
		margin-top: 120px;
	}
	#member .section-title{
		margin-bottom: 90px;
	}
	.member-list{
		display: block;
	}
	.member-list-item{
		width: 100%;
	}
	.member-list-item + .member-list-item{
		margin-top: 90px;
	}

	/* ===================================
	company
	=================================== */ 
	.company-list{
		width: 100%;
		display: block;
	}
	.company-list-item,
	.company-list-desc{
		width: inherit;
	}
	.company-list-item{
		border-bottom: none;
		padding-top: 1em;
	}
	.company-list-desc{
		padding-top: 0;
		padding-bottom: 1em;
	}
}