@charset "utf-8";
:root {
	--c_gy: #F8F8F8;
	--c_bk: #505050;
	--c_gr: #00AB73;
	--c_lg: #E6F7F1;
	--c_or: #EE6300;
	--c_lo: #FFE9D1;
}
html {
	visibility: hidden;
	transition: .2s;
}
html.wf-active {
	visibility: visible;
}
body {
	background: var(--c_gy);
	padding: 2rem 0;
}
.fz22 {
	font-size: 2.2rem;
}
.gap1em {
	gap: 0 1em;
}
.clr-red {
	color: red;
}
/*header
---------------------------------------------------------*/
.hWrap {
	width: 90%;
	max-width: 1000px;
	margin: 0 auto;
	gap: 0 3rem;
	position: relative;
}
.hWrap h1 img {
	max-height: 6.5rem;
}
.hWrap .tit {
	gap: 0 1.5rem;
	font-size: 3rem;
	font-weight: 500;
}
.hWrap .tit span {
	display: inline-block;
	background: var(--c_bk);
	color: #fff;
	padding: .2rem 2rem;
	border-radius: .5rem;
	font-size: 50%;
	white-space: nowrap;
}
.hWrap .tit p {
	line-height: 1.1;
}


/*contents
---------------------------------------------------------*/
.contArea {
	background: #fff;
	text-align: left;
	font-size: 1.8rem;
	border-radius: 2rem;
	box-shadow: 0 0 3rem 0 rgba(0, 0, 0, 0.10);
	overflow: hidden;
}
.contHeader {
	background: var(--c_bk);
	color: #fff;
	padding: 1rem 3rem;
}
#shop {
	font-size: 87.5%;
	width: auto;
	color: #fff;
	padding: .5rem;
}
#shop option {
	color: #000;
}
.contWrap {
	padding: 3rem 5rem;
}
.field01 {
	gap: 2rem 4rem;
	margin-bottom: 2rem;
}
.orderNum {
	width: 36.5rem;
}
.orderNum dt small {
	display: block;
	font-size: 1.2rem;
	white-space: nowrap;
	margin-left: -0.5em;
}
.orderNum dd {
	flex: 1;
}
.orderNum input[type="text"] {
	width: 100%;
}
.errortxt {
	display: none;
	color: red;
	font-size: 1.2rem;
}
input[type="text"],input[type="tel"],input[type="email"] {
	background: #fff;
	border: 1px solid #dcdcdc;
	padding: .5rem;
	font-size: 2.8rem;
	width: 24rem;
	max-width: 100%;
}
.inputCont input {
	margin-right: .25em;
}
#result {
	background: transparent;
	border: none;
	padding: 0;
	text-align: center;
}
.inputWrap {
	gap: 1rem 4rem
}
.inputWrap dl{
	background: var(--c_lg);
	border-radius: 2rem;
	padding: 2rem 5rem;
	max-width: 100%;
}
.inputWrap dt {
	color: var(--c_gr);
	margin-bottom: 1.5rem;
}
.inputWrap dt small {
	font-size: 1.2rem;
}
.grantResult {
	margin-top: 1.5rem;
}
.grantResult p {
	color: var(--c_gr);
}
.grantResult .resultPt {
	display: block;
	text-align: center;
	border-bottom: 1px solid var(--c_gr);
	width: 11.5rem;
	font-size: 112.5%;
}
.toggleBtn {
	margin-top: 3rem;
	background: var(--c_gy);
	border-top: 1px solid var(--c_or);
	padding: .7rem 2rem;
	cursor: pointer;
	transition: .2s;
	position: relative;
}
.toggleBtn:hover {
	color: var(--c_or);
}
.toggleBtn .arw,
.toggleBtn .vie {
	position: absolute;
	top: 50%;
	right: 2rem;
	transform: translateY(-50%) rotate(180deg);
	z-index: 1;
	width: 3rem;
}
.toggleBtn.act .arw,
.toggleBtn.view .arw {
	transform: translateY(-50%) rotate(0deg);
}
.toggleBtn .arw svg {
	display: block;
	max-width: 100%;
}
.toggleArea {
	display: none;
}
.inputArea._02 {
	margin-top: 3rem;
	display: none;
}
.inputArea._02 .inputWrap dl {
	background: var(--c_lo);
}
.inputArea._02 .inputWrap dt {
	color: var(--c_or);
}
.btnWrap {
	margin-top: 3rem;
	gap: 1rem 3rem;
}
.btnWrap li {
	flex: 1;
	max-width: 32rem;
}
.btnWrap li.kanri {
	order: -1;
}
.btn {
	background: var(--c_gr);
	text-align: center;
	color: #fff;
	border-radius: 1rem;
	padding: 1.7rem 0 2rem;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	transition: .4s;
	font-family: "zen-kaku-gothic-new", sans-serif;
	font-weight: 400;
	font-style: normal;
	position: relative;
}
.btn::after {
	content: "";
	display: block;
	background: url(../img/arrow.svg) center center no-repeat;
	background-size: contain;
	width: 2rem;
	height: 2rem;
	position: absolute;
	top: 50%;
	right: 2rem;
	transform: translateY(-50%);
	z-index: 1;
}
.btn:hover {
	background: var(--c_bk)!important;
}
.btn._02 {
	background: #fff;
	color: var(--c_bk);
	border: 1px solid var(--c_bk);
}
.btn._02:hover {
	background: var(--c_lg)!important;
	color: var(--c_gr);
	border-color: var(--c_lg);
}
.btn._03 {
	background: #95C8ED;
}
.btn._03:hover {
	background: #B3DFFF!important;;
}
.btn._02::after,
.btn._03::after {
	display: none;
}
#submit[disabled] {
	background: #dcdcdc;
	pointer-events: none;
}
.qrImgBox {
	width: 30rem;
	margin-right: 4rem;
}
.qrImg {
	border: 1px solid #dcdcdc;
}
.urlTxt {
	display: flex;
}
.urlTxt input {
	flex: 1;
	padding: .2rem;
	font-size: 80%;
	width: auto;
	field-sizing: inherit;
}
.urlTxt span {
	background: var(--c_gr);
	color: #fff;
	font-size: 1.2rem;
	text-align: center;
	padding: .5rem;
	width: 6rem;
	white-space: nowrap;
	margin-left: 1rem;
}
.pointCont {
	flex: 1;
}
.pointCont input {
	width: auto;
	border: none;
	padding: 0;
	background: transparent;
	font-weight: 300;
}
.pointCont dt {
	border-bottom: 1px solid #dcdcdc;
	padding-bottom: 1rem;
	margin-bottom: 3rem;
}
.pointTxt {
	background: var(--c_lg);
	padding: 1rem 2rem;
	display: flex;
	align-items: center;
	gap: 1rem;
}
.pointTxt p {
	display: flex;
	align-items: center;
	gap: .5rem;
	color: var(--c_gr);
}
#total {
	max-width: 11rem;
	text-align: center;
	font-size: 220%;
	color: var(--c_gr);
}
#plusminus {
	width: 8.7rem;
	text-align: center;
	background: var(--c_gr);
	color: #fff;
	padding: .5rem;
	border-radius: .5rem;
	font-size: 87.5%;
	font-family: "zen-kaku-gothic-new", sans-serif;
	font-weight: 400;
	font-style: normal;
}
.btmTxt {
	margin-top: 2rem;
}
.notice {
	background: #FFE9D1;
	color: #D24141;
	font-weight: 500;
	padding: .5rem 2rem .7rem;
	margin-top: 1.5rem;
	max-width: 60rem;
}
.payment {
	background: #E6F4FF;
	padding: .5rem 2rem;
	font-weight: 500;
	margin-top: 1.5rem;
	border: .2rem solid #95C8ED;
}
.payment span {
	display: inline-block;
	border-radius: .5rem;
	padding: .5rem 1.5rem;
	margin: 0 .5rem;
	background: #fff;
	border: 1px solid #95C8ED;
	line-height: 1;
	font-size: 120%;
}
.payment .note {
	display: block;
	font-size: 75%;
	margin-top: .5rem;
}
#back {
	background: #AAA;
}
#back::after {
	right: auto;
	left: 2rem;
	transform: translateY(-50%) rotate(180deg);
}
#complete::after {
	display: none;
}
.thxBox {
	padding: 8rem 4rem;
	text-align: center;
}
.thxBox .btn {
	display: block;
	max-width: 400px;
	margin: 5rem auto 0;
}
.thxBox strong {
	font-size: 125%;
}
.raitenWrap {
	padding: 4rem 2rem;
	text-align: center;
}
.raitenWrap h2 {
	color: var(--c_gr);
}
.raitenQr .img {
	max-width: 450px;
	margin: 0 auto;
}
.raitenWrap .btn {
	display: block;
	max-width: 400px;
	margin: 5rem auto 0;
}
.raitenField {
	position: relative;
	font-weight: 400;
	max-width: 38.7rem;
	width: 100%;
}
.raitenField input[type="checkbox"] {
	opacity: 0;
	width: 0;
	margin: 0;
	pointer-events: none;
	z-index: -999;
	position: absolute;
}
.raitenField label {
	background: var(--c_lg);
	display: block;
	font-size: 2.1rem;
	letter-spacing: .1em;
	position: relative;
	padding: .5rem 1.5rem .5rem 8.2rem;
	margin: 0;
	letter-spacing: normal;
	transition: .3s;
	color: var(--c_gr);
	border: 2px solid var(--c_lg);
	border-radius: 1.2rem;
}
.raitenField label::before {
	content: '';
	display: block;
	width: 2rem;
	height: 2rem;
	border: 2px solid var(--c_gr);
	background: #fff;
	position: absolute;
	left: 5rem;
	top: .9rem;
	-webkit-transition: all .3s, border-color .08s;
	transition: all .3s, border-color .08s;
}
.raitenField label:hover {
	color: var(--c_gr);
	background: none;
}
.raitenField label:hover::before {
	transform: scale(1.2)
}
.raitenField input[type="checkbox"]:checked + label:before {
	width: 1rem;
	top: .5rem;
	border-radius: 0;
	border-color: #ff0000;
	background: none;
	border-top-color: transparent;
	border-left-color: transparent;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
.raitenField input[type="checkbox"]:checked + label {
	border-color: var(--c_gr);
}

/*Admin
---------------------------------------------------------*/
#admin .container {
	max-width: 1400px;
}
#admin_table_filter label {
	margin-bottom: 1rem;
}
#admin .dataTables_wrapper .dataTables_filter input {
	background: #fff;
}
.searchTxt {
	background: #d9d9d9;
	display: inline-block;
	padding: .3rem .5rem .5rem;
	font-size: 1.2rem;
	margin-right: 0.5rem;
}
#admin table {
	background: #fff;
	border-top: 1px solid #ddd;
	border-left: 1px solid #ddd;
	border-bottom: none!important;
	white-space: nowrap;
}
#admin table th,
#admin table td {
	border-right: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
	text-align: left;
	font-weight: 500;
	line-height: 1.2;
}
#admin table th:nth-of-type(7),
#admin table td:nth-of-type(7) {
	color: red;
}
#admin table th.hide,
#admin table td.hide {
	display: none!important;
}
#admin table td {
	font-weight: 400;
}
#admin thead {
	background: var(--c_lg);
}
#admin thead th::before,#admin thead th::after {
	color: var(--c_gr);
}
#admin thead th.sorting_asc:before,
#admin thead th.sorting_desc::after {
	opacity: 1;
}
#admin thead th:last-of-type {
	background: var(--c_lo);
}
#admin thead th:last-of-type::before,#admin thead th:last-of-type::after {
	color: var(--c_or);
}
#admin .paginate_button {
	background: none;
	border: none;
}
#admin .paginate_button:not(.current):hover {
	text-decoration: underline;
	color: var(--c_gr)!important;
}
#admin .paginate_button.current {
	color: var(--c_gr)!important;
}
#admin .paginate_button.previous,
#admin .paginate_button.next {
	background: url(../img/arrow_gr.svg);
	background-size: contain;
	border-radius: 50%;
	width: 3rem;
	height: 3rem;
	color: transparent!important;
	padding: 0;
	font-size: 0;
}
#admin .paginate_button.previous {
	transform: rotate(180deg);
}
#admin .dataTables_paginate {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 1rem;
	margin-top: 3rem;
}
#admin .dataTables_wrapper .dataTables_length select {
	background: #fff;
	appearance: auto;
}
#admin label:hover {
	background: transparent;
}
.tblHead {
	margin-bottom: 2rem;
}
.tblHead a {
	background: var(--c_gr);
	color: #fff;
	text-align: center;
	padding: .5rem 2rem .7rem;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0 1rem;
	border-radius: .8rem;
}
.tblHead a::after {
	content: "";
	display: block;
	background: url(../img/dl.svg) center center no-repeat;
	background-size: contain;
	width: 1.4rem;
	height: 1.5rem;
	margin-bottom: -0.3rem;
}
.backBtn a {
	background: #aaa;
	flex-direction: row-reverse;
}
.backBtn a::after {
	background-image: url(../img/arrow.svg);
	width: 1.6rem;
	height: 1.6rem;
	transform: rotate(180deg);
}
.tblHead a:hover {
	opacity: .8;
}

