@charset "UTF-8";

/* ===== ヘッダー ====== */
/* 投稿写真・コメントボタン */
.nav {
	display: flex;
	align-items: center;
	gap: 20px;
}
.nav-item {
	display: flex;
	align-items: center;
}
.gnav-btn {
	display: inline-flex;
	position: relative;
	align-items: center;
	justify-content: center;
	min-width: 220px;
	height: 40px;
	border-radius: 999px;
	font-size: 0.9rem;
	font-weight: bold;
	text-decoration: none;
	transition: all .3s ease;
	box-sizing: border-box;
	padding: 0 30px;
}
.gnav-btn .gnav-arrow {
	display: inline-block;
	position: absolute;
	right: 14px;
	top: 50%;
	transform: translateY(-50%);
	width: 14px;
	height: 14px;
	margin-left: 10px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	transition: all .3s ease;
}

/* キャンペーン */
.campaign-btn {
	background: #e60012;
	color: #fff;
	border: 2px solid #e60012;
}
.campaign-btn .gnav-arrow {
	background-image: url('../img/arrow_white.png');
}
.campaign-btn:hover {
	background: #fff;
	color: #e60012;
}
.campaign-btn:hover .gnav-arrow {
	background-image: url('../img/arrow_red.png');
}

/* 投稿写真・コメント：公開後 */
.gnav-btn.active {
	background: #0a7d1c;
	color: #fff;
	border: 2px solid #0a7d1c;
}
.gnav-btn.active .gnav-arrow {
	background-image: url('../img/arrow_white.png');
}
.gnav-btn.active:hover {
	background: #fff;
	color: #0a7d1c;
}
.gnav-btn.active:hover .gnav-arrow {
	background-image: url('../img/arrow_green.png');
}

/* 投稿写真・コメント：公開前 */
.gnav-btn.coming {
	position: relative;
	min-width: 200px;
	background: #0a7d1c;
	color: #fff;
	border: 2px solid #0a7d1c;
	overflow: hidden;
	cursor: not-allowed;
}
.gnav-btn .label-coming {
	display: none;
}
.gnav-btn.coming:hover {
	background: #fff;
	color: #0a7d1c;
}
.gnav-btn.coming:hover .label-default {
	display: none;
}
.gnav-btn.coming:hover .label-coming {
	display: inline;
}

/* ロゴ */
.site-logo img {
	height: 30px; /* 表示サイズ */
	width: auto;
	display: block;
	transition: transform .3s ease;
}
.site-logo:hover img {
	transform: scale(1.05);
}
/* モーション */
.site-header {
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 1000;
	/*background: transparent;*/
	background: #fff;
	padding: 20px 0;
	transition: all .3s ease;
}
.site-header.scrolled {
	/*background: #fff;*/
	background: rgba(255,255,255,.95);
	backdrop-filter: blur(6px);
	padding: 10px 0;
	box-shadow: 0 4px 12px rgba(0,0,0,.1);
}
.site-header img {
	transform: scale(1.2);
	transition: .3s;
}
.site-header.scrolled img {
	transform: scale(1);
}

/* ===== SP ヘッダー ====== */
.header-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 40px;
	padding: 0 20px;
}
/* ハンバーガー */
.hamburger {
	width: 36px;
	height: 22px;
	position: absolute;
	right: 22px;
	cursor: pointer;
	z-index: 1001;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-left: auto;
}
.hamburger span {
	position: absolute;
	width: 100%;
	height: 1px;
	background: #000;
	left: 0;
	top: 50%;
	transform-origin: center;
	transition: all .3s ease;
}
/* 初期位置 */
.hamburger span:nth-child(1) {
	transform: translateY(-10px);
}
.hamburger span:nth-child(2) {
	transform: translateY(0);
}
.hamburger span:nth-child(3) {
	transform: translateY(10px);
}
/* 開いた状態 */
.hamburger.active span:nth-child(1) {
	transform: rotate(45deg);
	/*top: 9px;*/
}
.hamburger.active span:nth-child(2) {
	opacity: 0;
}
.hamburger.active span:nth-child(3) {
	transform: rotate(-45deg);
	/*bottom: 10px;*/
}

