@charset "UTF-8";
:root {
	--cont-gap: 6rem;
}

@media screen and (min-width: 768px) {
	:root {
		--cont-gap: 10rem;
	}
}
/* ////////////////////////////////// */
/* body html*/
/* ////////////////////////////////// */
html {
	width: 100%;
	height: 100%;
	font-size: 62.5%;
	/*1rem=10pxに*/
	scroll-behavior: smooth;
}

body {
	font-family: "YakuHanJPs", "Noto Sans JP", sans-serif;
	width: 100%;
	height: 100%;
	color: var(--font-color);
	font-size: 1.5rem;
	/*デフォルトフォントサイズ 15px */
	line-height: 1.6;
	text-size-adjust: auto;
	-webkit-text-size-adjust: auto;
	/*Chrome,Safari*/
}

.zen-kaku-gothic-antique-black {
	font-family: "Zen Kaku Gothic Antique", sans-serif;
	font-weight: 900;
	font-style: normal;
}

/* ////////////////////////////////// */
/* common */
/* ////////////////////////////////// */
a {
	cursor: pointer;
	text-decoration-line: underline;
}

a.btn {
	width: 100%;
	text-decoration: none !important;
}

a:hover {
	cursor: pointer;
	opacity: 0.6;
}

a:visited {
	color: inherit;
}

ul > li > a {
	text-decoration-line: none;
}

p {
	max-height: 100%;
}

h1,
h2 {
	line-height: 1;
}

.pc {
	display: inherit;
}

.sp {
	display: none;
}

@media screen and (max-width: 767px) {
	.pc {
		display: none;
	}
	.sp {
		display: inherit;
	}
}
p.indent-1,
ul.indent-1 > li {
	padding-left: 1em;
	text-indent: -1em;
}

.em {
	text-align: right;
}

.center_t {
	text-align: center;
}

.center_m {
	margin: 0 auto;
}

.nw {
	display: inline-block;
}

.space-xs {
	margin-bottom: 4px;
}

.space-sm {
	margin-bottom: 8px;
}

.space-md {
	margin-bottom: 16px;
}

.space-lg {
	margin-bottom: 24px;
}

.space-xl {
	margin-bottom: 40px;
}

/* ////////////////////////////////// */
/* container_wrap */
/* ////////////////////////////////// */
.wrapper {
	width: 100%;
	margin: 0 auto;
	background: url(../images/fv_back_sp.webp) no-repeat;
	background-size: contain;
	background-color: #ecb700;
	background-position: center 70px;
}
@media screen and (min-width: 768px) {
	.wrapper {
		background: url(../images/fv_back_pc.png) no-repeat;
		background-size: contain;
		background-color: #ecb700;
		background-position: center 70px;
	}
}

.container {
	max-width: 700px;
	margin: 0 auto;
}
@media screen and (max-width: 767px) {
	.container {
		width: 100%;
		margin: 0 auto;
	}
}

.contents {
	position: relative;
	width: 100%;
	margin: 0 auto;
	padding-bottom: var(--cont-gap);
	scroll-margin-top: 2rem;
}
@media screen and (min-width: 768px) {
	.contents {
		max-width: 700px;
		margin: 0 auto;
	}
}

.contents_inner {
	position: relative;
	margin: 0 1.5rem;
	padding: 1rem 1.5rem;
}

.contents.vw100 .contents_inner {
	margin: 0;
	margin: 0;
}
@media screen and (min-width: 768px) {
	.contents.vw100 {
		max-width: 100vw;
		margin-bottom: var(--cont-gap);
	}
	.contents.vw100 .contents_inner {
		max-width: 700px;
		margin: 0 auto;
	}
}

.box_br {
	background-color: #fff;
	border-radius: 1rem;
}

h3 {
	font-family: "Zen Kaku Gothic Antique", sans-serif;
	font-weight: 700;
	font-style: normal;
	font-size: clamp(2rem, 1.077rem + 3.94vw, 2.8rem);
	line-height: 1;
	margin: 0 auto;
	padding: 1rem;
	text-align: center;
	background: #320204;
	color: #fff;
	max-width: 67%;
}
@media screen and (min-width: 768px) {
	h3 {
		max-width: 500px;
		padding: 1.5rem;
	}
}

