/* --------------------------------------------------
共有css
common.css
-------------------------------------------------- */

body {
	font-family: "Noto Sans JP", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	background-color: #928C8B;
	color: #3F3432;
}

.roboto {
	font-family: "Roboto Condensed", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
}

.container {
	max-width: 900px;
	padding-left: 50px;
	padding-right: 50px
}
@media (max-width: 767px) {
	.container {
		max-width: 560px;
		padding-left: 25px;
		padding-right: 25px
	}
}

.fw1 {
	font-weight: 100;
}
.fw2 {
	font-weight: 200;
}
.fw3 {
	font-weight: 300;
}
.fw4 {
	font-weight: 400;
}
.fw5 {
	font-weight: 500;
}
.fw6 {
	font-weight: 600;
}
.fw7 {
	font-weight: 700;
}
.fw8 {
	font-weight: 800;
}
.fw9 {
	font-weight: 900;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
	line-height: 1.75;
}

a {
	color: #3F3432;
}
a:hover {
	color: #3F3432;
	text-decoration: none;
}
@media (min-width: 768px) {
	a {
		transition: opacity 0.3s;
	}
	a:hover {
		opacity: 0.6;
	}
}

.btn {
	position: relative;
	display: flex;
	align-items: center;
	font-weight: 500;
	color: #3F3432;
	border: solid 1px #3F3432;
	border-radius: 0;
	width: fit-content;
	min-width: 162px;
	height: 67px;
	margin: 0 auto;
	padding: 20px 90px 20px 30px;
}
.btn::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 30px;
	transform: translate(0, -70%);
	width: 42px;
	height: 11px;
	background-image: url(../img/common/btn-arrow.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	transition: transform 0.3s;
}
@media (min-width: 768px) {
	.btn:hover {
		color: #3F3432;
		opacity: 1;
	}
	.btn:hover::after {
		transform: translate(5px, -70%);
	}
}

.underline {
	border-bottom: solid 2px #3F3432;
}

/* -------------------------------------------------- */
/* g-header */
/* -------------------------------------------------- */
.g-header {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	height: 110px;
	background-color: #928C8B;
	box-shadow: 0 20px 20px rgba(0,0,0,0.0);
	transition: background-color 0.3s, box-shadow 0.3s;
	z-index: 99;
}
.g-header.narrow {
	background-color: #928C8B;
	box-shadow: 0 20px 20px rgba(0,0,0,0.1);
}
.g-header .inner {}

/* .site-logo*/
.g-header .site-logo {
	position: absolute;
	top: 33px;
	left: 32px;
	margin: 0;
	z-index: 101;
	transition: left 0.3s;
}
.g-header .site-logo a {
	display: block;
}
.g-header .site-logo a img {
	display: block;
	transition: filter 0.3s;
}
@media (max-width: 767px) {
	.g-header {
		height: 100px;
	}
	.g-header .site-logo {
		top: 25px;
		left: 25px;
		width: 77px;
	}
}

/* .hamburger-menu */
.g-header .hamburger-menu {}
.g-header .hamburger-menu .hamburger {
	position: absolute;
	top: 45px;
	right: 45px;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 40px;
	height: 40px;
	padding: 0;
	border: none;
	background-color: transparent;
	transition: top 0.3s;
	z-index: 101;
}
.g-header .hamburger-menu .hamburger .hamborder {
	position: relative;
	display: block;
	width: 33px;
	height: 6px;
	background-color: #3F3432;
	transition: transform 0.3s, background-color 0.3s;
}
.g-header .hamburger-menu .hamburger .hamborder::before,
.g-header .hamburger-menu .hamburger .hamborder::after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: #3F3432;
	transition: transform 0.3s, background-color 0.3s;
}
.g-header .hamburger-menu .hamburger .hamborder::before {
	transform: translate(0, 13px);
}
.g-header .hamburger-menu .hamburger .hamborder::after {
	transform: translate(0, -13px);
}
@media (max-width: 767px) {
	.g-header .hamburger-menu .hamburger {
		top: 20px;
		right: 20px;
	}
}

