@charset "utf-8";

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

:root {
	/* base color */
	--base-font-color: #574E44;
	--base-bg-color: #E9E1CC;

	/* site color */
	--primary: #1C1D56;
	--secondary: #584632;
	--tertiary: #0f0;
	--quaternary: #f0f;
	--fifth: #ff0;
	--sixth: #0ff;

	--white: #FFFFFF;
	--black: #1A1311;

	--bg-primary: #574E44;
	--bg-secondary: #1C1D56;

	/* btn color */
	--btn-primary: var(--primary);
	--btn-primary-hover: var(--primary-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: "Shippori Mincho B1", serif;
	--font-family02: "Hina Mincho", serif;
	--font-family03: "Yuji Syuku", serif;

}

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

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

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);
	background-image: url(../../../../uploads/main_bg.jpg) !important;
    background-attachment: scroll !important;
    background-position: center top !important;
    background-size: contain !important;
    background-repeat: repeat !important;
	background-color: var(--base-bg-color);
}

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;
}

/*===========================================================
共通パーツ
===========================================================*/

.common-top-parts,
.common-bottom-parts {
    max-width: 192rem;
    width: 100%;
    height: 7.7rem;
    margin: 0 auto;
    position: relative;
	z-index: 2;
}

.common-top-parts img,
.common-bottom-parts img {
    width: 100%;
    height: 100% !important;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    object-fit: cover;
}

.common-top-parts {
	margin: -3rem 0 0;
    bottom: -3rem;
    pointer-events: none;
}

.common-bottom-parts {
	margin: 0 0 -4rem;
    top: -4rem;
    pointer-events: none;
}

.bg01 {
    background-image: url(../../../../uploads/bg01.jpg) !important;
    background-attachment: scroll !important;
    background-position: center top !important;
    background-size: cover !important;
    background-repeat: repeat !important;
}

.bg02 {
    background-image: url(../../../../uploads/bg02.jpg) !important;
    background-attachment: scroll !important;
    background-position: center top !important;
    background-size: cover !important;
    background-repeat: repeat !important;
}

.bg03 {
    background-image: url(../../../../uploads/bg03.jpg) !important;
    background-attachment: scroll !important;
    background-position: center top !important;
    background-size: cover !important;
    background-repeat: repeat !important;
}

.color-base {
    color: var(--base-font-color);
}

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

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

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

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

.color-fifth {
    color: var(--sixth);
}

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

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

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

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

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

.bg-base {
    background: var(--base-bg-color) !important;
}

.bg-primary {
    background: var(--bg-primary) !important;
}

.bg-secondary {
    background: var(--bg-secondary) !important;
}

.bg-tertiary {
    background: var(--bg-tertiary) !important;
}

.bg-quaternary {
    background: var(--bg-quaternary) !important;
}

.bg-fifth {
    background: var(--bg-fifth) !important;
}

.mt-0 {
	margin-top: 0 !important;
}

.mb-0 {
	margin-bottom: 0 !important;
}

.pt-0 {
	padding-top: 0 !important;
}

.pb-0 {
	padding-bottom: 0 !important;
}

.d-none {
	display: none !important;
}

/*===========================================================
ボタン
===========================================================*/

.btn01 {
	display: block;
	max-width: 33rem;
	width: 100%;
	padding: 0 0 0.5rem 0.5rem;
	transition: all .3s;
	overflow: hidden;
	position: relative;	
	transition: all .3s;
}

.btn01:hover {
	filter: brightness(1.4)
}

.btn01::before {
	content: "";
	display: block;
	border-radius: 10px;
	width: 0.3rem;
	height: 80%;
	background: var(--black);
	position: absolute;
	left: -0.1rem;
	top: 0;
	bottom: 0;
	margin: auto;
}

.btn01::after {
	content: "";
	display: block;
	border-radius: 10px;
	width: 95%;
	height: 0.3rem;
	background: var(--black);
	position: absolute;
	bottom: -0.1rem;
	right: 1rem;
	margin: auto;
}

