@charset "utf-8";
/*----------------------------
	common
------------------------------*/
* {
	box-sizing: border-box;
}
html {
	font-size: 10px;
	color: #000;
}
@media (max-width: 1100px) {
	html {
		font-size: 0.909vw;
	}
}
@media (max-width: 768px) {
	html {
		font-size: 1.3vw;
	}
}
body {
	overflow-wrap: anywhere;
	overflow-x: clip;
}
.amour {
	font-family: "Noto Sans CJK JP", sans-serif;
	font-feature-settings: "palt";
	font-size: 1.6rem;
	line-height: 1.5;
}
.fontMincho {
	font-family: "Noto Serif CJK JP", serif;
}
button, input, select, textarea {
	font: inherit;
	color: inherit;
	background: transparent;
	border: none;
	border-radius: 0;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
}
button {
	cursor: pointer;
}
textarea {
	resize: vertical;
}
a {
	color: #333;
	text-decoration: none;
}
a,
button {
	transition: opacity 0.3s ease-out;
}
a:hover,
button:hover {
	opacity: 0.7;
}
img {
	max-width: 100%;
	height: auto;
}
img[src$=".svg"] {
	width: 100%;
	height: auto;
}
/* スクリーンリーダー用 */
.srOnly {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}
/* for safari */
@supports (-webkit-hyphens: none) {
	[tabindex="-1"]:focus-visible {
		outline: none !important;
	}
}

.sp {
	display: none;
}

.inner {
	max-width: 102rem;
	margin: 0 auto;
	padding: 0 1rem;
}

/*非表示設定*/
.invisible {
	display: none;
}

@media (min-width: 751px) {
	a[href^="tel:"] {
		pointer-events: none;
		cursor: default;
	}
}

@media (max-width: 768px) {
	.sp {
		display: block;
	}
	.pc {
		display: none;
	}
	.amour {
		font-size: 2.6rem;
	}
	.inner {
		max-width: 100%;
		padding: 0 5rem;
	}
}
/*----------------------------
	commonここまで
------------------------------*/
header {
	background-color: #fff;
}
/* navArea */
.navArea {
	position: relative;
	top: 0;
	left: 0;
	right: 0;
	height: 6.8rem;
	z-index: 999;
	transition: top 0.1s linear;
}
.navArea.fixed {
	position: fixed;
}
#menu {
	padding: 1.3rem 0;
	background-color: #fff;
}
#menu ul {
	display: flex;
	align-items: center;
	justify-content: center;
}
#menu ul li {
	min-width: 9rem;
	max-width: 21.5rem;
}
#menu ul li a {
	display: flex;
	flex-direction: column;
	justify-content: center;
	font-weight: 600;
	letter-spacing: 0.05em;
	color: #521f08;
	padding: 0 2.3rem;
}
#menu ul li a:hover {
	transform: translateY(3px);
}
#menu ul li a span {
	font-size: 1.2rem;
}
#menu ul li + li {
	position: relative;
}
#menu ul li + li::before {
	content: "";
	width: 0.5px;
	height: 2rem;
	background-color: #521f08;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%) rotate(25deg);
}
#menuButton {
	display: none;
}
#overlay {
	display: none;
}
#jsFocusTrap {
	display: none;
}
@media (max-width: 768px) {
	/* メニューオープン時のbody */
	body.menuOpen {
		overflow: clip;
	}
	#menuButton {
		position: fixed;
		right: 2.5rem;
		display: grid;
		place-items: center;
		place-content: center;
		width: 7.3rem;
		height: 7.3rem;
		box-shadow: 0 0 1.5rem -0.5rem #000;
		border-radius: 50%;
		background-color: #630101;
		cursor: pointer;
		z-index: 1000;
		margin-left: auto;
	}
	.navFixed #menuButton {
		top: 2.5rem;
	}
	.bar,
	.bar::after {
		width: 5.1rem;
		height: 0.4rem;
		background-color: #fff;
		transition: transform 0.3s;
		border-radius: 0.5rem;
	}
	.bar {
		display: grid;
		transform: translateY(-0.6rem);
	}
	.bar::after {
		content: "";
		grid-area: 1 / 1;
		transform: translateY(1.5rem);
	}
	.menuOpen #menuButton {
		border: solid 0.4rem #521f08;
		background-color: transparent;
		box-shadow: none;
	}
	.menuOpen .bar {
		background-color: #521f08;
		transform: rotate(45deg);
	}
	.menuOpen .bar::after {
		background-color: #521f08;
		transform: rotate(-90deg);
	}
	.navArea {
		position: static;
		left: auto;
		height: auto;
	}
	.navArea.fixed {
		position: static;
	}
	#overlay {
		display: block;
		visibility: hidden;
		opacity: 0;
		position: fixed;
		inset: 0;
		width: 100%;
		height: 100%;
		background: rgba(0, 0, 0, 0.5);
		z-index: 997;
		transition: opacity 0.3s;
	}
	.menuOpen #overlay {
		visibility: visible;
		opacity: 1;
	}
	#menu {
		position: fixed;
		width: 63.6rem;
		height: 98vh;
		top: 0;
		right: 0;
		z-index: 998;
		overflow-y: auto;
		transform: translateX(100%);
		transition: transform 0.3s ease-out;
		padding: 13.5rem 7rem 10rem 11rem;
		background: #f8e5e7 url("/base/pc/store/special/amour/2026/img/common/race_menu.png") repeat-y top left / contain;
		opacity: 0;
	}
	.menuOpen #menu {
		transform: translateX(0);
		opacity: 1;
	}
	#menu ul {
		display: block;
	}
	#menu ul li {
		min-width: none;
		max-width: none;
	}
	#menu ul li + li {
		margin-top: 5rem;
	}
	#menu ul li a {
		font-size: 3.5rem;
		line-height: 1.3;
		padding: 0 0 0 6rem;
		position: relative;
	}
	#menu ul li a::before {
		content: "";
		display: inline-block;
		width: 2.9rem;
		height: 0.2rem;
		margin-top: 0.1rem;
		border-radius: 999rem;
		background-color: #521f08;
		position: absolute;
		top: 55%;
		left: 0;
		transform: translateY(-50%);
	}
	#menu ul li a::after {
		content: "";
		position: absolute;
		top: 56%;
		left: 1.5rem;
		width: 1.3rem;
		height: 0.25rem;
		border-radius: 999rem;
		background-color: #521f08;
		transform: rotate(45deg) translateY(-50%);
		transform-origin: calc(100% - 0.1rem) 50%;
	}
	#menu ul li a:hover {
		transform: translateY(3px);
	}
	#menu ul li a span {
		font-size: 2.9rem;
	}
	#menu ul li + li::before {
		content: none;
	}
	#jsFocusTrap {
		display: block;
	}
}

main.navFixed {
	padding-top: 6.8rem;
}
@media (max-width: 768px) {
	main.navFixed {
		padding-top: 0;
	}
}

/* pagetop */
.pagetop {
	width: 7.5rem;
	position: fixed;
	bottom: 3.5rem;
	right: 3.5rem;
	z-index: 100;
	opacity: 1;
	transition: opacity 0.3s ease;
}
.pagetop.hidden {
	opacity: 0;
	pointer-events: none;
}
@media (max-width: 768px) {
	.pagetop {
		width: 7.5rem;
		right: 2.5rem;
	}
}

/* footer */
footer {
	background-color: #fff;
}
.tks-theme-com-simple-page__footer {
	border-top: none;
}