h4 {
	text-align: center;
	font-weight: 700;
	font-size: 18px;
	padding: 0.5em 0;
}

.overlap {
	position: absolute;
	left: 50%;
	top: 0;
	transform: translate(-50%, -50%);
	z-index: 2;
	width: 100%;
}

.contents_inner:has(.overlap) {
	padding-top: calc(1rem + clamp(2rem, 1.077rem + 3.94vw, 2.8rem));
}

.over_margin {
	margin-top: var(--cont-gap);
}

.zen-kaku-gothic-antique-bold {
	font-family: "Zen Kaku Gothic Antique", sans-serif;
	font-weight: 700;
	font-style: normal;
}

form:has(.ec-button) {
	width: 100%;
}

a.ec-button__primary {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	max-width: 4.2rem;
	min-width: min(350px, 100%);
	padding: 11px 1em;
	min-height: 52px;
	border-radius: 60px;
	background: #888888;
	font-size: clamp(2rem, 1.538rem + 1.97vw, 2.4rem);
	line-height: 1;
	letter-spacing: 0.04em;
	font-weight: 700;
	text-decoration: none;
	color: #fff;
	box-shadow: 5px 5px 15px -10px #777777;
	background: #e60012;
	color: #fff;
}
a.ec-button__primary::after {
	position: absolute;
	left: auto;
	right: 1.8rem;
	content: "";
	width: 3rem;
	height: 3rem;
	background: url(../images/arrow-white.svg) no-repeat;
}
a.ec-button__primary.font_s {
	font-size: 1.8rem;
	line-height: 1;
}
a.ec-button__primary::after {
	background: url(../images/arrow-white.svg) no-repeat;
}

a.ec-button__outline {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	max-width: 4.2rem;
	min-width: min(350px, 100%);
	padding: 11px 1em;
	min-height: 52px;
	border-radius: 60px;
	background: #888888;
	font-size: clamp(2rem, 1.538rem + 1.97vw, 2.4rem);
	line-height: 1;
	letter-spacing: 0.04em;
	font-weight: 700;
	text-decoration: none;
	color: #fff;
	box-shadow: 5px 5px 15px -10px #777777;
	border: 2px solid #e60012;
	background: #fff;
	color: #e60012;
}
a.ec-button__outline::after {
	position: absolute;
	left: auto;
	right: 1.8rem;
	content: "";
	width: 3rem;
	height: 3rem;
	background: url(../images/arrow-white.svg) no-repeat;
}
a.ec-button__outline.font_s {
	font-size: 1.8rem;
	line-height: 1;
}
a.ec-button__outline::after {
	background: url(../images/arrow-red.svg) no-repeat;
}

a.ec-button__outline.undefind {
	pointer-events: none;
	box-shadow: none;
}
a.ec-button__outline.undefind span {
	display: block;
	position: absolute;
	width: calc(100% + 5px);
	height: calc(100% + 5px);
	content: "";
	background: rgba(148, 140, 140, 0.5254901961);
	border-radius: 60px;
	z-index: 9999;
}
a.ec-button__outline.undefind::before {
	content: "11/13(木)17時頃から公開予定!";
	position: absolute;
	top: auto;
	bottom: -2rem;
	left: -4%;
	width: 108%;
	z-index: 9999;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 1.5rem;
	line-height: 1;
	color: #320204;
}

/* ////////////////////////////////// */
/* contentsごとの設定 */
/* ////////////////////////////////// */
.cp_headder {
	display: flex;
	flex-flow: column wrap;
	justify-content: center;
	align-items: center;
	padding: 10px 0;
	background: #fff;
}

.fv.container {
	padding-top: 0.5rem;
	padding-bottom: 3rem;
}

.fv .contents_inner {
	margin: 0;
	margin: 0;
}

h1 {
	max-width: 540px;
	font-size: 1.6rem;
	font-weight: 600;
	text-align: center;
	line-height: 1.4;
	margin: 0 auto;
	padding: 0.4rem 1.5rem 2rem 1.5rem;
	color: #e60012;
}
@media screen and (min-width: 768px) {
	h1 {
		font-size: 2rem;
		padding: 1rem 1.5rem 1rem 1.5rem;
	}
}