.btn01-box {
	padding: 1.4rem 1.5rem 1.8rem;
	max-width: 32rem;
	width: 100%;
	font-size: 1.8rem;
	font-weight: 600;
	letter-spacing: 0.05em;
	color: var(--white);
	text-align: center;
	background-image: url(../../../../uploads/btn_bg01.jpg) !important;
	background-attachment: scroll !important;
	background-position: center top !important;
	background-size: cover !important;
	background-repeat: no-repeat !important;
	position: relative;
}

.btn01-decoration01 {
	max-width: 4.7rem;
	width: 100%;
	display: flex;
    align-items: center;
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
}

.btn02 {
	padding: 2rem 1.5rem 2.3rem;
	max-width: 32rem;
	width: 100%;
	background-image: url(../../../../uploads/btn_bg01.jpg) !important;
	background-attachment: scroll !important;
	background-position: center top !important;
	background-size: cover !important;
	background-repeat: no-repeat !important;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 2rem;
	font-size: 1.9rem;
	font-weight: 600;
	letter-spacing: 0.05em;
	color: var(--white);
	transition: all .3s;
}

.btn02:hover {
	filter: brightness(1.3);
}

.btn02 figure{
	max-width: 2.5rem;
	width: 100%;
    display: flex;
    align-items: center;
}

.btn03 {
	display: block;
	max-width: 33rem;
	width: 100%;
	padding: 0 0 0.5rem 0.5rem;
	transition: all .3s;
	overflow: hidden;
	position: relative;	
	transition: all .3s;
}

/* .btn03:hover {
	filter: brightness(1.4)
} */

.btn03::before {
	content: "";
	display: block;
	border-radius: 10px;
	width: 0.3rem;
	height: 80%;
	background: var(--white);
	position: absolute;
	left: -0.1rem;
	top: 0;
	bottom: 0;
	margin: auto;
}

.btn03::after {
	content: "";
	display: block;
	border-radius: 10px;
	width: 95%;
	height: 0.3rem;
	background: var(--white);
	position: absolute;
	bottom: -0.1rem;
	right: 1rem;
	margin: auto;
}

.btn03-box {
	padding: 1.4rem 1.5rem 1.8rem;
	max-width: 32rem;
	width: 100%;
	font-size: 1.8rem;
	font-weight: 600;
	letter-spacing: 0.05em;
	color: var(--primary);
	text-align: center;
	background: var(--white);
}

.btn03-decoration01 {
	max-width: 4.7rem;
	width: 100%;
	display: flex;
    align-items: center;
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
}

.tel-box01 {
	padding: 0 1.5rem 1rem;
	max-width: 26rem;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 2rem;
	font-size: 2.5rem;
	font-weight: 400;
	font-family: var(--font-family02);
	letter-spacing: 0.1em;
	color: var(--white);
	transition: all .3s;  
	position: relative;
	/* filter:drop-shadow(0 2px 5px rgba(0, 0, 0, .25)); */
}

.tel-box01::before {
    content: "";
    display: block;
    width: 100%;
    height: 0.3rem;
    background-image: url(../../../../uploads/btn_border.png) !important;
    background-attachment: scroll !important;
    background-position: center top !important;
    background-size: 100% !important;
    background-repeat: repeat !important;
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
}

.tel-box01 figure {
	margin: 1rem 0 0;
	max-width: 2.7rem;
	width: 100%;
    display: flex;
    align-items: center;
}

.tel-box02 {
	padding: 1.6rem 1.5rem 1.8rem;
	max-width: 32rem;
	width: 100%;
	background: var(--bg-primary);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 3rem;
	font-size: 2.5rem;
	font-weight: 400;
	font-family: var(--font-family02);
	letter-spacing: 0.1em;
	color: var(--white);
	transition: all .3s;
}

.tel-box02 figure {
	max-width: 2.5rem;
	width: 100%;
    display: flex;
    align-items: center;
}

.tel-box03 {
	padding: 1.4rem 1.5rem 1.5rem;
	max-width: 30rem;
	width: 100%;
	border: 0.1rem solid var(--white);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 2rem;
	font-size: 2.5rem;
	font-weight: 400;
	font-family: var(--font-family02);
	letter-spacing: 0.1em;
	color: var(--white);
	transition: all .3s;
}

.tel-box03 figure {
	max-width: 3.3rem;
	width: 100%;
}

.sns-link01 {
    display: block;
    max-width: 3.5rem;
    width: 100%;
}

