/* 基本領域 */
/* ===========================================================================*/

* {
	box-sizing: border-box;
}

html {
	min-height: 100%;
}

body {
	min-height: 100vh;
	margin: 0px;
	font-size: 100%;
	background:
		radial-gradient(circle at 18% 18%, rgba(255, 81, 173, .26) 0, transparent 24%),
		radial-gradient(circle at 82% 8%, rgba(255, 214, 67, .30) 0, transparent 28%),
		radial-gradient(circle at 50% 88%, rgba(164, 39, 255, .20) 0, transparent 30%),
		linear-gradient(135deg, #160008 0%, #050505 48%, #130900 100%);
	color: #f8e6a0;
	font-family: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", "ＭＳ Ｐ明朝", serif;
}

body::before {
	content: "";
	position: fixed;
	inset: 0;
	z-index: -1;
	pointer-events: none;
	background:
		linear-gradient(115deg, transparent 0 26%, rgba(255,255,255,.12) 28%, transparent 31% 100%),
		repeating-linear-gradient(90deg, rgba(255,255,255,.035) 0 1px, transparent 1px 80px);
	mix-blend-mode: screen;
	animation: shine 8s linear infinite;
}

img {
	border: 0pt;
	max-width: 100%;
}

a:link,
a:visited {
	color: #fff4bf;
	text-decoration: none;
}

a:hover {
	color: #ffffff;
	text-decoration: none;
	text-shadow: 0 0 10px rgba(255, 79, 163, .85);
}

a:active {
	color: #ffd86a;
	text-decoration: underline;
}

h1 {
	z-index: 1;
	position: absolute;
	left: -9999px;
	color: transparent;
}

/* バグ回避 */
/* ===========================================================================*/

.Clear {
	clear: both;
}

/* 基本フロア */
/* ===========================================================================*/

#container {
	display: block;
	width: min(1200px, calc(100% - 24px));
	max-width: calc(100% - 24px);
	margin: 0px auto;
	border-right: 1px solid rgba(255, 216, 106, .45);
	border-left: 1px solid rgba(255, 216, 106, .45);
	background: rgba(0, 0, 0, .52);
	box-shadow: 0 0 36px rgba(255, 207, 80, .30), inset 0 0 34px rgba(255, 79, 163, .12);
}

#header {
	display: block;
	height: clamp(64px, 13vw, 156px);
	width: 100%;
	background-image: url(../../img/header.png);
	background-repeat: no-repeat;
	background-position: center top;
	background-size: 100% auto;
	filter: drop-shadow(0 0 18px rgba(255, 214, 85, .45));
}

#time {
	display: block;
	color: #FFFFFF;
	margin: 0px;
	padding: 10px;
	text-align: right;
	font-style: normal;
	font-weight: bold;
	font-size: 120%;
	line-height: 130%;
	text-shadow: 0 0 10px rgba(255, 79, 163, .8);
}

#menu {
	width: auto;
	display: block;
	padding: 10px 12px;
	background:
		linear-gradient(90deg, rgba(255, 216, 106, .28), rgba(255, 79, 163, .34), rgba(255, 216, 106, .28)),
		rgba(0, 0, 0, .92);
	text-align: center;
	border-top: 1px solid rgba(255, 216, 106, .55);
	border-bottom: 1px solid rgba(255, 216, 106, .55);
	box-shadow: 0 0 24px rgba(255, 79, 163, .34), inset 0 1px 0 rgba(255,255,255,.12);
}

/* リスト全体 */
ul {
	list-style: none;
	margin: 0 auto;
	padding: 0px;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	height: auto;
	text-align: center;
}

/* 各項目 */
li {
	width: calc(20% - 7px);
	color: #FFFFFF;
	font-size: 1.08rem;
	line-height: 1.2;
	float: left;
	text-align: center;
	min-height: 36px;
	font-family: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", "ＭＳ Ｐ明朝", serif;
	display: block;
	font-weight: bold;
	letter-spacing: .08em;
}

#menu li a {
	position: relative;
	display: block;
	padding: 12px 8px;
	overflow: hidden;
	border: 1px solid rgba(255, 216, 106, .42);
	background:
		linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,0)),
		linear-gradient(135deg, #2c0716, #050505 58%, #261100);
	box-shadow: inset 0 1px 0 rgba(255,255,255,.22), 0 0 12px rgba(0,0,0,.45);
	color: #ffffff;
	text-shadow: 0 0 8px rgba(255, 79, 163, .7);
	transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

#menu li a::before {
	content: "";
	position: absolute;
	left: 10px;
	right: 10px;
	top: 4px;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(255,216,106,.9), rgba(255,79,163,.8), transparent);
}

