/* common */
body {
	font-family: '游ゴシック', 'YuGothic', 'Hiragino Kaku Gothic ProN', 'Hiragino Kaku Gothic Pro', 'ＭＳ ゴシック', sans-serif;
	color: #3a3a3a;
	line-height:1.8;
}

a {
	color: #171717;
}

a:visited {
	color: #171717;
}

a:hover {
	color: #808080;
}

a:active {
	color: #171717;
}

a {
	transition: all 0.2s linear 0s;
}

p {
	margin-top: 0;
}

.font-note {
	font-family: "Noto Serif JP",
		serif;
}

.setting_center p {
	line-height: 1.8;
}

.content {
	width: 90%;
	max-width: 1200px;
	margin: auto;
}

img {
	max-width: 100%;
}

.relative {
	position: relative;
}

h1 {
	margin: 0;
	font-size: 26px;
}

p,
h1,
h2,
h3 {
	word-break: break-all;
}

.d-flex {
	display: flex
}

.text-start {
	text-align: left;
}

.text-center {
	text-align: center;
}

@media screen and (min-width: 1046px) {
	.flex-pc-only {
		display: flex
	}
}

/* btn */
.btn-arrow {
	border: 1.5px #3a3a3a solid;
	background-color: #fff;
	padding: 6px;
	box-shadow: 0px 2px #878787;
	position: relative;
	text-decoration: none;
	text-align: center;
	display: block;
}

.btn-arrow:hover {
	background-color: #fafafa;
	padding: 6px;
	transition: all 0.2s linear 0s;
}

.btn-arrow:before {
	content: " ";
	display: block;
	width: 24px;
	height: 8px;
	background-image: url(../img/btn-arrow.svg);
	position:absolute;
	top: 36%;
	right: 20px;
	transition: all 0.2s;
}

.btn-arrow:hover:before{
	right: 10px;
}

.btn-arrow.disabled {
	color: #808080;
	border: 1.5px #808080 solid;
	box-shadow: none;
	pointer-events: none;
	transition: none;
	right: 0;
}

.btn-arrow.disabled:hover {
	pointer-events: none;
	background-color: #fff;
}

.btn-arrow.disabled:before{
	opacity: 0.5;
}

.btn-icon {
	background-color: transparent;
	border: none;
	cursor: pointer;
	outline: none;
	padding: 0;
	appearance: none;
}


/* header */
header {
	background-color: #fff;
	border-bottom: 1px #efefef solid;
	position: sticky;
	top: 0px;
	z-index: 10;
	padding:10px 12px;
	justify-content: space-between;
}

header>div {
	height: 80px;
	width: 90%;
	max-width: 1200px;
	margin: auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	height: 64px;
}

.logo img {
	width: 200px;
}

header .contact_btn {
	border: 2px #363f32 solid;
	padding: 10px 20px;
}

@media screen and (max-width: 1055px) {
	.logo {
		height: 48px;
	}
	
	.logo img {
		width: auto;
		height: 100%;
	}
}

/* nav */
nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.menu-nav {
	align-items: center;
	font-size: 14px;
	overflow: hidden;
}

.menu-nav ul li {
	padding:0px 4px;
	margin: 0px 8px;
	position: relative;
}

.menu-nav ul li a {
	text-decoration: none;
	font-weight:bold;
	display: block;
	padding-top: 4px;
	padding-bottom: 4px;
}

.menu-nav ul li a:hover
.menu-nav ul li a:link
{
	color: #171717;
}

.menu-nav .language-settings {
	margin-left: 26px;
	margin-right: 20px;
}

.menu-nav .language-settings .icon-img {
	width: 16px;
	margin-top: 4px;
	margin-right: 4px;
}

.menu-nav .language-settings .language {
	margin-left: 8px;
	margin-right: 8px;
}

.menu-nav .language-settings .selection {
	font-weight:bold;
}

#drawer {
	display: none;
}
@media screen and (min-width: 1046px) {
	.menu-nav ul li:before {
		content: " ";
		display: block;
		position: absolute;
		left: 0;
		right: 0;
		bottom: 0;
		height: 2px;
		background: #727272;
		z-index: -1;
		transform: scaleX(0);
		transform-origin: bottom right;
		transition: transform 0.3s ease;
	}

	.menu-nav ul li:hover::before {
		transform: scaleX(1);
		transform-origin: bottom left;
	}
}

