/*--------------------
メイン
---------------------*/
#main {
    padding-top: 80px;
}

/*--------------
共通：見出し
-------------*/
.single_com_h1 {
    font-size: 80px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.12em;
    line-height: 1.1;
    text-shadow: #000 0 3px 6px;
	position: relative;
	z-index: 0;
	text-align: center;
	padding: 50px;
	display:flex;
	flex-direction:column;
}

.single_com_h1 .single_com_sub_ttl {
    font-size: 50px;
    font-weight: 500;
    text-transform: uppercase;
}

.single_com_h1 .single_com_h1_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.single_com_h2 {
	color: #6E5F51;
    font-size: 50px;
    font-weight: bold;
    margin-bottom: 5%;
	border-bottom: solid 2px #6E5F51;
	border-top: solid 2px #6E5F51;
	position: relative;
	display: flex;
	align-items: center;
}

.single_com_h2_img{
    width: 90px;
    height: 60px;
	object-fit: cover;
	margin-right: 20px;
}

.single_com_h2 .single_com_sub_ttl {
	font-size: 30px;
    font-weight: 500;
}

.single_com_h3 {
	color: #6E5F51;
    font-size: 30px;
    font-weight: bold;
	margin-bottom: 20px;
}

.single_com_h4 {
	color: #525252;
    text-align: center;
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 5%;
}

.single_com_h5 {
	color: #525252;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5%;
}

/*---------------
共通：コンテンツエリア
---------------*/
.single_flex {
	display:flex;
	justify-content: center;
	margin-bottom:80px;
}

.single_flex .single_flex_contents_01{
	width:70%;
}

.single_flex .single_flex_contents_02{
	width:25%;
	max-width:350px;
}

.sidebar {
	list-style: none;
	margin-top:100px;
	background-color:#F4F1E7;
	border-radius:10px;
	box-shadow:rgba(0,0,0,.25)0 4px 4px;
	padding:20px;
}

.widgettitle {
	color: #6E5F51;
	padding: 5px 0;
	border-top: 1px solid #6E5F51;
	border-bottom: 1px solid #6E5F51;
}

.widget ul {
	list-style: inside;
}

.widget ul li {
	margin:10px 0;
}

.widget ul li a{
	text-decoration:none;
	color:#525252;
	font-size: 18px;
	overflow: hidden;
	-o-text-overflow: ellipsis;
	text-overflow: ellipsis;
	white-space: nowrap;
	display: inline-block;
	width: calc(100% - 24px);
	vertical-align: middle;
}

.single_inner {
    width: 95%;
	max-width: 1000px;
    margin: 0 auto;
    padding-top: 100px;
	position: relative;
}

.single_inner:before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background-image: url(../img/circle_img.png);
    background-size: cover;
    top: calc(50% - 200px);
    left: -170px;
    z-index: -1;
}

.single_inner:after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background-image: url(../img/circle_img.png);
    background-size: cover;
    right: -200px;
    top: calc(50% - 200px);
    z-index: -1;
}

.contents_inner .com_content {
    text-align: center;
	border-radius: 7px;
	padding: 30px;
	margin-bottom: 60px;
	position:relative;
}

/*----------------
コンテンツ
---------------*/
.single_in_link_contents {
	margin-bottom:60px;
}


.com_content .content_flex {
	display: flex;
	width: 90%;
	justify-content: space-between;
}

.com_content .content_flex .content_img {
	border-radius: 10px;
}

.com_content .content_flex .com_content_txt {
	margin-left: 20px;
    font-size: 20px;
    text-align: start;
}

/*---------------
背景：h1
-------------*/
.single_com_h1.works_h1:before {
    background-image: url(../img/works1.jpg);
    background-size: cover;
	background-position: center;
    content: '';
    position: absolute;
    top: -3px;
    bottom: -3px;
    left: -3px;
    right: -3px;
    filter: blur(3px);
    z-index: -1;
}

/*-------------------
 共通：リンク
-----------------------*/
#main .single_page_nation {
	width: 80%;
	display: flex;
	justify-content: center;
	align-items:center;
	margin: 0 auto 40px;
}

#main .single_page_nation a {
	width: 100px;
	height:50px;
	display: flex;
	background: #6E5F51;
	justify-content: center;
	align-items:center;
	border-radius: 20px;
	text-decoration: none;
	color:#fff;
	margin: 20px;
}

#main .single_link_back a {
	width: 200px;
	height:50px;
	display: flex;
	background-color: #F4F1E7;
	border: #6E5F51 2px solid;
	justify-content: center;
	align-items:center;
	border-radius: 20px;
	text-decoration: none;
	color:#6E5F51;
	margin: 0 auto;
}

@media screen and (max-width: 1024px) {
	.single_com_h1 {
		font-size: 40px;
		padding:40px 0;
	}

	.single_com_h1 .single_com_sub_ttl {
		font-size: 25px;
		font-weight: 500;
	}

	.single_com_h2 {
		font-size: 25px;
	}

	.single_com_h2_img {
		width: 45px;
		height: 30px;
	}
	.com_content .content_flex {
		flex-direction:column;
	}
	.com_content .content_flex .content_img {
		margin:0 auto 30px;
	}
	.widgettitle {
		font-size:20px;
	}
	.widget ul li a {
		font-size:16px;
	}

}

@media screen and (max-width:600px) {
	.single_flex {
		flex-direction:column;
	}
	.single_flex .single_flex_contents_01,
	.single_flex .single_flex_contents_02 {
		width:100%;
		max-width:unset;
	}
	.single_flex .single_flex_contents_01 {
		margin-bottom: 30px;
	}
	.contents_inner .com_content {
		padding:0;
	}
	.com_content .content_flex {
		width:100%;
	}
	.sidebar {
		width:95%;
		margin: 0 auto;
	}
	.single_com_h1 {
		font-size:30px;
	}
}