@charset "UTF-8";

/* 全体 */
body {
	position: relative;
	margin: 0;
	height: 100vh;
	display: flex;
	justify-content: center;
	/* PC時は中央 */
	align-items: center;
	background-image: linear-gradient(0deg, #ffed80, #fff8cf 50%);
}

.pc-left-area,
.pc-right-area {
	position: fixed;
	top: 0;
	bottom: 0;
	width: calc((100vw - 375px) / 2);
	display: flex;
	align-items: flex-start;
	/* 必要に応じ center / flex-end 等に変更 */
	justify-content: center;
	/* 内部のボタンを中央寄せ */
	padding-top: 8vh;
	/* ヘッダー等に合わせて調整 */
	box-sizing: border-box;
	z-index: 50;
	pointer-events: auto;
	background: transparent;
	/* 必要なら色を付ける */
}

.pc-left-area {
	left: 0;
	display: flex;
	flex-direction: column;
	gap: 40px;
	justify-content: center;
	align-items: center;
	padding: 0 20px;
}

.pc-right-area {
	right: 0;
	display: flex;
	flex-direction: column;
	gap: 40px;
	justify-content: center;
	align-items: center;
	padding: 0 20px;
}

.pc-right-area a {
	position: relative;
	display: inline-block;
	padding-left: 28px;
	text-decoration: none;
	color: #87402A;
	font-size: 2.2rem;
	font-weight: 700;
}

.pc-right-area a::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 14px;
	height: 14px;
	background-color: #f19500;
	border-radius: 50%;
}

/* 内部の固定ボタンの幅を制限したい場合（任意） */
.pc-left-area>*,
.pc-right-area>* {
	max-width: 400px;
	width: 100%;
}



@media screen and (max-width: 1012px) {
	.pc-left-area {
		display: none;
	}

	.pc-right-area {
		display: none;
	}
}