/* nav(モバイル開閉) */
@media screen and (max-width: 1045px) {

#drawer {
	display: none;
}

label {
	cursor: pointer;
	position: fixed;
}

.open {
	z-index: 2;
	top: 8px;
	right: 8px;
	width: 48px;
	height: 48px;
	transition: background .6s, transform .6s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.open::before,
.open::after {
	content: "";
}

.open span,
.open::before,
.open::after {
	content: "";
	position: absolute;
	top: calc(50% - 1px);
	left: 30%;
	width: 40%;
	border-bottom: 2px solid #3a3a3a;
	transition: transform .6s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.open::before {
	transform: translateY(-8px);
}

.open::after {
	transform: translateY(8px);
}

.close {
	z-index: 1;
	inset: 0;
	pointer-events: none;
	transition: background .6s;
}

#drawer:checked+.open span {
	transform: scaleX(0);
}

#drawer:checked+.open::before {
	transform: rotate(135deg) scaleX(1.2);
}

#drawer:checked+.open::after {
	transform: rotate(-135deg) scaleX(1.2);
}

/* モバイルメニュー */
.menu-nav {
	z-index: 1;
	position: fixed;
	overflow: auto;
	top: 68px;
	right: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	background: rgba(255, 255, 255, 0.9);
	transform: translateX(100%);
	transition: transform .6s cubic-bezier(0.215, 0.61, 0.355, 1);
	font-size: 20px;
	flex-direction: column;
}

.menu-nav ul {
	margin: 0;
	padding: 0;
	border-bottom: 1px solid #3a3a3a;
	order: 2;
	width: 100%;
}

.menu-nav ul li {
	line-height: 1.4;
	margin: 0;
}

.menu-nav li:not(:first-child) {
	border-top: 1px solid #3a3a3a;
}

.menu-nav ul li a {
	display: block;
	padding: 16px 30px;
	font-weight: bold;
	text-decoration: inherit;
}

#drawer:checked~.menu-nav {
	transform: none;
}

.menu-nav .language-settings {
	order: 1;
	border-bottom: 1px solid #3a3a3a;
	width: 100%;
	padding: 10px 0px 8px;
	margin: 0 10px 0 0;
	justify-content: flex-end;
}

}

/* top */
main {
	background-color: #f9f9f9;
	padding-bottom: 80px;
	min-height: calc(100vh - 350px);
}
.home .mv {
	overflow: hidden;
	position: relative;
	width: 100%;
	height: 50vh;
	text-align: center;
}

.home .mv div {
	position: absolute;
	z-index: 1;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100vw;
}

.home .mv p {
	font-size: 18px;
	font-family: "Noto Serif JP",
	serif;
	line-height:2;
	color: #fff;
	text-shadow: #2a3337 1px 0 10px;
	margin:0px 40px 40px 40px;
}

.home .mv img {
	width: calc(100vh - 180px);
}

.home .mv figure {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	margin: 0;
}

.home .mv figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: bottom;
}

.home .container {
	padding: 50px 50px 40px;
	max-width: 1200px;
	margin: 0 auto;
}

h2 {
	font-family: "Noto Serif JP",
	serif;
	font-weight: 400;
	font-size: 34px;
	margin: 0 0 20px;
}

.home .message .col-left {
	width: 48%;
	min-width: 450px;
	align-items: center;
	position: relative;
}

.home .message .col-left div {
	z-index: 2;
}

.home .message .col-left h2 {
	position: relative;
}

.home .description {
	font-size: 14px;
}

.home .message .col-left svg {
	margin: 0 30px;
}

.home .message .col-right {
	width: 52%;
	position: relative;
}

.home .col-right div {
	position: relative;
	z-index: 2;
}

.home .message .btn-arrow,
.home .legal_service .btn-arrow,
.home .professionals .btn-arrow {
	width: 272px;
}

.home .message .btn-arrow {
	position: absolute;
	bottom: -16px;
	right: 4px;
}

.home .message .col-right p {
	background-color: #fff;
	padding: 20px 20px 40px;
}

.decoration {
	position: absolute;
	background-color: rgba(232, 232, 234, 0.5);
	z-index: 1;
}

.home .legal_service {
	position: relative;
	margin-top: 50px;
}