/*ログイン・ログアウト
---------------------------------------------------------*/
.loginWrap {
	text-align: center;
}
.loginWrap h2 {
	font-size: 135%;
}
.loginWrap form {
	font-size: 125%;
}
.loginWrap .btn {
	max-width: 25rem;
	margin: 3rem auto 0;
}
.loginWrap label {
	padding: .5rem;
}
.loginWrap input {
	max-width: 26rem;
	padding: 1rem;
	font-size: 2rem;
	margin: 0 auto;
}
.loginWrap .txt a {
	text-decoration: underline;
	color: var(--c_gr);
}
.logoutBtn {
	position: absolute;
	z-index: 5;
	top: -1rem;
	right: 0;
}
.logoutBtn button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #000;
	color: #fff;
	font-family: "zen-kaku-gothic-new", sans-serif;
	font-weight: 500;
	font-size: 1.5rem;
	line-height: 1.1;
	text-align: center;
	border-radius: .5rem;
	padding: 1rem 1.5rem;
	letter-spacing: -.05em;
	transition: .2s;
}
.logoutBtn button::after {
	content: "";
	display: block;
	background: url(../img/logout.svg) center center no-repeat;
	background-size: contain;
	width: 1.8rem;
	margin-left: 0.5rem;
	aspect-ratio: 1;
}
.logoutBtn button:hover {
	opacity: .5;
}

