@charset "utf-8";
/* CSS Document */
@media screen and (min-width: 768px) {
}
body {
	font-size: 16px;
	overflow: hidden;
}
body.fixed {
	position: fixed;
	width: 100%;
}
button {
	cursor: pointer;
}
img {
	width: 100%;
	height: auto;
}
p,a,li,dt,dd,th,td,.f-go,button {
font-family: "Noto Sans JP", sans-serif;
font-weight: normal;
font-style: normal;
	color: #000;
	letter-spacing: 0.05em;
}
h1,h2,h3,h4 {
font-family: "Noto Sans JP", sans-serif;
font-weight: bold;
font-style: normal;
	color: #000;
	letter-spacing: 0.05em;
}
.block {
	display: block;
}
.wrap {
	background-color: #FBF8F3;
	min-height: 100vh;
	padding-top: 8vh;
}
.top h1 {
	font-size: 20px;
	text-align: center;
	font-weight: bold;
	color: #161616;
	text-shadow: 2px 2px 0 rgba(255,255,255,1.0);
	margin-bottom: 1.5em;
	padding-top: 120px;
	background: center top / auto 100px url("../img/top_img01.png") no-repeat;
}
.top h1 .block {
	line-height: 1.3;
}
.top .messageBox {
	text-align: center;
	margin-bottom: 20px;
}
.top .messageBox p {
	display: inline-block;
	text-align: center;
}
.top .messageBox p .text {
	font-size: 16px;
	font-weight: bold;
	color: #FFF;
	display: block;
	line-height: 2.2em;
	padding: 0 1.2em;
	background-color: #BB2225;
	border-radius: 1.1em;
	border: 2px solid #FFF;
}
.loginBox {
	
}
.loginBox .boxIn {
	display: table;
	width: 80%;
	max-width: 420px;
	margin: 0 auto;
	background-color: #FFFFFF;
	border-radius: 15px;
	padding: 15px;
	font-family: "Noto Sans JP", sans-serif;
	box-shadow: 0 2px 3px rgba(0,0,0,0.1);
	margin-bottom: 25px;
}
.loginBox .boxIn .row {
	display: table-row;
}
.loginBox .boxIn .row > div {
	display: table-cell;
	vertical-align: middle;
	padding: 8px;
}
.loginBox .boxIn .row > div.label {
	font-size: 15px;
	width: 4em;
}
.loginBox .boxIn .row > div.input {
	width: 300px;
}
.loginBox .boxIn .row > div.input input {
	width: 100%;
	font-size: 16px;
	background-color: #C9D7FF;
	padding: 0.5em 0.8em;
	border-radius: 12px;
}
.loginBox .btnBox {
	text-align: center;
}
.loginBox .btnBox button {
	font-size: 18px;
	font-weight: bold;
	color: #FFF;
	padding: 0.5em 2.5em 0.5em 1em;
	background-color: #1B1597;
	border: 2px solid #FFF;
	border-radius: 12px;
	box-shadow: 0 2px 3px rgba(0,0,0,0.3);
	position: relative;
}
.loginBox .btnBox button::after {
	content: "";
	display: table-cell;
	width: 1em;
	height: 1em;
	background: center center / auto 80% url("../img/login.png") no-repeat;
	position: absolute;
	right: 0.8em;
	top: 50%;
	transform: translateY(-50%);
}
.bottomMessage {
	padding: 20px;
}
.bottomMessage p {
	text-align: center;
	font-size: 14px;
	color: #344155;
}
.bottomMessage p a {
	color: #BF2B2E;
	text-decoration: underline;
}
@media screen and (max-width:767px) {
	.top h1 {
	  font-size: 5vw;
	  padding-top: 30vw;
	  background: center top / auto 28vw url("../img/top_img01.png") no-repeat;
	}
	.top .messageBox p .text {
	  font-size: 3vw;
	}
	.loginBox .boxIn {
	  width: 80%;
	  max-width: 80%;
	  border-radius: 4vw;
	  padding: 3vw;
	  margin-bottom: 5vw;
	}
	.loginBox .boxIn .row > div.input {
	  width: 100%;
	}
	.loginBox .boxIn .row > div.label {
	  font-size: 4vw;
	}	
	.loginBox .boxIn .row > div.input input {
	  font-size: 4vw;
	  border-radius: 6vw;
	}	
	.loginBox .btnBox button {
	  font-size: 5vw;
	  border-radius: 4vw;
	}
	.bottomMessage p,
	.bottomMessage p a
	{
	  font-size: 3.4vw;
	}	
}
.wrap.pages {
	background-color: #FBF8F3;
	min-height: 100vh;
	position: relative;
	padding-top: 0;
	padding-bottom: 80px;
}
.fixHead {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	background-color: #618CC0;
	z-index: 999;
}
.fixHead .headRow {
	display: table;
}
.fixHead .headRow > div {
	display: table-cell;
	height: 60px;
	vertical-align: middle;
}
.fixHead .navArea {
	position: fixed;
	right: -100%;
	padding: 15px;
	background-color: #FFF;
	transition: 0.3s all ease;
}
.open .fixHead .navArea {
	right: 0;
}
.fixHead .navArea ul {
}
.fixHead .navArea ul li {
	font-size: 16px;
	padding: 0.2em 0;
}
.fixHead .navArea ul li a {
	display: block;
	font-size: 1.0em;
	font-weight: 500;
	color: #293F84;
	line-height: 2.2em;
	border-radius: 10px;
	padding: 0 1.2em;
}
.fixHead .navArea ul li.btnBlue a {
	background-color: #1F2FAC;
	color: #FFF;
	text-align: center;
}
.fixHead .navArea ul li.btnOrange a {
	background-color: #E07E1E;
	color: #FFF;
}
.fixHead .navArea ul li.btnGreen a {
	background-color: #199A1C;
	color: #FFF;
	text-align: center;
}
.fixHead .navArea ul li.btnLogout a {
	text-align: center;
	text-decoration: underline;
	font-size: 0.8em;
}
.fixHead .headRow > div.pageName {
	padding: 0 15px;
	background-color: #334B7E;
}
.fixHead .headRow > div.pageName h1 {
	font-size: 22px;
	color: #FFF;
	font-weight: bold;
}
.fixHead .headRow > div.loginStatus {
	border-left: 6px solid #A7B6CB;
	padding-left: 12px;
}
.fixHead .headRow > div.loginStatus p {
	font-size: 12px;
	line-height: 1.0;
	color: #C1CED7;
}
.fixHead .headRow > div.loginStatus p .name {
	font-size: 1.2em;
	color: #FFF;
	font-weight: bold;
	padding-right: 0.3em;
}
.fixHead .headRow > div .logOut {
	padding-top: 0.4em;
	vertical-align: top;
}
.fixHead .headRow > div .logOut > .btn {
	vertical-align: top;
	display: inline-block;
}
.fixHead .headRow > div .logOut a {
	display: block;
	font-size: 12px;
	font-weight: bold;
	color: #FFF;
	text-decoration: underline;
	vertical-align: top;
}
.navBtn {
	position: fixed;
	right: 10px;
	top: 10px;
	background-color: #FFF;
	display: table-cell;
	width: 40px;
	height: 40px;
	cursor: pointer;
}
.navBtn .btnIn {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
	display: table-cell;
	width: 30px;
	height: 30px;
}
.navBtn .btnIn .border {
	display: table-cell;
	width: 100%;
	height: 4px;
	background-color: #618CC0;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translateX(-50%) translateY(-50%) rotate(0);
	transition: 0.3s all ease;
}
.navBtn .btnIn .border:nth-child(1) {
	transform: translateX(-50%) translateY(-12px) rotate(0);
}
.navBtn .btnIn .border:nth-child(2) {
	transform: translateX(-50%) translateY(-50%) rotate(0);
}
.navBtn .btnIn .border:nth-child(3) {
	transform: translateX(-50%) translateY(8px) rotate(0);
}
.open .navBtn .btnIn .border:nth-child(1) {
	transform: translateX(-50%) translateY(-50%) rotate(225deg);
}
.open .navBtn .btnIn .border:nth-child(2) {
	width: 0;
	transform: translateX(-50%) translateY(-50%) rotate(0);
}
.open .navBtn .btnIn .border:nth-child(3) {
	transform: translateX(-50%) translateY(-50%) rotate(-225deg);
}
@media screen and (max-width: 767px) {
	.fixHead .headRow > div {
	  height: 11vw;
	}
	.fixHead .headRow > div.pageName h1 {
	  font-size: 3.4vw;
	}
	.fixHead .headRow > div.pageName {
	  padding: 0 3vw;
	}	
	.fixHead .headRow > div.loginStatus {
	  border-left: 1.2vw solid #A7B6CB;
	  padding-left: 2vw;
	}	
	.fixHead .headRow > div.loginStatus p {
	  font-size: 2.2vw;
	}	
	.fixHead .headRow > div .logOut a {
	  font-size: 2.2vw;
	}	
	.fixHead .headRow > div .logOut {
	  padding-top: 1vw;
	}	
	.navBtn {
	  right: 2vw;
	  top: 1.5vw;
	  width: 8vw;
	  height: 8vw;
	}	
	.navBtn .btnIn {
	  width: 6vw;
	  height: 6vw;
	}	
	.navBtn .btnIn .border {
	  height: 0.8vw;
	}	
	.navBtn .btnIn .border:nth-child(1) {
		transform: translateX(-50%) translateY(-2.2vw) rotate(0);
	}
	.navBtn .btnIn .border:nth-child(2) {
		transform: translateX(-50%) translateY(-50%) rotate(0);
	}
	.navBtn .btnIn .border:nth-child(3) {
		transform: translateX(-50%) translateY(1.6vw) rotate(0);
	}
	.fixHead .navArea {
	  padding: 4vw;
	}
	.fixHead .navArea ul li {
	  font-size: 5vw;
	}
	.fixHead .navArea ul li a {
	  border-radius: 2vw;
	}	
}
.dashboardMenu {
	width: 92%;
	max-width: 600px;
	margin: 0 auto;
	padding: 40px 0;
}
.dashboardMenu li {
	padding: 8px 0;
}
.dashboardMenu li a {
	display: block;
	font-size: 18px;
	line-height: 3.2em;
	padding: 0 1.0em;
	background-color: #FFF;
	color: #1F3A90;
	border: 2px solid #1F3A90;
	border-radius: 6px;
}
.dashboardMenu li.btnOrange a {
	color: #BD2A15;
	border: 2px solid #BD2A15;
}
.dashboardMenu li.btnGreen a {
	color: #359C12;
	border: 2px solid #359C12;
}
@media screen and (max-width: 767px) {
	.dashboardMenu {
	  max-width: 92%;
	  padding: 4vw 0;
	}
	.dashboardMenu li {
	  padding: 0.8vw 0;
	}	
	.dashboardMenu li a {
	  font-size: 3.8vw;
	  border-radius: 1vw;
	}	
}
.pageTitle {
	padding: 30px 0;
}
.pageTitle h2 {
	color: #373737;
	font-size: 20px;
	font-weight: bold;
	letter-spacing: 0.2em;
	transform: translateX(-0.1em);
	text-align: center;
}
.historyBox {
	width: 92%;
	max-width: 600px;
	margin: 0 auto;
	background-color: #FFF;
	padding: 10px 15px;
	border: 2px solid #618CC0;
}
.historyBox .head {
	display: table;
	width: 100%;
}
.historyBox .head > div {
	display: table-cell;
	vertical-align: middle;
}
.historyBox .head > div p {
	color:#618CC0;
}
.historyBox .head > div p .white {
	background-color: #FFF;
	display: inline-block;
	margin-left: 0.6em;
	border-radius: 6px;
}
.historyBox .head > div p .white .text {
	display: block;
	color: #A2080A;
	line-height: 1.8;
	padding: 0;
}
.historyBox .head > div.prevStockBox {
	text-align: right;
}
.historyBox .head > div.prevStockBox button {
	font-size: 15px;
  font-weight: bold;
  color: #FFF;
  padding: 0.5em 1em;
  background-color: #9A0A0D;
  border: 2px solid #FFF;
  border-radius: 12px;
  box-shadow: 0 2px 3px rgba(0,0,0,0.3);
  position: relative;
}
.historyBox .bottom {
	padding-top: 6px;
}
.historyBox .bottom p {
	background-color: #24780C;
	font-size: 16px;
	color: #FFF;
	text-align: center;
	line-height: 1.6;
}
@media screen and (max-width:767px) {
	.pageTitle {
	  padding: 4vw 0;
	}	
	.pageTitle h2 {
	  font-size: 5vw;
	}	
	.historyBox {
	  width: 92%;
	  max-width: 92%;
	  padding:2vw;
	}
	.historyBox .head {
	  display: block;
	}
	.historyBox .head > div {
	  display: block;
	}	
	.historyBox .head > div p {
		font-size: 3.4vw;
	}
	.historyBox .head > div.prevStockBox {
	  text-align: center;
	}
	.historyBox .head > div.prevStockBox button {
	  font-size: 4vw;
	  padding: 0.6em;
	  border-radius: 2vw;
	}
	.historyBox .bottom p {
	  font-size: 3.4vw;
	}	
}

