@charset "utf-8";
/*----------------------------
	common
------------------------------*/
* {
	box-sizing: border-box;
}
html {
	font-size: 10px;
	color: #000;
}
@media (max-width: 1000px) {
	html {
		font-size: 1vw;
	}
}
@media (max-width: 768px) {
	html {
		font-size: 1.3333vw;/*750pxの時のベース*/
	}
}
body {
	overflow-wrap: anywhere;
}
.column {
	font-family: "Noto Sans CJK JP", sans-serif;
	font-feature-settings: "palt";
	font-size: 1.9rem;
	line-height: 1.5;
}
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 (max-width: 768px) {
	.sp {
		display: block;
	}
	.pc {
		display: none;
	}
	.column {
		font-size: 2.6rem;
	}
	.inner {
		max-width: 100%;
		padding: 0 1rem;
	}
}
/*----------------------------
	commonここまで
------------------------------*/

/* column */
.column {
	padding-bottom: 10rem;
}
.column h1 {
	margin: 3rem auto 0;
	width: 48.6rem;
}
.column .lead {
	margin-top: 2rem;
	font-size: 2.8rem;
	font-weight: 700;
	letter-spacing: 0.3em;
	text-align: center;
}
.column .mvBottom {
	margin-top: 3rem;
}
.column .columnArea {
	margin-top: 6rem;
}
.column h2 {
	font-size: 3.7rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-align: center;
}
.column .columnArea ul {
	margin-top: 4rem;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 3.5rem 0;
}
.column .columnArea ul li {
	width: 47.5%;
}
.column .columnArea ul li a {
	display: block;
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: 0.15em;
	text-align: center;
	border: solid 2px #a0a0a0;
	padding: 0.7rem;
	position: relative;
}
.column .columnArea ul li a span {
	font-size: 2.2rem;
}
.column .columnArea ul li a::after {
	content: "";
	width: 2.1rem;
	height: 2.1rem;
	background: url("/base/pc/store/special/column/img/arrow.png") no-repeat;
	background-size: contain;
	position: absolute;
	bottom: 0.5rem;
	right: 0.5rem;
}
@media (max-width: 768px) {
	.column {
		padding-bottom: 9.5rem;
	}
	.column h1 {
		margin: 5rem auto 0;
		width: 48.8rem;
	}
	.column .lead {
		margin-top: 1rem;
		font-size: 3.3rem;
		letter-spacing: 0.3em;
	}
	.column .mvBottom {
		margin-top: 5rem;
	}
	.column .columnArea {
		margin-top: 11.5rem;
		padding: 0 2rem;
	}
	.column h2 {
		font-size: 4.5rem;
		letter-spacing: 0.2em;
	}
	.column .columnArea ul {
		margin-top: 4rem;
		display: block;
	}
	.column .columnArea ul li {
		width: 100%;
	}
	.column .columnArea ul li + li {
		margin-top: 4rem;
	}
	.column .columnArea ul li a {
		padding: 2rem;
	}
	.column .columnArea ul li a span {
		font-size: 3.4rem;
	}
	.column .columnArea ul li a::after {
		width: 3.1rem;
		height: 3.1rem;
		bottom: 0.8rem;
		right: 0.8rem;
	}
}

/* pagetop */
.pagetop {
	width: 8.9rem;
	position: fixed;
	bottom: 3rem;
	right: 3rem;
	z-index: 100;
	opacity: 1;
	transition: opacity 0.3s ease;
}
.pagetop.hidden {
	opacity: 0;
	pointer-events: none;
}
@media (max-width: 768px) {
	.pagetop {
		width: 12.7rem;
		right: 1rem;
	}
}