.sns-link01 img {
    transition: all .3s;
}

.sns-link01:hover img {
    transform: scale(1.2)
}

.map-btn {
    padding: 0.7rem 1.5rem 0.7rem 2rem;
    max-width: 24rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.9rem;
    background: var(--white);
    border-radius: 2rem;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--primary);
	transition: all .3s;
}

.map-btn:hover {
    color: var(--primary);
	filter: brightness(1.4);
}

.web-btn01 {
	padding: 3.5rem 2rem;
    max-width: 38rem;
    width: 100%;
    background-image: url(../../../../uploads/bg03.jpg) !important;
    background-attachment: scroll !important;
    background-position: center top !important;
    background-size: cover !important;
    background-repeat: repeat !important;
	transition: all .3s;
}

.web-btn01:hover {
	filter: brightness(1.4);
}

.web-btn01-box {
	padding: 0 0 1.4rem;
	max-width: 31rem;
	width: 100%;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 2.4rem;
	font-size: 2.2rem;
	font-weight: 400;
	letter-spacing: 0.05em;
	color: var(--white);
	position: relative;
}

.web-btn01-box::before {
    content: "";
    display: block;
    width: 100%;
    height: 0.3rem;
    background-image: url(../../../../uploads/btn_border.png) !important;
    background-attachment: scroll !important;
    background-position: center top !important;
    background-size: 100% !important;
    background-repeat: repeat !important;
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
}

.web-btn02 {
	padding: 1.8rem 1.5rem;
	max-width: 61rem;
	width: 100%;
	background: var(--base-bg-color);
	font-size: 2rem;
	font-weight: 400;
	letter-spacing: 0.05em;
	font-family: var(--font-family02);
	position: relative;
	gap: 1.7rem;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all .3s;
}

.web-btn02:hover {
	filter: brightness(1.1);
}

.web-btn02 figure {
	max-width: 2.5rem;
	width: 100%;
}

.web-btn02::before {
	content: "";
	display: block;
	width: 3rem;
	height: 1.5rem;
	opacity: .35;
    background-image: url(../../../../uploads/web_btn_decoration01.png) !important;
    background-attachment: scroll !important;
    background-position: center top !important;
    background-size: contain !important;
    background-repeat: repeat !important;
    position: absolute;
    bottom: 0;
    left: 0;
    margin: auto;
}

.web-btn02::after {
	content: "";
	display: block;
	width: 4rem;
	height: 1.9rem;
	opacity: .35;
    background-image: url(../../../../uploads/web_btn_decoration02.png) !important;
    background-attachment: scroll !important;
    background-position: center top !important;
    background-size: contain !important;
    background-repeat: repeat !important;
    position: absolute;
    top: 0;
    right: 0;
    margin: auto;
}

/*===========================================================
テキスト
===========================================================*/

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

.font-family02 {
    font-family: var(--font-family02) !important;
}

.font-family03 {
    font-family: var(--font-family03) !important;
}

.font-weight-bold {
	font-weight: 700 !important;
}

.font-weight-semibold {
	font-weight: 600 !important;
}

.font-weight-medium {
	font-weight: 500 !important;
}

.font-weight-normal {
	font-weight: 400 !important;
}

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

.text02 {
	font-size: 1.8rem;
	font-weight: 600;
	line-height: 1.94444em;
	letter-spacing: 0.05em;
}

.text02 strong {
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.75em;
}

.text03 {
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 1.5625em;
	letter-spacing: 0.05em;
}

.text04 {
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 1.5625em;
	letter-spacing: 0.05em;
}

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

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

.title01 {
	font-size: 4rem;
	font-weight: 400;
	font-family: var(--font-family02);
	letter-spacing: 0.05em;
	line-height: 1.5em;
}

.title02 {
	font-size: 3rem;
	font-weight: 400;
	font-family: var(--font-family02);
	letter-spacing: 0.05em;
	line-height: 2em;
}

.title03 {
	font-size: 2.5rem;
	font-weight: 400;
	font-family: var(--font-family02);
	letter-spacing: 0.05em;
	line-height: 1.6em;
}

.title04 {
	font-size: 2rem;
	font-weight: 600;
	letter-spacing: 0.05em;
	line-height: 1.4em;
}