.home .legal_service h2 span,
.home .professionals h2 span	{
	position: relative;
}

.home .legal_service h2 span:before,
.home .professionals h2 span:before {
	content: '';
	position: absolute;
	height: 1px;
	width: 30px;
	background-color: #3a3a3a;
	left: -46px;
	top: 50%;
}

.home .legal_service .text-center {
	z-index: 2;
	position: relative;
}

.home .legal_service .service .service-item {
	position: relative;
}

.service-item::before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: linear-gradient(180deg, #3a3a3a, transparent);
}

.home .legal_service .service .service-item .service-background-img {
	object-fit: cover;
	min-width: 200px;
	width: 25vw;
	height: 200px;
}

.home .legal_service .service .service-item .service-item-text {
	position: absolute;
	color: #fff;
	width: 100%;
	top: 50px;
}

.home .legal_service .service .service-item p {
	margin: 8px;
	font-size: 18px;
}

.home .professionals {
	padding: 50px 0 40px;
}

.home .professionals .background-color {
	background-color: #f1f1f2;
}

.home .professionals .btn-layout {
	margin:30px 0 10px;
	justify-content: center;
}

.home .article-list {
	min-height: 250px;
}

.home .article-list-wrap {
	background-color: #fff;
	position: relative;
	z-index: 2;
}

.home .article-list-wrap .col-left,
.home .article-list-wrap .col-right {
	width: 50%;
	padding: 16px;
}

.home .article-list-wrap .col-left>div,
.home .article-list-wrap .btn-arrow {
	width: 100%;
}

.home .article-list-wrap .col-left {
	display: flex;
	align-items: center;
}

.home .article-list-wrap .article-list .article,
.topics .article-list .article {
	border-bottom: 1px #d8d8d8 solid;
	padding: 14px 0 11px;
}

.home .article-list-wrap .article-list a:first-child .article,
.topics .article-list .article:first-child {
	border-top: 1px #d8d8d8 solid;
}

.home .article-list-wrap .article-list .article p {
	margin: 0;
}

.home .article-list-wrap .article-list .article div {
	font-size: 14px;
	justify-content: space-between;
}

.home .article-list-wrap .article-list .article .day,
.topics .day,
.column .day {
	font-weight: bold;
	color: #8c8c8c;
}

.home .article-list-wrap .article-list .article .category,
.column .column-category {
	padding:0px 8px;
	border: 1px #363f32 solid;
	background-color: rgba(255, 255, 255, 0.5);
}

.home .article-list-wrap .article-list a {
	text-decoration: none;
}

.home .article-list-wrap .article-list .article .article-title {
	margin-top: 11px;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-line-clamp: 2;
}
.home .article-list-wrap .article-list .article .article-text-heading {
	color: #727272;
	font-size: 14px;
	margin-top: 11px;
}

.home .article-list-wrap .scroll-area {
	overflow: auto;
  max-height: 400px;
}

.contact,
.footer-main {
	border-top: 1px #d8d8d8 solid;
	background-color: #fcfcfc;
}

.contact {
	padding: 46px 80px;
	align-items: center;
	justify-content: space-between;
	position: relative;
}

.contact .contact-info>div {
	border-left: 1px #d8d8d8 solid;
}

.contact .contact-info>div:last-child {
	border-right: 1px #d8d8d8 solid;
}

.contact .col-right {
	font-family: "Noto Serif JP",
	serif;
}

.contact .col-right>div {
	width: 350px;
}

.contact h2 {
	margin: 0;
}

.contact h3 {
	font-size: 22px;
	color: #8c8c8c;
	font-weight: 400;
	margin: 0;
}

.contact p {
	font-size: 28px;
	margin: 0;
}

.contact p span {
	font-size: 22px;
}

.footer-main {
	padding: 50px 80px;
	justify-content: space-between;
}

.footer-main .address {
	font-style: normal;
}

.footer-main .address h2 {
	font-size: 18px;
}

.footer-menu {
	width: 428px;
}
.footer-menu ul {
	flex-wrap: wrap;
	gap: 10px 0;
}

.footer-menu ul li a {
	text-decoration: none;
	display: block;
	padding: 0px 10px;
	border-left: 1px #d8d8d8 solid;
	width: 86px;
	font-size: 14px;
}

footer .copyright{
	color: #8c8c8c;
}