#menu li a::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(120deg, transparent 0 38%, rgba(255,255,255,.28), transparent 62% 100%);
	transform: translateX(-120%);
	transition: transform .45s ease;
}

#menu li a:hover {
	transform: translateY(-2px);
	border-color: rgba(255, 216, 106, .86);
	background:
		linear-gradient(180deg, rgba(255,255,255,.16), rgba(255,255,255,0)),
		linear-gradient(135deg, #5b1436, #100407 56%, #4a2500);
	box-shadow: 0 0 18px rgba(255, 216, 106, .48), 0 0 16px rgba(255, 79, 163, .34), inset 0 1px 0 rgba(255,255,255,.30);
}

#menu li a:hover::after {
	transform: translateX(120%);
}

#contents {
	height: auto;
	width: 100%;
	max-width: 100%;
	padding: 40px 36px;
	background:
		linear-gradient(135deg, rgba(255, 79, 163, .12), transparent 34%),
		rgba(8, 8, 8, .88);
	color: #f6e4a4;
}

#top {
	width: 100%;
	display: block;
	min-height: 320px;
	margin: 0px;
	float: none;
	padding: 24px 24px 24px 540px;
	background-image: url(../../img/image.jpg);
	background-repeat: no-repeat;
	background-position: left center;
	background-size: 460px auto;
}

#text {
	width: 450px;
	display: block;
	margin: 0px;
	min-height: 300px;
	float: right;
	color: #fff4bf;
}

#text b {
	width: 100%;
	display: block;
	margin: 0px 0px 8px;
	padding: 8px 10px;
	background: linear-gradient(90deg, #ffd86a, #ff4fa3);
	color: #1b0900;
	clear: both;
}

#text p {
	width: 100%;
	float: none;
	margin: 0px 0px 12px;
	color: #fff4bf;
}

.News {
	display: block;
	margin: 0px;
	height: 220px;
	width: 100%;
	overflow-y: auto;
	padding: 12px;
	background: rgba(0,0,0,.58);
	border: 1px solid rgba(255,216,106,.45);
	color: #fff4bf;
}

.Price {
	width: calc(50% - 10px);
	display: block;
	margin: 0px 10px 12px 0px;
	min-height: 42px;
	float: left;
	padding: 0px;
}

.Min {
	font-size: 100%;
	color: #1b0900;
	width: 110px;
	text-align: center;
	padding: 12px 10px;
	margin: 0px;
	float: left;
	min-height: 42px;
	background: linear-gradient(#fff7d1 0%, #ffd655 48%, #c67600 100%);
	font-weight: bold;
}

.Yen {
	font-size: 110%;
	text-align: left;
	color: #fff4bf;
	padding: 12px 14px;
	font-weight: bold;
	width: calc(100% - 110px);
	margin: 0px;
	min-height: 42px;
	float: left;
	background: rgba(255,255,255,.08);
	border: 1px solid rgba(255,216,106,.34);
}

.PriceBox {
	display: block;
	padding: 18px;
	background:
		linear-gradient(135deg, rgba(255, 79, 163, .14), transparent 40%),
		rgba(0,0,0,.62);
	width: 100%;
	margin: 0px auto 22px;
	text-align: center;
	font-size: 120%;
	font-weight: bold;
	float: left;
	border: 1px solid rgba(255, 216, 106, .42);
	box-shadow: 0 0 18px rgba(255, 79, 163, .18);
}

#news .PickUp {
	display: block;
	width: 170px;
	float: left;
	background-color: rgba(0,0,0,.72);
	height: 290px;
}

#news .PickUp img {
	padding: 0px;
	margin: 0px;
}

#news .PickUp p {
	display: block;
	width: 160px;
	padding: 5px;
	float: left;
	margin: 0px;
	color: #fff4bf;
	font-size: 80%;
	line-height: 100%;
	text-align: center;
	background-color: rgba(0,0,0,.62);
	font-weight: normal;
	overflow: auto;
}

#news .PickUp b {
	padding: 0px;
	color: #ff67b4;
	font-weight: bold;
	font-size: 120%;
	text-align: center;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 5px;
	margin-left: 0px;
}

#news,
#oneDay {
	width: 520px;
	height: auto;
	display: block;
	float: left;
	padding: 10px;
	background: rgba(0,0,0,.62);
	margin: 0px;
	border: 1px solid rgba(255,216,106,.35);
}

#oneDay {
	margin-top: 20px;
}

#newsBox,
#oneDayBox {
	width: 310px;
	height: 250px;
	display: block;
	margin: 0px;
	background-color: rgba(255,255,255,.08);
	padding: 20px;
	overflow: auto;
	font-size: 80%;
	line-height: 160%;
	color: #fff4bf;
	float: right;
}