.title05 {
    font-size: 6rem;
    font-weight: normal;
    letter-spacing: 0.05em;
    line-height: 1.45em;
}

.title06 {
    font-size: 5.5rem;
    font-weight: normal;
    letter-spacing: 0.05em;
    line-height: 1.45em;
}

.title07 {
	font-size: 4.5rem;
	font-family: var(--font-family03);
	font-weight: 400;
	letter-spacing: 0.05em;
}

.title08 {
	font-size: 5rem;
	font-family: var(--font-family02);
	font-weight: 400;
	letter-spacing: 0.05em;
}

.title09 {
	font-size: 2.7rem;
	font-weight: 400;
	font-family: var(--font-family02);
	letter-spacing: 0.05em;
	line-height: 1.6em;
}

.title10 {
	font-size: 2rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 2em;
}

.br-none br {
	display: none;
}

.text-left {
	text-align: left;
}

.text-center {
	text-align: center;
}

.text-right {
	text-align: right;
}

/*===========================================================
ヘッダー
===========================================================*/

.header {
	max-width: 192rem;
	width: 100%;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    margin: auto;
	z-index: 999;
}

.header-container {
	max-width: 181rem;
	width: 100%;
	margin: 0 0 0 auto;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 2rem;
}

.header-logo-box a {
	margin: 7.3rem 0 0;
    display: block;
    max-width: 30rem;
    width: 100%;
}

.header-contact-area {
	max-width: 68.8rem;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;	
	gap: 2rem;
}

/* ==========================================
クローンヘッダー
========================================== */

.header.clone.is-animation {
    top: 0;
    transition: all .5s;
    visibility: visible;
    opacity: 1;
    background-image: url(../../../../uploads/bg03.jpg) !important;
    background-attachment: scroll !important;
    background-position: center top !important;
    background-size: cover !important;
    background-repeat: repeat !important;
}

.header.clone {
	padding: 2rem 1.5rem;
    position: fixed;
    top: -96px;
    transition: all .5s;
    visibility: hidden;
    opacity: 0;
    background: var(--white);
    z-index: 999;
}

.header.clone .header-container {
	display: none;
}

.header.clone .header-fixed-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
	gap: 2rem;
}

.header.clone .header-logo-box a {
	margin: 0;
	max-width: 13rem;
	width: 100%;
}

.header-fixed-container {
	margin: 0 auto;
	max-width: 186rem;
	width: 100%;
	display: none;
}

.header-link-container {
    max-width: 167rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
	gap: 1rem 2%;
}

.header-nav-link-area {
    max-width: 103rem;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    gap: 2.6%;
}

.header-nav-link a {
	display: block;
	font-size: 1.6rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	color: var(--white);
	transition: all .3s;
}

.header-nav-link a:hover {
	color: var(--white);
	opacity: .7;
}

.header-fixed-contact-area {
	max-width: 61rem;
	width: 100%;
	display: flex;
    align-items: stretch;
	gap: 1rem;
}

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

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

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

.sp-header-block-color {
	/* background: var(--primary); */
	border-color: var(--white);
	color: var(--white);
    background-image: url(../../../../uploads/bg03.jpg) !important;
    background-attachment: scroll !important;
    background-position: center top !important;
    background-size: cover !important;
    background-repeat: repeat !important;
}

.sp-header-link {
	width: 100%;
	height: 100%;
}

.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;
	transform: scale(-1, 1);
}

.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-web > a:before {
	content: "\f073";
    font-family: "Font Awesome 5 Free";
}

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

.sp-header-link-text {
	font-size: 1.4rem;
	margin: .7rem 0 0;
}

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

.sp-nav-btn {
	width: 25%;
	height: 8rem;
	display: none;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	position: fixed;
	top: auto;
	bottom: 0;
	right: 0;
	z-index: 99999;
    background-image: url(../../../../uploads/bg03.jpg) !important;
    background-attachment: scroll !important;
    background-position: center top !important;
    background-size: contain !important;
    background-repeat: repeat !important;
}

.sp-nav-btn-color {
	background: var(--secondary);
	color: var(--white);
}

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

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

.sp-nav-btn-bar-top {
	top: 10%;
}

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

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

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

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

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

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

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