@media screen and (min-width: 1046px) {
	.home .message .col-left .decoration {
		width: 360px;
		height: 190px;
		left: -50px;
	}

	.home .message .col-right .decoration {
		width: 142px;
		height: 170px;
		right: -50px;
		bottom: -36px;
	}

	.home .legal_service .decoration {
		width: 360px;
		height: 187px;
		right: 0;
		top: 94px;
	}

	.home .legal_service .btn-layout {
		padding: 38px;
		justify-content: flex-end;
	}

	.home .professionals .btn-layout .btn-arrow:first-child {
		margin-right: 16px;
	}

	.home .column,
	.home .topics {
		position: relative;
	}

	.home .column {
		padding-bottom: 0;
	}

	.home .column .decoration {
		width: 194px;
		height: 190px;
		left: 30px;
		top: 30px;
	}
	.home .topics .decoration {
		width: 60%;
		height: 190px;
		right: 0;
		bottom: 8px;
	}

	.home .legal_service h2,
	.home .professionals h2 {
		font-size: 40px;
	}
}

@media screen and (max-width: 1045px) {
	.home .mv p {
		font-size: 12px;
		margin: 0px 10px 20px 10px;
	}

	.home .message .col-left svg {
		display: none;
	}

	.home .container {
		padding: 40px 20px 30px;
		max-width: 100%;
	}

	.home .message .col-left {
		min-width: 100%;
	}

	.home .message .col-right {
		min-width: 100%;
	}

	.home .message .btn-arrow {
		left: 50%;
		transform: translateX(-50%);
	}
	.home .legal_service .btn-layout {
		padding: 38px;
		justify-content: center;
	}
}

@media screen and (max-width: 750px) {
	.home .mv {
		height: 63vh;
	}

	.home .mv p {
		font-size: 13px;
		margin: 0px 10px 30px 10px;
	}

	.home .mv div>img {
		width: calc(100vw - 40px);
	}
}

@media screen and (max-width: 1045px) {
	.home h2 {
		font-size: 24px;
		text-align: center;
	}

	.home .message .col-left h2:before,
	.contact .col-left h2:before{
		left: auto;
	}

	.home .message .col-left svg {
		display: none;
	}

	.home .container {
		padding: 40px 20px 30px;
		max-width: 100%;
	}

	.home .message .col-left {
		min-width: 100%;
	}

	.home .message .col-right {
		min-width: 100%;
	}

	.home .message .btn-arrow {
		left: 50%;
		transform: translateX(-50%);
	}
	
	.home .legal_service,
	.contact {
		margin-top: 40px;
	}
	
	.home .legal_service .service .service-item {
		width: calc(100% - 40px);
		height: 190px;
		margin:20px;
	}

	.home .legal_service .service .service-item .service-item-text{
		width: calc(100% - 20px);
	}

	.home .legal_service .service .service-item .service-background-img {
		width: 100%;
	}
	.home .professionals .btn-layout .btn-arrow {
		width: calc(100% - 14px);
	}
	.home .professionals .btn-layout .btn-arrow:first-child {
		margin-bottom: 10px;
	}

	.home .article-list-wrap .col-left,
	.home .article-list-wrap .col-right {
		width: auto;
	}
	
	.home .column.container {
		padding: 0;
	}

	.home .article-list-wrap .col-left{
		padding-top: 70px;
	}

	.home .article-list-wrap .article-list .article .article-text-heading {
		display: none;
	}
	.home .professionals{
		padding: 40px 0 0;
	}

	.home .article-list-wrap .scroll-area {
		overflow: visible;
		height: auto;
	}

	.contact {
		margin: 0;
		padding: 46px 20px;
		text-align: center;
	}

	.contact .col-right {
		margin-top: 20px;
	}

	.contact h3,
	.contact p span {
		font-size: 14px;
	}

	.contact p {
		font-size: 16px;
	}

	.footer-main {
		margin: 0;
		padding: 46px 20px;
	}

	footer .footer-menu {
		display: none;
	}
}

/* 共通デザイン ページタイトル */
.page-title {
	height: 260px;
	background-image: url("../img/title-background.png");
	position: relative;
}

.page-title .container {
	position: relative;
}

.page-title .page-title-text {
	position: relative;
	padding-top: 90px;
	z-index: 4;
	animation: fade-in 2s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards;
}

