/*----------------------
|- all
-----------------------*/
body {
	color: #212121;;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 500;
}
a {
	color: #212121;
	text-decoration: none;
}
li {
	list-style: none;
}
img {
	width: 100%;
	height: 100%;
	display: block;
}
.cs-link {
	display: block;
	transition: .3s;
}
.en {
	font-family: "Roboto Condensed", sans-serif;
}
.disPc {
	display: block;
}
.disSp {
	display: none;
}
/* @media (hover: hover) { */
	a[href^="tel:"] {
		pointer-events: none;
	}
	.cs-link:hover {
		opacity: .8;
	}
/* } */
@media screen and (max-width: 750px){
	a[href^="tel:"] {
		color: #333;
	}
	.disPc {
		display: none;
	}
	.disSp {
		display: block;
	}
}
/*----------------------
|- header
-----------------------*/
.header {
	position: sticky;
	top: 0;
	left: 0;
	width: 100%;
	padding: 21px 25px;
	background: #fff;
	border-bottom: 1px solid #DFDFDF;
	z-index: 20;
}
.header-box {
	width: 100%;
	max-width: 1200px;
	margin: auto;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
.header-logo {
	margin: 0 auto 0 0;
}
.nav-list {
	display: flex;
	gap: 0 30px;
}
.nav-list__link {
	position: relative;
	padding: 0 5px 20px;
	letter-spacing: .05rem;
}
.nav-list__link::after {
	content: '';
	position: absolute;
	bottom: 4px;
	left: 0;
	width: 100%;
	height: 2px;
	background: #212121;
	opacity: 0;
	visibility: hidden;
	transition: .3s;
}
.lang {
	padding: 0 4% 0 6%;
	display: flex;
}
.lang__item {
	position: relative;
	padding-right: 16px;
}
.lang__item::after {
	content: '/';
	position: absolute;
	top: 0;
	right: 5px;
	color: #A2A2A2;
}
.lang__item-en {
	color: #A2A2A2;
	font-weight: 400;
}
.lang-link {
	color: #A2A2A2;
	font-weight: 400;
}
.lang-link.active {
	color: #212121;
	border-bottom: 1px solid #212121;
}
@media screen and (min-width: 751px){
	.nav {
		display: block !important;
	}
	.nav-list__link:hover::after {
		bottom: 12px;
		visibility: visible;
		opacity: 1;
	}
	.lang-link:hover {
		color: #212121;
		border-bottom: 1px solid #212121;
	}
}
@media screen and (max-width: 950px){
	.nav-list {
		gap: 0 15px;
	}
	.nav-list__link, .lang-link {
		font-size: var(--fs14);
	}
	.lang {
		padding: 0 0 0 3%;
	}
}
@media screen and (max-width: 750px){
	.header {
		min-height: 70px;
		padding: 0 4% 0 6%;
		border: 0;
		display: flex;
	}
	.header-logo {
		max-width: 150px;
		padding: 0;
	}
	.nav {
		display: none;
		position: absolute;
		top: 69px;
		left: 0;
		width: 100%;
		height: calc(100vh - 70px);
		padding: 0 4% 0 6%;
		background: #fff;
		z-index: 20;
	}
	.nav-list {
		flex-direction: column;
		gap: 0;
	}
	.nav-list > * + * {
		border-top: 1px solid #BABABA;
	}
	.nav-list__link {
		padding: 15px 0;
		font-size: var(--fs18);
		display: block;
	}
	.lang {
		padding: 0 4% 0 0;
	}
	.lang-link {
		font-size: var(--fs14);
	}
	#menu {
		position: relative;
		width: 35px;
		height: 24px;
	}
	#menu .bar {
		display: inline-block;
		width: 100%;
		height: 2px;
		background-color: #212121;
		position: absolute;
		left: 0;
		transition: .20s ease-in-out;
	}
	#bar01 {
		top: 0;
	}
	#bar02 {
		top: 12px;
	}
	#bar03 {
		top: 23px;
	}
	.active #bar01 {
		top: 10px;
		transform: rotate(45deg);
	}
	.active #bar02 {
		width: 0;
	}
	.active #bar03 {
		top: 10px;
		transform: rotate(-45deg);
	}
	.disabled {
		overflow: hidden;
	}
}
/*----------------------
|- footer
-----------------------*/
.ft-ttl {
	margin-bottom: 30px;
	font-size: 4rem;
	text-align: center;
}
.sns-list {
	display: grid;
	grid-template-columns: 48px 46px;
	align-items: center;
	justify-content: center;
	gap: 0 45px;
}
.bnr-list {
	width: 95%;
	max-width: 980px;
	margin: 120px auto 175px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px 13px;
}
.bnr-list__item {
	width: 100%;
	max-width: 235px;
} 
.ft-btm {
	width: 100%;
	padding: 28px 20px;
	background: #2E2E2E;
}
.ft-txt-list {
	max-width: 980px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	gap: 0 30px;
}
.ft-txt-list__link {
	color: #fff;
	font-size: var(--fs14);
	font-weight: 400;
	letter-spacing: .1rem;
}
.ft-txt-list__link:hover {
	text-decoration: underline;
}
.copyright {
	color: #fff;
	font-size: var(--fs14);
	font-weight: 400;
	margin: 0 0 0 auto;
}
.pagetop-btn {
	position: fixed;
	right: 25px;
	bottom: 100px;
	width: 50px;
	cursor: pointer;
	z-index: 10;
}
@media screen and (max-width: 750px){
	.ft-ttl {
		margin-bottom: 30px;
		font-size: 2.6rem;
		text-align: center;
	}
	.sns-list {
		gap: 0 30px;
	}
	.bnr-list {
		width: 75%;
		max-width: 307px;
		margin: 90px auto 80px;
		flex-direction: column;
		gap: 20px 0;
	}
	.bnr-list__item {
		max-width: none;
	} 
	.ft-btm {
		padding: 30px 0 10px;
	}
	.ft-txt-list {
		width: 84%;
		margin: auto;
		flex-direction: column;
		align-items: flex-start;
		gap: 20px 0;
	}
	.copyright {
		margin: auto;
	}
	.pagetop-btn {
		right: 10px;
	}
}
/*----------------------
|- font
-----------------------*/
:root {
	--fs10: .625rem;
	--fs11: .687rem;
	--fs12: .75rem;
	--fs13: .812rem;
	--fs14: .875rem;
	--fs15: .937rem;
	--fs16: 1rem;
	--fs17: 1.06rem;
	--fs18: 1.12rem;
	--fs19: 1.18rem;
	--fs20: 1.25rem;
	--fs21: 1.31rem;
	--fs22: 1.37rem;
	--fs23: 1.43rem;
	--fs24: 1.5rem;
	--fs25: 1.56rem;
	--fs26: 1.62rem;
	--fs27: 1.68rem;
	--fs28: 1.75rem;
	--fs29: 1.81rem;
	--fs30: 1.87rem;
}