@charset "UTF-8";

/*　ハンバーガーボタン　*/
.hamburger {
	display: block;
	position: fixed;
	z-index: 99999;
	right: 20px;
	top: 30px;
	width: 29px;
	height: 20px;
	cursor: pointer;
	text-align: center;
	background: transparent;
	border: none;
	padding: 0;
	outline: none;
}

.hamburger span {
	display: block;
	position: absolute;
	width: 83%;
	height: 2px;
	background: #fff;
	-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: 0;
	right: 0;
}

.hamburger span:nth-child(2) {
	top: 9px;
	left: 0;
}

.hamburger span:nth-child(3) {
	top: 18px;
	right: 0;
}

/* ナビ開いてる時のボタン */
.hamburger.active {
	width: 24px;
	height: 18px;
}

.hamburger.active span:nth-child(1) {
	width: 110%;
	top: 50%;
	right: 50%;
	translate: 50% -50%;
	-webkit-transform: rotate(325deg);
	-moz-transform: rotate(325deg);
	transform: rotate(325deg);
}

.hamburger.active span:nth-child(2) {
	width: 110%;
	top: 50%;
	left: 50%;
	translate: -50% -50%;
	opacity: 0;
	-webkit-transform: rotate(-325deg);
	-moz-transform: rotate(-325deg);
	transform: rotate(-325deg);
}

.hamburger.active span:nth-child(3) {
	width: 110%;
	top: 50%;
	right: 50%;
	translate: 50% -50%;
	-webkit-transform: rotate(-325deg);
	-moz-transform: rotate(-325deg);
	transform: rotate(-325deg);
}

.globalMenuSp {
	position: fixed;
	z-index: 999;
	bottom: 0;
	left: 0;
	color: #000;
	transform: translateX(100%);
	transition: all 0.6s;
	width: 100%;
	height: calc(100vh - 80px);
	background: #fff;
	overflow: scroll;
}

.globalMenuSp .inner {
	width: 100%;
	padding: 20px 10px;
}

.globalMenuSp .search_box {
	padding-inline: 10px;
	margin-block: 0 40px;
}

.globalMenuSp .common_search_form {
	padding: 15px 15px 25px;
}

.globalMenuSp .common_search_form .top_title {
	font-size: 5.1vw;
	margin-block: 0 0.5em;
}

.globalMenuSp .common_search_form .top_title .icon {
	width: 4.7vw;
}

.globalMenuSp .common_search_form .form .freeword {
	grid-template-columns: 1fr 48px;
	margin-block: 0 0.5em;
}

.globalMenuSp .common_search_form .form .freeword .text {
	font-size: 14px;
}

.globalMenuSp .common_search_form .form .freeword .submit_btn {
	background-size: 23px;
}

.globalMenuSp .common_search_form .form .condition {
	gap: 15px;
}

.globalMenuSp .common_search_form .form .condition .select_box {
	gap: 0.5em;
}

.globalMenuSp .common_search_form .form .condition .select_box .mark {
	display: none;
}

.globalMenuSp .common_search_form .form .condition .select_box .select::after {
	width: 9px;
	right: 0.9em;
}

.globalMenuSp .common_search_form .form .condition .select_box .select select {
	min-block-size: 48px;
	font-size: 14px;
}

.globalMenuSp .common_search_form .form .condition .submit_btn {
	min-block-size: 48px;
	font-size: 15px;
}

.globalMenuSp .info .logo {
	text-align: center;
	margin-block: 0 35px;
}

.globalMenuSp .info .list {
	padding-inline: 30px;
	margin-block: 0 35px;
}

.globalMenuSp .info .list ul {
	display: grid;
	grid-template-columns: 1fr 0.57fr;
	gap: 2.1em 0.5em;
}

.globalMenuSp .info .list li .link {
	display: inline-block;
	color: initial;
	font-size: 14px;
	letter-spacing: .07em;
	font-weight: 500;
	line-height: 1.5;
}

.globalMenuSp .info .btn_box {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0.8em;
	margin-block: 0 30px;
}

.globalMenuSp .info .btn_box .btn {
	--color: #fff;
	--bg-color: var(--sub-color);
	--letter-spacing: .05em;
}

.globalMenuSp .info .btn_box .btn.cta {
	--color: var(--main-color);
	--bg-color: #fff;
	--letter-spacing: .07em;
}

.globalMenuSp .info .btn_box .btn.user {
	grid-column: 1/3;
	width: 50%;
	margin-inline: auto;
}

.globalMenuSp .info .btn_box .btn .link {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0.6em;
	min-block-size: 60px;
	background: var(--bg-color);
	border: 2px solid var(--main-color);
	border-radius: 100vmax;
	padding: 0.5em;
	color: var(--color);
	font-size: 14px;
	letter-spacing: var(--letter-spacing);
	font-weight: 700;
	line-height: 1.5;
	text-align: center;
}

.globalMenuSp .info .btn_box .btn .link .icon {
	flex-shrink: 0;
	line-height: 1;
	width: 21px;
	aspect-ratio: 1;
	min-width: 0;
}

.globalMenuSp .info .btn_box .btn .link .icon svg {
	width: 100%;
	height: 100%;
}

.globalMenuSp .info .last_box .menu {
	border-bottom: 1px solid #7B7B7B;
	padding-block: 0 1.3em;
	margin-block: 0 1.3em;
}

.globalMenuSp .info .last_box .menu ul {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 1.2em;
}

.globalMenuSp .info .last_box .menu li {
	position: relative;
}

.globalMenuSp .info .last_box .menu li+li::before {
	content: "";
	width: 1px;
	height: 15px;
	background: #222;
	rotate: 20deg;
	position: absolute;
	top: 50%;
	left: -0.6em;
	translate: 0 -50%;
}

.globalMenuSp .info .last_box .menu li .link {
	display: block;
	color: initial;
	font-size: 12px;
	letter-spacing: .07em;
	font-weight: 400;
	line-height: 1.5;
}

.globalMenuSp .info .last_box .copyright {
	text-align: center;
}

.globalMenuSp .info .last_box .copyright small {
	font-size: 12px;
	letter-spacing: .07em;
	font-weight: 400;
	line-height: 1.5;
}

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