/*ieハック*/
@media screen\0  {
}

/*********************************/
/* タブレット用のスタイル記述 */
/*********************************/
@media screen and (max-width: 1150px) {
	html {
		font-size: .8695652vw;
	}
}

/*********************************/
/* スマートフォン用のスタイル記述 */
/*********************************/
@media screen and (max-width: 780px) {
/*全体レイアウト
---------------------------------------------------------*/
	html {
		font-size: 2.7777777vw;
	}
	body {
		font-size: 1.4rem;
		line-height: 1.5
	}
	body.active {
		overflow: hidden;
	}
	article > section {
		padding: 3rem 0;
	}
	.fz22 {
		font-size: 1.8rem;
	}
	/*header
	-------------------------------------------------------*/
	.hWrap {
		display: block;
	}
	.hWrap h1 img {
		max-height: 5rem;
	}
	.hWrap .tit {
		font-size: 2rem;
		justify-content: center;
		margin-top: 1rem;
	}
	.hWrap .tit span {
		font-size: 1.4rem;
		padding: .2rem 1.5rem;
	}
	.contArea {
		font-size: 1.4rem;
		border-radius: 1rem;
	}
	.contHeader {
		padding: 1rem 2rem;
	}
	.contWrap {
		padding: 2rem;
	}
	.orderNum {
		width: 100%;
		display: block;
	}
	.orderNum dd {
		display: block;
		margin-top: 0.5rem;
	}
	.inputWrap dl {
		padding: 2rem;
		width: 100%;
		border-radius: 1rem;
	}
	.inputWrap dt {
		margin-bottom: 0.5rem;
	}
	.inputCont input {
		max-width: 20rem;
	}
	.raitenField label {
		font-size: 1.8rem;
		white-space: nowrap;
		border-radius: 1rem;
		padding: .5rem .5rem .5rem 5rem;
	}
	.raitenField label::before {
		width: 1.6rem;
		height: 1.6rem;
		left: 2rem;
	}
	.toggleBtn {
		margin-top: 3rem;
		font-size: 1.6rem;
		padding: .7rem 1rem;
	}
	.toggleBtn .arw {
		width: 2rem;
		right: 1rem;
	}
	.btnWrap {
		flex-direction: column-reverse;
	}
	.btnWrap li {
		max-width: 100%;
	}
	.btnWrap li.dammy {
		display: none;
	}
	.qrWrap {
		display: block;
	}
	.qrImgBox {
		width: 100%;
		margin: 0 0 3rem;
	}
	.date {
		font-size: 1.6rem;
	}
	.pointTxt {
		display: block;
		text-align: center;
	}
	.pointTxt p {
		justify-content: center;
		margin-bottom: 0.5rem;
	}
	.btmTxt {
		text-align: justify;
	}
	.notice {
		margin-top: 2rem;
	}
	.payment {
		padding: 1rem;
		text-align: center;
		font-feature-settings: "palt";
	}
	.payment span {
		padding: .4rem 1rem;
	}
	.thxBox {
		padding: 4rem 2rem;
		text-align: center;
	}
	.thxBox strong {
		font-size: 112.5%;
	}
	.thxBox .btn,
	.raitenWrap .btn {
		margin-top: 2rem;
		font-size: 1.6rem;
	}
	/*admin
	------------------------------------------------------*/
	#admin .paginate_button.previous, #admin .paginate_button.next {
		width: 2rem;
		height: 2rem;
	}
	#admin .dataTables_paginate {
		margin-top: 1.5rem;
	}
	.logoutBtn {
		top: -1rem;
		right: -1rem;
		text-align: right;
	}
	.logoutBtn button {
		font-size: 1.2rem;
		padding: .8rem 1rem
	}










}

