@charset "utf-8";

/* =============================================
	一条工務店
============================================= */
/*---------------------------------------------
	記事ページ
---------------------------------------------*/
#collabo_wrap{
	margin: 0 auto;
	padding: 20px 0;
}

/*****
記事ヘッダー
*****/
#page_header{}

/*****
プロフィール
*****/
#profile_area{
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 2em;
}
#profile_area .profile{
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	width: 45%;
	margin: 0 auto 1em auto;
	box-sizing: border-box;
}

.profile .face{
	flex-shrink: 0;
	width: 30%;
	margin-right: 1em;
}
.profile .face img{
	width: 100%;
	height: auto;
}
.profile .profile_text{
	flex-grow: 1;
	padding: 0.5em;
	border: solid 1px #fccd3e;
	background-color: #fff;
	box-shadow: 5px 5px 0 0 #fccd3e;
}
.profile_text .profile_name{
	margin: 0 0 0.5em 0;
}

/*****
記事
*****/
#ichijo{}

.color_hamazaki{
	color: #3a9de8;
}
.color_sayama{
	color: #ec45a0;
}

.article_area{
	font-size: 1.4rem;
	line-height: 1.8;
	margin: 4em auto;
}

.article_area .ttl_type1{
	color: #fccd3e;
	font-size: 2.4rem;
	font-weight: bold;
	margin-bottom: 1em;
	padding: 0;
	border-bottom: solid 4px #fccd3e;
}

.talk_box{
	display: flex;
	margin-bottom: 2em;
}
.talk_box .talk_icon{
	flex-shrink: 0;
	text-align: center;
	font-weight: bold;
	width: 97px;
	box-sizing: border-box;
}
.talk_box .talk_icon img{
	width: 100%;
	height: auto;
	border-radius: 50%;
}
.talk_box .talk_text{
	flex-grow: 1;
	font-weight: bold;
	padding: 1em 0 0 2em;
	box-sizing: border-box;
}

.talk_img_wrap{
	display: flex;
	justify-content: space-between;
}

.talk_img_wrap .talk_box{
	flex-grow: 1;
}

.talk_img_wrap .talk_img{
	margin-left: 1em;
	padding-top: 1em;
}
.talk_img_wrap .img_m{
	width: 360px;
	flex-shrink: 0;
}
.talk_img_wrap .img_l{
	width: 480px;
	flex-shrink: 0;
}
.talk_img_wrap .img_s{
	width: 280px;
	flex-shrink: 0;
}
.talk_img_wrap .talk_img img{
	width: 100%;
	height: auto;
}

.underline{
	background-repeat: no-repeat;
	background-position: left bottom;
	background-size: 100% 50%;
}
#ichijo .underline{
	background-image: url("../img/underline.png");
}


/* ===========================================
	MediaQueries
=========================================== */
/* PC----------------------------- */
@media screen and (min-width: 768px){
}

/* スマホ----------------------------- */
@media screen and (max-width: 767px){
	
	
	/*---------------------------------------------
	記事ページ
	---------------------------------------------*/
	/*****
	プロフィール
	*****/
	#profile_area{
		display: block;
	}
	#profile_area .profile{
		width: 100%;
		margin: 0 0 1em 0;
	}
	
	.profile .profile_text{
		margin-right: 5px;
	}
	
	/*****
	記事
	*****/
	.article_area{
		font-size: 1.2rem;
		margin: 2em auto;
	}
	
	.article_area .ttl_type1{
		font-size: 1.6rem;
	}
	
	.talk_box .talk_icon{
		width: 17%;
	}
	.talk_box .talk_text{
		width: 83%;
	}
	
	.talk_img_wrap{
		display: block;
		width: 100%;
	}
	.talk_img_wrap .talk_box{
		width: 100%;
	}
	.talk_img_wrap .talk_img{
		margin: 0 auto 1em auto;
		padding: 0;
	}
	
	.talk_img_wrap .img_m{
		width: 80%;
	}
	.talk_img_wrap .img_l{
		width: 80%;
	}
	.talk_img_wrap .img_s{
		width: 60%;
	}
	
}