@media (max-width:768px){
	header nav {
		display: none;
	}
	.header-inner {
		padding-left: 45px;
	}
	.site-header {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		background: #fff;
		z-index: 1000;
	}
	.site-logo img {
		height: 24px;
		display: block;
	}
	/* ===== SP メニュー ====== */
	.sp-menu {
		position: absolute;
		top: 100%; /*ヘッダーの下に表示 */
		left: 0;
		width: 100%;
		height: calc(100vh - 60px);
		background: #e60019;
		display: flex;
		justify-content: center;
		align-items: flex-start;
		padding: 80px 20px;
		transform: translateY(-20px);
		opacity: 0;
		pointer-events: none;
		transition: all .3s ease;
		z-index: 999;
	}
	.sp-menu.active {
		transform: translateY(0);
		opacity: 1;
		pointer-events: auto;
	}
	.sp-menu ul {
		list-style: none;
		text-align: center;
		display: flex;
		flex-direction: column;
		align-items: center;
		padding: 0;
	}
	.sp-menu li {
		margin: 20px 0;
	}
	.sp-menu a {
		color: #fff;
		font-size: 1.5rem;
		font-weight: bold;
		text-decoration: none;
	}
	.sp-voice-link .label-coming {
		display: none;
	}
	.sp-voice-link.coming {
		cursor: pointer;
	}
	/* JSでactive付けたら切り替え */
	.sp-voice-link.active .label-default {
		display: none;
	}
	.sp-voice-link.active .label-coming {
		display: inline;
		color: #f7b2ba;
	}
}
/* PCでは非表示 */
@media (min-width:769px){
	.hamburger,
	.sp-menu {
		display: none;
	}
}

/* ===== フッター ====== */
.site-footer {
	background: #fff;
	color: #000;
	text-align: center;
	padding: 40px 20px;
}
/* タイトル */
.contact-title {
	font-size: 1.1rem;
	font-weight: normal;
	margin-bottom: 10px;
}
.contact-info {
	font-size: 0.9rem;
}
/* ボックス */
.contact-box {
	border: 1px solid #000;
	border-radius: 10px;
	max-width: 400px;
	font-size: 0.9rem;
	line-height: 1.6;
	margin: 0 auto 30px;
	padding: 20px 5px;
}
/* リンク */
.footer-links {
	font-size: 0.85rem;
	margin-bottom: 20px;
	line-height: 1.6;
}
.footer-links a {
	color: #000;
	text-decoration: none;
}
/* コピーライト */
.footer-copy {
	font-size: 0.8rem;
}
@media (max-width:768px){
	.contact-info {
		font-size: 0.85rem;
	}
}

/* ===== スクロールモーション ====== */
.fade-up,
.fade-left,
.fade-right {
	opacity: 0;
	transition: all .8s ease;
}
/* 下から */
.fade-up {
	transform: translateY(40px);
}
/* 左から */
.fade-left {
	transform: translateX(-40px);
}
/* 右から */
.fade-right {
	transform: translateX(40px);
}
/* 表示後 */
.fade-up.active,
.fade-left.active,
.fade-right.active {
	opacity: 1;
	transform: translate(0,0);
}
.fade-delay-1 { transition-delay: .2s; }
.fade-delay-2 { transition-delay: .4s; }
.fade-delay-3 { transition-delay: .6s; }