.fv005 {
	margin: 0 auto;
	padding: 0 1.5rem;
	max-width: 480px;
}
@media screen and (min-width: 768px) {
	.fv005 {
		padding: 0 0;
		padding-top: 2rem;
	}
}

.fv001 {
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.fv001 img {
	margin: 0 auto;
	text-align: right;
	max-width: 300px;
}
@media screen and (min-width: 768px) {
	.fv001 {
		justify-content: center;
		align-items: center;
	}
	.fv001 img {
		margin: 0 auto;
		text-align: center;
		max-width: 480px;
	}
}

.fv002 {
	max-width: 540px;
	margin: 0 auto;
	padding-bottom: 0.5rem;
}

.entry {
	padding: 1rem 0 1.5rem 0;
	font-weight: 700;
	text-align: center;
	color: #e60012;
	text-shadow: 2px 2px 0 #fbf0b3, -2px -2px 0 #fbf0b3, -2px 2px 0 #fbf0b3, 2px -2px 0 #fbf0b3, 0px 2px 0 #fbf0b3, 0 -2px 0 #fbf0b3, -2px 0 0 #fbf0b3, 2px 0 0 #fbf0b3;
}
.entry span {
	display: inline-block;
}
@media screen and (min-width: 768px) {
	.entry {
		font-size: clamp(1.5rem, 0.917rem + 2.22vw, 2rem);
	}
}

.campaign-period {
	padding-bottom: 3rem;
}
.campaign-period .contents_inner {
	background-color: #fbf0b3;
	border-radius: 1rem;
}
.campaign-period h2 {
	max-width: 500px;
	margin: 0 auto;
	margin-bottom: 2rem;
	padding: 0.5rem;
	background: #320204;
	border-radius: 2.5rem;
	color: #fff;
	font-family: "Zen Kaku Gothic Antique", sans-serif;
	font-weight: 700;
	font-style: normal;
	font-size: 2.5rem;
	text-align: center;
}
.campaign-period .period_date {
	text-align: center;
	margin: 0 auto;
	padding: 0 1rem;
}

.btn-area .contents_inner {
	display: flex;
	flex-flow: column;
	justify-content: center;
	align-items: center;
	padding-left: 0;
	padding-right: 0;
}
.btn-area .contents_inner .ec-button__primary {
	margin-bottom: 2rem;
}

.prizeitem {
	background: #fbf0b3;
}

@media screen and (min-width: 768px) {
	.contents.prizeitem.vw100 .contents_inner {
		padding-top: 6rem;
	}
}

.prize_box {
	display: flex;
	flex-flow: column nowrap;
	gap: 1.5rem;
	width: 100%;
}

.prize_item {
	display: flex;
	flex-flow: column nowrap;
	gap: 2rem;
	min-height: 0;
	min-width: 0;
	background: #71bbce;
	margin-top: 1rem;
	padding: 1.5rem 1.5rem 2.5rem 1.5rem;
}
@media screen and (min-width: 768px) {
	.prize_item {
		gap: 3rem;
		padding: 2rem 2rem 2.5rem 2rem;
	}
}
.prize_item img {
	display: block;
	width: auto;
	max-width: 100%;
	height: auto;
	object-fit: contain;
}
.prize_item .number {
	width: 42%;
	max-width: 220px;
	text-align: left;
}
.prize_item .name {
	width: 60%;
	margin: 0 auto;
}
.prize_item .img {
	display: flex;
	justify-content: center;
	width: 60%;
	text-align: center;
	margin: 0 auto;
}
@media screen and (min-width: 768px) {
	.prize_item .img {
		max-height: 340px;
	}
}

.prize_item.item01 .name {
	width: 81%;
}
@media screen and (min-width: 768px) {
	.prize_item.item01 .name {
		width: 70%;
	}
}

.prize_item.item02 .name {
	width: 94%;
}
@media screen and (min-width: 768px) {
	.prize_item.item02 .name {
		width: 84%;
	}
}

.prize_item.item03 .name {
	width: 100%;
}
@media screen and (min-width: 768px) {
	.prize_item.item03 .name {
		width: 89%;
	}
}

.purchase {
	color: #320204;
}

.purchase_img {
	width: 100%;
	margin: 0 auto;
	padding: 4rem 2rem 1.5rem 2rem;
}
@media screen and (min-width: 768px) {
	.purchase_img {
		max-width: 500px;
	}
}
.purchase_img img {
	display: block;
	width: auto;
	max-width: 100%;
	height: auto;
	object-fit: contain;
}

.purchase_item {
	padding-bottom: 1rem;
	font-size: 2rem;
	font-weight: 700;
	text-align: center;
}

.notes ul > li {
	padding-bottom: 0.5em;
}
.notes ul.proviso > li {
	line-height: 1.4;
	font-size: 1.4rem;
	padding-bottom: 0;
}
.notes .tell {
	text-align: center;
	font-size: 1.6em;
	font-weight: 600;
}
.notes .tell span {
	font-size: 1.4rem;
	font-weight: 500;
}
.notes .box_br .box_br_inner {
	max-width: 50rem;
	margin: 0 auto;
}
.notes h4 {
	color: #e60012;
}

dl {
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	padding-bottom: 0.5rem;
	font-size: 1.6rem;
}
dl dt {
	width: 100%;
	text-align: left;
	font-weight: 700;
}
dl dd {
	text-align: center;
}
@media screen and (min-width: 768px) {
	dl dt {
		width: fit-content;
	}
	dl dd {
		text-align: center;
	}
}

#footer {
	margin: 0;
	padding: 0;
	width: 100%;
	height: 50px;
	text-align: center;
	background: #ffffff;
	border: 1px;
	border-style: solid none none none;
	border-color: #cccccc;
	clear: both;
}

