@charset "utf-8";
/* CSS Document */

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

	プロフィール

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

.content_block {
	max-width: 840px;
	margin: 0 auto;
}
.content_block .contents_flex {
	justify-content: space-between;
    align-items: flex-start;
	width: 100%;
}
.contents_flex .contents_flex_img {
	width: 240px;
	min-height: 0%; /* IE対策用 */
}
.contents_flex .contents_flex_img p,
.contents_flex .contents_flex_img p img {
	width: 100%;
}

.contents_flex .contents_flex_text {
	width: calc(100% - 300px);
}
.contents_flex .contents_flex_text .contents_flex_title01 p {
	font-size: 1.5rem;
	font-weight: bold;
}
.contents_flex .contents_flex_text .contents_flex_title01 p span {
    display: inline-block;
    font-size: 1.25rem;
    border-left: #68C3C5 solid 4px;
    padding: 0.05rem 0 0.05rem 1.1rem;
    margin: 0 0 0 1rem;
}
.contents_flex .contents_flex_text .contents_flex_title01 + .contents_flex_textbox {
	margin: 1.5rem 0 0;
}
.contents_flex .contents_flex_text .contents_flex_list {
	background: #FFF;
	border: #CCC solid 1px;
	padding: 1.5rem 2rem;
}
.contents_flex .contents_flex_text .contents_flex_textbox + .contents_flex_list {
	margin: 1.5rem 0 0;
}
.contents_flex .contents_flex_text .contents_flex_list li + li {
	margin: .25rem 0 0;
}
.contents_flex .contents_flex_text .contents_flex_list li > a {
	padding: 0 .25rem;
	text-decoration: underline;
}
.contents_flex .contents_flex_text .contents_flex_list li > a:hover {
	opacity: .5;
	text-decoration: none;
}



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

	レスポンシブ

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

/* タブレットサイズ（960px以下） */
@media all and (max-width: 960px) {
.content_block .contents_flex {
    flex-flow: row;
}
.contents_flex .contents_flex_img {
	width: 220px;
}
.contents_flex .contents_flex_text {
	width: calc(100% - 240px);
}
/*.contents_flex .contents_flex_img + .contents_flex_text {
	margin: 2rem auto 0;
}*/
}

/* スマホサイズ（600px以下） */
@media all and (max-width: 600px) {
.content_block .contents_flex {
    flex-flow: column;
}
.contents_flex .contents_flex_img,
.contents_flex .contents_flex_text {
	width: 100%;
}
.contents_flex .contents_flex_img {
	width: 100%;
	max-width: 200px;
}
.contents_flex .contents_flex_img + .contents_flex_text {
    margin: 1rem auto 0;
}
.contents_flex .contents_flex_text .contents_flex_title01 p {
	font-size: 1.25rem;
}
.contents_flex .contents_flex_text .contents_flex_title01 p span {
    display: block;
	font-size: 1rem;
    border-top: #68C3C5 solid 2px;
    border-left: #68C3C5 solid 0px;
    padding: .25rem 0 0;
    margin: .5rem 0 0;
}
.contents_flex .contents_flex_text .contents_flex_title01 + .contents_flex_textbox {
    margin: 1.15rem 0 0;
}
.contents_flex .contents_flex_text .contents_flex_list {
    padding: 0.75rem;
}
.contents_flex .contents_flex_text .contents_flex_textbox + .contents_flex_list {
    margin: 1.15rem 0 0;
}
}