/* ===== メインビジュアル ====== */
.hero {
	position: relative;
	width: 100%;
	min-height: 700px;
	height: 70vh;
	overflow: hidden;
}
.hero-bg {
	position: absolute;
	inset: 0;
	z-index: 1;
}
.hero-bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 80%;
}
.hero-inner {
	position: relative;
	z-index: 2;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	padding-top: 15vh; /* ロゴ、タイトル画像上下調整 */
}
.hero-content {
	display: flex;
	align-items: center;
	gap: 45px;
	margin-bottom: 24px;
}
.hero-logo,
.hero-title-img {
	margin: 0;
}
.hero-logo img,
.hero-title-img img {
	display: block;
	width: 100%;
	height: auto;
}
.hero-logo {
	max-width: 220px;
	flex: 0 0 220px;
}
.hero-title-img {
	max-width: 420px;
	flex: 0 1 420px;
}
.hero-period-title {
	font-size: 1.1rem;
	font-weight: bold;
	color: #fff;
	background-color: #e60019;
	border-radius: 5px 5px 0 0;
	margin-top: 15px;
	padding: 5px 10px;
}
.hero-period {
	color: #000;
	font-size: 22px;
	font-weight: bold;
	line-height: 1.8;
	background-color: rgba(255,255,255,0.7);
	border-radius: 10px;
	margin: 0 !important;
	white-space: nowrap; /* 改行させない */
	margin-top: 8px;
	padding: 7px 15px;
}
/* 注釈 */
.hero-note {
	position: absolute;
	right: 15px;
	bottom: 15px;
	font-size: 12px;
	color: #fff;
	background: rgba(0,0,0,0.5);
	padding: 6px 10px;
	border-radius: 4px;
	z-index: 3;
}
/* 最初は非表示 */
.hero-animate {
	opacity: 0;
}
/* 表示後のアニメーション */
.hero-animate.show {
	animation: heroZoomIn .9s ease forwards;
}
@keyframes heroZoomIn {
	0% {
		opacity: 0;
		transform: scale(.88);
	}
	55% {
		opacity: 1;
		transform: scale(1.06);
	}
	100% {
		opacity: 1;
		transform: scale(1);
	}
}
@media (max-width:768px){
	.hero {
		height: auto;
		min-height: 120vh;
	}
	.hero-inner {
		padding-top: 120px;
		padding-bottom: 60px;
		padding-top: 21vh; /* ロゴ、タイトル画像上下調整 */
	}
	.hero-content {
		flex-direction: column;
		align-items: center;
		text-align: center;
		gap: 20px;
		margin-bottom: 20px;
	}
	.hero-logo {
		max-width: 50%;
		flex: none;
	}
	.hero-title-img {
		max-width: 95%;
		flex: none;
	}
	.hero-period-title {
		margin-top: 5px;
	}
	.hero-period {
		text-align: center;
		font-size: 16px;
		background-color: rgba(255,255,255,0.85);
		padding: 7px 8px !important;
	}
	.hero-note {
		font-size: 10px;
		right: 10px;
		bottom: 80px;
		padding: 4px 8px;
	}
}

/* ===== キャンペーン ====== */
.campaign {
	background: #e60019;
	padding: 80px 20px;
	color: #fff;
	text-align: center;
}
.campaign .container {
	max-width: 1100px;
	margin: 0 auto;
}
.campaign-intro {
	position: relative;
	margin-top: -120px;
	padding-top: 120px;
	text-align: center;
}
/* 半円 */
.campaign-intro::before {
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 300px;
	height: 300px;
	background: #e60019;
	border-radius: 50%;
	z-index: 1;
}
.intro-center {
	position: relative;
	z-index: 2;
	max-width: 420px;
	font-size: 18px;
	line-height: 180%;
	color: #fff;
	margin: 0 auto;
}
/* 説明 */
/* 商品 */
.product-img {
	margin-top: -80px;
	margin-bottom: 20px;
	transform: none;
	order: initial;
	position: relative;
	z-index: 4;
}
.product {
	display: block;
	margin: 0 auto;
	max-width: 140px;
}
/* 画像 */
.intro-img {
	position: absolute;
	z-index: 3;
}
.intro-img.left {
	left: 5%;
	top: 20px;
}
.intro-img.right {
	right: 5%;
	top: 150px;
}
.intro-img img {
	max-width: 220px;
	border-radius: 20px;
}
/* テキスト */
.intro-text {
	max-width: 420px;
	text-align: center;
	line-height: 1.8;
	font-size: 0.9rem;
}
@media(max-width:768px){
	.intro-center {
		font-size: 16px;
		padding: 5px 0 !important;
	}
	.intro-img,
	.intro-img.left,
	.intro-img.right {
		position: static !important;
		top: auto;
		left: auto;
		right: auto;
	}
	.intro-row {
		display: flex;
		flex-direction: column;
		align-items: center;
	}
	/* 順番 */
	.product-img { order: 1; }
	.intro-text  { order: 2; }
	.intro-img.left  { order: 3; }
	.intro-img.right { order: 4; }
	/* 商品 */
	.product-img {
		position: relative;
		z-index: 3;
		transform: translateY(10px); /* ←あなたの最適値OK */
	}
	/* テキスト */
	.intro-text {
		text-align: center;
		padding: 0 15px;
		margin-top: 10px;
	}
	/* 人物 */
	.intro-img-group {
		display: flex;
		justify-content: center;
		align-items: flex-end;
		gap: 30px;
		margin-top: 40px;
	}
	/* 画像サイズ */
	.intro-img-group .intro-img img {
		max-width: 140px;
		height: auto;
	}
	/* 左だけ少し上に */
	.intro-img-group .intro-img:first-child {
		transform: translateY(-30px);
	}
}

