@charset "UTF-8";

/*　ハンバーガーボタン　*/
.hamburger {
	display: block;
	position: fixed;
	z-index: 99999;
	right: 13px;
	top: 12px;
	width: 42px;
	height: 42px;
	cursor: pointer;
	text-align: center;
}

.hamburger span {
	display: block;
	position: absolute;
	width: 30px;
	height: 2px;
	left: 6px;
	background: #555;
	-webkit-transition: 0.5s ease-in-out;
	-moz-transition: 0.5s ease-in-out;
	transition: 0.5s ease-in-out;
}

.hamburger span:nth-child(1) {
	top: 10px;
}

.hamburger span:nth-child(2) {
	top: 20px;
}

.hamburger span:nth-child(3) {
	top: 30px;
}

/* ナビ開いてる時のボタン */
.hamburger.active span:nth-child(1) {
	top: 16px;
	left: 6px;
	-webkit-transform: rotate(315deg);
	-moz-transform: rotate(315deg);
	transform: rotate(315deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
	top: 16px;
	-webkit-transform: rotate(-315deg);
	-moz-transform: rotate(-315deg);
	transform: rotate(-315deg);
}

nav.globalMenuSp {
	position: fixed;
	z-index: 999;
	top: 0;
	left: 0;
	color: #000;
	text-align: center;
	transform: translateX(100%);
	transition: all 0.6s;
	width: 100%;
	height: 100vh;
	align-items: center;
	background: #ccc;
	overflow: scroll;
}

/* nav.globalMenuSp ul {
	margin: 0 auto;
	padding: 0;
	width: 100%;
}

nav.globalMenuSp ul li {
	list-style-type: none;
	padding: 0;
	width: 100%;
	border-bottom: 1px solid #fff;
}

nav.globalMenuSp ul li:last-child {
	padding-bottom: 0;
	border-bottom: none;
}

nav.globalMenuSp ul li a {
	display: block;
	color: #000;
	padding: 1em 0;
	text-decoration: none;
} */

/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
	transform: translateX(0%);
}

/* ===================================================
追加
=================================================== */
.hamburger {
	top: 9px;
	right: 10px;
	right: 2.56vw;
	width: 50px;
	height: 50px;
	background: #A4CC45;
	border-radius: 3px;
}

.hamburger span {
	width: 22px;
	left: 14px;
	background: #fff;
}

.hamburger span:nth-child(1) {
	top: 12px;
}

.hamburger span:nth-child(2) {
	top: 18px;
}

.hamburger span:nth-child(3) {
	top: 24px;
}

