@charset "UTF-8";

.lead {
	background: linear-gradient(45deg, #c0bb16 0%, #fff 25%, #c0bb16 50%, #fff 75%, #c0bb16 100%);
	border-radius: 5px;
	margin: 40px auto;
	padding: 8px;
	color: #fff;
}
.lead-inner {
	border-radius: 5px;
	background: #c3181f;
	padding: 20px 10px 10px;
}
.lead-title {
	margin: 0 0 1rem;
	font-size: min(4.5vw, 40px);
	font-family: "UD新ゴ DB", "UD Shin Go DemiBold";
	font-weight: 700;
	text-align: center;
}
.lead-nav-items {
	list-style: none;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	margin: 0;
	padding: 0;
}
.lead-nav-item {
	-ms-flex: 0 0 auto;
		flex: 0 0 auto;
	width: 50%;
	padding-right: 20px;
	padding-left: 20px;
	margin-bottom: 20px;
}
.nav-button {
	position: relative;
	overflow: hidden;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: center;
		justify-content: center;
	-ms-flex-align: center;
		align-items: center;
	border-radius: 10px;
	background: linear-gradient(-180deg, #fff 0%, #d6d5d4 87%, #c0c1c1 100%);
	box-shadow: 2px 2px 2px rgba(4, 0, 0, 0.25);
	width: 100%;
	min-height: 60px;
	padding: 0.4em 0.5em;
	color: #c3181f;
	font-family: "UD新ゴ DB", "UD Shin Go DemiBold";
	font-size: min(8vw, 50px);
	font-weight: 700;
	text-decoration: none;
}
.nav-button:hover {
	color: #c3181f;
	text-decoration: none;
}
.nav-button::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 2;
	-webkit-transform: translate(-50%, -50%);
			transform: translate(-50%, -50%);
	display: block;
	border: 1px solid #fff;
	border-image-slice: 1;
	border-radius: 10px;
	-o-border-image: linear-gradient(-180deg, #fff 0%, #d6d5d4 87%, #c0c1c1 100%);
		border-image: linear-gradient(-180deg, #fff 0%, #d6d5d4 87%, #c0c1c1 100%);
	box-shadow: 2px 2px 4px 0px rgba(4, 0, 0, 0.05) inset, -1px -1px 2px 0px rgba(4, 0, 0, 0.05) inset, 2px 2px 4px 0px rgba(4, 0, 0, 0.05);
	background-color: transparent;
	width: 98%;
	height: 90%;
}
.nav-button::after {
	content: "";
	position: absolute;
	top: -10%;
	left: -50%;
	display: block;
	background: linear-gradient(60deg, transparent 0%, transparent 25%, rgba(255, 255, 255, 0.8) 50%, transparent 75%, transparent 100%);
	width: 50%;
	height: 120%;
}
.nav-button.gold {
	background: linear-gradient(-180deg, #e6d27d 0%, #dcc477 76%, #b59636 100%);
}
.nav-button.gold::before {
	border: 1px solid #e6d27d;
	-o-border-image: linear-gradient(-180deg, #e6d27d 0%, #dcc477 76%, #b59636 100%);
		border-image: linear-gradient(-180deg, #e6d27d 0%, #dcc477 76%, #b59636 100%);
}
.nav-button:hover::after {
	-webkit-animation: lightning 0.6s linear;
	        animation: lightning 0.6s linear;
}
@-webkit-keyframes lightning {
	from {
		left: -50%;
	}
	to {
		left: 150%;
	}
}
@keyframes lightning {
	from {
		left: -50%;
	}
	to {
		left: 150%;
	}
}

.lead-address {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-ms-flex-align: center;
	    align-items: center;
	-ms-flex-pack: center;
	    justify-content: center;
	margin-bottom: 0;
	padding: 0 20px;
}
.lead-address img {
	max-width: 100%;
	height: auto;
}
.lead-address-corp {
	max-width: 40%;
}
.lead-address-tel {
	max-width: 60%;
}
.lead-address-telbtn {
	display: none;
	width: 100%;
	padding: 10px;
}
img.btn-icon {
	display: inline-block;
	margin-right: 0.25em;
	width: auto;
	height: 1em !important;
}

@media (max-width: 767.98px) {
	.lead-address {
		padding-right: 10px;
		padding-left: 10px;
	}
	.lead-address-corp {
		max-width: 80%;
	}
	.lead-address-tel {
		max-width: 100%;
	}
	.lead-address-telbtn {
		display: block;
	}

}
@media (max-width: 991.98px) {
	.lead-nav-item {
		width: 100%;
	}
	.nav-button {
		width: 100%;
		max-width: 480px;
		margin-right: auto;
		margin-left: auto;
	}
}