.g-nav {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	padding: 40px 190px;
	background-color: rgba(63,52,50,0.7);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s, visibility 0.3s;
	z-index: 100;
}
.g-nav .closebox {}
.g-nav .nav-inner {
	font-size: 32px;
}
.g-nav .nav-inner > ul {
	list-style: none;
	padding: 0;
	margin: 0;
	text-align: right;
}
.g-nav .nav-inner > ul > li {
	padding: 0;
	margin: 0 0 0.25em;
}
.g-nav .nav-inner > ul > li > a {
	color: #FFFFFF;
	font-weight: 700;
}
@media (max-width: 767px) {
	.g-nav {
		padding: 120px 28px;
	}
}

/* .narrow */
.g-header.narrow .site-logo {
	left: calc(50% - 41px);
}
.g-header.narrow .hamburger-menu .hamburger {}

/* .nav-open */
.nav-open {
	overflow: hidden;
	position: fixed;
	width: 100%;
	height: 100%;
}
.nav-open .g-header .site-logo a img {
	filter: brightness(6);
}
.nav-open .g-header .hamburger-menu .hamburger .hamborder {
	background-color: #FFFFFF;
	transform: rotate(45deg);
}
.nav-open .g-header .hamburger-menu .hamburger .hamborder::before,
.nav-open .g-header .hamburger-menu .hamburger .hamborder::after {
	background-color: #FFFFFF;
}
.nav-open .g-header .hamburger-menu .hamburger .hamborder::before {
	transform: translate(0, 0) rotate(90deg);
}
.nav-open .g-header .hamburger-menu .hamburger .hamborder::after {
	transform: translate(0, 0) rotate(90deg);
}
.nav-open .g-nav {
	opacity: 1;
	visibility: visible;
}


/* -------------------------------------------------- */
/* .wrapper */
/* -------------------------------------------------- */
.wrapper {
	padding: 185px 0;
}
.breadcrumbs {
	margin-bottom: 1rem;
}
.breadcrumbs .container {
	max-width: 975px;
}
@media (max-width: 767px) {
	.wrapper {
		padding: 150px 0;
	}
}


/* -------------------------------------------------- */
/* .g-footer */
/* -------------------------------------------------- */
.g-footer {
	border-top: solid 1px #3F3432;
	padding: 130px 0 30px;
}
.g-footer .container {}

/* .footer-nav */
.g-footer .footer-nav {
	margin-bottom: 60px;
}
.g-footer .footer-nav .nav-inner {
	line-height: 1;
}
.g-footer .footer-nav .nav-inner > ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	list-style: none;
	padding: 0;
	margin: 0;
}
.g-footer .footer-nav .nav-inner > ul > li {
	padding: 0;
	margin: 0;
}
.g-footer .footer-nav .nav-inner > ul > li > a {
	padding: 0 25px;
}
.g-footer .footer-nav .nav-inner > ul > li > a .text {}
@media (min-width: 768px) {
	.g-footer .footer-nav .nav-inner > ul > li:not(:last-child) {
		border-right: solid 1px #3F3432;
	}
	.g-footer .footer-nav .nav-inner > ul > li > a:hover {
		opacity: 1;
	}
	.g-footer .footer-nav .nav-inner > ul > li > a .text {
		border-bottom: solid 1px transparent;
		transition: border-bottom 0.3s;
	}
	.g-footer .footer-nav .nav-inner > ul > li > a:hover .text {
		border-bottom: solid 1px #3F3432;
	}
}
@media (max-width: 767px) {
	.g-footer .footer-nav .nav-inner > ul {
		display: block;
	}
	.g-footer .footer-nav .nav-inner > ul > li {
		border-bottom: solid 1px #78716F;
	}
	.g-footer .footer-nav .nav-inner > ul > li > a {
		display: block;
		padding: 25px 0 5px;
	}
}

/* .footer-logo */
.g-footer .footer-logo {
	text-align: center;
	margin-bottom:  45px
}
.g-footer .footer-logo a {}
.g-footer .footer-logo a img {}

/* .copy-wrap */
.g-footer .copy-wrap {
	font-size: 12px;
	text-align: center;
}
.g-footer .copy-wrap .text {}
@media (max-width: 767px) {
	.g-footer {
		padding: 30px 0 35px;
	}
	.g-footer .footer-nav {
		margin-bottom: 100px;
	}
	.g-footer .footer-logo {
		margin-bottom: 115px;
	}
}