.hamburger.active span:nth-child(1) {
	top: 16px;
	left: 13px;
	-webkit-transform: rotate(315deg);
	-moz-transform: rotate(315deg);
	transform: rotate(315deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
	top: 16px;
	-webkit-transform: rotate(-315deg);
	-moz-transform: rotate(-315deg);
	transform: rotate(-315deg);
}

.hamburger .text {
	position: absolute;
	bottom: 10px;
	left: 12px;
	-webkit-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
	z-index: 1;
}

.hamburger .text--open {
	opacity: 1;
	visibility: visible;
}

.hamburger .text--close {
	opacity: 0;
	visibility: hidden;
}

.hamburger.active .text--open {
	opacity: 0;
	visibility: hidden;
}

.hamburger.active .text--close {
	opacity: 1;
	visibility: visible;
}

/* contents */
nav.globalMenuSp {
	display: block;
	color: #363636;
	background: #F8F7F3;
	padding: 9.23vw 5.13vw 50vw;
	margin-top: 66px;
}

.globalMenuSp .contents {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 4.6vw;
	background: #fff;
	padding: 7.69vw 6vw;
}

.globalMenuSp .btns {
	position: relative;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
	gap: 3.85vw;
}

.globalMenuSp .btn a {
	min-width: 76.92vw;
	height: 100%;
	min-height: 13.85vw;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 2.56vw;
	border-radius: 0.77vw;
	padding: 2.82vw 3.85vw;
}

.globalMenuSp .btn--mail a {
	background: #a4cc45;
	-webkit-box-shadow: 0 0.79vw 0 #90b23e;
	box-shadow: 0 0.79vw 0 #90b23e;
}

.globalMenuSp .btn--line a {
	background: #48CC7F;
	-webkit-box-shadow: 0 0.79vw 0 #3eac6b;
	box-shadow: 0 0.79vw 0 #3eac6b;
}

.globalMenuSp .btn_icon {
	-ms-flex-negative: 0;
	flex-shrink: 0;
}

.globalMenuSp .btn_icon img {
	width: 8.21vw;
	height: auto;
	-o-object-fit: contain;
	object-fit: contain;
}

.globalMenuSp .btn--mail .btn_icon {
	position: relative;
	top: 0.26vw;
	width: 7.18vw;
	height: 5.64vw;
	background: #fff;
	-webkit-mask-image: url("../../image/php/mail.php");
	mask-image: url("../../image/php/mail.php");
	-webkit-mask-size: contain;
	mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-position: center;
}

.globalMenuSp .btn_text {
	font-size: 4.1vw;
	font-weight: 800;
	line-height: 1.1375;
	letter-spacing: 0.03em;
	color: #fff;
}

.globalMenuSp .box_row {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.globalMenuSp .box_tel {
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	gap: 2.05vw;
}

.globalMenuSp .box_tel-text {
	position: relative;
	top: -0.51vw;
	font-family: "DIN 2014", sans-serif;
	font-size: 4.1vw;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.01em;
}

.globalMenuSp .box_tel-number {
	font-family: "DIN 2014", sans-serif;
	font-size: 8.21vw;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.01em;
}

.globalMenuSp .box_hour {
	font-size: 3.33vw;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.01em;
	margin-top: 2.2vw;
}

.globalMenuSp .box_text {
	font-size: 3.33vw;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.01em;
	margin-top: 3.85vw;
}

/* menus_wrap */
.globalMenuSp .menus_wrap {
	position: relative;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 11.54vw;
	padding-bottom: 7.69vw;
	margin-top: 9vw;
}

.globalMenuSp .menus_wrap::before {
	content: "";
	position: absolute;
	width: 100%;
	height: 1px;
	top: 50%;
	-webkit-transform: none;
	transform: none;
	top: auto;
	bottom: 0;
	left: 0;
	right: auto;
	background: -webkit-repeating-linear-gradient(left, #E6E1D7 0 3px, transparent 3px 6px);
	background: repeating-linear-gradient(to right, #E6E1D7 0 3px, transparent 3px 6px);
}

.globalMenuSp .menus:not(:first-of-type) {
	padding-left: 0;
}

.globalMenuSp .menus:not(:last-of-type) {
	padding-right: 0;
}

.globalMenuSp .menus--mt {
	margin-top: 7.69vw;
}

.globalMenuSp .menus::before,
.globalMenuSp .menus:last-of-type::before {
	display: none;
}

.globalMenuSp .menu:not(:first-of-type) {
	margin-top: 5.64vw;
}

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

.globalMenuSp .menu a {
	position: relative;
	display: inline-block;
	font-size: 3.33vw;
	font-weight: 800;
	line-height: 1;
	letter-spacing: 0.03em;
	color: #363636;
	padding-left: 5.13vw;
}

.globalMenuSp .menu a::before {
	content: "";
	position: absolute;
	width: 1.79vw;
	height: 1.79vw;
	top: calc(50% + 0.26vw);
	left: 0;
	-webkit-transform: translateY(-50%) rotate(-45deg);
	transform: translateY(-50%) rotate(-45deg);
	border-right: 2px solid #A8A17E;
	border-bottom: 2px solid #A8A17E;
	-webkit-transition: 0.2s linear;
	transition: 0.2s linear;
}