.js-sp-nav {
	display: none;
	max-width: 1920px;
	width: 100%;
	height: 100dvh;
	margin: auto;
	padding: 0;
	position: fixed;
	top: 0;
	bottom: 0;
	right: -100%;
	transition: ease .5s;
	z-index: 9999;
	overflow-y: auto;
    overscroll-behavior: contain;
}

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

.sp-nav-bg {
	background: var(--base-font-color);
}

.sp-nav-area {
	width: 100%;
	height: 100%;
	overflow: auto;
	padding: 10rem 1.5rem;
}

.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: bold;
	line-height: 1.5em;
	letter-spacing: 0.05em;
	position: relative;
}

.sp-nav-list-item a{
	display: block;
	padding: 1rem 0;
	font-size: 1.6rem;
	font-weight: 500;
	letter-spacing: 0.1em;
	text-align: center;
	color: var(--white);
	transition: .3s;
}

.sp-nav-list-item a:hover{
	opacity: .6;
}

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

.sp-contact-area {
    margin: 3rem auto 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 30rem;
    width: 100%;
    gap: 3rem;
}

.sp-contact-link-area {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
}

.sp-contact-link-area .web-btn02 {
    padding: 1.4rem 1.5rem 1.6rem;
}

/* ==========================================
フッター
========================================== */

.footer {
	max-width: 192rem;
	width: 100%;
	margin: 0 auto;
}

.footer-wood {
	max-width: 192rem;
	width: 100%;
	height: 5rem;
	position: relative;
}

.footer-wood img {
	width: 100%;
	height: 100% !important;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	margin: auto;
	overflow: hidden;
}

.footer-contact-wrapper {
    padding: 9rem 1.5rem 8rem;
}

.footer-contact-container {
    max-width: 142rem;
    width: 100%;
    margin: 0 auto;
}

.footer-contact-area {
    margin: 7.5rem 0 0;
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 4rem;
}

.footer-contact-block {
    max-width: 66rem;
    width: 100%;
}

.footer-contact-title-area {
    display: flex;
    align-items: flex-start;
}

.footer-contact-title-area::after {
	content: "";
	display: block;
	width: 100%;
	height: 0.3rem;
	background-image: url(../../../../uploads/title_decoration07.png) !important;
	background-attachment: scroll !important;
	background-position: center top !important;
	background-size: contain !important;
	background-repeat: no-repeat !important;
	flex: 1;
	margin: 1.4rem 0 0 2.4rem;
}

.footer-contact-title-box {
    display: flex;
    align-items: flex-start;
}

.footer-contact-decoration {
    max-width: 4.8rem;
    width: 100%;
    margin: 0 1rem 0 0;
}

.footer-contact-btn-area {
    margin: 2.2rem 0 0;
    display: flex;
    align-items: stretch;
    gap: 1.5rem 2rem;
}

.footer-contact-text-area {
	margin: 1rem 0 0;
}

.footer-map {
    max-width: 192rem;
    width: 100%;
    height: 40rem;
    margin: 0 auto;
}

.footer-map iframe {
    width: 100%;
    height: 40rem;
}

.footer-container {
    max-width: 192rem;
    width: 100%;
    margin: 0 auto;
    padding: 7rem 1.5rem 8.3rem;
}

.footer-area {
    max-width: 122rem;
    width: 100%;
    margin: 0 auto;
}

.footer-logo-box {
    max-width: 19rem;
    width: 100%;
    margin: 0 auto;
}

.footer-nav-area {
    margin: 6rem 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.2rem 2rem;
}

.footer-nav-link a {
    display: block;
    font-size: 1.8rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: var(--white);
    transition: all .3s;
}

.footer-nav-link a:hover {
    color: var(--white);
    opacity: .7;
}

.footer-address-area {
    margin: 7.3rem 0 0;
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 0 3rem;
}

