﻿/*****************************************************************

	返礼品詳細ページ用スタイルシート定義.

*****************************************************************/
@charset "utf-8";

/* =============================================== */
/* ボタンデザイン                                  */
/* =============================================== */

.c-btn_more {
	display: block;
	position: relative;
	margin: 0 auto 40px;
	padding: 15px 0;
	text-align: center;
	width: 100%;
	max-width: 250px;
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	background-color: #1a95b0;
	border-radius: 50vh;
	transition: 0.3s;
	letter-spacing: 0.1em;
}

	.c-btn_more::before {
		content: '';
		position: absolute;
		top: 50%;
		right: 9px;
		transform: translateY(-50%);
		width: 35px;
		height: 35px;
		background-color: #ffffff;
		border-radius: 50vh;
	}

	.c-btn_more::after {
		content: '';
		position: absolute;
		top: 50%;
		right: 24px;
		transform: translateY(-50%) rotate(45deg);
		width: 8px;
		height: 8px;
		border-top: 2px solid #1a95b0;
		border-right: 2px solid #1a95b0;
	}

	.c-btn_more:hover::after {
		border-top: 2px solid #3d3a2b;
		border-right: 2px solid #3d3a2b;
	}

	.c-btn_more:hover {
		background: var(--color-font-base);
		opacity: 1;
	}


/* =============================================== */
/* 注意事項のボックスデザイン                      */
/* =============================================== */

.textNotesBox {
	background: var(--color-bg-light);
	/* 上 | 左右 | 下 */
	padding: 20px 10px 5px;
	position: relative;
	color: red;
	font-size: 12px;
	box-shadow: inset 0px 0px 0 1px var(--color-bg-button);
	width: 100%;
	/* 上 | 左右 | 下 */
	margin: 30px auto 5px;
}

@media screen and (min-width: 768px) {
	.textNotesBox {
		font-size: 14px;
	}
}

.textNotesBox::before {
	background-color: var(--color-bg-button);
	color: var(--color-bg-light);
	content: "注意事項";
	font-weight: bold;
	left: 50%;
	transform: translateX(-50%);
	/* 上下 | 左右 */
	padding: 3px 0;
	position: absolute;
	top: -17px;
	font-size: 13px;
	width: 100%;
	text-align: center;
	display: block;
	white-space: nowrap;
}

@media screen and (min-width: 768px) {
	.textNotesBox::before {
		font-size: 15px;
		top: -19px;
	}
}

.textNotesBox_inner {
	/* 上 | 左右 | 下 */
	/*margin: 35px 0 30px;*/
	font-size: 12px;
	text-align: left;
}

/*EOF*/