#oneDayBox {
	width: 490px;
	height: 580px;
	padding: 15px;
}

#news h2,
#news h3,
#oneDayBox h3 {
	display: block;
	width: auto;
	height: auto;
	overflow: auto;
	font-weight: bold;
	text-align: center;
	padding: 6px;
	margin: 0px 0px 10px;
	color: #ffffff;
	background: linear-gradient(90deg, #220711, #67133d, #220711);
}

#news p {
	padding: 0px;
	font-size: 90%;
	color: #fff4bf;
	font-weight: normal;
	height: auto;
	margin: 0px 0px 10px;
}

#news b,
#news i {
	padding: 5px;
	font-size: 120%;
	color: #ff67b4;
	font-weight: bold;
	display: block;
	margin: 0px;
	background: transparent;
	font-style: normal;
}

#oneDayBox .Glist {
	display: block;
	height: auto;
	width: 130px;
	padding: 10px;
	background-color: rgba(0,0,0,.76);
	float: left;
	margin-top: 0px;
	margin-bottom: 5px;
	margin-left: 4px;
	margin-right: 3px;
}

.RecT {
	width: 150px;
	display: block;
	float: left;
	padding: 12px;
	margin-bottom: 10px;
	background: linear-gradient(#fff7d1 0%, #ffd655 48%, #c67600 100%);
	color: #1b0900;
	font-weight: bold;
	font-size: 90%;
	text-align: center;
}

.RecP {
	display: block;
	float: left;
	width: calc(100% - 160px);
	padding: 12px 16px;
	margin-bottom: 10px;
	font-size: 90%;
	color: #fff4bf;
	background: rgba(255,255,255,.08);
	border: 1px solid rgba(255,216,106,.32);
}

#photo {
	width: 300px;
	display: block;
	padding: 10px;
	background: rgba(0,0,0,.62);
	float: left;
	border: 1px solid rgba(255,216,106,.36);
}

#photo > img {
	display: block;
	width: 100%;
	height: auto;
}

#sPhoto {
	width: 100%;
	padding: 8px 0px 0px;
	text-align: center;
	float: left;
	margin: 0px;
}

#sPhoto img {
	width: 68px;
	height: 90px;
	padding: 0px;
	margin: 3px;
	object-fit: cover;
	border: 1px solid rgba(255,216,106,.48);
	box-shadow: 0 0 10px rgba(255, 79, 163, .22);
	cursor: pointer;
}

.Box {
	display: block;
	padding: 16px;
	background:
		linear-gradient(135deg, rgba(255, 79, 163, .14), transparent 42%),
		rgba(0,0,0,.62);
	width: 100%;
	text-align: center;
	font-size: 120%;
	font-weight: bold;
	color: #fff4bf;
	border: 1px solid rgba(255, 216, 106, .42);
	box-shadow: 0 0 18px rgba(255, 79, 163, .16);
}

.TermsBox {
	clear: both;
	margin: 0px 0px 10px;
	padding: 22px;
	background:
		linear-gradient(135deg, rgba(255, 79, 163, .16), transparent 42%),
		rgba(0, 0, 0, .66);
	border: 1px solid rgba(255, 216, 106, .46);
	box-shadow: 0 0 20px rgba(255, 79, 163, .16);
}

.TermsLead {
	float: none;
	width: 100%;
	margin: 0px 0px 16px;
	padding: 0px 0px 14px;
	color: #fff4bf;
	font-size: 95%;
	line-height: 180%;
	border-bottom: 1px solid rgba(255, 216, 106, .28);
}

.TermsList {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px 14px;
	height: auto;
	margin: 0px;
	padding: 0px;
	text-align: left;
}

.TermsList li {
	position: relative;
	float: none;
	display: block;
	width: auto;
	min-height: 0px;
	padding: 12px 14px 12px 34px;
	color: #fff4bf;
	font-family: inherit;
	font-size: 90%;
	font-weight: normal;
	line-height: 150%;
	letter-spacing: 0px;
	text-align: left;
	background: rgba(255,255,255,.07);
	border: 1px solid rgba(255, 216, 106, .24);
}

.TermsList li::before {
	content: "";
	position: absolute;
	left: 14px;
	top: 18px;
	width: 8px;
	height: 8px;
	background: linear-gradient(#ffd86a, #ff4fa3);
	box-shadow: 0 0 10px rgba(255, 79, 163, .7);
}

.Box #photo {
	width: 320px;
}

.Box #text {
	width: calc(100% - 340px);
	min-height: 0px;
	height: auto;
	float: right;
	padding: 0px 0px 0px 16px;
	margin-left: 0px;
}

