/**
 * Profileページ用 css
**/

body.profile {
	background-color: #ffffff !important;
	margin: 0 auto;
}

body.profile footer {
	background-color: #A6B7B3 !important;
	padding: 60px 0px !important;
	clear: both;
}


/* ==========================================================================
プロフィール メイン
========================================================================== */

/**
 * プロフィール タイトル
**/
.makoto-profile-header-title {
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	padding: 25px 0 25px 0;
	height: auto;
}

.makoto-profile-header-title p {
	font-size: 3rem;
	font-family: "Gotham SSm A", "Gotham SSm B", 'League Spartan', 'メイリオ', "Source Sans Pro", sans-serif;
	letter-spacing: 0px;
	line-height: 1.42857143;
	margin: 10px;
	color: #000000;
}


.makoto-profile-main {
	display: flex;
	flex-wrap: wrap; /* 画面幅が狭いと折り返す */
	justify-content: space-around;
	width: 100%;
	max-width: 1920px;
	height: auto;
	margin-top: 0;
	margin-bottom: 50px;
	margin-left: auto;
	margin-right: auto;
}

/**
 * プロフィール左側
 * (写真 + 仕事リスト)
**/
.makoto-profile-main-left {
	display: flex;
	flex-wrap: wrap; /* 画面幅が狭いと折り返す */
	flex-direction: column;
	justify-content: space-around;
	width: 30%;
	max-width: 576px;
	height: auto;
}

/* 左側 - 位置調整用 */
.makoto-profile-main-left div {
	padding: 0;
	margin: 0 auto;
}

.makoto-profile-main-left-face {
	width: 100%;
	background-color: #fff;
	text-align: right;
}

.makoto-profile-main-left-face img {
	width: 100%;
	max-width: 576px;
	height: auto;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-moz-transition: opacity 0.35s, -moz-transform 0.35s;
	-o-transition: opacity 0.35s, -o-transform 0.35s;
	-webkit-transform: translate3d(-40px, 0, 0);
	transform: translate3d(-40px, 0, 0);
	-ms-transform: translate3d(-40px, 0, 0);
}

.makoto-profile-main-left-list {
	width: 100%;
}

.makoto-profile-main-left-list nav {
	background-color: #fff;
}

.makoto-profile-main-left-list nav ul {
	list-style: none;
	padding: 0;
}

.makoto-profile-main-left-list nav ul li {
	color: rgba(0, 0, 0, 0.6);
	display:block;
	transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-webkit-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	padding-right: 0;
	position: relative;
	border: none;
}

.makoto-profile-main-left-list nav ul li:last-child {
	border: none;
}

.makoto-profile-main-left-list nav ul li a {
	color: rgba(45, 50, 60, 0.5);
	display: block;
	padding: 5px;
	transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-webkit-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	padding-left: 0;
	position: relative;
	text-align: right;
	font-size: 1.6rem;
}

.makoto-profile-main-left-list nav ul li a:hover, nav ul li a:focus {
	text-decoration: none;
	color: rgba(38, 68, 97, 1);
}

/**
 * プロフィール右側
**/
.makoto-profile-main-right {
	width: 70%;
	max-width: 1344px;
	height: auto;
}

/* 右側 - 位置調整用 */
.makoto-profile-main-right div {
	padding-right: 5rem;
	margin: 0 auto;
}

.makoto-profile-main-right p {
	line-height: 1.2rem;
	font-size: 1.2rem;
	color: rgba(45, 50, 60, 0.5);
	letter-spacing: 0.0em;
	font-family: "Gotham SSm A", "Gotham SSm B", 'メイリオ', "Source Sans Pro", sans-serif;
}


/**
 * レスポンシブ対応
**/
@media only screen and (max-width:960px) {
	.makoto-profile-main {
		display: flex;
		flex-wrap: wrap; /* 画面幅が狭いと折り返す */
		flex-direction: column;
		justify-content: space-around;
		width: 100%;
		max-width: 960px;
		height: auto;
		margin-top: 0;
		margin-bottom: 50px;
		margin-left: auto;
		margin-right: auto;
	}

	.makoto-profile-main-left-face {
		width: 100%;
		background-color: #fff;
		text-align: center;
	}

	.makoto-profile-main-left {
		display: flex;
		flex-wrap: wrap; /* 画面幅が狭いと折り返す */
		flex-direction: column;
		justify-content: space-around;
		width: 100%;
		max-width: 960px;
		height: auto;
	}

	.makoto-profile-main-left-list nav ul li a {
		color: rgba(45, 50, 60, 0.5);
		display: block;
		padding: 0;
		transition: all 0.5s ease;
		-moz-transition: all 0.5s ease;
		-webkit-transition: all 0.5s ease;
		-o-transition: all 0.5s ease;
		text-align: center;
		font-size: 1.6rem;
	}

	.makoto-profile-main-left-face img {
		width: 80%;
		max-width: 768px;
		height: auto;
		-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
		transition: opacity 0.35s, transform 0.35s;
		-moz-transition: opacity 0.35s, -moz-transform 0.35s;
		-o-transition: opacity 0.35s, -o-transform 0.35s;
		-webkit-transform: translate3d(-40px, 0, 0);
		transform: translate3d(-40px, 0, 0);
		-ms-transform: translate3d(-40px, 0, 0);
	}

	.makoto-profile-main-right {
		width: 100%;
		max-width: 960px;
		height: auto;
	}

	.makoto-profile-main-right div {
		padding-left: 10%;
		padding-right: 10%;
		margin: 0 auto;
	}
}