.listWrap {
	width: 92%;
	max-width: 600px;
	margin: 30px auto;
	display: table;
}
.listWrap .switchRow {
	display: table-row;
}
.listWrap .switchRow li {
	display: table-cell;
	text-align: center;
	padding: 0 4px;
	cursor: pointer;
}
.listWrap .switchRow li .text {
	line-height: 2.8;
	font-size: 15px;
	font-weight: bold;
	letter-spacing: 0.1em;
	display: block;
	border-top-left-radius: 12px;
	border-top-right-radius: 12px;
	border: 2px solid #FFF;
}
.listWrap .switchRow li:nth-child(1) .text {
	background-color: #052290;
	color: #FFF;
}
.listWrap .switchRow li:nth-child(2) .text {
	background-color: #106000;
	color: #FFF;
}
.listWrap .itemBox {
	display: table-row;
	background-color: #FFF;
}
.listWrap .itemBox > div {
	display: table-cell;
	border-bottom: 3px dotted #CCC;
	vertical-align: top;
}
.listWrap .itemBox > div.nameBox {
	padding: 15px;
}
.listWrap .itemBox > div.nameBox p {
	font-size: 14px;
	line-height: 1.3;
}
.listWrap .itemBox > div.stockBox {
	padding: 10px 10px 10px 0;
}