#footer {
	width: auto;
	text-align: center;
	font-size: x-small;
	min-height: 50px;
	line-height: 50px;
	font-family: Arial, Helvetica, sans-serif;
	color: #bfa364;
	clear: both;
	padding-right: 10px;
	padding-left: 10px;
	background-color: #000000;
}

h2 {
	display: block;
	width: auto;
	margin: 20px 0px;
	background: linear-gradient(90deg, #050505, #67133d 48%, #c67600 100%);
	color: #FFFFFF;
	font-size: 120%;
	padding: 12px 14px;
	font-weight: bold;
	font-family: "ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif;
	letter-spacing: .08em;
	text-shadow: 0 0 10px rgba(255, 79, 163, .8);
	border-left: 4px solid #ffd86a;
	box-shadow: 0 0 18px rgba(255, 79, 163, .18);
}

h3 {
	display: block;
	text-align: center;
	font-size: 100%;
	font-weight: bold;
	padding: 10px;
	color: #1b0900;
	margin: 20px 0px;
	background: linear-gradient(#fff7d1 0%, #ffd655 48%, #c67600 100%);
	clear: both;
	box-shadow: 0 0 14px rgba(255, 216, 106, .34);
}

h4 {
	text-align: center;
	font-size: 140%;
	font-weight: bold;
	padding: 10px;
	color: #ff67b4;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 20px;
	margin-left: 0px;
	line-height: 120%;
	text-shadow: 0 0 10px rgba(255, 79, 163, .85);
}

p {
	font-weight: normal;
	font-size: 90%;
	display: block;
	padding: 0px;
	text-align: left;
	color: #fff4bf;
	line-height: 170%;
	margin: 10px;
	float: left;
}

@keyframes shine {
	from {
		transform: translateX(-18%);
	}
	to {
		transform: translateX(18%);
	}
}

@media (max-width: 900px) {
	#container {
		width: calc(100% - 20px);
		max-width: calc(100% - 20px);
	}

	#contents {
		padding: 34px 24px;
	}

	#top {
		min-height: 0px;
		padding-left: calc(min(44vw, 380px) + 32px);
		background-size: min(44vw, 380px) auto;
	}

	.News {
		width: 100%;
	}

	#news,
	#oneDay,
	#newsBox,
	#oneDayBox {
		width: 100%;
		float: none;
	}
}

@media (max-width: 760px) {
	#container {
		max-width: calc(100% - 16px);
		margin-top: 12px;
		border-right: 0px;
		border-left: 0px;
	}

	#menu ul {
		flex-wrap: wrap;
	}

	#menu li {
		width: calc(50% - 4px);
		font-size: .9rem;
	}

	#contents {
		padding: 24px 14px;
	}

	#top {
		padding: 260px 14px 18px;
		background-position: center top;
		background-size: auto 250px;
	}

	#text {
		width: 100%;
		float: none;
		min-height: 0px;
	}

	.News,
	.Price,
	.Min,
	.Yen,
	.RecT,
	.RecP {
		width: 100%;
		float: none;
	}

	.Price {
		margin-right: 0px;
	}

	.Min,
	.Yen {
		text-align: center;
	}

	.Box #photo,
	.Box #text {
		width: 100%;
		float: none;
		padding-left: 0px;
	}

	.TermsList {
		grid-template-columns: 1fr;
	}

	#photo {
		width: 100%;
		float: none;
	}

	#sPhoto img {
		width: 22%;
		height: auto;
		aspect-ratio: 3 / 4;
	}
}

@media (max-width: 480px) {
	body::before {
		animation: none;
	}

	#container {
		width: 100%;
		max-width: 100%;
		margin-top: 0px;
	}

	#header {
		background-size: 100% auto;
	}

	#menu {
		padding: 6px;
	}

	#menu li {
		width: 100%;
		font-size: .95rem;
		min-height: 0px;
	}

	#menu li a {
		padding: 11px 8px;
	}

	#contents {
		padding: 18px 10px;
	}

	#top {
		padding: 205px 10px 14px;
		background-size: auto 195px;
	}

	h2 {
		font-size: 1rem;
		padding: 10px;
		margin: 16px 0px;
		letter-spacing: .04em;
	}

	h3 {
		font-size: .95rem;
		margin: 16px 0px;
	}

	p {
		width: 100%;
		float: none;
		margin: 8px 0px;
	}

	.Box {
		padding: 10px;
		font-size: 100%;
	}

	.TermsBox {
		padding: 14px;
	}

	.TermsList li {
		padding: 10px 12px 10px 30px;
		font-size: 85%;
	}

	.TermsList li::before {
		left: 12px;
		top: 16px;
	}

	#footer {
		line-height: 1.5;
		padding-top: 14px;
		padding-bottom: 14px;
	}
}