.page-title p {
	margin: 0;
	font-size: 26px;
	color: #8c8c8c;
	position: absolute;
	top: 65px;
	left: 40px;
	z-index: 3;
}

.page-title h2 {
	position: relative;
	padding: 10px 40px 10px 100px;
	font-size: 50px;
	z-index: 2;
}

.page-title h2:before {
	content: '';
	position: absolute;
	height: 2px;
	width: 40px;
	background-color: #3a3a3a;
	left: 40px;
	top: 50%;
}

.page-title .container .decoration {
	height: 100px;
	width: 100px;
	top: 71px;
	left: -40px;
	mix-blend-mode: multiply;
}

@keyframes fade-in {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}
@media screen and (max-width: 1045px) {
	.page-title h2 {
		font-size: 40px;
	}
}

/* ぱんくず */
.breadcrumb.container {
	max-width: 1140px;
}

.breadcrumb {
	padding-left: 0;
	margin-left: 0;
	font-size: 14px;
}

.breadcrumb ol {
	padding: 0 4px;
	margin:10px 0;
}

.breadcrumb li {
	display: inline;
	list-style: none;
}

.breadcrumb li:after {
	content: '>';
	padding: 0 10px;
}

.breadcrumb li:last-child:after {
	content: '';
}


/* 共通デザイン ページ */
.container {
	max-width: 1100px;
	margin: 0 auto;
}

.container.contents-section {
	margin-top: 10px;
	padding: 36px 20px 30px;
	background-color: #fff;
}

.text-section {
	margin-bottom: 54px;
}

.text-section:last-child{
	margin-bottom: 0;
}

.text-section p,
.text-section ul {
	margin-bottom: 30px;
}

/* 取扱業務 */
.legal-service-list {
	font-size: 20px;
	margin-bottom: 20px;
	border-top: 1px #d8d8d8 solid;
	border-bottom: 1px #d8d8d8 solid;
}

.legal-service-list p {
	margin: 0;
}

.legal-service-list>div {
	padding: 16px;
	font-weight: bold;
	margin: 0;
	vertical-align: middle;
	align-items: center;
}

.legal-service-list .list-marker {
	font-size: 30px;
	margin: 0 40px 0 20px;
}

.legal-service-list .detail {
	margin: 0 20px;
	font-size: 16px;
	font-weight: normal;
}

.legal-service-list>div:nth-of-type(2n-1) {
	background-color: #f1f1f2;
}

@media screen and (max-width: 1045px) {
	.legal-service-list {
		font-size: 16px;
	}
	.legal-service-list .detail {
		display: block;
		margin: 10px 0;
	}
}

/* アクセス */
.access .contents-section h2 span {
	margin-left: 20px;
	font-size: 16px;
	color: #8c8c8c;
}

.contents-section h2 {
	font-size: 24px;
}

.access .container-content {
	width: 100%;
}

.access .btn-arrow {
	width: 272px;
}

.access .address {
	width: 50%;
}
.address p {
	margin-bottom: 30px;
}

.access dl {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
}

.access dl dt,
.access .address-label,
.address-label {
	font-size: 14px;
	color: #fff;
	background-color: #3a3a3a;
	text-align: center;
	font-weight: bold;
	display: inline-block;
}

.access dl dt {
	width: 60px;
	margin-bottom: 20px;
}

.access .address-label,
.address-label {
	padding:0 10px;
	margin-bottom: 10px;
}

.access dl dd {
	margin-left: 20px;
}

.access .flex-pc-only {
	margin-bottom: 40px;
}

.access .flex-pc-only img {
width: 460px;
}

@media screen and (max-width: 1045px) {
	.access h2 span {
		display: block;
		margin: 0;
	}

	.access .address,
	.access .flex-pc-only img {
		width: 100%;
		margin-bottom: 20px;
	}

	.access .btn-arrow {
		width: 100%;
	}
}

/* トピックス */
.topics .article-list .article {
	align-items: center;
	padding: 20px 0;
	position: relative;
}

.topics .article-list .article:hover,
.column-list .column-list-item:hover {
	background-color: #f6f6f6;
	transition: all 0.2s linear 0s;
}

.topics .article-list .article h3 {
	position: relative;
	font-family: "Noto Serif JP",
	serif;
	font-size: 16px;
	margin: 0;
	padding-right: 40px;
	flex: 1;
	font-weight: 400;
}

