@charset "utf-8";

/*-------------------------------
	士業コラム（一覧）
-------------------------------*/

.Column{
	background: #f6f6f6;
}

/*----- ぱんくず */
.C-Bread{
	background: #f6f6f6;
}

/*----- キービジュアル */
.Keyvisual{
	height: 15rem;
	background: rgba(0,0,0,.75);
}
.Keyvisual__inner{
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}
.Keyvisual__title{
	width: 100%;
	font-size: 3rem;
	line-height: 1;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.Keyvisual__title::after{
	content: attr(data-en);
	font-size: 3rem;
	line-height: 1;
	display: block;
	opacity: .5;
}

.Column__inner{
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	flex-direction: row-reverse;
}

/*----- サイドバー */
.Column-sidebar{
	width: 35rem;
}
.Column-sidebar__item{
	width: 100%;
	border-top: 5px solid;
	background: #fff;
}
.Column-sidebar__item:not(:last-child){
	margin-bottom: 4rem;
}
.Column-sidebar__item-title{
	border-bottom: 1px solid #ddd;
	width: 100%;
	padding: 2rem;
	font-size: 1.6rem;
	font-weight: 600;
	line-height: 1;
}
.Column-sidebar__image{
	width: 100%;
	overflow: hidden;
}
.Column-sidebar__image a{
	width: 100%;
	display: block;
	opacity: 1 !important;
}
.Column-sidebar__image img{
	transition: .3s all ease-in-out;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.Column-sidebar__image a:hover img{
	transform: scale(1.05);
}
.Column-sidebar__item-body-inner{
	width: 100%;
	padding: 2rem;
}
.Column-sidebar__data{
	width: 100%;
	margin-bottom: .4rem;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}
.Column-sidebar__office{
	font-size: 1.55rem;
	line-height: 1.5;
	font-weight: 600;
}
.Column-sidebar__area{
	font-size: 1.1rem;
	color: #999;
	line-height: 1.5;
}
.Column-sidebar__title{
	width: 100%;
	margin-bottom: 1.5rem;
	font-weight: 600;
	line-height: 1.35;
}
.Column-sidebar__subtitle{
	font-size: 1.3rem;
	margin-bottom: 1rem;
	line-height: 1.25;
	color: #999;
}
.Column-sidebar__button{
	width: 100%;
	height: 5rem;
}
.Column-sidebar__button a{
	width: 100%;
	height: 100%;
	font-size: 1.4rem;
	border-radius: .3rem;
	background: #c01f0e;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
}

.Column-sidebar__item.-category{
	display: none;
}
.Column-sidebar__item-list-item{
	width: 100%;
}
.Column-sidebar__item-list-item:not(:last-child){
	border-bottom: 1px solid #ddd;
}
.Column-sidebar__item-list-item a{
	width: 100%;
	padding: 1.5rem 2rem;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}
.Column-sidebar__item-list-item.-current a{
	font-weight: 700;
}

.Column-sidebar__name{
	width: 100%;
	margin-bottom: .8rem;
	column-gap: 1.2rem;
	display: flex;
	align-items: center;
	justify-content: center;
}
.Column-sidebar__name-license{
	font-size: 1.4rem;
	line-height: 1.5;
	font-weight: 600;
}
.Column-sidebar__name-name{
	font-size: 1.4rem;
	line-height: 1.5;
	font-weight: 600;
}
.Column-sidebar__description{
	font-size: 1.2rem;
	margin-bottom: 1.5rem;
	line-height: 1.5;
}
.Column-sidebar__description-text{
	line-height: 1.5;
	text-align: justify;
}
.Column-sidebar__description-text br{
	display: none;
}

/*----- コンテンツ */
.Column-main{
	width: 100%;
}
.Column-sidebar + .Column-main{
	width: calc(100% - 35rem);
	padding-right: 4rem;
}
.Column-main__title{
	width: 100%;
	padding: 1.1rem 2.1rem;
	font-size: 1.9rem;
	font-weight: 500;
	background: #333;
	color: #fff;
}
.Column-main__body{
	width: 100%;
	background: #fff;
}
.Column-list{
	width: 100%;
	padding: 4rem 2.5rem;
}
.Column-list__item{
	width: 100%;
}
.Column-list__item:not(:last-child){
	padding-bottom: 3rem;
}
.Column-list__item a{
	width: 100%;
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	opacity: 1 !important;
}

.Column-list__item-image{
	width: 20rem;
	border: 1px solid #ddd;
	overflow: hidden;
}
/* .Column-list__item-image a{
	width: 100%;
	display: block;
	opacity: 1 !important;
} */
.Column-list__item-image img{
	transition: .3s all ease-in-out;
	width: 100%;
	height: 100%;
	aspect-ratio: 3 / 2;
	object-fit: cover;
}
.Column-list__item a:hover .Column-list__item-image img{
	transform: scale(1.05);
}
.Column-list__item-body{
	width: calc(100% - 20rem);
	padding-left: 2.5rem;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
}
.Column-list__item-title{
	font-size: 1.6rem;
	margin-bottom: .8rem;
	font-weight: 700;
	line-height: 1.5;
}
.Column-list__item-title *{
	line-height: 1.5;
}
.Column-list__item-text{
	margin-bottom: 1.3rem;
}
.Column-list__item-text p{
	font-size: 1.2rem;
	line-height: 1.5;
	color: #999;
	text-align: justify;
}
/* .Column-list__item-text a{
	line-height: 1.4;
	text-decoration: underline;
    color: #299ee4;
} */
.Column-list__item-category{
	line-height: 1;
}
.Column-list__item-category-item{
	font-size: 1.05rem;
	padding: .6rem 1.2rem .7rem;
	border-radius: .5rem;
	line-height: 1;
	display: inline-block;
	color: #fff;
	background: #222;
}
.Column-list__item-category-item:first-child{
	margin-right: .6rem;
}

/*----- ページャー */
.wp-pagenavi{
	width: 100%;
	margin-top: 5rem;
	display: flex;
	align-items: center;
	justify-content: center;
}
.wp-pagenavi *{
	width: 4rem;
	height: 4rem;
	margin-left: .3rem;
	margin-right: .3rem;
	line-height: 1;
	border: 1px solid #333;
	display: flex;
	align-items: center;
	justify-content: center;
}
.wp-pagenavi a{
	background: #333;
	color: #fff;
}

@media screen and (min-width:769px) , print{

	/* .maxwidth{
		max-width: 121rem;
	} */

}
@media screen and (max-width:768px) , print{

	/*----- キービジュアル */
	.Keyvisual{
		height: 25rem;
	}
	.Keyvisual__title{
		font-size: 4rem;
		row-gap: 2rem;
		flex-direction: column;
		align-items: flex-start;
	}
	.Keyvisual__title::after{
		font-size: 3.6rem;
	}

	.Column__inner{
		row-gap: 7.5rem;
		flex-direction: column-reverse;
	}

	/*----- サイドバー */
	.Column-sidebar{
		width: 100%;
	}
	.Column-sidebar__item{
		border-top-width: .5rem;
	}
	.Column-sidebar__item:not(:last-child){
		margin-bottom: 5.5rem;
	}
	.Column-sidebar__item-title{
		padding: 3rem 2rem 3.5rem;
		/*font-size: 2.8rem;*/
		font-size: 3rem;
	}
	.Column-sidebar__item-body-inner{
		padding: 2.5rem 3.5rem 3.5rem;
	}
	.Column-sidebar__data{
		margin-bottom: 1rem;
	}
	.Column-sidebar__office{
		font-size: 2.7rem;
	}
	.Column-sidebar__area{
		font-size: 1.9rem;
	}
	.Column-sidebar__title{
		margin-bottom: 2.5rem;
	}
	.Column-sidebar__subtitle{
		font-size: 2.4rem;
		margin-bottom: 2.5rem;
	}
	.Column-sidebar__button{
		height: 8rem;
	}
	.Column-sidebar__button a{
		/*font-size: 2.4rem;*/
		font-size: 2.65rem;
		border-radius: .5rem;
	}

	.Column-sidebar__item-list-item a{
		padding-left: 2.5rem;
		padding-right: 2.5rem;
		/*font-size: 2.4rem;*/
		font-size: 2.65rem;
	}

	.Column-sidebar__name{
		margin-bottom: 1rem;
	}
	.Column-sidebar__name-license{
		/*font-size: 2.5rem;*/
		font-size: 2.75rem;
	}
	.Column-sidebar__name-name{
		/*font-size: 2.5rem;*/
		font-size: 2.75rem;
	}
	.Column-sidebar__description{
		/*font-size: 2.2rem;*/
		font-size: 2.55rem;
		margin-bottom: 2.5rem;
	}

	/*----- コンテンツ */
	.Column-sidebar + .Column-main{
		width: 100%;
		padding-right: 0;
	}
	.Column-main__title{
		padding: 2.5rem 2.5rem 2rem;
		font-size: 3rem;
	}
	.Column-list{
		padding: 4rem 3.5rem;
	}
	.Column-list__item:not(:last-child){
		padding-bottom: 3.5rem;
	}

	.Column-list__item-title{
		/*font-size: 2.7rem;*/
		font-size: 2.85rem;
	}
	.Column-list__item-text p{
		/*font-size: 2.2rem;*/
		font-size: 2.55rem;
	}
	.Column-list__item-category{
		margin-top: 0;
	}
	.Column-list__item-category-item{
		font-size: 2rem;
		padding: 1rem 1.5rem 1.25rem;
	}
	.Column-list__item-category-item:first-child{
		margin-right: 1rem;
	}

	/*----- ページャー */
	.wp-pagenavi{
		margin-top: 7.5rem;
	}
	.wp-pagenavi *{
		width: 6.5rem;
		height: 6.5rem;
		margin-left: .6rem;
		margin-right: .6rem;
		font-size: 2.4rem;
	}

	/*----- フッター */
	.footer-copyright{
		padding-bottom: 0;
	}
	.gotop{
		bottom: 9.34rem;
	}

}



/*-------------------------------
	士業コラム（詳細）
-------------------------------*/

.Single-bread{
	border-bottom: none;
}
.Single-bread .C-Braed__inner{
	height: 9rem;
}

.Single{
	padding-top: 0;
}
.Single__body{
	width: 100%;
	padding: 4rem;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}
.Single__header{
	width: 100%;
	margin-bottom: 4rem;
	text-align: left;
}
.Single__title{
	font-size: 2.8rem;
	margin-bottom: calc(2rem - .3em);
	line-height: 1.6;
	font-weight: 600;
}
.Single__data{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}
.Single__data-time{
	font-size: 1.4rem;
	padding-right: 1.5rem;
	margin-right: 1.5rem;
	line-height: 1;
	color: #999;
	position: relative;
	z-index: 5000;
}
.Single__data-time::after{
	content: "";
	display: block;
	width: 1px;
	height: 100%;
	background: #999;
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 5000;
}
.Single__data-inner{
	font-size: 1.4rem;
	column-gap: 1rem;
	line-height: 1;
	color: #999;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}
.Single__data-license{
	line-height: 1;
	display: block;
}
.Single__data-name{
	line-height: 1;
	display: block;
}
.Single__image{
	width: calc(100% + 8rem);
	margin-bottom: 4rem;
}
.Single__image img{
	width: 100%;
}

.Single-sidebar{
	position: sticky;
	/* top: 7.5rem; */
	top: 0;
	right: 0;
}
.Single-sidebar__image img{
	aspect-ratio: 3 / 2;
}

.Single-mokuzi{
	width: 100%;
	padding: 1.5rem 2rem 1.8rem;
	border: 2px solid #eee;
}
p + .Single-mokuzi{
	margin-top: 2.8rem;
}
.Single-mokuzi__title{
	font-size: 1.8rem;
	margin-bottom: .5rem;
	font-weight: 700;
	line-height: 1.65;
	text-align: center;
}
.Single-mokuzi__body{
	width: 100%;
}
.Single-mokuzi__item{
	font-weight: 600;
	width: fit-content;
	display: flex;
    align-items: flex-start;
    justify-content: flex-start;
	flex-wrap: wrap;
}
.Single-mokuzi__item:not(:last-child){
	margin-bottom: .5rem;
}
.Single-mokuzi__item:has(.Single-mokuzi__child):not(:last-child){
	margin-bottom: 1rem;
}
.Single-mokuzi__item a{
	line-height: 1.65;
	color: #299ee4;
	display: block;
}
.Single-mokuzi__child{
	width: 100%;
	padding-top: .2rem;
	padding-left: 1.6rem;
}
.Single-mokuzi__child-item{
	font-weight: 400;
	display: flex;
    align-items: flex-start;
    justify-content: flex-start;
	flex-wrap: wrap;
}

.Single-editor{
	width: 100%;
	margin-bottom: 4rem;
}
.Single-editor > *{
	margin-top: 2rem;
	margin-bottom: 2rem;
}
.Single-editor > *:last-child{
	margin-bottom: 0;
}

.Single-editor h2{
	width: 100%;
    padding: 1.4rem 2.1rem;
	margin-top: 5.6rem;
	margin-bottom: 1.4rem;
    font-size: 2.2rem;
    font-weight: 600;
    background: #333;
    color: #fff;	
}
.Single-editor h3{
	width: 100%;
	font-size: 2rem;
	margin-top: 4.2rem;
	margin-bottom: 1.4rem;
	border-bottom: 2px solid;
	font-weight: 600;
}
.Single-editor p{
	line-height: 1.65;
}

/*----- 注意書き */
.Single-notice{
	width: 100%;
	margin-bottom: 4rem;
	padding: 2.5rem 3rem;
	background: #f6f6f6;
}
.Single-notice__text{
	font-size: 1.4rem;
	line-height: 1.65;
}
.Single-notice__text a{
	line-height: 1.65;
	color: #299ee4;
	text-decoration: underline;
}

/*----- この記事をシェアする */
.Single-sns{
	width: 100%;
}
.Single-sns__title{
	width: 100%;
	margin-bottom: 1.5rem;
	font-size: 1.8rem;
	font-weight: 700;
	text-align: center;
}
.Single-sns__item-wrap{
	width: 100%;
	column-gap: 1.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
}
.Single-sns__item{
	width: 5rem;
	height: 5rem;
	border-radius: 50%;
	overflow: hidden;
}
.Single-sns__item a{
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.Single-sns__item img{
	width: 100%;
}
.Single-sns__item.-line a{
	background: #06C755;
}
.Single-sns__item.-x a{
	padding: 1.4rem;
	background: #000;
}
.Single-sns__item.-fb a{
	background: #1877f2;
}

/*----- その他の記事 */
.Single-relation{
	width: 100%;
	padding-top: 7.5rem;
}
.Single-relation__title{
	font-size: 2rem;
	margin-bottom: 2rem;
	font-weight: 700;
}
.Single-relation__list{
	padding: 0;
}

@media screen and (min-width:769px) , print{

}
@media screen and (max-width:768px) , print{

	.Single-bread .C-Braed__inner{
		height: 10rem;
	}

	.Single{
		padding-top: 0;
	}
	.Single .Column__inner{
		row-gap: 0;
	}
	.Single .Single-main{
		width: calc(100% + (3.5rem * 2));
		margin-left: -3.5rem;
	}
	.Single__body{
		padding-left: 3.5rem;
		padding-right: 3.5rem;
	}
	.Single__header{
		margin-bottom: 5.5rem;
	}
	.Single__title{
		/*font-size: 3.8rem;*/
		font-size: 3.85rem;
		margin-bottom: -.2em;
		line-height: 1.4;
	}
	.Single__data{
		padding-top: 2.7rem;
	}
	.Single__data-time{
		/*font-size: 2.4rem;*/
		font-size: 2.7rem;
	}
	.Single__data-inner{
		/*font-size: 2.4rem;*/
		font-size: 2.7rem;
	}
	.Single__image{
		width: calc(100% + 7rem);
		margin-bottom: 3.5rem;
	}

	.Single-sidebar{
		position: static;
	}
	.Single-sidebar .Column-sidebar__item-body-inner{
		padding-bottom: 0;
	}

	.Single-mokuzi{
		padding: 2.5rem 3.5rem 3rem;
	}
	p + .Single-mokuzi{
		margin-top: 5.5rem;
	}
	.Single-mokuzi__title{
		/*font-size: 2.6rem;*/
		font-size: 2.75rem;
	}
	.Single-mokuzi__item{
        font-size: 2.75rem;
	}
	.Single-mokuzi__item:not(:last-child){
		margin-bottom: 1.5rem;
	}
	.Single-mokuzi__item:has(.Single-mokuzi__child):not(:last-child){
		margin-bottom: 2rem;
	}
	.Single-mokuzi__child{
		padding-top: .5rem;
		padding-left: 2.5rem;
	}

	.Single-editor{
		margin-bottom: 5.5rem;
	}
	.Single-editor > *{
		margin-top: 3.5rem;
		margin-bottom: 3.5rem;
	}

	.Single-editor h2{
		padding: 2rem 2.5rem 2.2rem;
		margin-top: 5.5rem;
		margin-bottom: 2.5rem;
		font-size: 3.2rem;
		line-height: 1.35;
	}
	.Single-editor h3{
		/*font-size: 2.8rem;*/
		font-size: 3rem;
		padding-bottom: 1rem;
		margin-top: 4.5rem;
		margin-bottom: 0;
	}
	.Single-editor p{
        font-size: 2.75rem;
	}

	/*----- 注意書き */
	.Single-notice{
		margin-bottom: 5.5rem;
		padding: 3rem 3.5rem;
	}
	.Single-notice__text{
		/*font-size: 2.2rem;*/
		font-size: 2.55rem;
	}

	/*----- この記事をシェアする */
	.Single-sns{
		margin-bottom: 5.5rem;
	}
	.Single-sns__title{
		margin-bottom: 1.5rem;
		font-size: 2.6rem;
	}
	.Single-sns__item-wrap{
		column-gap: 2.5rem;
	}
	.Single-sns__item{
		width: 7.5rem;
		height: 7.5rem;
	}
	.Single-sns__item.-x a{
		padding: 2rem;
	}

	/*----- その他の記事 */
	.Single-relation{
		padding-top: 5.5rem;
	}
	.Single-relation__title{
		/*font-size: 2.8rem;*/
		font-size: 3rem;
		margin-bottom: 2.5rem;
		line-height: 1.5;
	}
	.Single-relation .Column-list__item:not(:last-child){
		padding-bottom: 5.5rem;
	}
	.Single-relation .Column-list__item a{
		flex-direction: column;
	}
	.Single-relation .Column-list__item-image{
		width: 100%;
		margin-bottom: 2.5rem;
	}
	.Single-relation .Column-list__item-body{
		width: 100%;
		padding-left: 0;
	}

	/*---- フローティング */
	.Column-homepage{
		width: calc(100% - 3.5rem);
		position: fixed;
		right: 0;
		bottom: 0;
		z-index: 9900;
		background: #c01f0e;
	}
	.Column-homepage a{
		width: 100%;
        height: 13.5rem;
        padding: 0 5rem;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
	}
	.Column-homepage__text{
        width: 100%;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        flex-direction: column;
        position: relative;
        color: #fff;
	}
	.Column-homepage__text::after{
		content: "";
        display: block;
        width: 4.8rem;
        height: 8rem;
        background-image: url(../images/interview/sp_icon_interview-homepage.svg);
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center center;
        position: absolute;
        right: 0;
        top: 0;
	}
	.Column-homepage__textSub{
		width: fit-content;
        max-width: calc(100% - 4.8rem);
        font-size: 2.2rem;
        margin-bottom: 1.4rem;
        line-height: 1;
        letter-spacing: 0;
        display: block;
	}
	.Column-homepage__textMain{
        width: fit-content;
        max-width: calc(100% - 4.8rem);
        font-size: 3.6rem;
        font-weight: 500;
        line-height: 1;
        letter-spacing: 0.03em;
        display: block;
	}

	/*----- フッター */
	.footer.-single .footer-copyright{
		padding-bottom: 13.5rem;
	}
	.footer.-single .footer-copyright small{
		height: 9.34rem;
	}
	.footer.-single .gotop{
		bottom: 13.5rem;
	}

}