/* ===================================================================
filename:common.css
#Only the master corder can be edited.
=================================================================== */

body{
	background-color:#FAF8F6;
	color:#241D14;
	font-family: "Zen Old Mincho", serif;
	font-weight: 400;
	font-style: normal;
}

img {
	max-width: 100%;
}

.container {
	max-width: 1234px;
	padding-left: 30px;
	padding-right: 30px;
}
.container-fluid {
	padding-left: 30px;
	padding-right: 30px;
}
@media (max-width: 767px) {
	.container {
		padding-left: 24px;
		padding-right: 24px;
	}
	.container-fluid {
		padding-left: 24px;
		padding-right: 24px;
	}
}

/* fonts */
.zen-old-mincho-regular {
	font-family: "Zen Old Mincho", serif;
	font-weight: 400;
	font-style: normal;
}

.zen-old-mincho-medium {
	font-family: "Zen Old Mincho", serif;
	font-weight: 400;
	font-style: normal;
}

.cormorant-infant {
	font-family: "Cormorant Infant", serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
}
.regular {
	font-weight: 400;
}
.medium {
	font-weight: 400;
}
.bold {
	font-weight: 500;
}
b, strong {
	font-weight: 500;
}
h1,h2,h3,h4,h5,h6 {
	font-weight: 400;
}
dt {
	font-weight: 500;
}

/* ------------------------------------------------------------ */
/* .header */
/* ------------------------------------------------------------ */
.header {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	min-height: 112px;
	display: flex;
	align-items: center;
	padding: 0 112px 0 0;
	background-color:#FAF8F6;
	z-index: 100;
}
@media (max-width: 991px) {
	.header {
		min-height: 64px;
		padding-right: 64px;
	}
}
/* .logo */
.header .logo {
	margin: 0 auto 0 0;
	padding: 13px 30px 0;
}
.header .logo a {
	display: block;
	transition: opacity 0.3s;
}
.header .logo img {
	display: block;
}
@media (min-width: 768px) {
	.header .logo a:hover {
		opacity: 0.6;
	}
}
@media (max-width: 991px) {
	.header .logo {
		padding: 0 0 0 12px;
	}
}
/* .pc-menu */
.header .pc-menu {
	max-width: 505px;
}
@media (max-width: 1199px) {
	.header .pc-menu {
		display: none;
	}
}
.header .pc-menu ul.parent-ul {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -10px;
	padding: 0;
	list-style: none;
	font-size: 15px;
}
.header .pc-menu ul.parent-ul > li {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 33.3%;
	flex-basis: 33.3%;
	padding: 0 10px;
}
.header .pc-menu ul.parent-ul > li > a {
	display: inline-flex;
	align-items: center;
	padding: 0.3em 0;
	text-decoration: none;
	color: #241D14;
	transition: color 0.3s;
	cursor: pointer;
}
.header .pc-menu ul.parent-ul > li > a.select,
.header .pc-menu ul.parent-ul > li > a.current {
	color: #CBA373;
}
.header .pc-menu ul.parent-ul > li > a .cross {
	position: relative;
	width: 8px;
	height: 8px;
	display: block;
	margin-left: 0.5em;
}
.header .pc-menu ul.parent-ul > li > a .cross::before,
.header .pc-menu ul.parent-ul > li > a .cross::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	background-color: #CBA373;
}
.header .pc-menu ul.parent-ul > li > a .cross::before {
	width: 100%;
	height: 1px;
}
.header .pc-menu ul.parent-ul > li > a .cross::after {
	width: 1px;
	height: 100%;
}
.header .pc-menu ul.parent-ul > li > a.ex-link {}
.header .pc-menu ul.parent-ul > li > a.ex-link::after {
	content: "";
	width: 12px;
	height: 12px;
	display: block;
	margin-left: 0.5em;
	background-image: url(/_img/common/header2025/ico-exlink.svg);
	background-size: 100%;
	background-position: center;
	background-repeat: no-repeat;
}
.header .pc-menu .dd-child {
	position: absolute;
	top: 100%;
	right: 0;
	left: 0;
	display: flex;
	background-color: #FAF8F6;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s, visibility 0.3s;
	border-top: solid 1px rgba(0, 0, 0, 0.1);
}
.header .pc-menu .dd-child .menu-title {
	display: flex;
	align-items: center;
	flex-basis: 299px;
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 299px;
	padding: 50px;
	background-color: #253B44;
}
.header .pc-menu .dd-child .menu-title a {
	display: flex;
	align-items: center;
	font-weight: 500;
	font-size: 18px;
	text-decoration: none;
	color: #FFFFFF;
}
.header .pc-menu .dd-child .menu-title a.current {
	color: #CBA373;
}
.header .pc-menu .dd-child .menu-title a::before {
	content: "";
	display: block;
	width: 6px;
	height: 6px;
	margin-right: 10px;
	border-radius: 6px;
	background-color: #CBA373;
}
.header .pc-menu .dd-child .menu-body {
	display: flex;
	width: 100%;
	max-width: 780px;
	padding: 50px 30px;
	margin: 0 auto;
	color: #856D47;
}
.header .pc-menu .dd-child ul.child-ul {
	font-size: 15px;
	line-height: 22px;
	list-style: none;
	padding: 0;
	margin: 0 60px 0 0;
}
.header .pc-menu .dd-child ul.child-ul:last-child {
	margin-right: 0;
}
.header .pc-menu .dd-child ul.child-ul > li {
	margin-bottom: 10px;
}
.header .pc-menu .dd-child ul.child-ul > li:last-child {
	margin-bottom: 0;
}
.header .pc-menu .dd-child ul.child-ul > li > a {
	display: flex;
	align-items: center;
	color: #241D14;
	text-decoration: none;
	transition: color 0.3s;
}
.header .pc-menu .dd-child ul.child-ul > li > a.current {
	color: #CBA373;
}
.header .pc-menu .dd-child ul.child-ul > li > a::before {
	content: "";
	display: block;
	width: 8px;
	height: 1px;
	margin-right: 12px;
	background-color: #CBA373;
}
@media (min-width: 768px) {
	.header .pc-menu ul.parent-ul > li > a:hover {
		color: #CBA373;
	}
	.header .pc-menu .dd-child .menu-title a {
		transition: color 0.3s;
	}
	.header .pc-menu .dd-child .menu-title a:hover {
		color: #CBA373;
	}
	.header .pc-menu .dd-child ul.child-ul > li > a:hover {
		color: #CBA373;
	}
}