.listWrap .itemBox > div.stockBox .stockRow01 {
	display: block;
}
.listWrap .itemBox > div.stockBox .stockRow02 {
	display: block;
}
.listWrap.itemMove .itemBox > div.stockBox .stockRow01 {
	display: none;
}
.listWrap.listEdit .itemBox > div.stockBox .stockRow02 {
	display: none;
}

.listWrap .itemBox > div.stockBox .prevStock {
	font-size: 13px;
	background-color: #D4D4D4;
	line-height: 1.5;
	padding: 0 1em;
}
.listWrap .itemBox > div.stockBox .presentStock {
	padding: 10px 0;
	font-size: 13px;
	vertical-align: middle;
	line-height: 25px;
	display: table;
	width: 100%;
}
.listWrap .itemBox > div.stockBox .presentStock .cel {
	display: table-cell;
}
.listWrap .itemBox > div.stockBox .presentStock .cel .inline {
	display: inline-block;
	vertical-align: middle;
}
.listWrap .itemBox > div.stockBox .presentStock .cel .inline select {
font-size: 14px;
  background-color: #FFF;
  border-radius: 8px;
  padding: 5px;
  border: 2px solid #396EAD;
	min-width: 3em;
}
.listWrap .itemBox > div.stockBox .presentStock input {
	font-size: 16px;
	background-color: #C5ECFF;
	padding: 0 0.5em;
	line-height: 25px;
	border-radius: 6px;
}
.listWrap .itemBox > div.stockBox .stockRow02 {
	background-color: #D5F1D6;
	border-radius: 6px;
	padding: 8px;
}
.listWrap .itemBox > div.stockBox .stockRow02 > .block {
	font-size: 13px;
	padding: 0 1em;
	line-height: 1.6;
	font-weight: bold;
	color: #FFF;
	background-color: #104B07;
}
.listWrap .itemBox > div.stockBox .stockRow02 > table {
	width: 100%;
}
.listWrap .itemBox > div.stockBox .stockRow02 > table td {
	padding: 6px 0 0;
	vertical-align: middle;
}
.listWrap .itemBox > div.stockBox .stockRow02 > table td:nth-child(2) {
	padding-left: 5px;
	text-align: right;
}
.listWrap .itemBox > div.stockBox .stockRow02 > table td select {
	font-size: 14px;
	background-color: #FFF;
	border-radius: 8px;
	padding: 5px;
	border: 2px solid #396EAD;
}
.listWrap .itemBox > div.stockBox .stockRow02 > table .rowMoveQuantity td select {
	width: 3em;
}
.listWrap .itemBox > div.stockBox .stockRow02 > table td input[type="number"] {
	font-size: 15px;
	padding: 0.3em;
	border-radius: 6px;
}
.listWrap .itemBox > div.stockBox .stockRow02 > table td button {
	font-size: 15px;
	color: #FFF;
	background-color: #215397;
	border:2px solid #FFF;
	border-radius: 8px;
	padding: 0.5em 1em;
	box-shadow: 0 2px 0 rgba(0,0,0,0.3);
}
.cont {
	position: relative;
	z-index: 1;
}
.fixedBtn {
	position: fixed;
	left: 0;
	bottom: 0;
	background-color: #90A1B9;
	width: 100%;
	padding: 15px;
	text-align: center;
}
.fixedBtn button {
	font-size: 18px;
	font-weight: bold;
	letter-spacing: 0.1em;
	color: #FFF;
	padding: 0.5em 1em;
	border: 2px solid #FFF;
	border-radius: 2em;
	background-color: #10359A;
}
@media screen and (max-width: 767px) {
	.listWrap .itemBox > div.nameBox {
	  padding: 2vw 2vw 0;
	}	
	.listWrap .itemBox > div.nameBox p {
	  font-size: 4vw;
	}
	.listWrap .itemBox > div.stockBox .prevStock {
	  font-size: 3vw;
	}	
	.listWrap {
	  width: 92%;
	  max-width: 92%;
	  display: block;
		background-color: transparent;
	}
	.listWrap .itemBox {
	  display: block;
		margin-bottom: 2vw;
		background-color: #FFF;
	}
	.listWrap .itemBox > div {
	  display: block;
		border-bottom: none;
	}	
	.listWrap .itemBox > div.stockBox {
	  padding: 2vw 2vw 2vw 8vw;
	}
	.listWrap .itemBox > div.stockBox .presentStock {
	  padding: 2vw 0;
	  font-size: 4vw;
	  line-height: 6vw;
	}	
	.listWrap .itemBox > div.stockBox .presentStock input {
	  font-size: 4vw;
	  line-height: 6vw;
	  border-radius: 2vw;
	}
	.listWrap .itemBox > div.stockBox .stockRow02 {
	  border-radius: 2vw;
	  padding: 2vw;
	}
	.listWrap .itemBox > div.stockBox .stockRow02 > .block {
	  font-size: 3vw;
	}	
	.listWrap .itemBox > div.stockBox .stockRow02 > table td select {
	  font-size: 3.4vw;
	  border-radius: 2vw;
	  padding: 2vw;
	}
	.listWrap .itemBox > div.stockBox .presentStock .cel .inline select {
	  font-size: 3.4vw;
	  border-radius: 1.5vw;
	  padding: 1vw;
	  min-width: 3em;
	}
	.listWrap .switchRow {
	  display: table;
		width: 100%;
	}	
	.listWrap .switchRow li {
		width: 50%;
		box-sizing: border-box;
	}
	.listWrap .switchRow li .text {
	  line-height: 2.8;
	  font-size: 3.6vw;
	  border-top-left-radius: 4vw;
	  border-top-right-radius: 4vw;
	}	
	
}