/* スマホビューを再現するラッパー */
.lp-wrapper {
	width: 375px;
	/* PCではスマホサイズ */
	height: 100vh;
	background-color: #ffffff;
	background-image: linear-gradient(90deg, #ffdc0033 20px, transparent 20px), linear-gradient(#ffdc0033 20px, transparent 20px);
	background-position: 14px 10px;
	background-size: 40px 40px;
	overflow-y: auto;
	overflow-x: hidden;
	border-right: 4px solid #FFDC00;
	border-left: 4px solid #FFDC00;
	position: relative;
}

/* コンテンツ */
.lp-content {
	width: 345px;
	margin: 0 auto;
	position: relative;
	display: flex;
	flex-direction: column;
}

.lp-content img {
	display: block;
	margin: 0 auto;
}

@media screen and (max-width: 375px) {
	.lp-content {
		width: 100%;
		padding: 0 15px;
	}

}

/* トップ */
.top-main {
	background-color: #FFD7B6;
	padding-bottom: 50px;
	position: relative;
}

.top-main img {
	display: block;
	margin: 0 auto;
	padding: 190px 0;
}

.main-ttl {
	background-image: url(./img/main_ttl_bg.png);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

@media screen and (max-width: 1012px) {
	.main-ttl {
		max-width: 500px;
		width: 100%;
		margin: 0 auto;
	}
}

.main-text {
	font-size: 2.2rem;
	font-weight: 700;
	line-height: 3.5rem;
	color: #F07C00;
	margin: 30px 0 20px 0;
}

.top-messege {
	background-color: #fff;
	border-radius: 20px;
	padding: 20px 15px;
	margin-top: 50px;
}

.top-messege::before {
	content: "";
	position: absolute;
	top: -24px;
	left: 40px;
	width: 20%;
	height: 20%;
	background-image: url(./img/clip_deco.png);
	background-repeat: no-repeat;
	z-index: 2;
}

.top-main::before {
	content: "";
	background-image: url(./img/bg_deco_top.svg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: bottom;
	width: 100%;
	height: 75px;
	position: absolute;
	bottom: -40px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 3;
}

/* @media screen and (max-width: 375px) {
	.top-main {
		width: 100%;
		padding: 0 15px 40px 15px;
	}

} */
@media screen and (max-width: 1012px) {
	.top-main {
		width: 100%;
		padding: 0 15px 40px 15px;
	}

	.top-main::before {
		width: 100%;
		height: 100px;
		bottom: -90px;
	}
}


/* テーマから */
.explanation {
	margin: 90px 0 90px 0;
}

.point-text {
	font-size: 2.0rem;
	font-weight: 700;
	color: #FF715F;
	margin-bottom: 10px;
}

.conditions {
	background-color: #fff;
	border: 2px solid #FFB864;
	border-radius: 10px;
	padding: 50px 15px;
	margin-top: -24px;
}

.ttl-deco {
	margin-top: 50px;
	z-index: 2;
}

.ingredients-cont {
	margin: 30px 0;
}

@media screen and (max-width: 1012px) {
	.explanation {
		margin: 130px 0 90px 0;
	}
}

/* 審査基準 */
.standard-cont {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	column-gap: 20px;
	row-gap: 15px;
	margin: 30px 0 10px 0
}

.standard-text {
	font-size: 1.8rem;
	font-weight: 700;
	width: fit-content;
	background-color: #fff;
	border: 2px solid #FFB864;
	border-radius: 50px;
	padding: 15px 30px;
}

/* 写真を撮る時のポイント */
.point-img {
	margin: 30px 0 20px 0;
}

/* 注意事項 */
.precautions {
	background-color: #fff;
	border: 2px solid #FFB864;
	border-radius: 10px;
	padding: 50px 15px;
	margin-top: 70px;
}

.text-black {
	color: #555;
}

/* 規約ボタン */
.contact-btn {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	padding: 0.8em 1.2em;
	border: 2px solid #87402A;
	border-radius: 50px;
	background: #ffffff;
	color: #87402A;
	font-size: 1.5rem;
	font-weight: bold;
	letter-spacing: 0.2rem;
	text-decoration: none;
	transition: all 0.3s ease;
	box-sizing: border-box;
	margin-top: 20px;
}

.contact-btn-icon {
	position: absolute;
	right: 0.8em;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #87402A;
	border-radius: 50%;
	width: 2.2em;
	height: 2.2em;
	transition: background 0.3s ease;
}

.contact-btn .icon-arrow {
	width: 1.1em;
	height: auto;
	fill: #ffffff;
	transition: fill 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
	.contact-btn:hover {
		background: #87402A;
		color: #ffffff;
	}

	.contact-btn:hover .contact-btn-icon {
		background: #ffffff;
	}

	.contact-btn:hover .icon-arrow {
		fill: #87402A;
	}

}


/* 発表について */
.announcement {
	background-color: #FFE482;
	padding: 45px 15px;
	margin-top: 50px;
	position: relative;
	/* 擬似要素を相対配置するため */
}

.announcement::before,
.announcement::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	height: 3px;
	background-image: repeating-linear-gradient(90deg, #ffffff, #ffffff 15px, transparent 17px, transparent 27px);
	/* background-repeat: repeat-x;
	background-size: 100% 3px;
	pointer-events: none;
	z-index: 2;  */
}

.announcement::before {
	top: 15px;
	/* 上から15px */
}

.announcement::after {
	bottom: 15px;
	/* 下から15px */
}

.precautions::before {
	content: "";
	background-image: url(./img/kokoru_01.svg);
	background-repeat: no-repeat;
	width: 40%;
	height: 150px;
	position: absolute;
	right: -20px;
	bottom: 200px;
	z-index: 3;
}

/* 結果発表 */
.sub-text {
	font-size: 1.8rem;
	text-align: center;
	margin-top: 20px;
	color: #87402A;

}

.result-cont {
	background-color: #FFF7E9;
	border: 2px solid #FFB864;
	border-radius: 10px;
	padding: 30px 15px !important;
}

.dish-name {
	font-size: 2.2rem;
	font-weight: 700;
	color: #555;
	text-align: center;
}

.name-text {
	color: #555;
	text-align: center;
	margin: 10px 0 20px 0;
}

.announcement img {
	display: block;
	margin: 0 auto;
}

.announcement p {
	width: fit-content;
	margin: 0 auto;
}

/* スライド内の result-cont も同じスタイルを保持 */
.result-slide .result-cont {
	width: 100%;
	padding: 30px 15px !important;
	background-color: #FFF7E9 !important;
	border: 2px solid #FFB864 !important;
	border-radius: 10px !important;
	margin-top: 30px;
}

/* 矢印ボタンのスタイル */
.result-slide .slick-prev,
.result-slide .slick-next {
	display: inline-block !important;
	width: 50px;
	height: 50px;
	padding: 0;
	border: 2px solid #FF9604;
	background-color: #FFF7E9;
	color: #FF9604;
	font-size: 18px;
	font-weight: 700;
	cursor: pointer;
	border-radius: 50%;
	transition: all 0.3s ease;
	margin: 0 15px;
	position: static !important;
	/* left: auto !important;
	right: auto !important;
	top: auto !important;
	transform: none !important; */
}

.result-slide .slick-prev:hover,
.result-slide .slick-next:hover {
	background-color: #FF9604;
	color: #FFF7E9;

}

.result-slide .slick-prev:focus,
.result-slide .slick-next:focus {
	background-color: #FFF7E9;
	color: #FF9604;
}

@media screen and (max-width: 1012px) {

	.result-slide .slick-prev:hover,
	.result-slide .slick-next:hover {
		background-color: #FFF7E9;
		color: #FF9604;
	}
}


.result-slide .slick-prev::before,
.result-slide .slick-next::before {
	display: none !important;
}


.result-nav-wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	margin-top: -5px;
	width: 100%;
}

.result-nav-spacer {
	flex: 1;
}

/* ドットインジケーター */
.result-slide .slick-dots {
	position: relative;
	bottom: auto;
	display: flex !important;
	justify-content: center;
	padding-top: 50px;
}

.result-slide .slick-dots li {
	width: 12px;
	height: 12px;
	margin: 0 8px;
	border-radius: 50%;
	background-color: #ddd;
	cursor: pointer;
	transition: all 0.3s ease;
}

.result-slide .slick-dots li.slick-active {
	background-color: #FF9604;
}

.result-slide .slick-dots button {
	display: none;
}









/* 応募ボタン */
.apply-btn {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	font-size: 2.0rem;
	font-weight: 700;
	color: #fff;
	width: fit-content;
	padding: 20px 60px;
	margin: 20px auto;
	background-color: #FF715F;
	box-shadow: 4px 4px #D92D17;
	border-radius: 50px;
	text-decoration: none;
	transition: all 0.3s ease-in-out;
	box-sizing: border-box;
}

.apply-btn:hover {
	box-shadow: none;
	transition: all 0.3s ease-in-out;
	transform: translateY(2px);
}

@media screen and (max-width: 370px) {
	.apply-btn {
		font-size: 1.8rem;
		padding: 10px 30px;
	}
}

/* 上に戻るボタン */
.back-to-top {
	position: fixed;
	bottom: 20px;
	right: 20%;
	width: 70px;
	height: 70px;
	background-color: #f19500;
	color: #fff;
	font-size: 40px;
	font-weight: 700;
	text-align: center;
	line-height: 70px;
	border-radius: 50%;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
	cursor: pointer;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s ease, transform 0.3s ease;
	z-index: 9999;
}

.back-to-top.show {
	opacity: 1;
	pointer-events: auto;
}

@media (hover: hover) and (pointer: fine) {
	.back-to-top:hover {
		background-color: #fff;
		color: #f19500;
		border: 2px solid #f19500;
		transform: scale(1.1);
	}
}

@media (max-width: 1012px) {
	.back-to-top {
		width: 60px;
		height: 60px;
		line-height: 60px;
		font-size: 34px;
		bottom: 20px;
		right: 20px;
	}
}

@media screen and (max-width: 1012px) {
	body {
		display: block;
		height: auto;
	}

	.lp-wrapper {
		width: 100%;
		height: auto;
		border-radius: 0;
		box-shadow: none;
		border: none;
	}

}