/* .services-dd */
.header .pc-menu .services-dd .menu-body {
	max-width: 1030px;
}
.header .pc-menu .services-dd .menu-body .services-name {
	color: #856D47;
	margin-right: 50px;
}
.header .pc-menu .services-dd .menu-body .services-name dl {}
.header .pc-menu .services-dd .menu-body .services-name dl dt {
	font-weight: 400;
	font-size: 18px;
	letter-spacing: -0.03em;
}
.header .pc-menu .services-dd .menu-body .services-name dl dd {
	font-size: 14px;
	text-transform: uppercase;
}

/* #ddMenuCloseBox */
#ddMenuCloseBox {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: #000000;
	z-index: 99;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s, visibility 0.3s;
}
body.dd-menu-open {
	overflow: hidden;
	position: fixed;
	width: 100%;
	height: 100%;
}
body.dd-menu-open #ddMenuCloseBox {
	opacity: 0.3;
	visibility: visible;
}

/* .btn-menu */
.header .btn-menu {
	display: flex;
}
@media (max-width: 767px) {
	.header .btn-menu {
		display: none;
	}
}
.header .btn-menu a {
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	text-decoration: none;
	width: 112px;
	height: 64px;
	transition: color 0.3s, background-color 0.3s, border 0.3s;
}
.header .btn-menu a dl {
	margin: 0;
	padding: 0;
}
.header .btn-menu a dl dt {
	font-family: "Cormorant Infant", serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	font-size: 18px;
	line-height: 1;
	letter-spacing: -0.03em;
	margin: 0 0 5px;
	padding: 0;
}
.header .btn-menu a dl dd {
	font-size: 11px;
	line-height: 1;
	margin: 0;
	padding: 0;
}
.header .btn-menu a.btn-recruit {
	color: #FFFFFF;
	background-color: #253B44;
	border: solid 1px #253B44;
}
.header .btn-menu a.btn-recruit dl {}
.header .btn-menu a.btn-recruit dl dt {}
.header .btn-menu a.btn-recruit dl dd {}
.header .btn-menu a.btn-contact {
	color: #253B44;
	background-color: transparent;
	border: solid 1px #253B44;
}
.header .btn-menu a.btn-contact dl {}
.header .btn-menu a.btn-contact dl dt {}
.header .btn-menu a.btn-contact dl dd {}
@media (min-width: 768px) {
	.header .btn-menu a.btn-recruit:hover {
		color: #253B44;
		background-color: #CBA373;
		border: solid 1px #CBA373;
	}
	.header .btn-menu a.btn-contact:hover {
		color: #253B44;
		background-color: #CBA373;
		border: solid 1px #CBA373;
	}
}
@media (max-width: 991px) {
	.header .btn-menu a {
		width: 92px;
		height: 44px;
	}
	.header .btn-menu a dl dt {
		font-size: 16px;
	}
	.header .btn-menu a dl dd {}
}
/* .hamburger-menu */
#hamburger {
	position: fixed;
	top: 0;
	right: 0;
	width: 112px;
	height: 112px;
	z-index: 110;
	cursor: pointer;
}
#hamburger span {
	position: absolute;
	top: 50%;
	left: 50%;
	height: 1px;
	width: 40px;
	background-color: #856D47;
	transition: transform 0.3s, opacity 0.3s;
}
#hamburger span:nth-child(1) {
	transform: translate(-50%, calc(-50% - 8px));
}
#hamburger span:nth-child(2) {
	transform: translate(-50%, -50%);
}
#hamburger span:nth-child(3) {
	transform: translate(-50%, calc(-50% + 8px));
}
/* .nav-open */
.nav-open #hamburger {
	background-color: #FAF8F6;
}
.nav-open #hamburger span:nth-child(1) {
	transform: translate(-50%, -50%) rotate(45deg);
}
.nav-open #hamburger span:nth-child(2) {
	transform: translate(-50%, -50%) rotate(90deg);
	opacity: 0;
}
.nav-open #hamburger span:nth-child(3) {
	transform: translate(-50%, -50%) rotate(135deg);
}
@media (max-width: 991px) {
	#hamburger {
		flex-basis: 64px;
		width: 64px;
		height: 64px;
	}
	#hamburger span {
		width: 24px;
	}
	#hamburger span:nth-child(1) {
		transform: translate(-50%, calc(-50% - 5px));
	}
	#hamburger span:nth-child(2) {
		transform: translate(-50%, -50%);
	}
	#hamburger span:nth-child(3) {
		transform: translate(-50%, calc(-50% + 5px));
	}
}