/* ===== 賞品 ====== */
.prize-title {
	display: inline-block;
	background: url("../img/present_title.png") no-repeat center;
	background-size: contain;
	color: #e60019;
	font-size: 30px;
	font-weight: bold;
	text-align: center;
	padding: 26px 56px 32px 56px;
	margin: 5px auto;
}
.prize-grid {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 30px;
	margin-top: 15px;
}
.prize-item {
	position: relative;
	padding: 5px;
	text-align: center;
	color: #333;
}
.prize-card {
	position: relative;
	background: #fff;
	border-radius: 12px;
	padding: 5px;
}
.prize-card img {
	width: 100%;
	max-width: 270px;
	height: auto;
	margin: 0 auto;
	display: block;
}
.prize-name {
	font-size: 1.3rem;
	font-weight: bold;
	line-height: 1.6;
	margin-top: 12px;
	margin-bottom: 5px;
	color: #fff;
}
.prize-num {
	display: inline-block;
	font-size: 18px;
	font-weight: bold;
	color: #e60019;
	background-color: #fffab7;
	margin-top: 3px;
	padding: 5px 15px;
	border-radius: 15px;
}
/* 円バッジ */
.prize-badge {
	position: absolute;
	top: -22px;
	left: -22px;
	width: 80px;
	height: 80px;
	background: #c9a543;
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	font-size: 28px;
}
.prize-item:nth-child(6) .prize-badge {
	font-size: 17px;
	line-height: 120%;
	background: #008a1b;
}
@media (max-width:768px) {
	.prize-title {
		font-size: 26px;
	}
	.prize-grid {
		grid-template-columns: repeat(1,1fr);
		gap: 16px;
	}
	.prize-item {
		padding: 15px;
	}
	.prize-name {
		font-size: 1.15rem;
	}
	.prize-num {
		font-size: 18px;
	}
	.prize-badge {
		top: -20px;
		left: -20px;
		width: 80px;
		height: 80px;
		font-size: 26px;
	}
	.prize-item:nth-child(6) .prize-badge {
		font-size: 15px;
		line-height: 120%;
	}
}

/* ===== 参加方法 ====== */
.steps-title {
	position: relative;
	font-size: 2.0rem;
	font-weight: bold;
	border-bottom: 1px solid #fff;
	text-align: center;
	margin-bottom: 45px;
}
.steps-title span {
	display: inline-block;
	position: absolute;
	top: -18px;
	left: 50%;
	transform: translateX(-50%);
	background-color: #e60019;
	padding: 0 15px;
}
.step h3 {
	display: inline-block;
	font-size: 1.4rem;
	font-weight: bold;
	color: #e60019;
	background-color: #fff;
	padding: 5px 15px;
	border-radius: 5px;
}
.step h3 span {
	color: #c9a543;
}
.step p {
	font-size: 18px;
	line-height: 180%;
}
.step p small {
	font-size: 1rem;
	line-height: 180%;
}