.topics .article-list .article .day {
	font-size: 14px;
	width: 120px;
	margin: 0;
}

.topics .article-list .article .article-text-heading {
	color: #727272;
	font-size: 14px;
	margin-top: 10px;
	margin-bottom: 0;
}

.pagination {
	margin-top: 30px;
}

.pagination .btn-arrow {
	flex: 1;
}

.pagination .btn-arrow.pagination-left:hover:before {
	right: none;
	left: 10px;
}

.pagination .btn-arrow.pagination-left {
	margin-right: 16px;
	padding-left: 30px;
}

.pagination .btn-arrow.pagination-right {
	margin-right: 16px;
	padding-right: 30px;
}

.pagination .btn-arrow.pagination-left:before {
	transform: scale(-1, 1);
	right: none;
	left: 20px;
}

.container.contents-section .topics-article {
	min-height: calc(100vh - 540px);
	border-bottom: 1px #d8d8d8 solid;
}

.topics-title-wrap {
	border-bottom: 2px solid #333;
	padding-bottom: 20px;
	margin-bottom: 36px;
}

.contents-section .topics-title-wrap h2 {
	font-weight: bold;
}

.contents-section .topics-title-wrap h2:before{
	background-color: transparent;
}

.topics .day {
	font-size: 14px;
}

@media screen and (max-width: 1045px) {
	 .topics .article-list .article h3 {
		text-decoration: underline
	 }
}

/* 弁護士紹介 */
.professionals-list {
	flex-wrap: wrap;
	gap:30px 20px;
}

.professionals-list .professionals-wrap {
	width: calc(100% / 4 - 17px);
	position: relative;
	border: 1px #f1f1f2 solid;
	background-color: #fff;
}

.professionals-list .professionals-img {
	aspect-ratio: 1 / 1;
	overflow: hidden;
}

.professionals-list .professionals-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top;
}

.professionals-list .professionals-data {
	padding: 20px;
}

.professionals-data .flex-pc-only {
	align-items: center;
}

.professionals .professionals-title span {
	font-size: 14px;
	padding: 2px 14px;
	display: inline-block;
	border: 1px solid #3a3a3a;
	max-width: 90%;
	word-wrap: break-word;
	text-align: left;
}

.professionals .professionals-name {
	font-size: 20px;
	font-weight: bold;
}

.professionals-list .professionals-name {
	margin-top: 8px;
}

.professionals .professionals-name span {
	display: block;
	font-size: 16px;
	font-weight: 400;
	color: #8c8c8c;
}

.professionals .professionals-wrap:hover {
	box-shadow: 0px 4px 16px rgba(232, 232, 234, 0.7);
	transition: box-shadow 1s;
}

.professionals-wrap a,
.column-list-item .column-link,
.article-list .article a {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	top: 0;
}

@media screen and (max-width: 750px) {
	.professionals-list .professionals-data {
		padding: 8px;
	}

	.professionals-list .professionals-wrap {
		width: calc(100% / 2 - 7px);
	}

	.professionals-list {
		gap: 10px;
	}

	.professionals .professionals-name {
		font-size: 16px;
	}

	.professionals h2.professionals-name:before{
		left: auto;
	}

	.professionals .professionals-name span {
		font-size: 14px;
	}
}

/* 弁護士紹介 個別ページ */
.professionals-item .professionals-img {
	width: 230px;
	margin-right: 60px;
	position: relative;
}

.professionals-item .professionals-img img{
	z-index:2;
	position: relative;
	border: 1px #f1f1f2 solid;
}
.professionals-item .professionals-data {
	width: calc(100% - 290px);
}

.professionals-item .professionals-name {
	font-size: 28px;
	margin:26px 0 0;
}

.professionals-item .professionals-name span {
	margin-left: 20px;
	display: inline;
}

.professionals-item .professionals-img .decoration {
	width: 150px;
	height: 150px;
	bottom: -10px;
	right: -20px;
}

.professionals-item .professionals-data p {
	margin: 20px 0;
}

.professionals-item .professionals-history {
	margin-top: 60px;
}

.professionals-item .professionals-history h3 {
	font-size: 20px;
	font-weight: 400;
	margin-top: 40px;
	display: flex;
	align-items: center;
	text-align: center;
	font-family: "Noto Serif JP",
	serif;
}