/* ------------------------------------------------------------ */
/* #megamenu */
/* ------------------------------------------------------------ */
#megamenu {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: flex;
	margin: 0 auto;
	padding: 0;
	color: #241D14;
	background-color: #FAF8F6;
	background-image: url(/_img/common/header2025/gnav-texture.png);
	background-size: 768px;
	z-index: 100;
	visibility: hidden;
	opacity: 0;
	transition: visibility 0.3s, opacity 0.3s;
}
@media (max-width: 767px) {
	#megamenu {
		display: block;
		overflow: auto;
	}
	#megamenu::before {
		content: "";
		position: sticky;
		top: 0;
		display: block;
		width: 100%;
		height: fit-content;
		margin-top: auto;
		aspect-ratio: 1.95;
		background-image: url(/_img/common/header2025/megamenu-img.jpg);
		background-position: center;
		background-size: cover;
		z-index: -1;
	}
}
/* .g-nav-wrap */
#megamenu .g-nav-wrap {
	display: flex;
	flex-shrink: 0;
	flex-grow: 0;
	flex-basis: 62%;
	max-width: 62%;
	order: 1;
	overflow: auto;
}
#megamenu .g-nav-wrap .g-nav-inner {
	position: relative;
	padding: 82px 0 30px;
	width: 100%;
	height: fit-content;
	min-height: 100%;
}
#megamenu .g-nav-wrap .site-menu {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	text-align: center;
	font-size: 100px;
	color: #ffffff;
	line-height: 1;
	overflow: hidden;
}
#megamenu .g-nav-wrap .site-menu span {
	display: inline-block;
	font-family: "Cormorant Infant", serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	transform: translateY(0.18em);
}
#megamenu .g-nav-wrap .site-menu > .row {}
#megamenu .g-nav-wrap .site-menu > .row > * {}
#megamenu .g-nav-wrap .container {
	max-width: 710px;
	padding: 0 45px;
}
#megamenu .g-nav-wrap ul.parent-ul {}
#megamenu .g-nav-wrap ul.parent-ul {
	font-size: 18px;
	list-style: none;
	padding: 0;
	margin: 0;
}
#megamenu .g-nav-wrap ul.parent-ul a {
	color: #241D14;
	text-decoration: none;
	transition: color 0.3s;
}
#megamenu .g-nav-wrap ul.parent-ul a.current {
	color: #CBA373;
}
#megamenu .g-nav-wrap ul.parent-ul > li {
	padding: 30px 0;
}
#megamenu .g-nav-wrap ul.parent-ul > li + li {
	position: relative;
	border-top: solid 1px rgba(0, 0, 0, 0.1);
}
#megamenu .g-nav-wrap ul.parent-ul > li + li::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	border-top: solid 1px rgba(255, 255, 255, 1.0);
}
#megamenu .g-nav-wrap ul.parent-ul > li.has-border-bottom {
	position: relative;
	border-bottom: solid 1px rgba(255, 255, 255, 0.1);
}
#megamenu .g-nav-wrap ul.parent-ul > li.has-border-bottom::after {
	content: "";
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	border-top: solid 1px rgba(0, 0, 0, 0.3);
}
#megamenu .g-nav-wrap ul.parent-ul > li.has-border-top {
	position: relative;
	border-top: solid 1px rgba(0, 0, 0, 0.3);
}
#megamenu .g-nav-wrap ul.parent-ul > li.has-border-top::after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	border-top: solid 1px rgba(255, 255, 255, 0.1);
}
#megamenu .g-nav-wrap ul.parent-ul > li > a {
	display: flex;
	align-items: center;
}
#megamenu .g-nav-wrap ul.parent-ul > li > a::before {
	content: "";
	display: block;
	width: 6px;
	height: 6px;
	margin-right: 10px;
	border-radius: 6px;
	background-color: #CBA373;
}
#megamenu .g-nav-wrap ul.parent-ul > li .services-name {
	font-size: 13px;
	color: #856D47;
	text-transform: uppercase;
	margin-top: 20px;
}
#megamenu .g-nav-wrap ul.child-ul {
	font-size: 15px;
	line-height: 22px;
	list-style: none;
	padding: 0 0 0 1em;
	margin: 24px 0 0;
}
#megamenu .g-nav-wrap ul.parent-ul > li .services-name + ul.child-ul {
	margin-top: 0;
}
#megamenu .g-nav-wrap ul.child-ul > li {
	margin-top: 12px;
}
#megamenu .g-nav-wrap ul.child-ul > li > a {
	display: flex;
	align-items: center;
}
#megamenu .g-nav-wrap ul.child-ul > li > a::before {
	content: "";
	display: block;
	width: 8px;
	height: 1px;
	margin-right: 12px;
	background-color: #CBA373;
}
#megamenu .g-nav-wrap ul.parent-ul > li > a.privacy {
	font-size: 15px;
}
#megamenu .g-nav-wrap ul.parent-ul > li > a.privacy::before {
	content: none;
}
#megamenu .g-nav-wrap ul.parent-ul > li > a.ex-link {
	font-size: 15px;
}
#megamenu .g-nav-wrap ul.parent-ul > li > a.ex-link::before {
	content: none;
}
#megamenu .g-nav-wrap ul.parent-ul > li > a.ex-link::after {
	content: "";
	width: 12px;
	height: 12px;
	display: block;
	margin-left: 0.5em;
	background-image: url(/_img/common/header2025/ico-exlink.svg);
	background-size: 100%;
	background-position: center;
	background-repeat: no-repeat;
}
#megamenu .g-nav-wrap ul.parent-ul > li > a.recruit-link {
	font-size: 18px;
}
#megamenu .g-nav-wrap .site-menu .services-name {}
@media (min-width: 992px) {
	#megamenu .g-nav-wrap .container > .row {
		justify-content: space-between;
	}
	#megamenu .g-nav-wrap .container > .row > * {
		max-width: 286px;
	}
}
@media (min-width: 768px) {
	#megamenu .g-nav-wrap ul.parent-ul a:hover {
		color: #CBA373;
	}
}
@media (max-width: 1199px) {
}
@media (max-width: 991px) {
	#megamenu .g-nav-wrap {
		flex-basis: 100%;
		max-width: 100%;
		flex-shrink: 1;
	}
	#megamenu .g-nav-wrap .g-nav-inner {
		padding-top: 34px;
	}
	#megamenu .g-nav-wrap .container {
		max-width: 390px;
	}
	#megamenu .g-nav-wrap .site-menu {
		font-size: 70px;
	}
}
@media (max-width: 767px) {
	#megamenu .g-nav-wrap {
		position: relative;
		background-color: #FAF8F6;
		background-image: url(/_img/common/header2025/gnav-texture.png);
		background-size: 768px;
		overflow: visible;
	}
	#megamenu .g-nav-wrap .g-nav-inner {
		padding-bottom: 0;
	}
	#megamenu .g-nav-wrap ul.parent-ul {
		position: relative;
		border-bottom: solid 1px rgba(255, 255, 255, 1.0);
	}
	#megamenu .g-nav-wrap ul.parent-ul::after {
		content: "";
		position: absolute;
		right: 0;
		bottom: 0;
		left: 0;
		border-bottom: solid 1px rgba(0, 0, 0, 0.1);
	}
	#megamenu .g-nav-wrap ul.parent-ul > li .services-name {
		font-size: 15px;
	}
	#megamenu .g-nav-wrap ul.child-ul > li {
		margin-top: 22px;
	}
	#megamenu .g-nav-wrap .site-menu {
		bottom: 100%;
		transform: translateY(50%);
		color: #241D14;
		font-size: 40px;
	}
	#megamenu .g-nav-wrap .site-menu span {
		transform: none;
		letter-spacing: -0.06em;
	}
}
/* .company-info */
#megamenu .company-info {
	display: flex;
	flex-direction: column;
	flex-shrink: 0;
	flex-grow: 0;
	flex-basis: 38%;
	max-width: 38%;
	background-color: #FAF8F6;
}
#megamenu .company-info .info-text {
	padding: 82px 0 30px;
	margin: auto 0 0;
	width: 100%;
	height: fit-content;
}
#megamenu .company-info .info-text .container {
	max-width: 388px;
	padding: 0 45px;
}
#megamenu .company-info .info-text .logo {
	margin-bottom: 25px;
}
#megamenu .company-info .info-text .logo a {}
@media (max-width: 991px) {
	#megamenu .company-info {
		flex-basis: 388px;
		max-width: 388px;
	}
	#megamenu .company-info .info-text {
	}
}
@media (max-width: 767px) {
	#megamenu .company-info {
		position: relative;
		max-width: 100%;
		background-color: #FAF8F6;
		background-image: url(/_img/common/header2025/gnav-texture.png);
		background-size: 768px;
	}
	#megamenu .company-info .info-text {
		padding-top: 45px;
		padding-bottom: 110px;
	}
	#megamenu .company-info .info-text .logo a {
		max-width: 268px;
		display: inline-block;
	}
}
/* .addr-wrap */
#megamenu .company-info .info-text .addr-wrap {
	margin-bottom: 10px;
}
#megamenu .company-info .info-text .addr-wrap dl {
	margin-bottom: 0;
}
#megamenu .company-info .info-text .addr-wrap dl dt {
	margin-bottom: 0.5em;
	font-size: 13px;
	color: #CBA373;
}
#megamenu .company-info .info-text .addr-wrap dl dd {
	font-size: 15px;
	line-height: 1.5;

}
#megamenu .company-info .info-text .btn-wrap {
	margin-bottom: 25px;
}
#megamenu .company-info .info-text .btn-wrap a.btn-access {
	display: inline-flex;
	align-items: center;
	line-height: 16px;
	padding: 7px 12px;
	border-radius: 4px;
	background-color: #253B44;
	font-size: 15px;
	color: #FFFFFF;
	transition: background-color 0.3s;
}
#megamenu .company-info .info-text .btn-wrap a.btn-access::before {
	content: "";
	display: block;
	width: 10px;
	height: 10px;
	margin-right: 10px;
	background-image: url(/_img/common/arrow-accrss.svg);
	background-size: 100%;
	background-position: center;
	background-repeat: no-repeat;
	transition: background-image 0.3s;
}
#megamenu .company-info .info-text .tell-fax-wrap {
	display: flex;
	margin-right: -25px;
}
#megamenu .company-info .info-text .tell-fax-wrap dl {
	display: block;
	margin-right: 25px;
}
#megamenu .company-info .info-text .tell-fax-wrap dl dt {
	display: inline;
	font-size: 13px;
	color: #CBA373;
	margin-right: 0.125em;
}
#megamenu .company-info .info-text .tell-fax-wrap dl dd {
	display: inline;
	font-size: 15px;
	line-height: 1.5;
}
#megamenu .company-info .info-text .tell-fax-wrap dl dd a {
	color: #241D14;
	text-decoration: none;
}
#megamenu .company-info::after {
	content: "";
	width: 100%;
	height: 42%;
	margin: auto 0 0;
	background-image: url(/_img/common/header2025/megamenu-img.jpg);
	background-position: center;
	background-size: cover;
}
@media (min-width: 768px) {
	#megamenu .company-info .info-text .btn-wrap a.btn-access:hover {
		background-color: #CBA373;
	}
	#megamenu .company-info .info-text .btn-wrap a.btn-access:hover::before {
		background-image: url(/_img/common/arrow-accrss-white.svg);
	}
}
@media (max-width: 991px) {
	#megamenu .company-info::after {
	}
}
@media (max-width: 767px) {
	#megamenu .company-info::after {
		content: none;
	}
	#megamenu .company-info .info-text .tell-fax-wrap {
		margin-right: -10px;
	}
	#megamenu .company-info .info-text .tell-fax-wrap dl {
		margin-right: 10px;
	}
	#megamenu .company-info .info-text .btn-wrap {
		margin-bottom: 15px;
	}
}
/* .btn-menu */
#megamenu .btn-menu {
	display: none;
	justify-content: center;
	position: fixed;
	right: 20px;
	bottom: 20px;
	left: 20px;
	padding: 
}
#megamenu .btn-menu a {
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	text-decoration: none;
	max-width: 190px;
	width: 50%;
	height: 64px;
	transition: color 0.3s, background-color 0.3s, border 0.3s;
}
#megamenu .btn-menu a dl {
	margin: 0;
	padding: 0;
}
#megamenu .btn-menu a dl dt {
	font-family: "Cormorant Infant", serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	font-size: 18px;
	line-height: 1;
	letter-spacing: -0.03em;
	margin: 0 0 2px;
	padding: 0;
}
#megamenu .btn-menu a dl dd {
	font-size: 11px;
	line-height: 1;
	margin: 0;
	padding: 0;
}
#megamenu .btn-menu a.btn-recruit {
	color: #FFFFFF;
	background-color: #253B44;
	border: solid 1px #253B44;
}
#megamenu .btn-menu a.btn-recruit dl {}
#megamenu .btn-menu a.btn-recruit dl dt {}
#megamenu .btn-menu a.btn-recruit dl dd {}
#megamenu .btn-menu a.btn-contact {
	color: #253B44;
	background-color: #FAF8F6;
	border: solid 1px #253B44;
}
#megamenu .btn-menu a.btn-contact dl {}
#megamenu .btn-menu a.btn-contact dl dt {}
#megamenu .btn-menu a.btn-contact dl dd {}
@media (max-width: 767px) {
	#megamenu .btn-menu {
		display: flex;
	}
}
/* .nav-open  */
body.nav-open {
	overflow: hidden;
	position: fixed;
	width: 100%;
	height: 100%;
}
body.nav-open #megamenu {
	visibility: visible;
	opacity: 1;
}