.campaign-steps {
	margin-bottom: 80px;
}
.campaign-steps .btn {
	display: inline-block;
	margin-top: 20px;
	background: #c9a543;
	color: #fff;
	font-size: 1.1rem;
	font-weight: bold;
	border-radius: 7px;
	border: 3px solid #fff;
	padding: 12px 45px;
	transition: background-color 0.3s ease;
}
.campaign-steps .btn:hover {
	background: #fff;
	color: #c9a543;
	border: 3px solid #c9a543;
}
.campaign-steps .btn h3 {
	font-size: 1.8rem;
	font-weight: bold;
}
/* 応募開始前 */
/* COMING SOON ボタンの基本設定 */
.campaign-steps .btn.coming {
    position: relative;
    overflow: hidden;
    cursor: not-allowed;
    min-width: 360px !important; /* 固定 */
}
.campaign-steps .btn.coming .label-coming {
    display: none;
}
/* PC：ホバー時の切り替え */
@media (hover: hover) {
    .campaign-steps .btn.coming:hover {
        background: #fff !important;
        color: #c9a543 !important;
        border: 3px solid #c9a543 !important;
    }
    .campaign-steps .btn.coming:hover .label-default {
        display: none;
    }
    .campaign-steps .btn.coming:hover .label-coming {
        display: block;
    }
}
/* SP：JSで付与されるクラスによる切り替え */
@media (max-width: 768px) {
    .campaign-steps .btn.coming {
		position: relative;
		overflow: hidden;
		cursor: not-allowed;
		min-width: 320px !important; /* 固定 */
	}
	.campaign-steps .btn.coming.is-clicked {
        background: #fff !important;
        color: #c9a543 !important;
        border: 3px solid #c9a543 !important;
    }
    .campaign-steps .btn.coming.is-clicked .label-default {
        display: none;
    }
    .campaign-steps .btn.coming.is-clicked .label-coming {
        display: block;
    }
}
.entry-btn-sub {
    margin-bottom: 0;
    font-size: 0.9rem;
}
@media (max-width:768px) {
	.step p {
		font-size: 16px;
	}
	.campaign-steps .btn {
		width: 100%;
		font-size: 1.05rem;
		padding: 12px 15px;
	}
}

/* ===== 投稿例 ====== */
.campaign-example {
	background: #fff;
	border-radius: 30px;
	padding: 30px 30px 45px 30px;
}
.example-title {
	color: #e60019;
	font-size: 2.0rem;
	font-weight: bold;
	margin-bottom: 10px;
}
.example-box {
	background: #fff;
	color: #202020;
	font-size: 1.1rem;
	line-height: 160%;
	font-weight: bold;
	border-radius: 15px;
	padding: 20px 0;
	margin: 8px 0;
}
.example-grid {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 30px;
}
/* カード */
.example-card {
	display: flex;
	flex-direction: column;
	text-align: center;
}
/* 画像 */
.example-img {
	border: 1px solid #000000;
	border-radius: 8px;
	padding: 10px;
	box-shadow: 0 4px 5px rgba(0,0,0,.15);
}
.example-card img {
	width: 100%;
	height: auto;
	border-radius: 8px;
}
/* コメント */
.example-comment {
	display: flex;
	align-items: center;       /* ← 上下中央 */
	justify-content: center;
	flex: 1;
	position: relative;
	background-color: #c9a543;
	font-size: 0.95rem;
	text-align: left;
	line-height: 1.4;
	color: #fff;
	margin-top: 20px;
	padding: 15px 15px 5px 15px;
	border-radius: 5px;
}
/* 吹き出し */
.example-comment::before {
	content: "";
	position: absolute;
	top: -15px;
	left: 50%;
	transform: translateX(-50%);

	border-left: 18px solid transparent;
	border-right: 18px solid transparent;
	border-bottom: 30px solid #c9a543;
}
@media (max-width:768px) {
	.example-box {
		font-size: 1rem;
	}
	.example-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}
}
/* 注意書き */
.campaign-notes {
	margin-top: 40px;
	font-size: 0.75rem;
	line-height: 1.6;
	text-align: left;
}
.campaign-notes .border {
	border: 1px solid #fff;
	padding: 10px;
	margin-top: 15px;
	border-radius: 10px;
}
.campaign-notes-text {
	margin-bottom: 5px;
}
@media (max-width:768px) {
	.campaign-notes-text {
		margin-bottom: 10px;
	}
}