@media only screen and (max-width:768px) {
	.makoto-profile-main {
		display: flex;
		flex-wrap: wrap; /* 画面幅が狭いと折り返す */
		flex-direction: column;
		justify-content: space-around;
		width: 100%;
		max-width: 768px;
		height: auto;
		margin-top: 0;
		margin-bottom: 40px;
		margin-left: auto;
		margin-right: auto;
	}

	.makoto-profile-main-left-face {
		width: 100%;
		background-color: #fff;
		text-align: center;
	}

	.makoto-profile-main-left {
		display: flex;
		flex-wrap: wrap; /* 画面幅が狭いと折り返す */
		flex-direction: column;
		justify-content: space-around;
		width: 100%;
		max-width: 768px;
		height: auto;
	}

	.makoto-profile-main-left-list nav ul li a {
		color: rgba(45, 50, 60, 0.5);
		display: block;
		padding: 0;
		transition: all 0.5s ease;
		-moz-transition: all 0.5s ease;
		-webkit-transition: all 0.5s ease;
		-o-transition: all 0.5s ease;
		text-align: center;
		font-size: 1.6rem;
	}

	.makoto-profile-main-left-face img {
		width: 80%;
		max-width: 640px;
		height: auto;
		-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
		transition: opacity 0.35s, transform 0.35s;
		-moz-transition: opacity 0.35s, -moz-transform 0.35s;
		-o-transition: opacity 0.35s, -o-transform 0.35s;
		-webkit-transform: translate3d(-40px, 0, 0);
		transform: translate3d(-40px, 0, 0);
		-ms-transform: translate3d(-40px, 0, 0);
	}

	.makoto-profile-main-right {
		width: 100%;
		max-width: 768px;
		height: auto;
	}

	.makoto-profile-main-right div {
		padding-left: 10%;
		padding-right: 10%;
		margin: 0 auto;
	}
}


@media only screen and (max-width:651px) {
	.makoto-profile-main {
		display: flex;
		flex-wrap: wrap; /* 画面幅が狭いと折り返す */
		flex-direction: column;
		justify-content: space-around;
		width: 100%;
		max-width: 651px;
		height: auto;
		margin-top: 0;
		margin-bottom: 30px;
		margin-left: auto;
		margin-right: auto;
	}

	.makoto-profile-main-left-face {
		width: 100%;
		background-color: #fff;
		text-align: center;
	}

	.makoto-profile-main-left {
		display: flex;
		flex-wrap: wrap; /* 画面幅が狭いと折り返す */
		flex-direction: column;
		justify-content: space-around;
		width: 100%;
		max-width: 651px;
		height: auto;
	}

	.makoto-profile-main-left-list nav ul li a {
		color: rgba(45, 50, 60, 0.5);
		display: block;
		padding: 0;
		transition: all 0.5s ease;
		-moz-transition: all 0.5s ease;
		-webkit-transition: all 0.5s ease;
		-o-transition: all 0.5s ease;
		text-align: center;
		font-size: 1.6rem;
	}

	.makoto-profile-main-left-face img {
		width: 80%;
		max-width: 480px;
		height: auto;
		-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
		transition: opacity 0.35s, transform 0.35s;
		-moz-transition: opacity 0.35s, -moz-transform 0.35s;
		-o-transition: opacity 0.35s, -o-transform 0.35s;
		-webkit-transform: translate3d(-40px, 0, 0);
		transform: translate3d(-40px, 0, 0);
		-ms-transform: translate3d(-40px, 0, 0);
	}

	.makoto-profile-main-right {
		width: 100%;
		max-width: 651px;
		height: auto;
	}

	.makoto-profile-main-right div {
		padding-left: 5%;
		padding-right: 5%;
		margin: 0 auto;
	}
}