/* ------------------------------------------------------------ */
/* #pathNavi */
/* ------------------------------------------------------------ */
#pathNavi {
	font-size: 13px;
	line-height: 1;
	margin-bottom: 35px;
}
#pathNavi > ul {
	display: flex;
	justify-content: flex-end;
	flex-wrap: wrap;
	list-style: none;
	margin: -0.25em -0.75em;
	padding: 0;
}
#pathNavi > ul > li {
	color: #856D47;
	margin: 0.25em 0;
	padding: 0 0.75em;
	border-right: solid 1px rgba(177, 171, 164, 0.5);
}
#pathNavi > ul > li:last-child {
	border-right: none;
}
#pathNavi > ul > li > a {
	color: #B1ABA4;
	text-decoration: none;
}
@media (min-width: 768px) {
	#pathNavi > ul > li > a {
		transition: opacity 0.3s;
	}
	#pathNavi > ul > li > a:hover {
		opacity: 0.6;
	}
}
@media (max-width: 767px) {
	#pathNavi {
		display: none;
	}
}


/* ------------------------------------------------------------ */
/* .page-contents */
/* ------------------------------------------------------------ */
.page-contents {
	padding-top: 112px;
}
@media (max-width: 991px) {
	.page-contents {
		padding-top: 64px;
	}
}