.professionals-item .professionals-history h3::after {
	content: "";
	flex-grow: 1;
	border-bottom: 1px solid #d8d8d8;
}

.professionals-item .professionals-history h3::before {
	content: "";
	border-bottom: 1px solid #d8d8d8;
	margin-right: 10px;
	padding-left: 15px;
}

.professionals-item .professionals-history h3::after {
	margin-left: 10px;
	padding-right: 15px;
}

@media screen and (max-width: 750px) {
	.professionals-item .professionals-img {
		margin-right: 0;
		width: 100%;
		padding-right: 10px;
		padding-bottom: 20px;
		display: inline-block;
		text-align: center
	}

	.professionals-item .professionals-img img {
		max-width: 200px;
	}
	
	.professionals-item .professionals-img .decoration {
		display: none;
	}

	.professionals-item .professionals-data {
		margin-right: 0;
		width: 100%;
		text-align: center
	}
	.professionals-item .professionals-data .professionals-name {
		margin: 20px 0 0;
	}

	.professionals-item .professionals-name span {
		margin-left: 0;
		display: block;
	}

	.professionals-item .professionals-history h3::before {
		flex-grow: 1;
	}
}

/* 創業者紹介 */
.recruit .professionals {
	border: 1px solid #d8d8d8;
	padding: 20px;
}

.recruit .professionals-item .professionals-img {
	width: 150px;
}

/* コラムリスト */
.column .container.column-list {
	background-color: transparent;
	padding: 10px 0 0;
	max-width: 1140px;
}

.column-list .column-list-item {
	background-color: #fff;
	border: 1px solid #d8d8d8;
	padding: 16px;
	margin-bottom: 10px;
	position:relative;
}

.column .column-category {
	font-weight: 500;
}

.column .column-title-wrap>div {
	justify-content: space-between;
	font-size: 14px;
}

.column .column-list .column-title {
	font-family: "Noto Serif JP",
	serif;
	font-size: 18px;
	margin:12px 0;
	font-weight: 500;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-line-clamp: 2;
}
.pagination-list {
	justify-content: center;
}

.pagination.pagination-list ul {
	padding: 0;
	margin: 0;
	gap: 10px;
}

.pagination.pagination-list li {
	overflow: hidden;
	padding: 0;
	text-align: center;
}

.pagination.pagination-list li a {
	background-color: #fff;
	border: 1.5px #3a3a3a solid;
	width: 26px;
	margin: 0;
	text-decoration: none;
	padding: 6px;
	display: inline-block;
}

.pagination.pagination-list li a.current{
	background-color: #3a3a3a;
	color: #fff;
}

.pagination.pagination-list li .btn-arrow {
	width: 80px;
	margin-right: 0;
}

@media screen and (max-width: 1045px) {
	.pagination.pagination-list li .btn-arrow {
		width: 70px;
	}

	.pagination.pagination-list ul {
		gap: 4px;
	}

	.pagination.pagination-list ul {
		gap: 4px;
	}
}

/* コラム */
.container.column-article>div {
	margin-top: 10px;
}

.container {
	gap: 14px;
	align-items:flex-start;
}

.column-main-col {
	background-color: #fff;
	flex: 1;
	padding: 20px 20px 30px;
}

.column-menu-col {
	width: 260px;
	position: sticky;
	top: 90px;
}

.column-menu-col>section {
	background-color: #fff;
	margin-bottom: 14px;
}

.column-article .column-title-wrap {
	border-bottom: 2px solid #333;
	padding-bottom: 30px;
	margin-bottom: 36px;
}

.column-article .column-title-wrap h1 {
	margin:10px 0;
	font-family: "Noto Serif JP",
	serif;
}

.column-menu-col section p {
	font-size: 14px;
}

.column-article .column-article-content h2,
.column-article .column-article-content h3,
.column-article .column-article-content h4,
.column-article .column-article-content h5 {
	margin:1em 0 0.8em 0;
}

.column-article .column-article-content h2 {
	font-size: 24px;
	font-weight: bold;
	padding: 4px 24px;
	background-color: #3a3a3a;
	color: #fff;
}

.column-article .column-article-content h2:before {
	height: 32px;
	width: 3px;
	top: 10px;
	left: 10px;
	background-color: #fff;
}

