@charset "utf-8";

/*===================================================
layout
=====================================================*/
.l-wrapper {
	display: flex;
	flex-direction: column;
	width: 100%;
	min-height: 100vh;
}
.l-contents {
	flex: 1;
	width: calc(100% - 2rem);
	max-width: 980px;
	margin: 0 auto 3rem;
}

/*===============================================
header
===============================================*/
.l-header {
	position: relative;
	top: 0;
	left: 0;
	z-index: 900;
	width: 100%;
	padding: .5rem 1rem 0rem 1rem;
	background: #FFFFFF;
}
.l-area__header {
	padding: 0.25rem 0 0.5rem;
}
/* header > logo */
.c-header__logo {
	display: flex;
	align-items: center;
	transition: .6s all ease;
}
.c-header__logo:hover {
	opacity: 0.6;
}
.c-header__logo img {
	display: block;
	width: 11vw;
	max-width: 50px;
	line-height: 1;
	margin-right: 1rem;
}
.c-ttl__header-text {
	display: block;
	line-height: 1.4;
	color: #422715;
	font-size: 3.8vw;
	font-weight: bold;
}
.c-ttl__header-text a {
	color: #422715;
}
@media screen and (min-width: 415px){
	.c-ttl__header-text {
		font-size: 1.125rem;
		line-height: 1.25;
		padding-bottom: 8px;
	}
}
@media only screen and (min-width: 769px){
	.l-header {
		background-color: #FFFFFF;
		position: static;
		padding: 0;
		height: auto;
	}
	.l-header::before {
		width: 100%;
		height: 1px;
		background-color: #E0D7CD;
		position: absolute;
		top: 77px;
	}
	.l-area__header {
		display: flex;
		justify-content: space-between;
		align-items: center;
		width: 968px;
		margin: 0 auto;
		padding-top: 0.5rem;
		border-bottom: none;
	}
	/* header > logo */
	.c-header__logo img {
		max-width: 60px;
	}
	.c-ttl__header-text {
		padding-bottom: 0;
	}
}

/*===============================================
footer（c-copyright）
===============================================*/
.c-copyright {
	line-height: 1.4;
	margin: 0;
	background: #422715;
	color: #FFFFFF;
	font-size: 0.75rem;
}
.c-copyright__inner {
	position: relative;
	width: 1000px;
	margin: 0 auto;
	padding: 1rem 0 0.5rem 0;
}
a.c-copyright__logo {
	display: inline-block;
	max-width: 300px;
	vertical-align: top;
}
a.c-copyright__logo img {
	width: 100%;
	max-width: 300px;
	height: auto;
}
.c-copyright__address {
	margin: .5rem 0 0 0;
}
.c-copyright__txt-lawyers-association {
	padding: .5rem 0 0 0;
}
.c-copyright__txt-copyright {
	margin-top: 1rem;
}
.c-copyright__txt-privacypolicy {
	margin-bottom: 1em;
}
.c-copyright__txt-privacypolicy a {
	color: #FFFFFF;
	display: inline-block;
}
.c-copyright__txt-privacypolicy a:hover {
	color: #FFFFFF;
	text-decoration: underline;
}
.c-copyright__txt-announcement {
	display: none;
}
@media only screen and (max-width: 768px) and (min-width: 1px){
	.c-copyright__inner {
			position: relative;
			width: 100%;
			margin: 0 auto;
			padding: 1rem;
	}
}