/* ------------------------------------------------------------ */
/* footer */
/* ------------------------------------------------------------ */
.footer {}
.footer .footer-menu-wrap {
	color: #ffffff;
	background-image: url(/_img/common/footer2025/footer-texture.png);
	background-size: 128px;
	border-radius: 8px;
	margin: 0 auto;
	padding: 90px 0 60px;
	max-width: calc(100% - 60px);
}
.footer .footer-menu-wrap a {
	color: #ffffff;
	text-decoration: none;
}
.footer .footer-menu-wrap > .container {
	max-width: 1114px;
}
.footer .footer-menu-wrap > .container {
	padding-left: 40px;
	padding-right: 40px;
}
.footer .footer-menu-wrap > .container > .row {
	margin-left: -40px;
	margin-right: -40px;
}
.footer .footer-menu-wrap > .container > .row > * {
	padding-left: 40px;
	padding-right: 40px;
}
@media (max-width: 1199px) {
	.footer .footer-menu-wrap > .container {
		padding-left: 30px;
		padding-right: 30px;
	}
	.footer .footer-menu-wrap > .container > .row {
		margin-left: -30px;
		margin-right: -30px;
	}
	.footer .footer-menu-wrap > .container > .row > * {
		padding-left: 30px;
		padding-right: 30px;
	}
}
@media (max-width: 991px) {
	.footer .footer-menu-wrap {
		max-width: calc(100% - 40px);
	}
}
@media (max-width: 767px) {
	.footer .footer-menu-wrap {
		max-width: 100%;
		padding: 70px 0 25px;
		border-radius: 0;
	}
	.footer .footer-menu-wrap > .container {
		padding-left: 44px;
		padding-right: 44px;
		max-width: 575px;
	}
}