@media only screen and (max-width:425px) {
	.makoto-profile-main {
		display: flex;
		flex-wrap: wrap; /* 画面幅が狭いと折り返す */
		flex-direction: column;
		justify-content: space-around;
		width: 100%;
		max-width: 425px;
		height: auto;
		margin-top: 0;
		margin-bottom: 20px;
		margin-left: auto;
		margin-right: auto;
	}

	.makoto-profile-main-left-face {
		width: 100%;
		background-color: #fff;
		text-align: center;
	}

	.makoto-profile-main-left {
		display: flex;
		flex-wrap: wrap; /* 画面幅が狭いと折り返す */
		flex-direction: column;
		justify-content: space-around;
		width: 100%;
		max-width: 425px;
		height: auto;
	}

	.makoto-profile-main-left-list nav ul li a {
		color: rgba(45, 50, 60, 0.5);
		display: block;
		padding: 0;
		transition: all 0.5s ease;
		-moz-transition: all 0.5s ease;
		-webkit-transition: all 0.5s ease;
		-o-transition: all 0.5s ease;
		text-align: center;
		font-size: 1.6rem;
	}

	.makoto-profile-main-left-face img {
		width: 80%;
		max-width: 360px;
		height: auto;
		-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
		transition: opacity 0.35s, transform 0.35s;
		-moz-transition: opacity 0.35s, -moz-transform 0.35s;
		-o-transition: opacity 0.35s, -o-transform 0.35s;
		-webkit-transform: translate3d(-40px, 0, 0);
		transform: translate3d(-40px, 0, 0);
		-ms-transform: translate3d(-40px, 0, 0);
	}

	.makoto-profile-main-right {
		width: 100%;
		max-width: 425px;
		height: auto;
	}

	.makoto-profile-main-right div {
		padding-left: 5%;
		padding-right: 5%;
		margin: 0 auto;
	}
}


@media only screen and (max-width:375px) {
	.makoto-profile-main {
		display: flex;
		flex-wrap: wrap; /* 画面幅が狭いと折り返す */
		flex-direction: column;
		justify-content: space-around;
		width: 100%;
		max-width: 375px;
		height: auto;
		margin-top: 0;
		margin-bottom: 10px;
		margin-left: auto;
		margin-right: auto;
	}

	.makoto-profile-main-left-face {
		width: 100%;
		background-color: #fff;
		text-align: center;
	}

	.makoto-profile-main-left {
		display: flex;
		flex-wrap: wrap; /* 画面幅が狭いと折り返す */
		flex-direction: column;
		justify-content: space-around;
		width: 100%;
		max-width: 375px;
		height: auto;
	}

	.makoto-profile-main-left-list nav ul li a {
		color: rgba(45, 50, 60, 0.5);
		display: block;
		padding: 0;
		transition: all 0.5s ease;
		-moz-transition: all 0.5s ease;
		-webkit-transition: all 0.5s ease;
		-o-transition: all 0.5s ease;
		text-align: center;
		font-size: 1.6rem;
	}

	.makoto-profile-main-left-face img {
		width: 80%;
		max-width: 320px;
		height: auto;
		-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
		transition: opacity 0.35s, transform 0.35s;
		-moz-transition: opacity 0.35s, -moz-transform 0.35s;
		-o-transition: opacity 0.35s, -o-transform 0.35s;
		-webkit-transform: translate3d(-40px, 0, 0);
		transform: translate3d(-40px, 0, 0);
		-ms-transform: translate3d(-40px, 0, 0);
	}

	.makoto-profile-main-right {
		width: 100%;
		max-width: 375px;
		height: auto;
	}

	.makoto-profile-main-right div {
		padding-left: 5%;
		padding-right: 5%;
		margin: 0 auto;
	}
}

/** 320px (iPhone) **/
@media only screen and (max-width:320px) {
	.makoto-profile-main {
		display: flex;
		flex-wrap: wrap; /* 画面幅が狭いと折り返す */
		flex-direction: column;
		justify-content: space-around;
		width: 100%;
		max-width: 320px;
		height: auto;
		margin-top: 0;
		margin-bottom: 10px;
		margin-left: auto;
		margin-right: auto;
	}

	.makoto-profile-main-left-face {
		width: 100%;
		background-color: #fff;
		text-align: center;
	}

	.makoto-profile-main-left {
		display: flex;
		flex-wrap: wrap; /* 画面幅が狭いと折り返す */
		flex-direction: column;
		justify-content: space-around;
		width: 100%;
		max-width: 320px;
		height: auto;
	}

	.makoto-profile-main-left-list nav ul li a {
		color: rgba(45, 50, 60, 0.5);
		display: block;
		padding: 0;
		transition: all 0.5s ease;
		-moz-transition: all 0.5s ease;
		-webkit-transition: all 0.5s ease;
		-o-transition: all 0.5s ease;
		text-align: center;
		font-size: 1.6rem;
	}

	.makoto-profile-main-left-face img {
		width: 80%;
		max-width: 240px;
		height: auto;
		-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
		transition: opacity 0.35s, transform 0.35s;
		-moz-transition: opacity 0.35s, -moz-transform 0.35s;
		-o-transition: opacity 0.35s, -o-transform 0.35s;
		-webkit-transform: translate3d(-40px, 0, 0);
		transform: translate3d(-40px, 0, 0);
		-ms-transform: translate3d(-40px, 0, 0);
	}

	.makoto-profile-main-right {
		width: 100%;
		max-width: 320px;
		height: auto;
	}

	.makoto-profile-main-right div {
		padding-left: 5%;
		padding-right: 5%;
		margin: 0 auto;
	}
}