.summaryTable {
	width: 94%;
	max-width: 680px;
	margin: 0 auto;
	background-color: #FFF;
	border: 2px solid #FFF;
	border-radius: 6px;
}
.summaryTable th {
	font-size: 14px;
	padding: 0.6em;
	background-color: #334B7E;
	color: #FFF;
	vertical-align: middle;
	border-right: 1px solid #FFF;
}
.summaryTable th .th_text {
	display: block;
}
.summaryTable th.th_zaiko a {
	color: #FFF;
	font-size: 14px;
	text-align: center;
	text-decoration: underline;
}
.summaryTable th.th_summary {
	text-align: center;
}
.summaryTable th.th_zaiko {
	background-color: #AC2C2F;
}
.summaryTable th.th_edit {
	background-color: #52738B;
	text-align: center;
}
.summaryTable td {
	font-size: 14px;
	line-height: 1.2;
	padding: 0.6em;
	border-right: 1px solid #CCC;
	border-bottom: 1px solid #CCC;
}
.alertTable.summaryTable td.td_name {
	font-weight: bold;
	color: #9B080A;
}
.summaryTable td.td_zaiko {
	text-align: right;
}
.summaryTable td.td_zaiko .amount {
	color: #1E3B88;
	font-size: 0.8em;
}
.summaryTable td.td_zaiko .amount .num {
	font-size: 1.2em;
}
.summaryTable td.td_summary {
	text-align: right;
}
.summaryTable td.td_edit {
}
.summaryTable td.td_edit a {
	font-size: 14px;
	color: #1E3486;
}
.summaryTable td.td_edit a::after {
	content: ">";
	padding-left: 0.6em;
}
.summaryTable td.td_name span {
	display: inline-block;
	vertical-align: middle;
}
.summaryTable td.td_name span a {
	display: block;
	padding-left: 1em;
	color: #234593;
	text-decoration: underline;
}
.summaryTable td.td_name span a::before {
	content: "> ";
}
@media screen and (max-width: 767px) {
	.summaryTable td.td_zaiko {
		width: 16%;
	}
	.summaryTable th.th_zaiko a {
		font-size: 3vw;
	}
	.summaryTable th.th_name {
		width: 25%;
	  font-size: 3vw;
	}
	.summaryTable th {
	  font-size: 3vw;
	}	
	.summaryTable th .th_linkrow a {
		font-size: 2.4vw;
	}	
	.summaryTable td {
	  font-size: 3vw;
		vertical-align: middle;
	}
	.summaryTable td.td_name .nameText {
		display: block;
	}	
	.summaryTable td.td_edit a {
	  font-size: 2.4vw;
	  color: #1E3486;
	}	
	.summaryTable td.td_summary {
		width: 13%;
		font-size: 1.1em;
	}
	.summaryTable td span.editLink {
	  display: block;
		text-align: right;
		padding-top: 0.5vw;
	}	
	.summaryTable td span.editLink a {
		font-size: 0.95em;
		text-align: right;
		display: inline-block;
	}
}
.itemInfoTable {
	width: 94%;
	max-width: 600px;
	margin: 0 auto;
	border-left: 1px solid #CCC;
	border-top: 1px solid #CCC;
	font-size: 14px;
}
.itemInfoTable.editItemsBulk {
	max-width: 1200px;
}
.itemInfoTable tr {
}
.itemInfoTable tr th {
	width: 10em;
	vertical-align: middle;
	padding: 0.8em 0.6em;
	border-right: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	background-color: #618CC0;
	font-size: 1em;
	color: #FFF;
}
.itemInfoTable.editItemsBulk tr th.name {
	width: 35%;
}
.itemInfoTable tr td {
	vertical-align: middle;
	padding: 0.8em 0.6em;
	border-right: 1px solid #CCC;
	border-bottom: 1px solid #CCC;
	background-color: #FFF;
	font-size: 1em;
}
.itemInfoTable tr td input[type="text"],
.itemInfoTable tr td select
{
	font-size: 1em;
	border: 1px solid #CCC;
	padding: 0.6em;
	border-radius: 8px;
	width: 100%;
	background-color: #F8EAC6;
}
.itemInfoTable tr td input[type="number"]
{
	font-size: 1em;
	border: 1px solid #CCC;
	padding: 0.6em;
	border-radius: 8px;
	width: 6em;
	background-color: #F8EAC6;
}
.itemInfoTable tr td .block.caution {
	margin-top: 0.6em;
	font-size: 0.9em;
	color: #195B73;
	line-height: 1.6;
}
.btnArea {
	text-align: center;
	margin-top: 20px;
}
.btnArea .submitBtn {
  font-size: 18px;
  font-weight: bold;
  color: #FFF;
  padding: 0.5em 1em;
  background-color: #1B1597;
  border: 2px solid #FFF;
  border-radius: 12px;
  box-shadow: 0 2px 3px rgba(0,0,0,0.3);
  position: relative;
}
.messageBox {
	padding: 10px 0;
}
.messageBox p {
	text-align: center;
	font-size: 14px;
}
.alert_quantityError {
	background-color: #AF1B1D;
	padding: 4px 6px;
}
.alert_quantityError p {
	font-size: 13px;
	color: #FFF;
	line-height: 1.3;
}
.pageTitle_02 {
	width: 94%;
	max-width: 680px;
	margin: 0 auto;
}
.pageTitle_02 h3 {
	font-size: 16px;
	font-weight: bold;
	color: #14567B;
	letter-spacing: 0.1em;
	text-align: center;
	line-height: 3.0;
}

.pageTitle_02 h3.red {
	color: #FFF;
	background-color: #AF1013;
}
@media screen and (max-width: 767px) {
	.itemInfoTable {
	  font-size: 3.0vw;
	}
	.itemInfoTable th {
		font-size: 0.8em;
	}
	.messageBox {
		padding: 1vw 0;
	}
	.messageBox p {
		text-align: center;
		font-size: 3vw;
	}
	.alert_quantityError p {
		font-size: 3vw;
	}
	.pageTitle_02 h3 {
	  font-size: 3.4vw;
	}	
	.tableFrame {
		width: 94%;
		margin: 0 auto;
		overflow-x: scroll;
	}
	.tableFrame > table {
		width: 150vw;
	}
}