/* .company-col */
.footer .footer-menu-wrap .company-col {}
/* .logo */
.footer .footer-menu-wrap .logo {
	margin-bottom: 25px;
}
.footer .footer-menu-wrap .logo a {}
.footer .footer-menu-wrap .logo img {}
@media (max-width: 767px) {
	.footer .footer-menu-wrap .logo {
		margin-bottom: 15px;
	}
	.footer .footer-menu-wrap .logo img {
		max-width: 210px;
	}
}
/* .group-list */
.footer .footer-menu-wrap .group-list {
	font-size: 13px;
	line-height: 1.75;
	margin-bottom: 90px;
}
@media (max-width: 767px) {
	.footer .footer-menu-wrap .group-list {
		line-height: 1.6;
		margin-bottom: 30px;
	}
}
/* .addr-wrap */
.footer .footer-menu-wrap .addr-wrap {
	margin-bottom: 10px;
}
.footer .footer-menu-wrap .addr-wrap dl {
	margin-bottom: 0;
}
.footer .footer-menu-wrap .addr-wrap dl dt {
	margin-bottom: 0.5em;
	font-size: 13px;
	color: #CBA373;
}
.footer .footer-menu-wrap .addr-wrap dl dd {
	font-size: 18px;
	line-height: 1.5;
}
.footer .footer-menu-wrap .btn-wrap {
	margin-bottom: 25px;
}
.footer .footer-menu-wrap .btn-wrap a.btn-access {
	display: inline-flex;
	align-items: center;
	line-height: 16px;
	padding: 7px 12px;
	border-radius: 4px;
	background-color: #253B44;
	font-size: 15px;
	color: #FFFFFF;
	transition: background-color 0.3s;
}
.footer .footer-menu-wrap .btn-wrap a.btn-access::before {
	content: "";
	display: block;
	width: 10px;
	height: 10px;
	margin-right: 10px;
	background-image: url(/_img/common/arrow-accrss.svg);
	background-size: 100%;
	background-position: center;
	background-repeat: no-repeat;
	transition: background-image 0.3s;
}
.footer .footer-menu-wrap .tell-fax-wrap {
	display: flex;
	margin-right: -25px;
}
.footer .footer-menu-wrap .tell-fax-wrap dl {
	margin-right: 25px;
}
.footer .footer-menu-wrap .tell-fax-wrap dl dt {
	font-size: 13px;
	color: #CBA373;
}
.footer .footer-menu-wrap .tell-fax-wrap dl dd {
	font-size: 18px;
	line-height: 1.5;
}
@media (min-width: 768px) {
	.footer .footer-menu-wrap .btn-wrap a.btn-access:hover {
		background-color: #CBA373;
	}
	.footer .footer-menu-wrap .btn-wrap a.btn-access:hover::before {
		background-image: url(/_img/common/arrow-accrss-white.svg);
	}
}
@media (max-width: 767px) {
	.footer .footer-menu-wrap .tell-fax-wrap {
		margin-right: -40px;
	}
	.footer .footer-menu-wrap .tell-fax-wrap dl {
		margin-right: 40px;
	}
	.footer .footer-menu-wrap .addr-wrap dl dd {
		font-size: 15px;
	}
}

