@charset "utf-8";

.search_box{
	display:flex;
	justify-content:center;
	align-items:center;
	padding:18px 30px 25px;
	margin-bottom:60px;
	background:#F7F7F7;
}
.search_head{
	position:relative;
	font-size:1.6rem;
	letter-spacing:1.6px;
	line-height:3.24rem;
	font-weight:500;
	white-space:nowrap;
	padding:0 32px 0 22px;
	margin:0 32px 0 0;
	background:url(/img/common/icon_search.svg) no-repeat top 11px left;
}
.search_head::after{
	position:absolute;
	content:'';
	width:1px;
	height:16px;
	background:#ccc;
	top:1px;
	bottom:0;
	right:0;
	margin:auto;
}
.search_list{
	display:flex;
	align-items:center;
	flex-wrap:wrap;
	padding:0;
	margin:0;
}
.search_list li{
	list-style:none;
	margin:0 35px 0 0;
}
.search_list li:last-child{margin:0;}
.search_list a{
	display:inline-block;
	font-size:1.6rem;
	letter-spacing:1.6px;
	line-height:3.24rem;
	font-weight:500;
	color:#333 !important;
	text-decoration:none;
	padding:9px 0;
	background:linear-gradient(var(--color-blue),var(--color-blue)) no-repeat right bottom/0 2px;
	transition:background-size 0.3s;
}
.search_list a:hover,.search_list .active a{
	background-position:left bottom;
	background-size:100% 2px;
}
.column_parent .cat_area{display:none;}
.column_list{
	display:grid;
	grid-gap:55px 30px;
	grid-template-columns:1fr 1fr 1fr;
	padding:0;
	margin:0;
}
.column_item{
	list-style:none;
	margin:0 !important;
}
.column_link{
	position:relative;
	display:block;
	height:100%;
	color:#333 !important;
	text-decoration:none;
	padding-bottom:66px;
}
.column_img{
	overflow:hidden;
}
.column_img img{
	display:block;
	width:100%;
	height:100%;
	object-fit:cover;
	transition:var(--transition-img);
}
a:hover .column_img img{transform:scale(1.05);}
.column_title{
	font-size:1.8rem;
	letter-spacing:1.8px;
	line-height:2.7rem;
	font-weight:500;
	padding-left:20px;
	margin:16px 0 0;
	background:url(/img/common/arrow_r_blue.svg) no-repeat left top 9px;
	transition:color 0.3s;
}
a:hover .column_title{color:var(--color-blue);}
.column_author{
	position:absolute;
	display:flex;
	align-items:center;
	bottom:0;
	left:0;
}
.column_author_img{
	width:40px !important;
	height:40px;
	border-radius:50%;
	margin-right:10px;
	overflow:hidden;
}
.column_author_img img{
	width:100%;
	height:100%;
	object-fit:cover;
}
.column_author_name{
	font-size:1.2rem;
	letter-spacing:1.2px;
	line-height:2.1rem;
	margin:0;
}
.column_info{
	position:absolute;
	display:flex;
	align-items:center;
	bottom:11px;
	right:0;
}
.column_cate{
	position:relative;
	font-size:1.2rem;
	letter-spacing:1.2px;
	line-height:2.1rem;
	padding-right:15px;
	margin:0 15px 0 0;
}
.column_cate::after{
	position:absolute;
	content:'';
	width:1px;
	height:14px;
	background:#707070;
	top:3px;
	bottom:0;
	right:0;
	margin:auto;
}
.column_date{
	position:relative;
	font-family:var(--font-Roboto-Condensed);
	font-size:1.4rem;
	letter-spacing:1.4px;
	line-height:2.1rem;
	top:1px;
}
/* C2 */
.column_child .h1_wrap{
	max-width:800px;
	margin:80px auto 45px;
	padding-top: 65px;
	padding-left: 0;
}
.column_child .page_title{
	font-size:2.8rem;
	letter-spacing:2.8px;
	line-height:4.8rem;
	animation:none;
	text-align: left;
}
.column_head{
	position:relative;
	max-width:800px;
	margin:0 auto 40px; 
	border-bottom:1px solid #E8E8E8;
}
.column_head_author{
	display:flex;
	align-items:center;
	padding:17px 10px 15px;
}
.column_head_author div{
	width:60px;
	height:60px;
	margin-right:17px;
	border-radius:50%;
	overflow:hidden;
}
.column_head_author img{
	width:100%;
	height:100%;
	object-fit:cover;
}
.column_head_author p{
	font-size:1.4rem;
	letter-spacing:1.4px;
	line-height:2.1rem;
	margin:0;
}
.column_head .column_info{
	bottom:24px;
	right:-2px;
}
.content_in.column{max-width:800px;}
#toc_container{
	width:100%;
	font-size:100%;
	padding:25px 30px 40px;
	margin:60px 0 0;
	background:#F7F7F7;
	border:none;
}
.toc_title{
	line-height:2.7rem;
	font-weight:500;
	text-align:left;
	padding-bottom:10px;
	margin:0 0 25px !important;
	border-bottom:1px solid #ccc;
}
.toc_list{
	padding:0;
	margin:0;
}
.toc_list li{
	list-style:none;
	margin:0 0 15px;
}
.toc_list li:last-child{margin:0;}
.toc_list a{
	position:relative;
	display:block;
	font-size:1.5rem;
	letter-spacing:1.5px;
	line-height:2.25rem;
	padding-left:21px;
	transition:color 0.3s;
}
.toc_list a::before{
	position:absolute;
	content:'';
	width:6px;
	height:6px;
	border-right:1px solid #018BD3;
	border-bottom:1px solid #018BD3;
	transform:rotate(45deg);
	top:7px;
	left:6px;
}
.toc_list a:hover{color:var(--color-blue);}
.post_box p{margin:10px 0;}
.post_box h2{
	padding-bottom:16px;
	margin:65px 0 15px;
	background:none;
	border-bottom:2px solid #ccc;
	font-size:2.6rem;
	line-height:3.7rem;
}
.post_box h3{
	padding-left:12px;
	margin:50px 0 15px;
	background:linear-gradient(#333, #333) no-repeat top 5px left/2px 26px;
	font-size:2.2rem;
	line-height:3.2rem;
}
.post_box h4{
	margin:45px 0 15px;
	background:linear-gradient(#333, #333) no-repeat bottom left/20px 2px;
	border:none;
	font-size:2rem;
	line-height:2.9rem;
}
.post_box h5{
	margin:30px 0 15px;
	font-size:1.8rem;
	line-height:2.6rem;
}
.post_box strong{
	background:linear-gradient(#fffc9b, #fffc9b) no-repeat 0 100%/100% 11px;
	font-weight:bold;
}
.post_box .wp-caption-text{
	font-size:1.2rem;
	line-height:2rem;
	margin:10px 0 30px;
}
.post_box blockquote{
	position:relative;
	padding:40px 30px 30px;
	margin:40px 0 20px;
	background:#F5F5F5;
}
.post_box blockquote::before{
	position:absolute;
	content:'';
	width:26px;
	height:23px;
	background:url(/img/column/pic_double-quotation.svg) no-repeat center;
	top:-11px;
	left:30px;
}
.post_box blockquote > *:first-child{margin-top:0;}
.post_box blockquote > *:last-child{margin-bottom:0;}
.post_box blockquote p{
	font-size:1.3rem;
	letter-spacing:1.3px;
	line-height:2rem;
	margin:15px 0;
}
.post_box h2.pre{
	font-size:2.8rem;
	letter-spacing:2.8px;
	line-height:3.6rem;
	padding:54px 0 0;
	margin:120px 0 37px;
	border-top:2px solid #ccc;
	border-bottom:none;
}
.post_box h2.pre::after{
	font-size:1.2rem;
	letter-spacing:1.2px;
	line-height:2rem;
	margin-top:8px;
}
.post_box .service_img{
	width:109px;
}
.post_box .service_title{
	width:calc(100% - 109px - 15px);
	font-size:1.3rem;
	letter-spacing:1.3px;
	line-height:1.8rem;
}
.post_box .service_link{
	padding:10px 35px 10px 10px;
}
.author_box{
	display:flex;
	align-items:center;
}
.author_left{
	position:relative;
	display:flex;
	align-items:center;
	width:270px;
	padding-right:30px;
}
.author_left::after{
	position:absolute;
	content:'';
	width:1px;
	height:100px;
	background:#ccc;
	top:0;
	bottom:0;
	right:0;
	margin:auto;
}
.author_img{
	width:100px;
	height:100px;
	border-radius:50%;
	margin-right:20px;
	overflow:hidden;
}
.author_img img{
	width:100%;
	height:100%;
	object-fit:cover;
}
.author_job{
	font-size:1.2rem;
	letter-spacing:0;
	line-height:1.7rem;
	margin:0 0 6px !important;
}
.author_name{
	font-size:1.6rem;
	letter-spacing:1.6px;
	line-height:2.4rem;
	font-weight:500;
	margin:0 !important;
}
.author_right{
	width:calc(100% - 270px);
	padding-left:30px;
}
.author_right p{
	font-size:1.3rem;
	letter-spacing:1.3px;
	line-height:2.55rem;
	margin:0;
}
.comment_box{
	display:flex;
	align-items:flex-start;
	justify-content:space-between;
	padding:30px;
	background:#F7F7F7;
}
.comment_box_img{
	position:relative;
	width:156px;
	border-radius:50%;
	overflow:hidden;
}
.comment_box_txt{
	position:relative;
	width:calc(100% - 156px - 60px);
}
.comment_box_txt::before{
	position:absolute;
	content:'';
	width:1px;
	height:100%;
	background:#ddd;
	top:0;
	bottom:0;
	left:-30px;
	margin:auto;
}
.comment_box_txt > *:first-child{margin-top:0;}
.comment_box_txt p{
	font-size:1.5rem;
	letter-spacing:1.5px;
	line-height:2.85rem;
	margin:0 0 18px;
}
.comment_box_name{
	font-size:1.3rem !important;
	letter-spacing:1.3px !important;
	line-height:2.34rem !important;
	text-align:right;
	margin:0 !important;
}

/* 20240705 youtube埋め込みレスポンシブ化 */
.column_movie{
	position: relative;
	padding-bottom: 56.2%;
}
.column_movie iframe{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

@media screen and (max-width:1024px){
.column_child .h1_wrap{
	margin-top: 63px;
}

.column_list{
	grid-gap:45px 20px;
	grid-template-columns:1fr 1fr 1fr;
}
.column_title{
	font-size:1.7rem;
	letter-spacing:1.7px;
	line-height:2.6rem;
}
.column_child .page_title{
	font-size:2.4rem;
	letter-spacing:2.4px;
	line-height:3.6rem;
}
.comment_box{padding:20px;}
.comment_box_txt{width:calc(100% - 156px - 40px);}
.comment_box_txt::before{left:-20px;}

}


@media screen and (max-width:1000px){

.column_list{
	grid-gap:45px 20px;
	grid-template-columns:1fr 1fr;
}

}
@media screen and (max-width:800px){
.column_child .h1_wrap{padding-left: 20px;}
}

@media screen and (max-width:767px){

.search_box{
	display:block;
	padding:23px 20px 25px;
	margin-bottom:50px;
}
.search_head{margin:0 0 11px;}
.search_head::after{display:none;}
.cat_box{margin:0;}
.column_parent .search_list{display:none;}
.column_parent .cat_area{display:block;}
.column_parent .cat_box{
	position:relative;
	background:#fff;
}
.column_parent .cat_box::after{
	position:absolute;
	content:'';
	width:8px;
	height:8px;
	border-right:1px solid #707070;
	border-bottom:1px solid #707070;
	transform:rotate(45deg);
	top:0;
	bottom:0;
	right:23px;
	margin:auto;
}
.column_parent .cate_select{
	width:300px;
	font-size:1.5rem;
	letter-spacing:1.5px;
	line-height:3.2rem;
	padding:6px 40px 6px 20px;
	background:transparent;
	border:1px solid #ccc;
	appearance:none;
	cursor:pointer;
}
.column_parent .cate_select{width:100%;}
.column_link{padding-bottom:60px;}
.column_title{
	font-size:1.6rem;
	letter-spacing:1.6px;
	line-height:2.4rem;
}
.column_cate{
	font-size:1rem;
	letter-spacing:1px;
	line-height:1.7rem;
}
.column_cate::after{
	height:8px;
	top:0;
}
.column_date{
	font-size:1rem;
	letter-spacing:1px;
	line-height:1.7rem;
	top:0;
}
.column_child .h1_wrap{
	padding-left: 20px;
}
.column_child .page_title{
	font-size:2.2rem;
	letter-spacing:2.2px;
	line-height:3.3rem;
}
.column_head_author{padding:17px 10px 50px;}
.column_child .column_head{padding: 0 20px;}
.column_head .column_info{
	bottom:26px;
	padding-right: 20px;
}
#toc_container{padding:25px 20px 30px;}
.toc_title{
	font-size:1.6rem;
	letter-spacing:1.6px;
	line-height:2.7rem;
	margin:0 0 26px !important;
}
.toc_list li{margin-bottom:8px;}
.toc_list a{
	font-size:1.2rem;
	letter-spacing:1.2px;
}
.post_box h2{
	font-size:2.2rem;
	line-height:3.2rem;
}
.post_box h3{
	background-position:top 3px left;
	font-size:2rem;
	line-height:2.9rem;
}
.post_box h4{
	font-size:1.8rem;
	line-height:2.6rem;
	margin-top:40px;
}
.post_box h5{
	font-size:1.6rem;
	line-height:2.4rem;
}
.post_box p{line-height:2.7rem;}
.post_box h2.pre{margin:80px 0 37px;}
.post_box .service_img{width:100%;}
.post_box .service_link{padding:15px 0;}
.post_box .service_title{
	width:100%;
	margin:11px 0 0;
}
.author_box{display:block;}
.author_left{
	width:100%;
	padding-right:0;
	padding:0 0 20px;
}
.author_left::after{
	width:100%;
	height:1px;
	top:auto;
}
.author_img{margin-right:15px;}
.author_right{
	width:100%;
	padding-left:0;
	padding:20px 0 0;
}
.comment_box{
	display:block;
	padding:20px;
}
.comment_box_img{
	margin:auto;
}
.comment_box_txt{
	width:100%;
	padding:20px 0 0;
	margin:20px 0 0;
}
.comment_box_txt::before{
	width:100%;
	height:1px;
	top:0;
	bottom:auto;
	left:0;
}
.comment_box_txt p{
	font-size:1.4rem;
	letter-spacing:1.4px;
	line-height:2.66rem;
	margin:0 0 15px;
}
}


@media screen and (max-width:650px){

.column_list{grid-template-columns:1fr;}

}