@charset "utf-8";

/* ==========================================
スクロール時のヘッダー
========================================== */

.header.is-animation {
    background: #562807;
}

.is-animation .header-inner {
    padding: 5px 15px;
}

.is-animation .header-logo-link {
    max-width: 120px;
}

.is-animation .header-content-area {
    margin: 5px 0 0 3%;
}

.is-animation .hamburger-btn {
    margin: 5px 0 0 15px;
}

/* ==========================================
ハンバーガーメニュー
========================================== */

.hamburger-btn {
	max-width: 49px;
	width: 100%;
	display: none;
	cursor: pointer;
	transition: .3s;
	margin: 10px 0 0 15px;
}

.hamburger-btn:hover {
	opacity: 0.65;
}

.hamburger-btn-icon {
	max-width: 42px;
	width: 100%;
	height: 18px;
	margin: auto;
	position: relative;
}

.hamburger-btn-bar {
	width: 100%;
	height: 2px;
	background: #fff;
	position: absolute;
	right: 0;
	left: 0;
	transition: .5s;
	margin: auto;
}

.hamburger-btn-bar-top {
	top: 0;
}

.hamburger-btn-bar-center {
	top: 50%;
}

.hamburger-btn-bar-bottom {
	top: 100%;
}

.js-open .hamburger-btn-bar {
	background: #562807;
}

.js-open .hamburger-btn-bar-top {
	top: 50%;
	transform: rotate(30deg);
}

.js-open .hamburger-btn-bar-center {
	opacity: 0;
}

.js-open .hamburger-btn-bar-bottom {
	top: 50%;
	transform: rotate(-30deg);
}

.hamburger-btn-text {
    font-size: 16px;
    font-weight: bold;
    font-family: "Lato", sans-serif;
    line-height: 1.18em;
    text-align: center;
    margin: 5px 0 0;
    color: #fff;
}

.js-open .hamburger-btn-text {
	color: #562807;
}

.nav-area {
	max-width: 1920px;
	width: 100%;
	height: 100%;
	background: rgb(0 0 0 / 60%);
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	margin: auto;
	opacity: 0;
	visibility: hidden;
	transition: .5s;
}

.nav-content {
	max-width: 530px;
	width: 100%;
	height: 100%;
	overflow: auto;
	background: #F2EADA;
	padding: 70px 20px 100px;
	margin: auto;
	position: absolute;
	left: auto;
	right: -100%;
	transition: 1s;
}

.js-open.nav-area {
	opacity: 1;
	visibility: visible;
}

.js-open .nav-content {
	right: 0;
	transition: .5s;
}

.nav-list {
	max-width: 350px;
	width: 100%;
	margin: auto;
}

.nav-list-item {
    border-bottom: solid 1px #D2C4B9;
}

.nav-link {
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.05em;
	line-height: 1.44;
	color: #392200;
	text-align: center;
	padding: 10px 0;
}

.nav-link:hover {
	color: #392200;
	opacity: 0.65;
}

.nav-contact-area {
	max-width: 314px;
	width: 100%;
	margin: 30px auto 0;
}

.nav-tel-box {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 24px;
	font-weight: bold;
	font-family: "Lato", sans-serif;
	line-height: 1.21em;
	background: #fff;
	color: #562807;
	padding: 10px 15px 9px;
}

.nav-tel-box:before {
	content: "";
	display: block;
	max-width: 19px;
	width: 100%;
	height: 24px;
	background: url(/system_panel/uploads/images/tel_icon_brown.svg) no-repeat center / contain;
	margin: 0 6px 0 0;
}

.nav-sns-block {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin: 24px 0 0;
}

/* ==========================================
スマホ時のナビ
========================================== */

.sp-nav {
	width: calc(100% - 33.33%);
	height: 70px;
	position: fixed;
	bottom: 0;
	left: 0;
	z-index: 999999;
	animation-name: fadein;
	animation-duration: 1.5s;
	animation-timing-function: ease-out;
	animation-fill-mode: forwards;
	border-top: solid 1px #fff;
}

.sp-nav-area {
	width: 100%;
	height: 100%;
	display: flex;
	background: #562807;
}

.sp-nav-block {
	flex: 1;
	display: flex;
}

.sp-nav-conte-l {
	width: 50%;
	border-right: 1px solid #fff;
}

.sp-nav-link {
	padding: 6px;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: center;
}

.sp-nav-link-icon {
	max-width: 25px;
	width: 100%;
	height: 25px;
	font-size: 25px;
	line-height: 1em;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
}

.sp-nav-btn-bar {
	max-width: 26px;
	height: 18px;
	width: 100%;
	position: relative;
}