/* .navi-col */
.footer .footer-menu-wrap .navi-col {}
@media (min-width: 1200px) {
	.footer .footer-menu-wrap .navi-col > .row {
		margin-left: -20px;
		margin-right: -20px;
	}
	.footer .footer-menu-wrap .navi-col > .row > * {
		padding-left: 20px;
		padding-right: 20px;
	}
}
.footer .footer-menu-wrap ul.parent-ul {
	font-size: 18px;
	list-style: none;
	padding: 0;
	margin: 0;
}
.footer .footer-menu-wrap ul.parent-ul a {
	transition: color 0.3s;
}
.footer .footer-menu-wrap ul.parent-ul a.current {
	color: #CBA373;
}
.footer .footer-menu-wrap ul.parent-ul > li {
	padding: 31px 0;
}
.footer .footer-menu-wrap ul.parent-ul > li + li {
	position: relative;
	border-top: solid 1px rgba(0, 0, 0, 0.3);
}
.footer .footer-menu-wrap ul.parent-ul > li + li::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	border-top: solid 1px rgba(255, 255, 255, 0.1);
}
.footer .footer-menu-wrap ul.parent-ul > li.has-border-bottom {
	position: relative;
	border-bottom: solid 1px rgba(255, 255, 255, 0.1);
}
.footer .footer-menu-wrap ul.parent-ul > li.has-border-bottom::after {
	content: "";
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	border-top: solid 1px rgba(0, 0, 0, 0.3);
}
.footer .footer-menu-wrap ul.parent-ul > li.has-border-top {
	position: relative;
	border-top: solid 1px rgba(0, 0, 0, 0.3);
}
.footer .footer-menu-wrap ul.parent-ul > li.has-border-top::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	border-top: solid 1px rgba(255, 255, 255, 0.1);
}
.footer .footer-menu-wrap ul.parent-ul > li > a {
	display: flex;
	align-items: center;
}
.footer .footer-menu-wrap ul.parent-ul > li > a::before {
	content: "";
	display: block;
	width: 6px;
	height: 6px;
	margin-right: 10px;
	border-radius: 6px;
	background-color: #CBA373;
}
.footer .footer-menu-wrap ul.parent-ul > li .services-name {
	font-size: 13px;
	color: #CBA373;
	text-transform: uppercase;
	margin-top: 20px;
}
.footer .footer-menu-wrap ul.child-ul {
	font-size: 15px;
	list-style: none;
	padding: 0 0 0 1em;
	margin: 24px 0 0;
}
.footer .footer-menu-wrap ul.parent-ul > li .services-name + ul.child-ul {
	margin-top: 0;
}
.footer .footer-menu-wrap ul.child-ul > li {
	margin-top: 14px;
}
.footer .footer-menu-wrap ul.child-ul > li > a {
	display: flex;
	align-items: center;
}
.footer .footer-menu-wrap ul.child-ul > li > a::before {
	content: "";
	display: block;
	width: 8px;
	height: 1px;
	margin-right: 12px;
	background-color: #CBA373;
}
.footer .footer-menu-wrap ul.parent-ul > li > a.privacy {
	font-size: 15px;
}
.footer .footer-menu-wrap ul.parent-ul > li > a.privacy::before {
	content: none;
}
.footer .footer-menu-wrap ul.parent-ul > li > a.ex-link {
	font-size: 15px;
}
.footer .footer-menu-wrap ul.parent-ul > li > a.ex-link::before {
	content: none;
}
.footer .footer-menu-wrap ul.parent-ul > li > a.ex-link::after {
	content: "";
	width: 12px;
	height: 12px;
	display: block;
	margin-left: 0.5em;
	background-image: url(/_img/common/header2025/ico-exlink.svg);
	background-size: 100%;
	background-position: center;
	background-repeat: no-repeat;
}
.footer .footer-menu-wrap ul.parent-ul > li > a.recruit-link {
	font-size: 18px;
}
.footer .copyrighttext {
	padding: 40px 0;
	text-transform: uppercase;
	font-size: 15px;
	line-height: 1;
	color: #856D47;
	text-align: center;
}
@media (min-width: 768px) {
	.footer .footer-menu-wrap ul.parent-ul a:hover {
		color: #CBA373;
	}
}
@media (max-width: 767px) {
	.footer .footer-menu-wrap ul.child-ul > li {
		margin-top: 22px;
	}
	.footer .footer-menu-wrap ul.parent-ul > li {
		padding: 32px 0;
	}
	.footer .footer-menu-wrap ul.parent-ul > li.has-border-bottom-sp {
		position: relative;
		border-bottom: solid 1px rgba(255, 255, 255, 0.1);
	}
	.footer .footer-menu-wrap ul.parent-ul > li.has-border-bottom-sp::after {
		content: "";
		position: absolute;
		right: 0;
		bottom: 0;
		left: 0;
		border-top: solid 1px rgba(0, 0, 0, 0.3);
	}
	.footer .copyrighttext {
		font-size: 14px;
		padding: 25px 0 75px;
	}
}