.footer-address-block {
    max-width: 56rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.footer-address-row {
    padding: 2rem 0 1.5rem;
    display: flex;
	position: relative;
}

.footer-address-row::before {
	content: "";
	display: block;
	width: 100%;
	height: 0.3rem;
	background-image: url(../../../../uploads/footer_border.svg) !important;
	background-attachment: scroll !important;
	background-position: center top !important;
	background-size: 100% !important;
	background-repeat: repeat !important;
	position: absolute;
	bottom: 0;
	right: 0;
	left: 0;
	margin: auto;
}

.footer-address-row:first-child {
    padding: 0 0 1.5rem;
}

/* .footer-address-row::before {
	content: "";
	display: block;
	width: 100%;
	height: 0; 
	border-top: 0.3rem solid transparent; 
	border-image-source: url(../../../../uploads/footer_border.svg);
	border-image-slice: 48%;
	border-image-repeat: round;
	position: absolute;
	bottom: 0;
	right: 0;
	left: 0;
	margin: auto;
} */

.footer-address-th {
    max-width: 9.6rem;
    width: 20%;
    padding: 0 1rem 0 0;
}

.footer-address-td {
    flex: 1;
}

.footer-address-td .map-btn {
	margin: 1.5rem 0 0;
}

.copyright-area {
    margin: 3rem 0 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 3rem;
}

.copyright {
	font-size: 1.4rem;
	font-weight: 500;
	letter-spacing: 0.05em;
	color: var(--white);
}

/*===========================================================
カバーナビ
===========================================================*/

.cover-nav-container {
    max-width: 51.2rem;
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    position: absolute;
    top: 19rem;
    right: 3.9%;
    margin: auto;
    z-index: 9;
}

.cover-nav-area {
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-start;
    max-width: 44.2rem;
    width: 100%;
    gap: 4.3%;
}

.cover-nav-link a {
    display: block;
    font-size: 2rem;
    font-weight: 400;
    font-family: var(--font-family02);
    color: var(--white);
    letter-spacing: 0.35em;
    transition: all .3s;
    text-shadow: 0 0.2rem 0.5rem rgba(0, 0, 0, .25);
}

.cover-nav-link a:hover {
    color: var(--white);
    opacity: .7;
}

/*===========================================================
下層カバー
===========================================================*/

.lower-cover {
    max-width: 192rem;
    width: 100%;
    margin: auto;
    position: relative;
}

.lower-cover-bg {
    display: block;
    height: 47rem;
    margin: auto;
    position: relative;
}

.lower-cover-bg > img {
    object-fit: cover;
    width: 100%;
    height: 100% !important;
}

.lower-cover-inner {
    max-width: 145rem;
    width: 100%;
    padding: 0 1.5rem;
    margin: auto;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
}

.lower-cover-title {
    font-size: 4.5rem;
    font-weight: bold;
    letter-spacing: 0.1em;
    line-height: 1.15em;
    color: var(--white);
    text-shadow: 0 0.3rem 0.6rem rgb(0 0 0 / 35%);
}

.lower-cover-bg:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(180deg, rgba(54, 46, 37, 0.4), rgba(54, 46, 37, 0.7));
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

.lower-cover:after {
    content: "";
    display: block;
    width: 100%;
    height: 5rem;
    background: url(../../../../uploads/cover_bottom_parts.jpg) no-repeat center / cover;
}

.lower-cover-title {
	max-width: 53.5rem;
	width: 40%;
}

.lower-cover-title.pc {
	display: block;
}

.lower-cover-title.sp {
	display: none;
}

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

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

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

}

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

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

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

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

	body {
		font-size: 1.8rem;
	}

	/*===========================================================
	テキスト
	===========================================================*/

	.text01 {
		font-size: 1.8rem;
	}

	.text03 {
		font-size: 1.8rem;
	}

	.text04 {
		font-size: 1.8rem;
	}

	.text05 {
		font-size: 1.8rem;
	}

	.text06 {
		font-size: 1.8rem;
	}

	/*===========================================================
	ボタン
	===========================================================*/

	.tel-box03 {
		font-size: 2rem;
	}

	.web-btn02 {
		font-size: 1.6rem;
	}

	/*===========================================================
	ヘッダー
	===========================================================*/

	/* ==========================================
	クローンヘッダー
	========================================== */

	.header-fixed-contact-area {
		max-width: 46rem;
	}

	.header-nav-link a {
		font-size: 1.3rem;
	}

}

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

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

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

	html {
		/* 10px */
		font-size: 0.97656vw;
	}
	
	/*===========================================================
	テキスト
	===========================================================*/

	.title03 {
		font-size: 2.4rem;
	}

	.br-lg-none br {
		display: none;
	}

	.br-lg-block br {
		display: block;
	}

	.text-lg-left {
		text-align: left;
	}

	.text-lg-center {
		text-align: center;
	}

	.text-lg-right {
		text-align: right;
	}

	/*===========================================================
	ボタン
	===========================================================*/

	.tel-box03 {
		padding: 1rem 1.5rem;
	}

	.web-btn02 {
		padding: 1rem 1.5rem;
	}

	/*===========================================================
	ヘッダー
	===========================================================*/

	.header-logo-box a {
		max-width: 20rem;
	}

	/* ==========================================
	クローンヘッダー
	========================================== */

	.header-link-container {
		flex-direction: column;
		align-items: flex-end;
	}

	/* ==========================================
	フッター
	========================================== */

	.footer-contact-area {
		flex-direction: column;
		align-items: center;
		justify-content: center;
	}

	.footer-nav-link a {
		font-size: 1.4rem;
	}

	/*===========================================================
	カバーナビ
	===========================================================*/

	.cover-nav-container {
	    top: 14rem;
	}

	/*===========================================================
	下層カバー
	===========================================================*/
	
	.lower-cover-bg {
	    height: 40rem;
	}
	
	.lower-cover-title {
	    font-size: 4rem;
	}
	
	.lower-cover:after {
	    height: 3rem;
	}

}

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

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

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

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

	body {
		font-size: 1.6rem;
	}

	/*===========================================================
	共通パーツ
	===========================================================*/

	.common-top-parts,
	.common-bottom-parts {
		height: 6.4rem;
	}

	.common-bottom-parts {
		margin: 0 0 -3rem;
		top: -3rem;
	}
	
	/*===========================================================
	テキスト
	===========================================================*/

	.br-md-none br {
		display: none;
	}

	.br-md-block br {
		display: block;
	}

	.text-md-left {
		text-align: left;
	}

	.text-md-center {
		text-align: center;
	}

	.text-md-right {
		text-align: right;
	}

	.text01 {
		font-size: 1.6rem;
	}

	.text03 {
		font-size: 1.6rem;
	}

	.text04 {
		font-size: 1.6rem;
	}

	.text05 {
		font-size: 1.6rem;
	}

	.text06 {
		font-size: 1.6rem;
	}

	/*===========================================================
	ボタン
	===========================================================*/

	.web-btn01 {
		padding: 3rem 2rem;
		max-width: 34.2rem;
	}

	.web-btn01-box {
		max-width: 27.9rem;
	}

	/*===========================================================
	ヘッダー
	===========================================================*/

	.header-container {
		margin: 2rem 0 0;
		flex-direction: column-reverse;
		align-items: center;
		justify-content: center;
	}

	.header-logo-box a {
		margin: 2rem 0 0;
		max-width: 15rem;
	}

	.header-contact-area {
		justify-content: center;
	}

	.header-container .tel-box01 {
		display: none;
	}

	.header-contact-area {
		display: none;
	}

	.header-container {
		align-items: flex-start;
	}

	/* ==========================================
	クローンヘッダー
	========================================== */

	.header-link-container {
    display: none;
	}

	.header.clone .header-fixed-container {
		justify-content: center;
	}

	.header.clone {
		padding: 0.5rem 2rem;
	}

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

	.sp-header {
		display: flex;
	}

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

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

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

	.js-sp-nav {
		display: block;
	}

	/* ==========================================
	フッター
	========================================== */

	.footer-contact-wrapper {
		padding: 6rem 1.5rem;
	}

	.footer-contact-area {
		margin: 4.6rem 0 0;
	}

	.footer-contact-title-area::after {
		display: none;
	}

	.footer-container {
		padding: 5rem 1.5rem 4.5rem;
	}

	.footer-logo-box {
		max-width: 16rem;
	}

	.footer-nav-area {
		flex-direction: column;
		margin: 4rem 0 0;
	}

	.footer-address-area {
		margin: 6rem 0 0;
		flex-direction: column;
		align-items: center;
		justify-content: center;
	}

	.footer-address-block:nth-of-type(n + 2) .footer-address-row:first-child {
		padding: 1.8rem 0 1.2rem;
	}

	.footer-address-row {
		padding: 1.8rem 0 1.2rem;
	}

	.copyright-area {
		align-items: center;
	}

	.footer-nav-area {
		display: none;
	}
	
	/*===========================================================
	カバーナビ
	===========================================================*/
	
	.cover-nav-container {
		display: none;
	}
	
	/*===========================================================
	下層カバー
	===========================================================*/
	
	.lower-cover-bg {
	    height: 35rem;
	}
	
	.lower-cover-title {
	    font-size: 3.5rem;
	}

	.lower-cover-title {
		margin: 0 auto;
		text-align: center;
		width: 100%;
	}

	.lower-cover-title.pc {
		display: none;
	}

	.lower-cover-title.sp {
		display: block;
	}

}

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

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

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

	html {
		/* 12px */
		font-size: 2.08333vw;
	}
	
	/*===========================================================
	テキスト
	===========================================================*/
	
	.br-sm-none br {
		display: none;
	}

	.br-sm-block br {
		display: block;
	}

	.text-sm-left {
		text-align: left;
	}

	.text-sm-center {
		text-align: center;
	}

	.text-sm-right {
		text-align: right;
	}

	/*===========================================================
	ボタン
	===========================================================*/

	/* .btn01 {
		max-width: 28.8rem;
		width: 100%;
		padding: 0 0 0.5rem 0.5rem;
	} */

	.btn01 {
		max-width: 24.8rem;
		width: 100%;
		padding: 0 0 0.5rem 0.5rem;
	}

	.btn01::before {
		content: "";
		display: block;
		border-radius: 10px;
		width: 0.3rem;
		height: 80%;
		background: var(--black);
		position: absolute;
		left: -0.1rem;
		top: 0;
		bottom: 0;
		margin: auto;
	}

	.btn01::after {
		content: "";
		display: block;
		border-radius: 10px;
		width: 95%;
		height: 0.3rem;
		background: var(--black);
		position: absolute;
		bottom: -0.1rem;
		right: 1rem;
		margin: auto;
	}

	.btn01-box {
		padding: 1.1rem 1.5rem 1.5rem;
		max-width: 28rem;
		width: 100%;
		font-size: 1.7rem;
	}

	.btn01-decoration01 {
		max-width: 4.1rem;
		width: 100%;
	}

	.btn02 {
		padding: 1.2rem 1.5rem 1.3rem;
		font-size: 1.7rem;
	}

	.btn02 figure {
		max-width: 2.4rem;
	}

	.tel-box02 {
		padding: 1.2rem 1.5rem 1.3rem;
		font-size: 1.7rem;
	}

	.tel-box02 figure {
		max-width: 2.4rem;
	}

	.web-btn01 {
		padding: 2rem;
	}

	/*===========================================================
	テキスト
	===========================================================*/

	.title01 {
		font-size: 2.5rem;
	}

	.title02 {
		font-size: 2.2rem;
	}

	.title04 {
		font-size: 1.6rem;
	}

	.title06 {
		font-size: 4.5rem;
	}

	.title07 {
		font-size: 3rem;
	}

	.title08 {
		font-size: 3rem;
	}

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

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

	.sp-header-link-text{
		font-size: 1rem;
		margin: 0;
	} */

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

	/* .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{
		padding: 1.2rem 0;
		font-size: 1.45rem;
	}

	/* ==========================================
	フッター
	========================================== */

	.footer-contact-btn-area {
		margin: 2rem 0 0;
		flex-direction: column;
		align-items: center;
	}

	.footer-contact-title-box {
        max-width: 33rem;
        width: 100%;
        margin: 0 auto;
	}

	.footer-contact-text-area {
		max-width: 30rem;
		margin: 2rem auto 0;
	}

	/*===========================================================
	下層カバー
	===========================================================*/
	
	.lower-cover-bg {
	    height: 30rem;
	}
	
	.lower-cover-title {
	    font-size: 3rem;
	}
	
	.lower-cover:after {
	    height: 2rem;
	}

	/* .lower-cover-title {
		margin: 4rem auto 0;
	} */

}

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

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

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

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

	.footer-address-th {
		width: 30%;
	}

}

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