.sp-nav-btn-text {
	margin: 5px auto 0;
	font-size: 10px;
	line-height: 1em;
	color: var(--quaternary);
}

.sp-nav-link-text {
	margin: 6px auto 0;
	font-size: 15px;
	font-weight: bold;
	line-height: 1.4em;
	color: #fff;
}

.sp-nav-btn {
	padding: 6px;
	width: 33.33%;
	height: 70px;
	position: fixed;
	right: 0;
	bottom: 0;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: center;
	cursor: pointer;
	background: #7E2713;
	z-index: 99999999;
	animation-name: fadein;
	animation-duration: 1.5s;
	animation-timing-function: ease-out;
	animation-fill-mode: forwards;
	border-top: solid 1px #fff;
}

.sp-nav-btn-bar-item {
	width: 100%;
	height: 3px;
	background: #fff;
	border-radius: 3px;
	position: absolute;
	left: 0;
	transition: ease .5s;
}

.sp-nav-btn-bar-item:nth-of-type(1) {
	top: 0;
}

.sp-nav-btn-bar-item:nth-of-type(2) {
	top: 50%;
	transform: translateY(-50%);
}

.sp-nav-btn-bar-item:nth-of-type(3) {
	top: 100%;
	transform: translateY(-100%);
}

.js-open .sp-nav-btn-bar-item {
	transition: ease .5s;
}

.js-open .sp-nav-btn-bar-item:nth-of-type(1) {
	top: 50%;
	transform: translateY(-50%) rotate(-45deg);
}

.js-open .sp-nav-btn-bar-item:nth-of-type(2) {
	opacity: 0;
}

.js-open .sp-nav-btn-bar-item:nth-of-type(3) {
	top: 50%;
	transform: translateY(-50%) rotate(45deg);
}

.sp-menu {
	margin: auto;
	padding: 0;
	max-width: 1920px;
	width: 100%;
	position: fixed;
	top: 0;
	bottom: 0;
	right: -100%;
	background: var(--secondary-light);
	z-index: 9999999;
	transition: ease .5s;
}

.sp-menu.open {
	right: 0;
}

.sp-menu-area {
	width: 100%;
	height: 100%;
	overflow: auto;
	padding: 100px 15px;
}

.sp-menu-conte {
	padding: 100px 0;
	width: 100%;
	height: 100%;
	overflow-y: scroll;
	-ms-overflow-style: none;
}

.sp-menu-conte::-webkit-scrollbar {
	display:none;
}

.sp-menu-link {
	width: 100%;
	padding: 10px 0;
	display: block;
	color: var(--base-font-color);
	font-weight: bold;
	line-height: 1.5em;
	letter-spacing: 0.05em;
	text-align: center;
	position: relative;
}

.sp-menu-link:hover {
	color: var(--base-font-color);
}

.sp-menu-link-en-text {
    font-size: 12px;
    color: var(--primary);
    margin: 3px 0 0;
}

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

@media screen and (min-width:375px) {

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

} /* min-width: 375px ここまで */

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

@media screen and (min-width:414px) {

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

  



/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

} /* min-width: 414px ここまで */

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

@media screen and (min-width:544px) {

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
  

  
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

} /* min-width: 544px ここまで */

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

@media screen and (min-width:768px) {

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

/* ==========================================
ハンバーガーメニュー
========================================== */

.hamburger-btn {
	display: block;
}
	
.nav-link {
	font-size: 16px;
}

.nav-tel-box {
	font-size: 28px;
}

/* ==========================================
スマホ時のナビ
========================================== */

.sp-nav {
	display: none;
}

.sp-nav-btn {
	display: none;
}
  
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

} /* min-width: 768px ここまで */

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

@media screen and (min-width:992px) {

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
  


/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

} /* min-width: 992px ここまで */

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */


/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

@media screen and (min-width:1024px) {

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

/* ==========================================
スクロール時のヘッダー
========================================== */

.is-animation .header-inner {
    padding: 15px;
}

.is-animation .header-logo-link {
    max-width: 140px;
}

.is-animation .header-content-area {
    margin: 10px 0 0 3%;
}

.is-animation .hamburger-btn {
    margin: 10px 0 0 28px;
}

/* ==========================================
ハンバーガーメニュー
========================================== */
	
.hamburger-btn {
    max-width: 49px;
    width: 100%;
    display: block;
    cursor: pointer;
    transition: .3s;
    margin: 16px 0 0 28px;
}

.nav-content {
	padding: 140px 20px 100px;
}

.nav-link {
	font-size: 18px;
	padding: 15px 0;
}

.nav-tel-box {
	font-size: 32px;
}

	
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

} /* min-width: 1024px ここまで */

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */