@charset "UTF-8";

:root {
	/* 基本色 */
	--primary-color: #325E49;
	/* メインカラー */
	--secondary-color: #24272A;
	/* サブカラー */
	--accent-color: #453314;
	/* アクセントカラー */
}


/* header
  ---------------------------------------------------------------------- */
#mainheader {
	z-index: 0;
    position: relative;
	width: 100%;
	height: 60px;
	background-color: #fff;
	transition: background-color 0.3s, height 0.3s, top 0.3s;
}

#mainheader .mainheader__inr {
	display: flex;
	height: 100%;
	justify-content: space-between;
	margin-right: auto;
	margin-left: auto;
	z-index: 9999;
	position: relative;
}

#mainheader .logo_wrap {
	width: 140px;
	padding-left: 20px;
	box-sizing: content-box;
}

#mainheader .logo {
	height: 100%;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

#mainheader .logo a {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	margin-right: auto;
	width: 100%;
	height: 100%;
}

#mainheader .logo a img {
	width: 100%;
	height: auto;
	transform: rotate(0.0001deg);
}

/* fnav
  ---------------------------------------------------------------------- */
.fnav {
	flex: 1;
	display: flex;
	justify-content: space-between;
	gap: 1.5%;
}

.fnav__list {
	flex: 1;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-end;
	line-height: 1.4;
	font-weight: 500;
	padding-right: 40px;
}

.fnav__list li {
	padding: 0 18px;
}

.fnav__list li a {
	font-size: 12px;
	font-weight: bold;
	display: block;
	line-height: 1;
	letter-spacing: 0.04em;
	position: relative;
}

#RthCustomizeW .btn__rsv {
	color: #fff;
	font-size: 12px;
	width: 120px;
	padding: 10px 0% 10px;
	letter-spacing: 0.08em;
	font-weight: bold;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	background-color: var(--primary-color);
}

/* footer
---------------------------------------------------------------------- */
.footer {
	position: relative;
	padding: 60px 0 0;
	color: #fff;
	background-color: var(--secondary-color);
}

.footer__wrap {
	display: flex;
	justify-content: space-between;
	margin-bottom: 55px;
	padding: 0 60px;
}

.footer__logo {
	width: 240px;
	margin: 0 0 25px;
}

.footer__logo a,
.footer__logo img {
	display: block;
	width: 100%;
}

.footer__addressWrap {
	padding-top: 10px;
	position: relative;
}

.footer__address {
	font-size: 12px;
	line-height: 1.8;
	font-weight: 500;
	font-style: normal;
}

.footer__icon {
	position: absolute;
	bottom: 4px;
	right: -6px;
}

.footer__title {
	font-weight: bold;
	font-size: 16px;
	display: block;
	margin-bottom: 5px;
}

.footer__nav {
	flex: 1;
	max-width: 435px;
	margin-left: 40px;
}

.footer__navList {
	display: flex;
	gap: 60px;
	margin-bottom: 10px;
	padding: 0 10px 10px 0;
	border-bottom: 1px solid #fff;
}

.footer__navSubList {
	display: flex;
	gap: 60px;
	margin-bottom: 28px;
}

.karakami {
	width: 162px;
	display: block;
	margin-left: auto;
}

.copyright {
	font-size: 10px;
	letter-spacing: 0.14em;
	color: #fff;
	background-color: #515457;
	padding: 4px;
	text-align: center;
}

/* loading */
#loading {
	background: #24272A;
	position: fixed !important;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 9999;
	transition: 1s all ease-in-out;
	opacity: 1;
}

#loading.loaded {
	opacity: 0;
	pointer-events: none;
}

#loading img {
	width: 256px;
	height: auto;
	z-index: 1;
	margin-top: 10px;
}