#footer .content_inner {
	padding: 0;
	width: 100%;
}

#footer a {
	text-decoration: none;
	color: #827b6b;
}

#footer a:hover {
	text-decoration: underline;
}

#footer ul {
	margin: 0;
	padding: 10px 0 10px 0;
	width: 100%;
	height: auto;
}

#footer ul {
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	align-items: center;
}

#footer ul li {
	margin: 0 8px 0 8px;
	padding: 0;
	text-align: center;
	list-style: none;
	display: inline-block;
}
#footer ul li.copy_img {
	font-size: 1.1rem;
}

@media screen and (max-width: 767px) {
	#footer ul li {
		margin: 0 8px 0 8px;
		padding: 0;
		text-align: center;
		list-style: none;
		display: inline-block;
	}
	#footer {
		height: auto;
	}
	#footer .content_inner {
		width: 100%;
		height: auto;
	}
	#footer ul li {
		margin: 1em 0 1em 0;
		width: 50%;
		height: auto;
	}
	#footer ul li.copy_img {
		width: 100%;
	}
	#footer ul li.pc {
		display: none !important;
	}
}
@media screen and (min-width: 768px) {
	#footer {
		margin: 0;
		padding: 0;
		width: 100%;
		height: 50px;
		text-align: center;
		background: #ffffff;
		border: 1px;
		border-style: solid none none none;
		border-color: #cccccc;
		clear: both;
	}
	#footer .content_inner {
		padding: 0;
		width: 100%;
	}
	#footer a {
		text-decoration: none;
		color: #827b6b;
	}
	#footer a:hover {
		text-decoration: underline;
	}
	#footer ul {
		margin: 0;
		padding: 10px 0 10px 0;
		width: 100%;
		height: auto;
	}
	#footer ul li {
		margin: 0 8px 0 8px;
		padding: 0;
		font-size: 1.35rem;
		text-align: center;
		list-style: none;
	}
}
/* ページ一番上に戻るボタン */
#topBtn {
	width: 60px;
	height: 60px;
	z-index: 15;
	color: #ff9900;
	padding-top: 5px;
	margin-top: -60px;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.8s, visibility 0.8s;
}

#topBtn.show {
	opacity: 0.7;
	visibility: visible;
	position: sticky;
	top: auto;
	left: calc(100vw - 60px);
	bottom: 1px;
}

#topBtn:hover {
	opacity: 1 !important;
}

#topBtn a {
	display: block;
}

#topBtn a::before {
	display: inline-block;
	content: url("../images/top_back.svg");
	line-height: 50px;
	width: 50px;
	height: 50px;
}/*# sourceMappingURL=georgia_cp.css.map */