/* ===== トップページ ユーザーボイス ====== */
/* 掲載前 */
.voice-intro {
	background-color: #f4f1e8;
}
.voice-intro h2 {
	position: relative;
	border-bottom: 2px solid #008a1b;
	color: #008a1b;
	font-size: 1.6rem;
	font-weight: bold;
	text-align: center;
	margin: 15px 0 60px 0;
}
.voice-intro h2 span {
	display: inline-block;
	position: absolute;
	top: -32px;
	left: 50%;
	transform: translateX(-50%);
	background-color: #f4f1e8;
	padding: 15px;
	white-space: nowrap;
}
.voice-intro-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	justify-content: center;
	max-width: 70%;
	margin: 0 auto;
}
.voice-card {
	background: #fff;
	border-radius: 15px;
	box-shadow: 6px 8px 12px rgba(0,0,0,.25);
	
}
.voice-card img {
	width: 100%;
	border-radius: 15px 15px 0 0;
}
.voice-meta {
	background: #008a1b;
	color: #fff;
	font-size: 16px;
	display: block;
	margin-top: 0;
	padding: 5px 30px;
}
.voice-crop {
	font-size: 16px;
	color: #008a1b;
	border-left: 4px solid #008a1b;
	margin: 15px 30px 0 30px;
	padding: 5px 15px;
}
.voice-text {
	font-size: 16px;
	margin-top: 8px;
	line-height: 1.6;
	text-align: left;
	margin: 0;
	padding: 15px 30px;
}
.voice-info {
	align-self: center;
	text-align: center;
	font-size: 1.18rem;
	font-weight: bold;
}
.voice-info img {
	max-width: 280px;
	margin-bottom: 15px;
}
.voice-warning {
	font-size: 0.85rem;
	font-weight: normal;
	text-align: left;
	padding: 5px 30px;
}
/*　掲載後　*/
.user-voice.top {
	background: #008a1b;
	padding: 0 30px;
}
.voice-title {
	display: block;
	width: 480px;
	margin: 0 auto 45px auto;
}
/* ボタン */
.voice-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	position: relative;
	background: #ffee00;
	color: #008a1b;
	padding: 15px 70px 15px 25px; /* 右に余白 */
	border-radius: 15px;
	text-align: center;
	font-size: 1.1rem;
	font-weight: bold;
	text-decoration: none;
	transition: all .3s ease;
}
/* ホバー */
.voice-btn:hover {
	background: #fff;
}
/* 矢印 */
.voice-btn::after {
	content: "";
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	width: 50px;
	height: 50px;
	background: url('../img/green_arrow.png') no-repeat center;
	background-size: contain;
	transition: transform .3s ease;
}
/* ホバーで動く */
.voice-btn:hover::after {
	transform: translateY(-50%) translateX(6px) scale(1.05);
}
@media (max-width:768px) {
	.voice-intro-inner {
		grid-template-columns: 1fr;
	}
	.voice-grid {
		grid-template-columns: 1fr;
	}
	.voice-intro h2 {
		font-size: 1.1rem;
		margin: 15px 0 40px 0;
	}
	.voice-intro h2 span {
		top: -26px;
	}
	.voice-text {
		font-size: 16px;
	}
	/* 掲載後 */
	.voice-title-wrap {
		padding: 0 30px;
	}
	.voice-title {
		width: 70%;
		margin: 0 auto 30px auto;
	}
	/* ボタン */
	.voice-btn {
		width: 100%;
		font-size: 0.9rem;
		padding: 15px 55px 15px 15px; /* 右に余白 */
	}
	/* 矢印 */
	.voice-btn::after {
		width: 38px;
		height: 38px;
	}
}

/* ===== to TOP ====== */
#toTop {
	position: fixed;
	right: -80px;
	bottom: 30px;
	z-index: 999;

	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;

	width: 60px;
	height: 60px;

	background: #fff;
	color: #008a1b;
	border: 3px solid #008a1b;
	border-radius: 50%;

	font-weight: bold;
	cursor: pointer;

	transition: all .4s ease;
}
#toTop.show {
	right: 30px;
}
/* 矢印 */
.arrow {
	width: 28px;
	height: 28px;
	border-left: 3px solid #008a1b;
	border-top: 3px solid #008a1b;
	transform: rotate(45deg);
	margin-bottom: -5px;
}
/* テキスト */
#toTop .label {
	font-size: 12px;
	font-weight: bold;
	color: #008a1b;
	line-height: 1;
	margin-top: -5px;
	padding: 0;
}

