@charset "UTF-8";

/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
		Common
::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::  */

:root {
	--light_xxx: #bfbfbf; /* 現在ページ */
	--light_xx: #999999; /* 基本文字色 */
	--light_x: #7d7d7d; /* リンク */
	--dark_x: #686868; /* リンクホバー、メニューのサブカテゴリー、クレジット */
	--dark_xx: #4c4c4c; /* WORKS：タグ */
	--dark_xxx: #3a3a3a; /* WORKS：情報の罫線、GOODS：画像の背景 */
	--wide_max: 1400px; /* 画面幅の限界値 */
	--wide_sp: 428px; /* 画面幅の限界値 */
	--wide_tab: 429px; /* 画面幅の限界値 */
	--wide_pc: 1080px; /* 画面幅の限界値 */
}

html {
	font-size: 62.5%;
	font-family: 'Roboto Condensed', 'Noto Sans JP', -apple-system, Helvetica Neue, Hiragino Kaku Gothic ProN,
		'メイリオ', meiryo, sans-serif;
}
body {
	margin: 0;
	color: var(--light_xx);
	background-color: #fff;
}
html,
body {
	width: 100%;
	height: 100%;
}

a {
	color: var(--light_x);
	outline: 0;
	text-decoration: none;
	-webkit-transition: all 0.2s;
	transition: all 0.2s;
}
a:hover {
	opacity: 0.75;
}

ul,
ol,
p {
	list-style: none; /*黒丸を消す*/
	margin: 0;
	padding: 0;
}
img,
object,
embed,
video {
	max-width: 100%;
}
img {
	/* 画像の選択無効化 */
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
	-webkit-user-drag: none;
	/* firefox 1pxズレ対策 */
	box-shadow: #000 0 0 0;
}

.clearfix::after {
	content: ' ';
	display: block;
	clear: both;
}

/* 画面サイズ：428pxまで：スマホ */
@media only screen and (max-width: 428px) {
	.sp {
		display: inline;
	}
	.pc {
		display: none;
	}
	.title {
		margin-top: 30px;
		display: block;
		font-size: 12px;
		font-size: 1.2rem;
		line-height: 1;
		letter-spacing: 0.2rem;
	}
	.text {
		font-size: 14px;
		font-size: 1.4rem;
		line-height: 2.5;
		letter-spacing: 0.2rem;
	}
}

/* 画面サイズ：429pxから：タブレット */
@media only screen and (min-width: 429px) {
	.sp {
		display: none;
	}
	.title {
		margin-top: 30px;
		display: block;
		font-size: 13px;
		font-size: 1.3rem;
		line-height: 1;
		letter-spacing: 0.2rem;
	}
	.text {
		font-size: 16px;
		font-size: 1.6rem;
		line-height: 2;
		letter-spacing: 0.2rem;
	}
}
/* 画面サイズ：1040pxから：PC */
@media only screen and (min-width: 1040px) {
}

/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
		レイアウト
::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::  */
.container {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	width: 100%;
	max-width: 1400px;
	height: 100%;
	margin: 0 auto;
}
.inner {
	text-align: center;
}