.column-article .column-article-content h3 {
	font-size: 24px;
	padding:0 8px;
	background-color: #f1f1f1;
}

.column-article .column-article-content h4 {
	font-size: 20px;
	border-bottom: 1px solid #d8d8d8;
}

.column-article .column-article-content h5 {
	font-size: 18px;
}

blockquote {
	position: relative;
	padding: 35px 15px 10px 20px;
	margin: 16px 0px;
	box-sizing: border-box;
	font-style: italic;
	background: #f1f1f1;
	color: #555;
}

blockquote:before {
	display: inline-block;
	position: absolute;
	top: 5px;
	left: 3px;
	content: "“";
	font-family: sans-serif;
	color: #8c8c8c;
	font-size: 60px;
	line-height: 1;
}

blockquote p {
	padding: 0;
	margin: 10px 0;
	line-height: 1.7;
}

blockquote cite {
	display: block;
	text-align: right;
	color: #888888;
	font-size: 0.9em;
}

.column-article .professionals {
	border-top: 2px solid #333;
	padding: 30px 20px 0;
	margin-top: 40px;
}

.column-article .professionals h2 {
	font-size: 26px;
	font-weight: bold;
}

.column-article .professionals .professionals-item .professionals-img {
	width: 100px;
}

.column-article .professionals .professionals-item .professionals-data {
	width: calc(100% - 160px);
	position: relative;
	height: 154px;
}

.column-article .professionals .professionals-item .professionals-data p {
	margin: 8px 0 16px 0;
	font-size: 24px;
}

.column-article .professionals .professionals-item .professionals-data a {
	margin-left: auto;
}

.column-article .professionals .professionals-item .btn-layout {
	margin-top: 30px;
	position: absolute;
	bottom: 0;
	width: 100%;
}

.column-menu-col section {
	padding: 20px;
}

.column-menu-col section:last-of-type {
	margin-bottom: 0;
}

.column-menu-col section .linklist.scroll-area>div {
	overflow: auto;
	max-height: calc(50vh - 240px);
}

.column-menu-col h2{
	font-size: 18px;
	margin-bottom: 14px;
	border-bottom: 1px #3a3a3a solid;
}

.column-menu-col section h2:before {
	position: relative;
	background: transparent;
}

.column-menu-col section:nth-child(1) h2:before {
	content: url('../img/icon-category.svg');
	margin-right: 8px;
}

.column-menu-col section:nth-child(2) h2:before {
	content: url('../img/icon-user.svg');
	margin-right: 10px;
}

.column-menu-col .linklist a {
	font-size: 14px;
	display: block;
	padding: 4px 8px;
	border-bottom: 1px #d8d8d8 solid;
	margin-bottom: 10px;
	text-decoration: none;
}

.column-article .pagination {
	border-top: 2px solid #333;
	padding-top: 30px;
	margin-top: 40px;
}

.column-article .pagination div>div {
	width: 50%;
	display: flex;
	flex-direction: column;
}

.column-article .pagination div>div p{
	font-weight: bold;
	color: #8c8c8c;
}

.column-article .pagination div>div a {
	margin-top: auto;
}

.column-article .pagination .pagination-left {
	border-right: 1px #d8d8d8 solid;
	padding-right: 20px;
}

.column-article .pagination .pagination-right {
	text-align: right;
	padding-left: 20px;
}

.column-article .btn-icon img {
	width: 26px;
}

.container.column-article {
	max-width: 1140px;
}

@media screen and (max-width: 1045px) {
	.column-article .professionals .professionals-item .professionals-img,
	.column-article .professionals .professionals-item .professionals-data,
	.column-menu-col {
		width: 100%;
	}

	.column-article .professionals .professionals-item .btn-layout {
		margin-top: 30px;
		position:inherit;
		bottom: 0;
		width: 100%;
	}

	.column-article .btn-icon{
		margin-right: 4px;
	}

	.column-article .btn-icon img {
		width: 30px;
	}

	.search-form form {
		width: 100%;
	}

	.search-form form input {
		width: calc(100% - 60px);
	}

	.column-article .professionals .professionals-item .professionals-data {
		height: 100%;
	}
}

/* エラーページ */
.error {
	padding-top: 20px;
}

.error .btn-arrow {
	width: 272px;
}

.error article>div {
	justify-content: center;
	margin-top: 30px;
}