/* ===== 応募フォーム ====== */
.entry-form {
	background: #f7f7f7;
	padding-top: 100px;
	padding-bottom: 30px;
}
.form-wrapper {
	background: #fff;
	padding: 30px;
	border-radius: 10px;
	max-width: 700px;
	margin: 0 auto;
}
.form-group {
	margin-bottom: 25px;
}
.form-group label {
	font-weight: bold;
	margin-bottom: 5px;
}
.form-control,
.form-select {
	padding: 14px;
	font-size: 16px;
	border-radius: 6px;
	border: 1px solid #ccc;
}
.badge-required {
	background: #e60019;
	color: #fff;
	font-size: 12px;
	padding: 3px 6px;
	border-radius: 4px;
	margin-left: 5px;
	display: inline-block;
	vertical-align: middle;
	position: relative;
	top: -1px;
}
.form-note {
	font-size: 0.85rem;
	color: #666;
	margin-bottom: 8px;
}
.form-note.small {
	font-size: 0.75rem;
	color: #909090;
}
.form-group.name {
	margin-bottom: 0;
}
::placeholder {
	color: #bbb !important;
}
::-webkit-input-placeholder { color:#bbb !important; }
:-ms-input-placeholder { color:#bbb !important; }
/* アップロード */
input[type="file"] {
	padding: 7px;
}
/* ラジオ */
.prize-option {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px;
	border: 1px solid #ddd;
	border-radius: 6px;
	margin-bottom: 10px;
	cursor: pointer;
	transition: all .2s ease;
}
.prize-option input {
	transform: scale(1.3);
}
/* 選択時 */
.prize-option:has(input:checked) {
	border: 2px solid #e60019;
	background: #fff5f5;
}
.prize-option.active {
	border: 2px solid #e60019;
	background: #fff5f5;
}
.prize-option span span.small {
	display: block;
	color: #909090;
	font-weight: normal;
	font-size: 0.75rem;
}
.form-check input {
	transform: scale(1.6);
	margin-right: 10px;
}
/* エラーメッセージ */
.error-message {
	color: #e60019;
	font-size: 0.85rem;
	margin-top: 5px;
}
.input-error {
	border: 2px solid #e60019;
}
.prize-select.input-error {
	border: 2px solid #e60019;
	padding: 10px;
	border-radius: 6px;
}
.error-message-global {
	background: #ffe5e5;
	color: #e60019;
	padding: 12px;
	border-radius: 6px;
	margin-bottom: 20px;
	font-weight: bold;
	text-align: center;
}
/* ボタン */
.btn-submit {
	background: #e60019;
	color: #fff;
	padding: 15px 40px;
	font-size: 1.2rem;
	border-radius: 8px;
	border: none;
}
.btn-submit:disabled {
	background: #ccc;
	cursor: not-allowed;
}
/* フォーム送信後 */
.success-message {
	background: #e6ffed;
	color: #008a1b;
	padding: 15px;
	border-radius: 6px;
	margin-bottom: 20px;
	text-align: center;
	font-weight: bold;
}

/* ===== 応募規約 ====== */
.rules {
	background: #f7f7f7;
	padding-top: 100px;
	padding-bottom: 30px;
}
.rules-wrapper {
	background: #fff;
	font-size: 16px;
	padding: 30px;
	border-radius: 10px;
	max-width: 800px;
	margin: 0 auto;
}
.rules-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
}
.rules-section {
	margin-bottom: 25px;
}
.rules-section h3 {
    font-size: 18px;
    font-weight: bold;
    color: #000;
    margin-bottom: 15px;
}
.rules-section h4 {
	font-size: 16px;
	text-decoration: underline;
}
.rules-section ul {
    padding-left: 30px;
}
.rules-section li {
    margin-bottom: 10px;
    line-height: 1.6;
}
.rules-intro, .rules-section p {
    line-height: 1.8;
    color: #000;
}
/* デコレーションなし */
.list-no-dec {
    list-style: none;
}
/* 禁止事項のリスト */
.rules-section ul.list-unstyled li {
    font-size: 14px;
    margin-bottom: 5px;
}
/* 注意事項リストのスタイル */
.list-note {
    list-style: none;
    padding-left: 1.2em;
    margin-top: 10px;
}
.list-note li {
    position: relative;
    line-height: 1.6;
    margin-bottom: 5px;
    text-indent: -0.8em; /* ぶら下げ */
}
/* 疑似要素で ※ を表示 */
.list-note li::before {
    content: "※";
    display: inline-block;
    width: 0.8em;
    text-indent: 0; /* text-indentの影響をリセット */
	font-size: 1.1rem;
	font-weight: normal;
}
@media (max-width:768px){
	.rules-wrapper {
		font-size: 14px;
	}
	.rules-section ul {
		padding-left: 15px;
	}
}

/* ===== ユーザーボイスページ ====== */
.user-voice {
	background: #f4f1e8;
	padding-top: 100px;
	padding-bottom: 30px;
}
.voice-grid {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 20px;
}
/* トリミング */
.voice-img img {
	width: 100%;
	height: 250px;
	object-fit: cover;
	border-radius: 15px;
}
/* タブ */
.voice-tabs {
	display: flex;
	justify-content: center;
	gap: 45px;
	margin-bottom: 45px;
}
/* ボタン */
.voice-tab {
	color: #fff;
	text-decoration: none;
	font-size: 1.25rem;
	font-weight: bold;
	text-align: center;
	transition: all .3s ease;
	border-radius: 10px;
	padding: 15px 60px;
}
/* 色 */
.voice-tab.green {
	background: #008a1b;
	border: 2px solid #008a1b;
}
.voice-tab.orange {
	background: #f0850b;
	border: 2px solid #f0850b;
}
.voice-tab.green:hover {
	background: #fff;
	color: #008a1b;
	border: 2px solid #008a1b;
}
.voice-tab.orange:hover {
	background: #fff;
	color: #f0850b;
	border: 2px solid #f0850b;
}
.voice-tab.active {
	box-shadow: 0 3px 8px rgba(0,0,0,0.2);
}
/* 第2弾：公開前ボタン */
.voice-tab.coming {
	position: relative;
	/*min-width: 200px;*/
	background: #f0850b;
	color: #fff;
	border: 2px solid #f0850b;
	overflow: hidden;
	cursor: not-allowed;
}
.voice-tab .label-coming {
	display: none;
}
/* PC だけ hover を有効にする */
@media (hover: hover){
	.voice-tab.coming:hover {
		background: #fff !important;
        color: #f0850b !important;
		min-width: 316px;
	}
	.voice-tab.coming:hover .label-default {
        display: none !important;
    }
    .voice-tab.coming:hover .label-coming {
        display: inline !important;
    }
}
/*　リスト　*/
.voice-list {
	column-count: 3;
	column-gap: 30px;
}
.voice-card {
	break-inside: avoid;
	margin-bottom: 30px;
}
/* ページャー */
.pagination {
	display: block;
	width: 100%;
	text-align: center;
	margin-top: 30px;
	padding: 0 30px;
}
.pagination .page-numbers {
    display: inline-flex !important;
    padding-left: 0;
    list-style: none;
    border-radius: 0.25rem;
    justify-content: center;
}
.pagination .page-numbers li a, 
.pagination .page-numbers li span {
    display: block;
    padding: 10px 15px;
    border: 1px solid #dee2e6;
    margin: 0 2px;
    text-decoration: none;
    color: #28a745;
    background-color: #fff;
    line-height: 1;
}
.pagination .page-numbers li a:hover {
    background-color: #e9ecef;
}
.pagination .page-numbers li .current {
    background-color: #28a745 !important;
    color: #fff !important;
    border-color: #28a745 !important;
}
@media (max-width:768px){
	.voice-tabs {
		flex-direction: column;
		align-items: center;
		gap: 15px;
		margin-bottom: 30px;
	}
	.voice-tab {
		width: 90%;
		font-size: 1.6rem;
		text-align: center;
		padding: 15px 30px;
	}
	.voice-tab.coming:hover {
		width: 90%;
	}
	/* SP 第2弾：公開前ボタン  */
	/* 通常時 */
    .voice-tab.coming {
        background-color: #f0850b !important; /* オレンジ */
        color: #fff !important;
    }
	/* クリック（アクティブ）時に中身を切り替える */
    .voice-tab.coming.is-clicked {
        background: #fff !important;
        color: #f0850b !important;
    }
    .voice-tab.coming.is-clicked .label-default {
        display: none !important;
    }
    .voice-tab.coming.is-clicked .label-coming {
        display: inline !important;
    }
	.voice-list {
		column-count: 1;
	}
	/* ページャー */
	.pagination {
		margin-top: 0;
	}
}
