@charset "utf-8";

/* ==========================================
カスタムプロパティ
========================================== */

:root {
	/* base color */
	--base-font-color: #333;
	--base-bg-color: #FFF8EE;
	/* white color */
	--white: #fff;
	/* black color */
	--black: #000;
	/* Brown color */
	--brown: #5E4227;

	/* ui color */
	--ui-border-color: #555;
	--ui-focus-color: #333;
	/* ui color */
	--ui-border-color: #555;
	--ui-focus-color: #333;

	/* site color */
	--priary: #f00;
	--priary-hover: #f55;
	--secondary: #00f;
	--secondary-hover: #55f;
	--tertiary: #0f0;
	--tertiary-hover: #5f5;
	--quaternary: #f0f;
	--quaternary-hover: #f5f;
	--fifth: #ff0;
	--fifth-hover: #ff5;
	--sixth: #0ff;
	--sixth-hover: #5ff;

	/* btn color */
	--btn-priary: var(--priary);
	--btn-priary-hover: var(--priary-hover);
	--btn-secondary: var(--secondary);
	--btn-secondary-hover: var(--secondary-hover);
	--btn-tertiary: var(--tertiary);
	--btn-tertiary-hover: var(--tertiary-hover);
	--btn-quaternary: var(--quaternary);
	--btn-quaternary-hover: var(--quaternary-hover);
	--btn-fifth: var(--fifth);
	--btn-fifth-hover: var(--fifth-hover);
	--btn-sixth: var(--sixth);
	--btn-sixth-hover: var(--sixth-hover);

	/* font family */
	--base-font-family: "Shippori Mincho B1", serif,"游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
	/* --base-font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif; */
	--font-family01: "Hina Mincho", serif;
	/* --font-family02: ; */
	/* --font-family03: ; */

}

/* ==============================

fade-blur-on-scroll

============================== */

.fade-blur-on-scroll {
    opacity: 0;
    filter: blur(10px);
    transform: translateY(20px);
    transition: all 0.8s ease;
}

.fade-blur-on-scroll.is-visible {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
}

/* ==========================================
共通
========================================== */

html {
	/* font-size: var(--root-font-size); */
	font-size: 62.5%;
}

body {
    background-color: var(--base-bg-color);
    background-image: url(../../../../uploads/decoMask01.png);
    background-size: auto;
    background-position: top left;
    background-repeat: repeat;
}

body {
	margin: 0 auto;
	max-width: 192rem;
	width: 100%;
	line-height: 1.6;
	font-size: 1.6rem;
	font-weight: 500;
	font-family: var(--base-font-family);
	color: var(--base-font-color);
}

.pc {
    display: block;
}

.sp {
    display: none;
}

.white {
    color: var(--white);
}

.colorBrown {
    color: var(--brown);
}

.textShadow01 {
    text-shadow: 0 0.2rem 0.6rem rgb(0 0 0 / 50%);
}

.fontA {
	font-family: var(--font-family01);
}

.paddingWr01 {
    padding: 0px 3rem;
}

.text01 {
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    line-height: 2.5em;
}

input {
	appearance: auto;
	border: 1px solid var(--ui-border-color);
}

input:focus-visible {
	outline: 1px solid var(--ui-focus-color);
	border-color: var(--ui-focus-color);
}

textarea {
	border: 1px solid var(--ui-border-color);
}

textarea:focus-visible {
	outline: 1px solid var(--ui-focus-color);
	border-color: var(--ui-focus-color);
}

img {
	max-width: 100%;
	height: auto;
}

/* ==========================================
共通ボタン
========================================== */

.comBtn01:before {
    content: "";
    display: block;
    width: 3.2rem;
    height: 5rem;
    background: url(../../../../uploads/com_btn_black.svg) no-repeat;
    background-size: cover;
    background-position: top left;
    margin-right: 1.5rem;
    z-index: 2;
    position: relative;
}