/* ------------------------------------------------------------ */
/* .js-cursor-detail */
/* .custom-cursor */
/* ------------------------------------------------------------ */

.custom-cursor {
	position: fixed;
	pointer-events: none;
	z-index: 150;
}
.custom-cursor .normal {
	position: absolute;
	top: -5px;
	left: -5px;
	opacity: 1;
	background-image: url(../_img/common/custom-cursor-nomal.svg);
	background-size: 19px;
	width: 19px;
	height: 20px;
	transition: opacity 0.3s;
}
.custom-cursor .detail {
	position: absolute;
	top: 0;
	left: 0;
	transform: translate(-50%, -50%);
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	color: #FFFFFF;
	font-size: 15px;
	font-weight: 500;
	border-radius: 96px;
	transition: opacity 0.3s;
	width: 96px;
	height: 96px;
	opacity: 0;
}
.custom-cursor .detail.active {
	opacity: 1;
}
.custom-cursor .detail::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 96px;
	background-color: rgba(37, 59, 68, 0.5);
	z-index: -1;
	transition: transform 0.3s;
	transform: scale(0);
}
.custom-cursor .detail.active::before {
	transform: scale(1);
}


/* ------------------------------------------------------------ */
/* .page-contents section */
/* ------------------------------------------------------------ */

.page-contents section div,
.page-contents section p {
	text-wrap: pretty;
}