.comBtn01 {
    display: inline-flex;
    align-items: center;
    min-width: 25rem;
    position: relative;
    padding: 0.3rem 0 0.3rem 0.3rem;
    color: #333;
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: 0.1em;
}

.comBtn01:after {
    content: "";
    position: absolute;
    width: 92.8%;
    height: 100%;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 1;
    border: 1px solid;
    border-right: none;
    border-color: #5E4227;
}

.comBtnText {
    position: relative;
    z-index: 2;
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.comBtnText:after {
    content: "";
    width: 3.5rem;
    height: 0.1rem;
    background-color: #5E4227;
    transition: all .5s;
}

.comBtn01:hover .comBtnText:after {
    transform: translateX(1.5rem);
    transition: all .5s;
}

.comBtn01.btnWhite {
    color: #fff;
}

.comBtn01.btnWhite:before {
    background: url(../../../../uploads/com_btn_white.svg) no-repeat;
    background-size: cover;
    background-position: top left;
}

.comBtn01.btnWhite:after {
    border-color: #fff;
}

.comBtn01.btnWhite .comBtnText:after {
    background-color: #fff;
}

/* ==========================================
スマホ固定ヘッダー
========================================== */

.sp-header {
	width: 100%;
	height: 7.5rem;
	display: none;
	padding: 0;
	position: fixed;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 99;
}

.sp-header-block {
	width: 100%;
	height: 100%;
	flex: 1;
	border-right: solid 1px;
}

.sp-header-block-color {
	background: #000;
	border-color: var(--white);
	color: var(--white);
	border-top: 0.1rem solid var(--white);
}

.hHamIcon01 {
    max-width: 1.7rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hHamIcon02 {
    max-width: 2.2rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hHamIcon03 {
    max-width: 1.7rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sp-header-link {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-end;
	padding: 1.1rem;
}

.sp-header-link > a {
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.sp-header-link > a:before {
	content: "";
	display: inline-block;
	max-width: 3rem;
	width: 100%;
	height: 3rem;
	font-size: 2.5rem;
	font-weight: 900;
	text-align: center;
}

.sp-header-link-pagetop > a:before {
	content: "\f106";
	font-family: "Font Awesome 5 Free";
}

.sp-header-link-tel > a:before {
	content: "\f095";
	font-family: "Font Awesome 5 Free";
}

.sp-header-link-contact > a:before {
	content: "\f0e0";
	font-family: "Font Awesome 5 Free";
}

.sp-header-link-text {
	font-size: 1.4rem;
	margin: .3rem 0 0;
	font-weight: 500;
	letter-spacing: 0.1em;
	line-height: 1.5em;
}

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

.hHamWr {
    max-width: 37.5rem;
    width: 100%;
    margin: 0 auto;
}

/* ---------- ハンバーガーボタン ---------- */

.sp-nav-btn {
	width: 4.9rem;
	height: 4.9rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	position: fixed;
	top: 0.3rem;
	right: 0.3rem;
	z-index: 99999999;
}

.sp-nav-btn-color {
	background: rgb(255 255 255 / 44%);
	color: var(--white);
	border: 0.1rem solid var(--white);
}

.is-active .sp-nav-btn-color {
    background-color: #333;
}

.sp-nav-btn-bar-box {
	max-width: 2.5rem;
	width: 100%;
	height: 1.8rem;
	display: flex;
	position: relative;
}

.sp-nav-btn-bar {
	display: block;
	width: 100%;
	height: 0.1rem;
	background: var(--white);
	position: absolute;
	right: 0;
	left: 0;
	margin: auto;
	transition: .3s;
}

.sp-nav-btn-bar-top {
	top: 0;
}

.sp-nav-btn-bar-center {
	top: 50%;
	transform: translateY(-50%);
}

.sp-nav-btn-bar-bottom {
	top: 100%;
	transform: translateY(-100%);
}

.sp-nav-btn-text {
	font-size: 1.4rem;
	margin: .7rem 0 0;
}

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

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

.js-open .sp-nav-btn-bar-bottom {
	top: 50%;
	transform: rotate(-45deg) translateY(-50%);
}

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

.js-sp-nav {
	display: block;
	max-width: 1920px;
	width: 100%;
	margin: auto;
	padding: 0;
	position: fixed;
	top: 0;
	bottom: 0;
	right: -100%;
	transition: ease .5s;
	z-index: 999;
	color: #fff;
}

.js-sp-nav.js-open {
	right: 0;
}

.sp-nav-bg {
	background: rgb(0 0 0 / 50%);
}

.sp-nav-area {
	max-width: 100%;
	width: 100%;
	height: 100%;
	overflow: auto;
	padding: 11rem 1.5rem;
	background: #000;
	margin: 0 0 0 auto;
}

.sp-nav-list {
	width: 100%;
	height: 100%;
	overflow-y: scroll;
	-ms-overflow-style: none;
}

.sp-nav-list::-webkit-scrollbar {
	display:none;
}

.sp-nav-list-item {
	width: 100%;
	display: block;
	font-weight: 600;
	line-height: 1.5em;
	text-align: center;
	letter-spacing: 0.1em;
	position: relative;
	margin-top: 2.5rem;
}

.sp-nav-list .sp-nav-list-item:first-child {
    margin-top: 0;
}

.sp-nav-list-item a{
	display: inline-block;
	font-size: 1.6rem;
	transition: .3s;
}

.sp-nav-list-item a:hover{
	opacity: 1;
	text-decoration: underline;
}

.sp-nav-list-item-color{
	border-bottom-color: var(--sp-border-color);
}

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

@media screen and (width <= 1920px) {

	html {
		/* 10px */
		font-size: 0.52083vw;
	}

}

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

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

@media screen and (width <= 1550px) {

	html {
		/* 10px */
		font-size: 0.64516vw;
	}

}

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

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

@media screen and (width <= 1024px) {

	html {
		/* 10px */
		font-size: 0.97656vw;
	}

}

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

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

@media screen and (width <= 768px) {

	html {
		/* 10px */
		font-size: 1.30208vw;
	}

	.pc {
		display: none;
	}

	.sp {
		display: block;
	}
	.paddingWr01 {
	    padding: 0 1.5rem;
	}

	/* ==========================================
	スマホ固定ヘッダー
	========================================== */

	.sp-header {
		display: flex;
	}

	/* ---------- ハンバーガーボタン ---------- */

	.sp-nav-btn {
		display: flex;
	}

	.sp-nav-area {
		max-width: 100%;
		margin: 0 auto;
	}

	.sp-nav-bg {
		background: #000;
	}

	.text01 {
	    font-size: 1.3rem;
	    line-height: 2em;
	}



}

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

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

@media screen and (width <= 576px) {

	html {
		/* 12px */
		font-size: 2.08333vw;
	}

		/* ==========================================
	スマホ固定ヘッダー
	========================================== */
	.sp-header{
		height: 6rem;
		padding: 0;
	}

	.sp-header-link > a:before{
		font-size: 2rem;
	}

	.sp-header-link-text{
		font-size: 1rem;
	}

	/* ---------- ハンバーガーボタン ---------- */

	.sp-nav-btn{
		width: 6rem;
		height: 6rem;
	}

	.sp-nav-btn-bar-box{
		max-width: 3rem;
	}

	.sp-nav-btn-text{
		font-size: 1rem;
	}

	.sp-nav-btn-text{
		margin: 0;
	}

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

	.sp-nav-list-item a{
		font-size: 1.6rem;
	}

}

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

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

@media screen and (width <= 414px) {

	html {
		/* 14px */
		font-size: 2.43055vw;
	}

	.sp-nav-area {
		max-width: 100%;
	}

}

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