.border-radius-10 {
	border-radius:10px !important
}
/*main contents*/
.main-contents {
	margin: 0px auto;
	width: 100%;
	/* height: auto; */
	position: relative;
	flex: 1;/*フッタ固定*/
}
.main-contents img:hover {
	opacity: 0.6;
}

.div-selected{
	background-color: #9cccb4 !important;
	color: #FFF !important;
}
/***見出し***/
/*Dropdown */
.dropdown {
	position: relative;
	display: inline-block;
}

.dropdown-content {
	display: none;
	position: absolute;
	background-color: #f9f9f9;
	min-width: 160px;
	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
	padding: 12px 16px;
	z-index: 1;
}

.dropdown:hover .dropdown-content {
	display: block;
}

.new-item {
	padding: 3px;
	background-color: #e72510;
	color: #fff;
	line-height: 2.5;
}

.txt-white {
	color: unset;
}

.flg_size {
    width: 100px;
    height: 75px;
    filter: drop-shadow(4px 4px 6px rgba(0,0,0,.5));
    border-radius: 10px;
}
/***トップページ***/
/*言語選択*/
ul.lang {
	display: flex;
	flex-wrap: nowrap;
	justify-content: flex-end;
}
ul.lang li {
	margin: 10px;
}
ul.lang img {
	width: 50px;
	height: auto;
	border: 1px solid #e4e4e4;
	padding: .2px;
}
/*ナビメニュー*/
ul.nav-box {
	padding: 10px;
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-around;
	background-color: #f1f0e6;/*メインメニュー背景色*/
	border-bottom: 1px solid #e2e2d9;
	position: relative;
}
ul.nav-box li {
	width: calc(100% /4);
	text-align: center;
	font-size: 1.4rem;
	vertical-align: baseline;
}
ul.second-nav {
	visibility: hidden;
	opacity: 0;
	z-index: 1;
}
ul.nav-box li ul.second-nav {
	position: absolute;
	top: 30px;
	left: 0;
	box-sizing: border-box;
	width: 100%;
	padding: 20px 2%;
	background-color: #e2e2d9;/*サブメニュー背景色*/
	transition: all .2s ease;
}
ul.nav-box li:hover ul.second-nav {
	top: 40px;
	visibility: visible;
	opacity: 1;
}
ul.nav-box li ul.second-nav li {
	float: left;
	width: calc(100% / 4 );/*列の数*/
	margin-bottom: 10px;
}
/*店舗選択*/
.store-select {
	margin: 40px auto;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	align-content: center;
	justify-content: center;
}
.store-select a {
	margin: 10px;
}
h1.store-name {
	background-color: #006d49;
	color: #fff;
	font-size: 2.0rem;
	border-bottom: none;
	padding-top: 5px;
}
.store-list {
	display: flex;
	flex-wrap: wrap;
}
.store-list > div {
	width: calc(96% /2 );
	margin-bottom: 10px;
	margin: 10px 1% 10px;
	padding: 10px;
	border: 1px solid #b5b5b6;
}
.store-list >div >dl {
	display: flex;
}
.store-list >div >dl >dt {
	margin-right: 10px;
}
.store-list >div >dl >dd {
	flex: 1;
}
.branch-name {
	font-weight: bold;
}
.store-list >div >ul {
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-around;
	margin-top: 10px;
}
.store-list >div >ul >li {
	padding: 5px 10px;
}
.store-list >div >ul >li:nth-child(1) {
	border: 1px solid #006d49;
	border-radius: 2px;
}
.store-list >div >ul >li:nth-child(2) {
	background-color: #006d49;
	border-radius: 2px;
	flex: 1;
	margin-left: 10px;
	text-align: center;
}
.store-list >div >ul >li:nth-child(2)>a {
	color: #fff;
}
.store-list ul li a:hover {
	opacity: .8;
}
/*地図*/
#mapdata {
	position: relative;
	width: 60%;
	height: 0;
	left: 0;
	right: 0;
	margin: auto;
	padding-top: 60%;
}
#mapdata iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
/***店内、持ち帰り選択画面***/
.select-block-top-20 {
	margin-top: 20px;
	width: 100%;
	height: auto;
}
.choices {
	margin: 20px auto;
	text-align: center;
}
.choices div {
	display: inline-block;
	padding: 40px;
	background-color: #fff;
	border: 4px solid #9cccb4;
	border-radius: 4px;
}
.choices div:first-child {
	margin-right: 40px;
}
.choices li {
	text-align: center;
}
.choices li:not(:last-child) {
	margin-bottom: 20px;
}
.choices li span {
	color: #9cccb4;
	font-weight: bold;
}
.choices li img:hover {
	transform: scale(1.1);
}
.choices ul {
	margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    scroll-behavior: smooth;
}
/***メニュー***/
/*カテゴリ選択*/
.category-list-sticky{
	position: sticky;
    z-index: 1;
	top: 0px;
	border-bottom: solid 0.1vw #a0a0a0;
}
.category-list {
	display: flex;
	overflow-x: scroll;
	-webkit-overflow-scrolling: touch;
	overflow-scrolling: touch;
	-ms-overflow-style: none;    /* IE, Edge 対応 */
	scrollbar-width: none;       /* Firefox 対応 */
}
.category-list a {
    padding: 2vw 2vw 1vw 2vw;
    font-weight: bold;
    white-space: nowrap;
}
.category-list::-webkit-scrollbar {  /* Chrome, Safari 対応 */
    display:none;
}
/*メニュー*/
/* #menulist {
	margin-bottom: 100px;
} */
.menuitem {
	width: 96%;
	margin: 10px 2%;
	/* padding: 3px; */
	overflow: hidden;
	position: relative;
	background-color: #FFF;
	border: 3px solid #9cccb4;
	border-radius: 15px;
}

.menuitem > img {
	width: 40vh;
	float: left;
	margin-right: 20px;
    margin-bottom: 10px;
	border-radius: 10px;
	filter: drop-shadow(5px 5px 2px rgba(0,0,0, 0.5));
}
.menuitem > dl {
	/* margin: 10px 0px; */
}
.menuitem > dl dt {
	font-weight: bold;
	font-size: 2rem;
	margin-bottom: 20px;
}
.artgp_menu {
    border: #00B050 1px solid !important;
}
.normal_menu {
    border: #DD5F26 1px solid !important;
}

.topBack {
	bottom: 9%;
	right: 5%;
	position:fixed;
	display:none !important;
}

.orderview-area {
    padding: 2vw;
	border-top: solid 0.1vw #a0a0a0;
}
.alignorderview-area {
	padding: 0;
	background-color: unset;
}
.foot_orderview-area {
	padding: 3.75vw;
    width: 100%;
    height: 15.5vw;
    z-index: 10;
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
}
.foot_orderview-area .foot_orderview-flex {
	display:flex;
	justify-content: space-evenly;
	flex-wrap: wrap;
	flex-direction: row;
	align-items: baseline;
}
.orderview {
	margin: 0px auto;
	/* width: 1000px; */
	width: 100%;
	display: flex;
	justify-content: space-around;
	flex-flow: row wrap;
	align-items: flex-end;
	line-height: 3;
}
.alignorderview {
	height: inherit;
	background-color: #000000;
	color: #ffffff;
	align-items: center;
}
.orderview ul {
	text-align: left;
}
.orderview ul li {
	display: inline-block;
	vertical-align: bottom;
	overflow: hidden;
}
.orderview ul li.selected span {
	background-color: #2b2e2e;
	color: #fff;
	padding: 3px;
	font-size: 1.2rem;
}
.orderview ul li:not(:first-child) {
	margin-left: 6px;
}
/***メニュー詳細***/
.detail-img-style {
	border-radius: 10px;
	filter: drop-shadow(4px 4px 6px rgba(0,0,0,.5));
}
.tag-no-remain {/*品切れ*/
	border: 1px solid #e72510;
	color: #e72510;
}
/*オプション*/
.option-wrap {
	margin-bottom: 80px;
}
.option-wrap h2 {
	margin: 20px 0px 0px 20px;
	font-size: 1.8rem;
	font-weight: bold;
}
/*オーダーボタン*/
.align-overview-area {
	color: #ffffff;
	background: #000000;
}

.display-error {
	margin:0px auto;
	text-align: center;
}

.btn-warning {
	justify-content: space-around;
	flex-flow: row wrap;
	align-items: center;
	margin: 0px auto;
	padding: 7px 10px;
	border-radius: 5px;
	color:#FFF;
	background-color: #ffc107;
}

/***Cart Page -> select quantity ***/
.selectdiv {
    position: relative;
    float: left;
    min-width: 20vw;
}
  
  /* IE11 hide native button (thanks Matt!) */
select::-ms-expand {
    display: none;
}
  
.selectdiv:after {
    content: '<>';
    font:  0.4rem; "Consolas", monospace;
    color: #333;
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    right: 11px;
    /*Adjust for position however you want*/
    
    top: 2px;
    padding: 0 0 2px;
    border-bottom: 1px solid #999;
    /*left line */
    
    position: absolute;
    pointer-events: none;
}
  
.selectdiv select {
   -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: block;
    width: 20vw;
    height: 3.4vh;
    float: right;
    padding: 2px 12px;
    font-size: 0.8rem;
    line-height: 1;
    color: #333;
    background-color: #ffffff;
    background-image: none;
    border: 1px solid #cccccc;
    -ms-word-break: normal;
    word-break: normal;
}
/***注文確認画面***/

table.orderlist {
	width: 100%;
	margin-bottom: 140px;
}
table.orderlist td {
	padding: 10px;
}
table.orderlist td:nth-child(2) {
	word-wrap: break-word;
	text-align: left;
}
table.orderlist td:nth-child(3) {
	text-align: center;
	width: 13%;
}
table.orderlist td:nth-child(1) {
	text-align: center;
	width: 2%;
}
table.orderlist td:nth-child(4) {
	text-align: right;
	word-break: keep-all;
	width: 15%;
}
table.orderlist tr {
	border-top: 1px solid #b5b5b6;
}
table.orderlist tr:first-of-type {
	border: none;
}
table.orderlist tr.opt {
	border-top: 1px solid #e4e4e4;
}

.padding-right-5 {
    padding-right: 5px;
}

.margin-bottom-40 {
    margin-bottom: 40px;
}

.margin-bottom-140 {
    margin-bottom: 140px;
}

.margin-bottom-180 {
    margin-bottom: 180px;
}

/*** 注文リスト***/
table.historylist {
	width: 96%;
    margin-left: 2%;
    font-size: 14px;
}
table.historylist td {
	padding: 10px 10px;
}

table.historylist .product-name {
    word-wrap: break-word;
    text-align: left;
    width: 65%;
}

table.historylist .product-num {
    text-align: right;
    word-break: keep-all;
    width: 20%;
}

table.historylist .product-price-name {
    word-wrap: break-word;
    text-align: left;
    width: 70%;
    margin-top: 0px;
    margin-bottom: 0px;
    padding-top: 0px;
    padding-bottom: 0px;
}

table.historylist .product-price {
    text-align: right;
    word-break: keep-all;
    width: 10%;
    margin-top: 0px;
    margin-bottom: 0px;
    padding-top: 0px;
    padding-bottom: 0px;
}

table.historylist .color-grey {
    color: #756f6f;
}

table.historylist .font-size-12 {
    font-size: 12px;
}

table.historylist .discount-name {
    word-break: keep-all;
    text-align: left;
    width: 70%;
    padding-top: 0px;
    padding-left: 10%;
    padding-bottom: 5px;
}

table.historylist .discount-price {
    text-align: right;
    word-break: keep-all;
    width: 30%;
    padding-top: 0px;
    padding-bottom: 5px;
}

/*** ***/
table.receiptlist {
	width: 100%;
	margin-bottom: 140px;
}
table.receiptlist td {
	padding: 10px;
}
table.receiptlist td:nth-child(2) {
	word-wrap: break-word;
	text-align: left;
}
table.receiptlist td:nth-child(4) {
	text-align: center;
	width: 18%;
}
table.receiptlist td:nth-child(1) {
	text-align: center;
	width: 2%;
}
table.receiptlist td:nth-child(3) {
	text-align: right;
	word-break: keep-all;
	width: 10%;
}
table.receiptlist td:nth-child(5) {
	text-align: right;
	word-break: keep-all;
	width: 10%;
}
table.receiptlist tr {
	border-top: 1px solid #b5b5b6;
}
table.receiptlist tr:first-of-type {
	border: none;
}
table.receiptlist tr.opt {
	border-top: 1px solid #e4e4e4;
}

.numberCircle {
    border-radius: 50%;
    width: 1.1rem;
    height: 1.1rem;
    padding: 1px;

    background: #fff;
    border: 2px solid #666;
    color: #666;
    text-align: center;

    font: 0.8rem Arial, sans-serif;
}

.search-info {
	margin-top: 10px;
	padding-top: 10px 0px;
	width: 100%;
}

.search-info input[type=text] {
	font-size: 1.6rem;
	padding: 10px;
	height: 40px;
	width: 96%;
	margin-left: 2%;
	border-radius: 10px;
	background: #fff;
	border: 1px solid #b5b5b6;
}

.orderview-area-lh {
	height: 200px;
}
.reissue-container {
	margin: 0px auto;
	width: 80%;
}
.reissue-container .reissue-message {
	margin: 5vw auto;
}
.reissue-container .reissue-confirm {
	padding-top: 20vw;
	padding-bottom: 13vw;
}
.reissue-container .reissue-back {
	padding-bottom: 13vw;
}
.payfinish-container {
	margin: 0px auto;
	width: 80%;
}
.payment-info {
	padding-bottom: 20px;
	width: 100%;
}
.payment-info label {
	display: block;
	font-size: 0.8rem;
	font-weight: bold;
	padding-bottom: 2px;
}
.payment-info input[type=text],.creditSelect, .payment-info input[type=date], .payment-info input[type=password] {
	font-size: 1rem;
	padding: 2vw;
	height: 10vw;
	width: 100%;
	background: #fff;
	border: 1px solid #2b2e2e;
}
.payment-info p {
	font-size: 1.2rem;
}


.password-container {
	margin: 0px auto;
	width: 80%;
}


.password-container .password-margin{
	margin:5vw auto;
}
.password-container .password-margin-5{
	margin:5vw 0px;
}

.password-container .password-width{
	width: 25vw !important;
}

.password-container .password-padding{
	padding-top: 10vw;
	padding-bottom: 10vw;
}

.password-container .password-input{
	background-color:black;
	border-radius: 10px;
}

.password-container .password-bg {
	background: #5c873e;
}

.password-container .password-font {
	font-size: 1.1875rem;
}
.password_ul{
	padding: 0%;
}
.pay-err-padding{
	padding:30px;
}
.pay_history_heiboder{
	height:2px;
	border-width:0;
}

.table-info {
	align-items: center;
	padding-bottom: 20px;
	width: 100%;
}

.table-info input[type=text], .table-info input[type=password]{
	font-size: 1.6rem;
	padding: 10px;
	height: 40px;
	width: 50%;
	background: #fff;
	align-items: center;
	border: 1px solid #2b2e2e;
}

.order-btn input[type=submit] {
	cursor: pointer;
	-webkit-appearance: none;
	border-style: none;
	font-size: 1.1rem;
	padding: 5px;
	width: calc(96% /2);
	border-radius: 2px;
	/*background-color: #006d49;*/
	color: #fff;
	text-align: center;
	line-height: 3;
}
.order-btn input[type=button] {
	cursor: pointer;
	-webkit-appearance: none;
	border-style: none;
	font-size: 1.1rem;
	padding: 5px;
	width: 90%;
	border-radius: 2px;
	color: #fff;
	text-align: center;
	line-height: 3;
}
.required-item {
	margin-left: 10px;
	font-size: 0.5rem;
	color: #e72510;
}
/***QRコード表示***/
.receipt-block {
	text-align: center;
	margin: 0px auto;
}
.receipt-block h1 {
	margin: 10px auto;
	border-bottom: none;
}
/* .receipt-block dl {
	margin-top: 20px;
} */
.receipt-block img {
	margin: 3px auto;
}
.receipt-block p {
	font-size: 1.2rem;
}

.qr_finish_p {
	padding-left:2.5vw;
	padding-right:2.5vw;
}

/***  ***/
.navbar {
	overflow: hidden;
	background-color: #006d49;
}

.navbar a {
	float: left;
	font-size: 20px;
	color: white;
	text-align: center;
	padding: 14px 16px;
	text-decoration: none;
}

/* navbar shimode */
.navbar1 {
	/* background-color: #006d49; */
	/* background-color: #a9d18e; */
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-height: 60px;
}

.navbar1 a {
	font-size: 16px;
	/* color: white; */
	text-align: start;
	text-decoration: none;
}

.nav-topnav-right {
	display: flex;
	align-items: center;
}

ul.lang1 {
	margin: 10px 0px;
}
ul.lang1 img {
	width: 50px;
}
/* navbar shimode */
.nav-dropdown-content {
	display: none;
	position: absolute;
	background-color: #f9f9f9;
	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
	right: 0;
	z-index: 3;
}

.nav-dropdown-content a {
	padding: 2vw 3vw;
}

.nav-topnav-left {
	font-weight: bold;
	float: left;
	margin-left:1%;
}

.text-right{
	text-align:right;
}
/**2020-10-23 delivery**/
.md_view {
	margin: 0px auto;
	width: 960px;
	display: flex;
	justify-content: space-around;
	flex-flow: row wrap;
	align-items: flex-end;
	line-height: 3;
}
.md-btn {
	margin: 0px auto;
	display: flex;
	justify-content: space-around;
	flex-flow: row wrap;
	align-items: center;
}
.md-btn >div {
	padding: 5px;
	width: calc(96% /2);
	border-radius: 2px;
	background-color: #b5b5b6;
	text-align: center;
	line-height: 3;
}
.md_title {
	width:100%;color:#C00000;font-size:1.25rem;margin: 2vw 0;text-align:center
}
.md-btn_div {
	width: 90%;
	border-radius: 2px;
	/*background-color: #b5b5b6;*/
	text-align: center;
	line-height: 2.5;
	margin: 10px auto;
	/*color: #fff;*/
	font-size:1.25rem;
}
.md_radio {
	width: 3vw;
    height: 3vw;
	margin-top: 1vw
}
.md-form-group {
	margin-bottom: 1rem;
}
.md-label {
	font-weight: 700;
    margin-bottom: .5rem;
	width: 90%;
    margin-left: 5%;
    text-align: left;
	display: block;
}
.md-input {
    width: 90%;
    height: calc(2rem + 2px);
    padding: .375rem .75rem;
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    /*background-color: #fff;*/
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    box-shadow: inset 0 0 0 transparent;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.md-input_zipcode {
    width: 50%;
    height: calc(2rem + 2px);
    padding: .375rem .75rem;
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    box-shadow: inset 0 0 0 transparent;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.md-label2 {
	font-weight: 700;
	display: inline-block;
    margin-bottom: .5rem;
}
.md-input2 {
    
    width: 90%;
    height: calc(2rem + 2px);
    padding: .375rem .75rem;
    font-size: 0.8rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    box-shadow: inset 0 0 0 transparent;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.btn-bg-orange {
	/* background:#ED7D31; */
	background: #ffe699;
	color: #000;
}
.btn-bg-green {
	/* background:#00B050; */
	background: #a9d18e;
	color: #000;
}
.btn-bg-gray{
	background: #e4e4e4;
	color: #000;
}
.md_new-btn {
	border-radius: 10vw;
	margin-bottom: 1vw;
}
.md_addr_edit {
	border-bottom: 1px solid #000;margin-bottom:2vw
}
.md_zipcode_title {
	height: calc(2rem + 2px);
    padding: 1vw;
}
.md_zipList {
	text-align:left;margin-bottom:1vw;padding:1vw 1vw 1vw 2vw;/*background:#FAD8C2*/
}
.md_address_chose_title {
	font-size:1rem;padding:1vw 1vw 1vw 2vw
}
.md_addre_ckeck{
	margin:auto;
	width: 90%;
    height: calc(2.5rem + 2px);
    padding-left: .75rem;
    font-size: 1rem;
    font-weight: 400;
	text-align: left;
    line-height: calc(2.5rem + 2px);
    color: #495057;
    border-radius: .25rem;
	background:#FAD8C2
}
.md_optionTime{
	width:90%;height:9vw;border: 1px solid #ced4da;border-radius: .25rem;
}
.md_btnStyle {
    border-radius: 5px;
    background-color: #FFE699;
    text-align: center;
    line-height: calc(2rem + 2px);
    font-size: 1rem;
	cursor:pointer;
	padding: 0 10px;
}
.md_info_addreTitle{
    display: flex;
    justify-content: space-between;
    height: 30px;
    line-height: 30px;
	margin-bottom: 5px;
}
.md_info_btnStyle{
    border-radius: 5px;
    text-align: center;
    line-height: 8vw;
    /* margin: 10px auto; */
    /* color: #fff; */
    font-size: 0.8125rem;
    height: 8vw;
	cursor:pointer
}
.md_outline-system-primary-btn{
	border: 5px solid var(--system-primary-color);
    border-radius: 20px;
    background: none;
}
.md_topText{
	padding: 1vw;
    margin: 1vw 0;
    font-size: 1.25rem;
    background: #E97E38;
    color: #fff;
}
.md_tiptitle{
	color: #00b050;
	text-align: left;
	font-size: 1rem;
	padding-left: 1vw;
	margin-left: 5%;
}
.md_onetip1{
	border: 1px solid rgb(127, 127, 127); 
	margin: 1vw 2vw 3vw; 
	padding: 1vw; 
	font-size: 1rem; 
	text-align: left;
	height: 45vh;
	overflow-y: auto;
}
.md_ckeck_div{
	font-weight: bold;
	width: 90%;
	margin: 2vw auto;
	text-align: center;
}
.md_checkbox__input{
	background-color: #fff;
	border: 1px solid #c9c9c9;
	border-radius: 2px;
	outline: none;
	width: 3vw;
    height: 3vw;
}
.md_code{
	margin: 3vw auto;padding: 2vw 1vw;text-align: center
}
.md_add_disabled{
	background: #ccc;
	pointer-events: none; 
}
.comH2 h2 {
	font-size: 1.375rem;
	text-align:center;
	font-weight: bold;
}
.comH2 p {
	text-align:center;
}
.comMsg dd {
	font-size: 1rem;
}
.comMsg h4 {
	display: block;
	font-weight: bold;
}
.md_onetip1 > .main{
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.com_wid{
	margin: 0 auto;padding: 0 3vw;
}
.md_oh_titleRow{
	width: 25%;
    background: #B4C7E7;
    margin-right: 1px;
    height: 6vw;
    line-height: 6vw;
    font-weight: 700;
}
.md_oh_dataRow{
	width: 25%;
    background: #DAE3F3;
    margin-right: 1px;
	position: relative;
}
.md_oh_dataBtn{
	width: 60%;
    border-radius: 5px;
    background: #2E75B6;
    padding: 1vw;
    height: 60%;
    top: 20%;
    right: 20%;
    position: absolute;
}
.md_od_btnStyle{
	width: fit-content;
    border-radius: 5px;
    background-color: #FFE699;
    text-align: center;
    line-height: 8vw;
    font-size: 1rem;
    height: 8vw;
    cursor: pointer;
    padding: 0 1vw;
    margin-top: 5vw;
}
.md_od_shadow{
	width:100%;
	height:100%;
	position:fixed;
	left:0;
	top:0;
	z-index:998;
	background:rgb(0,0,0,0.6);
	display:none;
}
/** application **/
.appli_container {
	width: 100%;
	max-width: 720px;
    padding-right: 3vw;
    padding-left: 3vw;
    margin-right: auto;
    margin-left: auto;
}
.appli_header_title {
	border-bottom: 3px solid #eb6032;display: inline-block;padding: 1rem 0;margin-bottom: -1vw;
}
.appli_header_title_fs {
	font-size: 3rem
}
.appli_div_border_top {
	border-top: solid 1px #d7d7d7;
}
.appli_div_border_b{
	border-bottom: solid 1px #d7d7d7;
}
.appli_inputName {
	text-align: left;
	font-size: 0.8125rem;
	color: #444;
	width: 30%;
	background: #f7f7f7;
	/*border: solid 1px #d7d7d7;*/
	font-weight: 700;
	text-transform: uppercase;
	padding: 1vw;
	align-items: center;
    display: -webkit-flex;
	border-left: solid 1px #d7d7d7;
    border-bottom: solid 1px #d7d7d7;
	border-right: solid 1px #d7d7d7;
}

.appli_haveto {
	font-size: 0.5rem;
    padding: 0.4vw;
    background: #ff9393;
    color: #fff;
    border-radius: 2px;
    margin-right: 0.5vw;
    position: relative;
    /*bottom: 1px;*/
    font-weight: 700;
    text-transform: uppercase;
    text-align: left;
	white-space: nowrap;
}
.appli_inputField {
	font-size: 0.8125rem;
	/*border: solid 1px #d7d7d7;*/
	padding: 3%;
	width: 70%;
	border-bottom: solid 1px #d7d7d7;
	border-right: solid 1px #d7d7d7;
}

.appli_inputField span input {
	display: block;
	/*width: 100%;*/
	height: 45px;
	margin-bottom: 0;
	padding: 0 12px;
	border: 0;
	border-radius: 3px;
	background-color: #eff1f5;
	box-shadow: none;
	color: #5c6b80;
	font-size: 1em;
	vertical-align: middle;
	line-height: 45px;
	transition: background-color 0.24s ease-in-out;
}
.appli_textarea {
	width: 100%;min-height: 400px;resize: none;padding: 2vw;
}
.appli_submitBtn {
	display: block;
	padding: 3%;
	width: 90%;
	max-width: 350px;
	background: #ffaa56;
	color: #fff;
	font-size: 1.1875rem;
	font-weight: 700;
	border-radius: 2px;
	margin: 25px auto 0;
	color: #fff;
	background-color: #007bff;
  }

  
.alignNavbar { 
	/* margin-bottom: -4vw; */
	background-color: #000000;
}

.align-nav-dropdown {
	float: right;
	height: 100%;
	width: 10%;
}

.align-nav-dropbtn {
	height: 100%;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 !important;
}

.align-nav-topnav-right {
	width: 70%;
	height: 100%;
	display: flex;
	align-items: center;
	padding-left: 1vw;
	float: left;
}

.align-nav-topnav-right a {
	width: 65%;
	text-align: left;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.alignLogo {
	width: 20%;
	background: #fff;
	display: flex;
	align-items: center;

}


.align-nav-category {
	width: 20%;
	display: flex;
	align-items: center;
}

.langName {
	display: flex;
	font-size: 14px;
	margin-top: -10px;
}

.langName1 {
	display: flex;
	font-size: 14px;
	margin-top: -10px;
}

.nav-category {
	width: 35% !important;
	text-align: center !important;
	border: 1px solid;
	border-radius: 8px;
	background: rgb(221,95,38);
	padding: 1vw !important;
	/* font-size: unset !important; */
}
.starNoneColor{
	color:#ADADAD
}
.starSelectdColor{
	color:#F7E900
}

.btn-bill-split {
    border: 0;
    border-radius: 5px;
    color: #fff;
    padding: 4px 8px;
	color:black;
	align-items: center;
	display: flex;
    justify-content: space-evenly;
    align-items: center;
    border-radius: 10px;
}
.btn-count {
    font-size: 2.375rem;
    color: #9cccb4;
}
.card {
    border-radius: 6.25vw;
}
  
.card-head {
    position: relative;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
  
.card-title {
    width: 55px;
    padding: 10px;
    font-size: 1.125rem;
}

.product-size {
    padding: 0 5.vw;
    padding-bottom: 2.5vw;
    text-transform: uppercase;
    text-align: center;
    color: black;
}

.product-size h4 {
    font-size: 1.25rem;
}
  
.product-detail {
    padding: 0 12.5vw;
    font-size: 0.875rem;
    color: black;
}
  
.product-detail h2 {
    font-size: 1.25rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    border:0px !important;
    text-align: left !important;
}

.card-body {
    background: #fff;
    border-radius: 0 0 6.25vw 6.25vw;
}
  
.product-desc {
    text-align: center;
    height: 130px;
}

.product-title {
    padding: 2.5vw 5vw 1.25vw 5vw;
    display: block;
    font-size: 1.0625rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}
  
.product-title b {
    font-weight: 600;
    letter-spacing: 1px;
}
  
.diplay-box {
	padding: 2.5vw 5vw;
    color: #111;
    font-size: 1.25rem;
    border-radius: 2.5vw;
    border: 3px solid #9cccb4;
}

.split-price {
    padding: 2.5vw 5vw;
    color: #111;
    font-size: 1.25rem;
	border-radius: 2.5vw;
	border: 3px solid #9cccb4;
}
@media screen and (max-width :320px){
	.split-price{
		padding: 2.5vw 6.25vw;
	}
}

@media screen and (min-width: 1000px){
	.lg-screen {
		margin-top: 10% !important;
	}
	.split_bill_height{
		min-height: 62vw;
	}
}
  
.product-close {
    text-align: center;
    display: block;
    margin-top: 10px;
    padding-left: 10px;
    padding-right: 10px;
}
  
.product-close a {
    background: #acacab;
    padding: 8px 20px;
    border-radius: 5px;
    color: #fff;
    font-size: 18px;
    font-weight: 200;
    text-decoration: none;
}

.price-remain {
    margin-top: 30px;
    text-align: left !important;
    padding-left: 20px;
}
  
/*オプション画像*/
.option-img {
    float:left; 
    border-radius:10px; 
    padding-right:5px;
}

.socket-error-msg {
    width:100%;
    padding: 2vw;
    z-index:10;
    text-align:center;
    color:red;
    display: none;
}

.payment-image-margin{
	margin-top:20px;
	margin-bottom:20px;
}

/* ボタンが1つ */
.payment-button-layer_1 {
    display: flex;
    justify-content: center;
    max-width: 500px;
    width: 100%;
}

/* ボタンが2つ */
.payment-button-layer_2 {
    display: flex;
    justify-content: space-between;
    max-width: 500px;
    width: 100%;
}

.payment-button {
    width: 49%;
    height: 50px;
    border: 1px solid #9c9c9c;
    border-radius: 5px;
    display: grid;
    place-items: center;
    box-shadow: 3px 3px 3px 1px rgba(0, 0, 0, 0.2);
    background-color: #F8F9FA;
}

.margin-left-10 { margin-left: 10px; }
.pd-bottom{
	padding-bottom: 50px;
}
@media screen and (max-width :500px) {
	/***トップページ***/	
	/*ナビメニュー*/
	ul.nav-box li ul.second-nav li {
		float: left;
		width: calc(100% / 2);/*列の数*/
		margin-bottom: 10px;
	}
	/*店舗選択*/
	.store-select {
		margin: 20px auto;
		justify-content: center;
		align-content: flex-start;
	}
	/*店舗*/
	.store-list >div {
		margin: 0px 2% 10px;
		width: 96%;
	}
	.order-btn > div.order-start {
		width: 100%;
	}
	/*地図*/
	#mapdata {
		width: 100%;
	}
	/***店内、持ち帰り選択画面***/
	.choices div {
		padding: 20px;
	}
	.choices div:first-child {
		margin-right: 20px;
	}
	.choices div img {
		width: 90px;
	}
	.choices li img:hover {
		transform: none;
	}
	/*メニュー*/
	.menuitem img {
		/*width: 20vh;*/
	}
	.menuitem dl dt {
		font-size: 1.6rem;
		margin-bottom: 0px;
	}
	/*注文内容ビュー*/
	.orderview {
		width: 100%;
		line-height: 2;
	}
	.alignorderview {
		padding: 0 20px;
		justify-content: space-evenly;
	}
	.reissue-container {
		margin: 0px auto;
		width: 96%;
	}
	.payfinish-container {
		margin: 0px auto;
		width: 96%;
	}
	.password-container {
		margin: 0px auto;
		width: 96%;
	}
	/***QRコード表示***/
	.receipt-block {
		width: 94%;
	}
	.receipt-block p {
		text-align: left!important;
	}
	.pd-bottom{
		padding-bottom: 30px;
	}
}

@media screen and (max-width :790px) {
	.nav-category {
		font-size: 10px !important;
	}

}

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

	.align-nav-topnav-right {
		padding-left: 0;
		width: 60%;
	}

	.alignNavbar .lang {
		width: 20% !important;
	}

	.alignNavbar .lang img {
		width: 35px;
		padding: 0;
	}

	.langName {
		font-size: 12px;
	}

	.langName1 {
		font-size: 10px;
		max-width: 50px;
	}

	.align-nav-dropdown {
		width: 20%;
	}

	.align-nav-topnav-right a {
		font-size: 18px;
	}

	.nav-category {
		padding: 5px !important;
		font-size: 8px !important;
	}

    .hand-pic {
		width: 30px !important;
		height: 30px;
	}
}

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

	.align-nav-topnav-right a {
		font-size: 12px;
	}

	.nav-category {
		padding: 3px !important;
	}
}
.text-align-start{
	text-align: start;
}
.txt-align-center{
	text-align: center;
}
.pad-all-20{
	padding: 20px;
}


.ml-40 {
	margin-left: 40%;
}
.mr-30 {
	margin-left: 30%;
}
.mr-10px {
	margin-right: 10px;
}
.mt-30px {
	margin-top: 30px;
}
.ml-10px {
	margin-left: 10px;
}
.mb-30px {
	margin-bottom: 30px;
}

/* menu,menu_detailアイコン＆画像 -start- */
/* menu,menu_detailアイコン＆画像 -end- */
.errormsg{
	display: block;
	text-align: center;
	color: red;
}

@media screen and (max-width:500px){
	.font-sz{
		font-size: 13px;
	}
	.new-item {
		line-height: 0;
		font-size: 10px;
	}
	.comment_btn {
		line-height: 20px !important;
		height: 20px !important;
	}
}

/* menu.blade.php start */
.modal_popup{
	position: fixed;
	z-index: 10;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgba(0,0,0,0.4);
}
.modal_popup .modal-popup-body {
	margin-right: auto;
    margin-left: auto;
    width: 98%;
    box-sizing: border-box;
    background-color: #FFF;
    cursor: pointer;
    border-radius: 10px;
    margin-top: 20%;
    padding: 2vw;
}
.modal_popup .modal-popup-body .button {
	width: calc(96% /2);
	margin: 0px auto;
}
.modal_popup .modal-popup-body .button a img {
	width: 100%;
}

.flg_size {
	width: 100px;
	height: 75px;
}
.category-list .menu_selected {
	color: #9cccb4;
	outline:none;
	border-bottom: 1vw solid #9cccb4;
}
.menu_selected_cat {
	background-color: unset !important;
  	color: #FFFF00 !important;
	border: none;
}
.cart_div {
	position: relative;
	cursor: pointer;
}
.cart_num_div {
    display: none;
    align-items: center;
    justify-content: center;
    position: absolute;
    color: #FFFFFF;
    background-color: #F00;
    left: 9vw;
    width: 4vw;
    height: 4vw;
    font-size: 0.8125rem;
    border-radius: 50%;
}
.point_total {
	position: absolute;
	top: 15px;
	font-size: 18px;
}
.accounting {
	/* position: absolute; */
	z-index: 1;
	height: 40px;
	top: 10px;
	right: 5%;
	font-size:26px;
	line-height: 40px;
	margin: 0 30px;
	display: none;
}
/* アイコン：カテゴリ選択後の時の場合これがないと文字が詰まって表示されてしまう */
.dietary_restriction_mr {
	margin-right: 5.5px;
}
.menuitem2{
	margin-top: 0;
	padding: 0;
	border: none;
	border-radius: 0;
}
.go_comment_btm{
	display: inline-block;
	padding: 0 8px;
	color:#a6c8f6;
	font-weight: bold;
	font-size: 20px;
    margin-top: 8px;
}
.img_mark_background{
	width: 40vh;
}
/* menu.blade.php end */

/* cart動かす end */
.korokoro {
	animation: korokoro 2.5s linear 0s 1;
	animation-iteration-count:infinite;
	}
	
	@keyframes korokoro {
	0%   { transform: translate(0%, 0%); }
	5%   { transform: translate(10%, 0%) rotate(10deg); }
	25%  { transform: translate(20%, 0%) rotate(20deg); }
	30%  { transform: translate(-10%, 0%) rotate(-10deg); }
	35%  { transform: translate(-15%, 0%) rotate(-15deg); }
	45%  { transform: translate(10%, 0%) rotate(10deg); }
	50%  { transform: translate(15%, 0%) rotate(15deg); }
	60%  { transform: translate(-5%, 0%) rotate(-5deg); }
	65%  { transform: translate(-7%, 0%) rotate(-7deg); }
	75%  { transform: translate(0%, 0%) rotate(0deg); }
	100% { transform: translate(0%, 0%) rotate(0deg); }
	}
/* cart動かす end */

/* Qちゃんカテゴリ アニメーション start */
.animetion-category {
	-webkit-animation: anime08_pulse 5s infinite;
			animation: anime08_pulse 5s infinite;
	-webkit-box-shadow: 0 0 0 0 rgb(221,95,38,0.5);
			box-shadow: 0 0 0 0 rgb(221,95,38,0.5);
}
@-webkit-keyframes anime08_pulse {
	0%   {}
	70%  {	-webkit-box-shadow: 0 0 0 50px rgba(233, 135, 30, 0);
					box-shadow: 0 0 0 50px rgba(233, 135, 30, 0); }
	100% {	-webkit-box-shadow: 0 0 0 0 rgba(233, 135, 30, 0);
					box-shadow: 0 0 0 0 rgba(233, 135, 30, 0); }
}
@keyframes anime08_pulse {
	0%   {}
	70%  {	-webkit-box-shadow: 0 0 0 50px rgba(233, 135, 30, 0);
					box-shadow: 0 0 0 50px rgba(233, 135, 30, 0); }
	100% {	-webkit-box-shadow: 0 0 0 0 rgba(233, 135, 30, 0);
					box-shadow: 0 0 0 0 rgba(233, 135, 30, 0); }
}
/* Qちゃんカテゴリ アニメーション end */

/* social login start */
.loginBtn {
  box-sizing: border-box;
  position: relative;
  /* width: 13em;  - apply for fixed size */
  margin: 0.2em;
  padding: 0 15px 0 46px;
  border: none;
  text-align: left;
  line-height: 34px;
  white-space: nowrap;
  border-radius: 0.2em;
  font-size: 16px;
  color: #FFF;
  width: 350px;
}
.loginBtn:before {
  content: "";
  box-sizing: border-box;
  position: absolute;
  top: 0;
  left: 0;
  width: 34px;
  height: 100%;
}
.loginBtn:focus {
  outline: none;
}
.loginBtn:active {
  box-shadow: inset 0 0 0 32px rgba(0,0,0,0.1);
}

.flash-box{
    animation: flash 2s linear infinite;
    width:100%;
    text-align: center;
    color: red;
    font-size: 14px;
}

/* Facebook */
.loginBtn--facebook {
  background-color: #4C69BA;
  background-image: linear-gradient(#4C69BA, #3B55A0);
  /*font-family: "Helvetica neue", Helvetica Neue, Helvetica, Arial, sans-serif;*/
  text-shadow: 0 -1px 0 #354C8C;
}
.loginBtn--facebook:before {
  border-right: #364e92 1px solid;
  background: url('https://s3-us-west-2.amazonaws.com/s.cdpn.io/14082/icon_facebook.png') 6px 6px no-repeat;
}
.loginBtn--facebook:hover,
.loginBtn--facebook:focus {
  background-color: #5B7BD5;
  background-image: linear-gradient(#5B7BD5, #4864B1);
}

/* Google */
.loginBtn--google {
  /*font-family: "Roboto", Roboto, arial, sans-serif;*/
  background: #DD4B39;
}
.loginBtn--google:before {
  border-right: #BB3F30 1px solid;
  background: url('https://s3-us-west-2.amazonaws.com/s.cdpn.io/14082/icon_google.png') 6px 6px no-repeat;
}
.loginBtn--google:hover,
.loginBtn--google:focus {
  background: #E74B37;
}
/* Yahoo */
.loginBtn--yahoo {
  background-color: #4C69BA;
  background-image: linear-gradient(#9124a6, #b038c2);
  /*font-family: "Helvetica neue", Helvetica Neue, Helvetica, Arial, sans-serif;*/
  text-shadow: 0 -1px 0 #7e358c;
}
.loginBtn--yahoo:before {
  border-right: #7c3692 1px solid;
  background: url('https://s.yimg.com/cv/apiv2/myc/yahoo_app/Home_250x252.png') 6px 6px no-repeat;
  background-size: 70%;
}
.loginBtn--yahoo:hover,
.loginBtn--yahoo:focus {
  background-color: #5B7BD5;
  background-image: linear-gradient(#cb37e8, #ac37be);
}

/* Line */
.loginBtn--line {
  background-color: #4C69BA;
  background-image: linear-gradient(#2bc258, #21b039);
  /*font-family: "Helvetica neue", Helvetica Neue, Helvetica, Arial, sans-serif;*/
  text-shadow: 0 -1px 0 #00b900;
}
.loginBtn--line:before {
  border-right: #00b900 1px solid;
  background: url(../images/line_logo.png) 6px 6px no-repeat;
  background-size: 70%;
}
.loginBtn--line:hover,
.loginBtn--line:focus {
  background-color: #5B7BD5;
  background-image: linear-gradient(#1fe35a, #1abf36);
}

@media screen and (max-width :790px) {
	.loginBtn {
		width: 250px;
	}
}

@media screen and (max-width :515px) {
	.loginBtn {
		width: 180px;
		font-size: 12px;
	}
}

@media screen and (max-width :375px) {
	.loginBtn {
		width: 160px;
		font-size: 10px;
	}
}

/* social login end */

/* loading style start */
.loader {
	border: 10px solid #f3f3f3;
	border-radius: 50%;
	border-top: 10px solid #3498db;
	width: 100px;
	height: 100px;
	-webkit-animation: spin 2s linear infinite;
	animation: spin 2s linear infinite;
}
/* Safari */
@-webkit-keyframes spin {
	0% { -webkit-transform: rotate(0deg); }
	100% { -webkit-transform: rotate(360deg); }
}
@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}
/* loading style end */

/* 押下不可 */
.not-Touch {
	pointer-events: none;
}

/* LINEミニアプリstart */
.LineProfilePictureSection img{
    margin-right:10px;
    vertical-align: middle;
}
.LineProfilePictureSection span{
    vertical-align: middle;
}
.LineProfilePicture{
    width:50px;
    height:50px;
    border-radius:50%;
}
.container{
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.lineLoader{
	color: #3C4042;
	font-size: 60px;
	text-indent: -9999em;
	overflow: hidden;
	width: 1em;
	height: 1em;
	border-radius: 50%;
	margin: 72px auto;
	position: relative;
	-webkit-transform: translateZ(0);
	-ms-transform: translateZ(0);
	transform: translateZ(0);
	-webkit-animation: load6 1.7s infinite ease, round 1.7s infinite ease;
	animation: load6 1.7s infinite ease, round 1.7s infinite ease;
}
@-webkit-keyframes load6 {
	0% {
		box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
	}
	5%,
	95% {
		box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
	}
	10%,
	59% {
		box-shadow: 0 -0.83em 0 -0.4em, -0.087em -0.825em 0 -0.42em, -0.173em -0.812em 0 -0.44em, -0.256em -0.789em 0 -0.46em, -0.297em -0.775em 0 -0.477em;
	}
	20% {
		box-shadow: 0 -0.83em 0 -0.4em, -0.338em -0.758em 0 -0.42em, -0.555em -0.617em 0 -0.44em, -0.671em -0.488em 0 -0.46em, -0.749em -0.34em 0 -0.477em;
	}
	38% {
		box-shadow: 0 -0.83em 0 -0.4em, -0.377em -0.74em 0 -0.42em, -0.645em -0.522em 0 -0.44em, -0.775em -0.297em 0 -0.46em, -0.82em -0.09em 0 -0.477em;
	}
	100% {
		box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
	}
}
@keyframes load6 {
	0% {
		box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
	}
	5%,
	95% {
		box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
	}
	10%,
	59% {
		box-shadow: 0 -0.83em 0 -0.4em, -0.087em -0.825em 0 -0.42em, -0.173em -0.812em 0 -0.44em, -0.256em -0.789em 0 -0.46em, -0.297em -0.775em 0 -0.477em;
	}
	20% {
		box-shadow: 0 -0.83em 0 -0.4em, -0.338em -0.758em 0 -0.42em, -0.555em -0.617em 0 -0.44em, -0.671em -0.488em 0 -0.46em, -0.749em -0.34em 0 -0.477em;
	}
	38% {
		box-shadow: 0 -0.83em 0 -0.4em, -0.377em -0.74em 0 -0.42em, -0.645em -0.522em 0 -0.44em, -0.775em -0.297em 0 -0.46em, -0.82em -0.09em 0 -0.477em;
	}
	100% {
		box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
	}
}
@-webkit-keyframes round {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}
@keyframes round {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}
/* LINEミニアプリend */

.align_lang_list {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* select.minimal {
	padding: 0.5em 1em 0.5em 0em;
	border: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	background-image:
		linear-gradient(45deg, transparent 50%, black 50%),
		linear-gradient(135deg, black 50%, transparent 50%),
		linear-gradient(to right, transparent, transparent);
	background-position:
		calc(100% - 20px) calc(1em + 2px),
		calc(100% - 15px) calc(1em + 2px),
		calc(100% - 2.5em) 0.5em;
	background-size:
		5px 5px,
		5px 5px,
		1px 1.5em;
	background-repeat: no-repeat;
}

select.minimal option {
	color: black;
} */

select.minimal {
	width: 100%;
	background-color: transparent;
	display: inline-block;
	font: inherit;
	line-height: 1.5em;
	padding: 0.2em 1em 0.5em 0em;
	cursor: pointer;
	border: none;
	min-width: 115px;
	margin: 0;      
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-appearance: none;
	-moz-appearance: none;
	background-image:
	  linear-gradient(45deg, transparent 50%, black 50%),
	  linear-gradient(135deg, black 50%, transparent 50%),
	  linear-gradient(to right, transparent, transparent);
	background-position:
	  calc(100% - 20px) calc(1em + 2px),
	  calc(100% - 15px) calc(1em + 2px),
	  calc(100% - 2.5em) 0.5em;
	background-size:
	  5px 5px,
	  5px 5px,
	  1px 1.5em;
	background-repeat: no-repeat;
}
  
select.minimal:focus {
	outline: 0;
}

@media screen and (max-width :400px) {
	.align_lang_list {
		padding-right: 5px;
	}
}

.order-list-btn {
	background: #a9d18e;
    padding: 10px;
	width: 100%;
    text-align: center;
	border-radius: 10px;
	display: none;
}

.no_link {
	background: #aaa;
    pointer-events: none;
}

.no_link_res {
    pointer-events: none;
}

.custom-select {
	display: inline-block;
	width: 100%;
	height: calc(2.25rem + 2px);
	padding: 0.375rem 1.75rem 0.375rem 0.75rem;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	color: #495057;
	vertical-align: middle;
	background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat right 0.75rem center/8px 10px;
	background-color: #ffffff;
	border: 1px solid #ced4da;
	border-radius: 0.25rem;
	box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075);
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
  }
  
  .custom-select:focus {
	border-color: #80bdff;
	outline: 0;
	box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075), none;
  }

.registerReady {
	-webkit-animation: anime08_pulse 1.5s infinite;
			animation: anime08_pulse 1.5s infinite;
	-webkit-box-shadow: 0 0 0 0 rgba(156,204,180,1);
			box-shadow: 0 0 0 0 rgba(156,204,180,1);
	filter: drop-shadow(3px 3px 1px rgba(0,0,0,0.2));
}
@-webkit-keyframes anime08_pulse {
	0%   {}
	70%  {	-webkit-box-shadow: 0 0 0 50px rgba(233, 135, 30, 0);
					box-shadow: 0 0 0 50px rgba(233, 135, 30, 0); }
	100% {	-webkit-box-shadow: 0 0 0 0 rgba(233, 135, 30, 0);
					box-shadow: 0 0 0 0 rgba(233, 135, 30, 0); }
}
@keyframes anime08_pulse {
	0%   {}
	70%  {	-webkit-box-shadow: 0 0 0 50px rgba(233, 135, 30, 0);
					box-shadow: 0 0 0 50px rgba(233, 135, 30, 0); }
	100% {	-webkit-box-shadow: 0 0 0 0 rgba(233, 135, 30, 0);
					box-shadow: 0 0 0 0 rgba(233, 135, 30, 0); }
}

.flash{
	animation: flash 2s linear infinite;
}
@keyframes flash {
	0%,35%,60%,100%{
		opacity: 0;
	}
	25%,50%,75%{
		opacity: 1;
	}
}

.display-none {
    display: none !important;
}

/* LINE内ブラウザでmodal内のボタンがズレないようにする */
button {
	margin: 0 !important;
}
.alertOk-btn{
	color: #fff;
	background-color: #9cccb4;
	border: 1px solid transparent;
	user-select: none;
	padding: .0rem .75rem;
	font-size: 18px;
	border-radius: .40rem;
	line-height: 1.5;
	margin: 0 0 0 auto;
}
/**口コミ comment**/
.comment_list_div {
	border:1px solid #9cccb4;border-radius:20px;padding:4vw;margin-bottom:1vw
}
.comment_list_score {
	padding-left:4%;border-bottom:1px solid #9cccb4
}
.comment_list_null {
	text-align:center;line-height:20vw;
}
.comment_list_write {
	float:right;margin-top:2vw;padding:0 1vw;border:1px solid;border-radius:5px
}
.comment_list_date {
	line-height:10vw;font-weight:bold
}
.comment_list_name {
	display:inline-block;margin-bottom:2vw;font-weight:bold;border-bottom:2px solid #9cccb4
}
.comment_list_reply_div {
	background:#eee;border:1px solid #ccc;padding:3%;margin-top:2%;margin-left:10%;border-radius: 10px;
}
.comment_list_shopname {
	border-bottom:1px solid #ccc
}
.comment_head {
	width:100%;display: flex;border-radius: 5px 5px 0 0;padding:1.2vw
}
.comment_img {
	width:25%;height:20%;filter: drop-shadow(4px 4px 6px rgba(0,0,0,.5))
}
.comment_shadow {
	display:none;width:100%;height:100%;;position:absolute;top: 0;
}
.comment_stars {
	white-space: nowrap;
	text-align: center;
	padding:0;
	margin:0;
}
.comment_stars li {
	display: inline-block;
	/*color: #ADADAD;*/
	font-size: 8vw;
}
.comment_btnarea {
	padding:1%;display:flex;justify-content: space-around
}
.comment_sel_btn {
	width:24%;
	text-align: center;
	border: 1px solid #83A2E1;
	border-radius: 8px;
	white-space: nowrap;
	height:10vw
}
.comment_sel_btn_h {
	line-height: 10vw;
}
.comment_confirmtext {
	display:none;margin:1% 5%;font-weight:bold;
}
.comment_btnStyle {
	width:25%;margin:5vw auto;text-align:center;font-weight:bold;padding:2px 10px;border-radius: 10px;
}
.comment_btn-green {
	background-color: #9cccb4;
	border: 3px solid #9cccb4;
}
.comment_btn-white {
	background-color: white;
	border: 3px solid #9cccb4;
}
.comment_pop_modal {
	position: fixed;
	z-index: 11;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgba(0,0,0,0.4);
}
.comment_pop_title_img {
	float: left;width: 5vw;height: 5vw;
}
.comment_pop_hand_img {
	width: 8vw;
}
/** alcohol **/
.alcohol_contents {
	margin-top: 30%;padding: 1%;
}
.alcohol_btn {
	width:25%;
}
/** menu_category_search */
.mcs_mark_bg {
	border-radius: 15px;box-shadow: 0px 2px 8px 0px #ccc;
}
.mcs_mark_image {
	display:flex;top:0%;right:-2%;transform:translate(10%,-8%);position:absolute;width:25%;height:auto;
}
/****** 注文リスト historylist ******/
div.historylist {
	width: 96%;
    margin-left: 2%;
}
table.historylist td {
	padding: 10px 10px;
}

div.historylist .product-name {
    word-wrap: break-word;
    text-align: left;
    width: 65%;
}

div.historylist .product-num {
    text-align: right;
    word-break: keep-all;
    width: 20%;
}

div.historylist .product-price-name {
    word-wrap: break-word;
    text-align: left;
    width: 70%;
    margin-top: 0px;
    margin-bottom: 0px;
    padding-top: 0px;
    padding-bottom: 0px;
}

div.historylist .product-price {
    text-align: right;
    word-break: keep-all;
    width: 10%;
    margin-top: 0px;
    margin-bottom: 0px;
    padding-top: 0px;
    padding-bottom: 0px;
}

div.historylist .discount-name {
    word-break: keep-all;
    text-align: left;
    width: 70%;
    padding-top: 0px;
    padding-left: 10%;
    padding-bottom: 5px;
}

div.historylist .discount-price {
    text-align: right;
    word-break: keep-all;
    width: 30%;
    padding-top: 0px;
    padding-bottom: 5px;
}


/* yoyaku_index.blade.php start */
.yoyaku_index_h1{
	padding-bottom: 2.5vw;
    border-bottom: 2px solid #9cccb4;
    font-size: 1.25rem;
    text-align: center;
    color: #000;
}
.yoyaku_index_form-control {
    height: calc(2.25rem + 2px);
    padding: .375rem .75rem;
    font-weight: 400;
    line-height: 1.5;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    box-shadow: inset 0 0 0 transparent;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    margin: 0%;
}

.yoyaku_index_form-control:focus {
  color: #495057;
  background-color: #ffffff;
  border-color: #80bdff;
  outline: 0;
  box-shadow: inset 0 0 0 rgba(0, 0, 0, 0), none;
}
.yoyaku_index_btn-insert {
  align-items: center;
	left:2.5vw;
	bottom:2.5vw;
  margin-top: 5vw;
  text-align: center;
  padding-top:1.5vw;
}
.yoyaku_index_div-form {
    padding-left: 30%;
    padding-right: 30%;

}
.yoyaku_index_topics{
    margin-left:auto;
    margin-right:auto;
}

.yoyaku_index_code-title {
  margin: 2.5vw;
  border-bottom: 2px solid #000;
  font-weight: bold;
}

.yoyaku_index_algin-code-modal {
  min-height: 23vw;
  padding: 4.5vw 2.5vw;
}

.yoyaku_index_align-code {
  justify-content: center;
  margin: 2.5vw;
}

.yoyaku_index_align-code input {
  width: 65%;
  height: 70px;
  text-align: center;
}

.waiting_no{
  padding: 5% 10% 5% 10%;
}
.waiting_box{
 padding-left: 20%;
 padding-right: 20%;

}
 .waiting_link{
   display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #2e8b57;
  box-sizing: border-box;
  width: 100%;
  min-height: 50px;
  padding: 0 6% 0 12%;
  text-align: left;
  text-decoration: none;
  position: relative;
  transition-duration: 0.2s;
  margin-top:10px;
  display: inline-block;
 }

.waiting_link::before{
  content: '';
  width: 1.5vw;
  height: 1.5vw;
  border: 0px;
  border-top: solid 2px #2e8b57;
  border-right: solid 2px #2e8b57;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  margin-top: -5px;
  text-align: center;
}
 .waiting_link:hover {
  background: #2e8b57;
  opacity: 0.5;
  color: #fff;
}

.waiting_text{
  text-align: center;
  padding-top:10px;
  font-size: 0.95rem;
}
.yoyaku_status{
  width:100%;
 padding-left: 20%;
 padding-right: 20%;
}
.kakomi-box12 {
 position: relative;
 margin: 2em auto;
 padding-top: 1em;
 border: 2px solid #9CCCB4; /* 枠線の太さ・色 */
 box-shadow: 2px 2px 1px #ccc;/* 影の色 */
 font-weight:500;
}

.title-box12 {
 position: absolute;
 padding: 0 .5em;
 left: 20px;
 top: -15px;
 font-weight: bold;
}
.td-height-50{
  height: 12.5vw;
}

.yoyaku_index_hauto{
	height: auto;
}
.min_autoHeight {
	min-height:auto;
}
.voice_search_fs {
	font-size: 2.5rem !important;
}
.voice_search_over{
	max-height: 80%;
	top:10%;
	overflow: scroll;
}
.yoyaku_index_hauto .yoyaku_index_margin{
	margin:1.2vw;
}

.yoyaku_index_padTop {
	padding-top: 5vw;
}

.yoyaku_index_hauto .yoyaku_index_padTop2 {
	padding:2.5vw 0
}

.yoyaku_index_hauto .yoyaku_index_form-control2 {
	height:7.5vw;
	width: 90%;
	float:left;
	margin-right:3px;
}

.yoyaku_index_hauto .yoya_height-7 {
	height:7.5vw
}
.yoya_color{
	color:#f00;
}
.yoyaku_index_hauto .yoyaku-wid {
	width:55%
}
.yoyaku_index_hauto .yoya-tacenter {
	text-align:center;
}

.yoyaku_index_hauto .yoya-fst {
	font-size:16px;
	text-align: left;
}

.yoyaku_index_hauto .yoya-padding {
	padding-top: 40px;
	padding-bottom: 40px;
}
.yoya-marginTop {
	margin-top:30px;
}
.yoyaku_index_hauto .yoyaku_bg{
	background-color: #dab800;
}
/* yoyaku_index.blade.php end */

/* yoyaku_confirm.blade.php start*/

.yoyaku_div-form {
    padding-left: 30%;
    padding-right: 30%;
}

.yoyaku_modal-header {
  padding: 0;
  font-weight: 500;
  border-bottom: 1px solid #e9ecef;
}

.yoyaku_close-btn {
  opacity: .5;
  border: none;
  background: none;
  padding-right: 3.5vw;
}

.yoyaku-input{
  height:8.5vw;
  margin-top:1.5vw;
  margin-bottom:5vw;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  box-shadow: inset 0 0 0 transparent;
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.yoyaku_order-btn {
    height: 8.5vw;
    align-items: center;
    left: 2.5vw;
    bottom: 2.5vw;
    margin: 5vw 0;
    text-align: center;
    padding-top: 1.5vw;
    border: none;
}
.yoyaku_txt-white{
    height: 8.5vw;
    align-items: center;
    left: 2.5vw;
    bottom: 2.5vw;
    margin-top: 5vw;
    padding-top: 1.5vw;
}
.yoyaku_required{
    border:3px;
    border-radius:5px;
    padding: 0.5vw 2vw;
    font-weight:bold;
  }
.yoyaku_alertOk-btn{
  border: 1px solid transparent;
  user-select: none;
  padding: .0rem .75rem;
  border-radius: .40rem;
  line-height: 1.5;
  margin: 0 0 0 auto;
  font-size: 1.125rem;/* 18px */
}
.yoyaku_confirm_hauto{
	height: auto;
}
.yoyaku_confirm_opacity{
	opacity: 1;visibility: unset;
}

.yoyaku_confirm_justify{
	justify-content:right;
}

.yoyaku_confirm_cfff{
	color: #ffffff !important;
}

/* yoyaku_confirm.blade.php end*/

/* yoyaku_result.blade.php end */
.yoyaku_res_div-form {
    text-align: center;
    padding-left: 25%;
    padding-right: 25%;
}
.yoyaku_res_topics{
    padding:2px;
    width:100%;
    margin-bottom:12.5vw;
}
.yoyaku_res_topics tr { height: 30px; }

.yoyaku_res_modal_header {
  height: 10vw;
  width: 100%;
  padding: 2.5vw;;
}

.yoyaku_res_modal_header span {
  font-size: 5vw;
  font-weight: bold;
}

.yoyaku_res_modal_header button {
  float: right;
  font-size: 16px;
  outline: none;
  background: none;
  border: none;
  font-weight: bold;
}

.modal_content {
  display: flow-root;
  background: #C6EADD;
  margin-top: 2.5vw;
}

.yoyaku_res_content {
  margin: 7.5vw;
  font-size: 16px;
  background: #fff;
  padding: 2.5vw;
  border-radius: 1.25vw;
}

.yoyaku_res_noti {
  width: 2.5vw;
  height: 2.5vw;
  position: absolute;
  background: red;
  border-radius: 50%;
  top: 0;
  right: 0;
}

.yoyaku_res_algin-code-modal {
  min-height: 25vw;
  padding: 5vw 2.5vw;
}

.yoyaku_res_align-code {
  display: flex;
  justify-content: center;
  margin: 2.5vw;
}

.yoyaku_res_align-code input {
  width: 65%;
  height: 17.5vw;
  text-align: center;
  font-size: 1.875rem;
}
.yoyaku_res_refresh_guide{
	text-align: center;
  	border: solid 1px #2e8b57;
  	background-color: #fff;
  	color: #2e8b57;
}
.yoyaku_res_refresh_guide:hover{
	text-align: center;
  background-color: #B8E6CF;
  opacity: 0.8;
}
.btn-twitter-follow {
  text-decoration: none;
  background-image: linear-gradient(#fff,#f5f8fa);
  border: 1px solid #e6ecf0;
  border-radius: 4px;
  color: #393e42;
  cursor: pointer;
  display: inline-block;
  font-size: 14px;
  font-weight: bold;
  padding: 2vw 3.5vw;
  position: relative;
 }

.btn-twitter-follow i {
  color: #1da1f3;
}

.btn-twitter-follow:hover {
  background-color: #e6ecf0;
  background-image: linear-gradient(#fff,#e6ecf0);
  border-color: #e6ecf0;
}
.yoyaku_res_btn-green txt-white{
	background-color: red;
}
@media screen and (min-width: 1000px) {
	.yoyaku_res_code-wrap-popup {
	  margin-top:10%;
	}
}

@media screen and (max-width: 768px) {
  .yoyaku_res_code-wrap-popup {
    width: 50% !important;
	margin-top:20% !important;
  }
}

@media screen and (max-width: 520px) {
  .yoyaku_res_code-wrap-popup {
    width: 100% !important;
	margin-top:50% !important;
  }
}

.yoyaku_res_order-btn-link {
	padding: 1.25vw;
	width: calc(96% /2);
	border-radius: 2px;
	background-color: #9CCCB4;
	text-align: center;
	line-height: 3;
  height:30px;
  padding-bottom:1.25vw;
}
.yoyaku_res_yoyaku-text{
  color:#9CCCB4;
  font-size: 120px;
  font-weight: 500;
  height:150px;
}

.yoyaku_res_yoyaku-people{
  color:#2e8b57;
  font-size: 15px;
  text-align: right;
  margin-bottom:5vw;
}
.yoyaku_res_waiting-list{
  background-color:#83CCA7;
  text-align: center;
  padding:2.5vw 1.25vw;
 height:10vw;
 color:white;
 border:solid 1px white;
 min-width: 45px;
}
.yoyaku_res_waiting-data{
  background-color:#B8E6CF;
  opacity:0.7; 
  padding:1.25vw;
  height:10vw;
  color:#136113;
  border:solid 1px white;
  text-align: center;
  min-width: 45px;
}
/**footer css add */
    .common_footer_button {
        margin: 0 -10px;
        padding: 2vw;
        border-radius: 10px;
        width: auto;
        min-width: 12.5vw;
        height: 10vw;
        text-align: center;
    }
    

    .align_link {
        display: grid;
        margin-top: -6.25vw;
    }

    .align_link i {
        font-size: 2.5rem;
    }

    .align_link span {
        font-size: 0.75rem;
        font-weight: bold;
        margin-top: -3.75vw;
    }

    .cart_name {
        font-size: 12px;
        font-weight: bold;
        margin-top: 0.75rem;
        text-align: center;
    }

    .align_cart_div {
        display: grid;
        margin: -5px 5px 0 5px;
    }
    .selected {
    color: #9cccb4;
    }
	.lang_contents{
		margin-top: 20%;
		padding-top:4vw;
	}
	.lang_aMargin{
		margin-bottom: 1.25vw;
	}
	.code_modal_marginTop{
		margin-top:55%;
	}
	.yoyaku_res_yoyaku_bg-fa9c07{
		background-color: #fa9c07;
	}
	.yoyaku_res_yoyaku_bg-dab800{
		background-color: #dab800;
		line-height: 1.7;
	}
	.yoyaku-font-875 {
		font-size: 0.875rem;
	}
/* yoyaku_result.blade.php end */

/* pay_history_list.blade.php  start */
.pay_historylist{
	width: 96%;
    margin-left: 2%;
}

.pay_historylist .td {
	padding: 10px 10px;
}

.pay_historylist .product-name {
    word-wrap: break-word;
    text-align: left;
    width: 65%;
}

.pay_historylist .product-num {
    text-align: right;
    word-break: keep-all;
    width: 27%;
}

.pay_historylist .product-price-name {
    word-wrap: break-word;
    text-align: left;
    width: 70%;
    margin-top: 0px;
    margin-bottom: 0px;
    padding-top: 0px;
    padding-bottom: 0px;
}

.pay_historylist .product-price {
    text-align: right;
    word-break: keep-all;
    width: 22%;
    margin-top: 0px;
    margin-bottom: 0px;
    padding-top: 0px;
    padding-bottom: 0px;
}

.pay_historylist .color-grey {
    color: #756f6f;
}

.pay_historylist .font-size-12 {
    font-size: 12px;
}

.pay_historylist .discount-name {
    word-break: keep-all;
    text-align: left;
    width: 70%;
    padding-top: 0px;
    padding-left: 10%;
    padding-bottom: 5px;
}

.pay_historylist .discount-price {
    text-align: right;
    word-break: keep-all;
    width: 30%;
    padding-top: 0px;
    padding-bottom: 5px;
}


/* pay_history_list.blade.php end */

/* vend_payfinish.blade.php start */

.order-btn >div.payfinish_btn-green{
	font-size: 1.1rem;
    background-color: #9cccb4;
    border-radius: 10px;
    border: 3px solid #9cccb4;
}

.payfinish_font-sz{
	font-weight: bold;
}
.display-none {
	display: none !important;
}

.payfinish_grid-div{
	display: grid;
	grid-template-columns: 40% 60%;
	height:40vw;
}

.payfinish_hr{
	height: 3px !important;
	opacity: unset !important;
	margin-left: 1.5%;
}
.payfinish_dp-flex{
	padding: 4vw 0 !important;
}
.payfinish_text-panel{
	margin: 0px auto;
	display: flex;
	/* justify-content: space-around; */
	flex-flow: row wrap;
	align-items: center;
	transform: translateX(5%);
}
.payfinish_remind-text{
	padding: 1.5vw;
    width: 50%;
    max-width: 50%;
    border-radius: 2px;
    text-align: center;
    line-height: 3;
    height: 35vw;
    overflow: hidden;
    justify-content: center;
    align-items: center;
    display: flex;
    border-radius: 20px;
    border: 3px solid transparent;
    font-weight: bold;
    font-size: .8rem;
    text-align: left;
}
.payfinish_td{
	font-size: 1.3rem;
}
.payfinish_td-left{
	word-wrap: break-word;
	text-align: left;
	width: 50%;
}
.payfinish_td-right{
	text-align: right;
	word-break: keep-all;
	width: 50%;
}
.payfinish_triangle-left {
	left: 0;
	width: 0;
	height: 0;
	border-top: 25px solid transparent;
	border-right: 50px solid;
	border-bottom: 25px solid transparent;
	transform: translateY(-5px);
	border-color: transparent;
}
.payfinish_inner-triangle {
	position: relative;
	top: -25px;
    left: 5px;
	width: 0;
	height: 0;
	border-top: 25px solid transparent;
	border-right: 50px solid;
	border-bottom: 25px solid transparent;
}
.payfinish_h1{
	border-bottom : unset;
}
.vendor_thank_you{
	font-weight: bold;
	padding-left: 12%;
    padding-right: 12%;
}
.vendor_thank_you_hr{
	opacity: unset !important;
    height: 3px !important;
    margin-left: 10%;
}
.vendor_thank_height {
	height:2px;
	border-width:0;
}
.vendor_thank_width-97 {
	width:97%;
}

.vendor_thank_color {
	color:#007bff !important;
}

.payfinish_big-font{
	font-weight: bold;
}

.payfinish_order_info {
	width: 96%;
	margin-left: 2%;
	font-size: 14px;
}
.payfinish_order_info td {
	padding: 2.5vw;
}
.popup_marginTop {
	margin-top:15px !important;
}
@media screen and (min-width: 600px) {
	.payfinish_text-panel{
		transform: translateX(-3%);
		width: 134%;
	}
}

@media screen and (max-width: 600px) {
	.payfinish_mb-speech{
		position: absolute;
		left: 31%;
		width: 100%;
		transform: scale(0.85);
	}
	.payfinish_remind-text{
		line-height:2;
	}
}

@media screen and (max-width: 450px) {
	.payfinish_vendor-img{
		margin-top: -40% !important;
		margin-bottom: -40%  !important;
	}
}
/* vend_payfinish.blade.php end */

/*  ticket-vebdor.blade.php start */
.check_circle_img{
	margin-left: auto;
    margin-right: auto;
}
.ticket_bottom-10,.self-cashier_bottom-10 {
	bottom: 2.5vw;
}

/* .self-cashier-btn-set{
	position:absolute;
	text-align: center;
	vertical-align: bottom;
	background-color: #ffff;
	border-color: #9cccb4;
	border: 2px solid #9cccb4;
	margin: 2.5vw !important;
	bottom: 50%;
	width: 30.5vw;
	padding: 1.25vw 2.5vw;
	font-size: 0.85rem;
	color: #9cccb4;
	border-radius: 10px;
	box-shadow: 5px 5px #9cccb4;
	display: inline-block;
	text-align: center;
	background-color: white;
	font-weight: 700;
} */

/* .ticket_btn-transform {
	left: unset !important; 
	transform: translateX(-61%);
} */

/* .ticket_btn-transform2 {
	right: unset !important; 
	transform: translateX(-63%);
} */

.ticket-select-text,.self-cashier-select-text{
	top: 17%;
	position: absolute;
	right: 14%;
	padding: 2%;
	background: white;
	left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    border-top: 2px solid orange;
    border-bottom: 2px solid orange;
}

.ticket-main,.self-cashier-main{
	position: relative;
}

@media only screen and (max-width: 345px) {
	.ticket_eatin-btn {
		left: 5% !important;
	}
	.ticket_takeout-btn {
		right: 5% !important;
	}
}

.ticket_eatin-btn{
	right: 10%;
	height: 25.5vw;
	top: 25%;
	box-shadow : unset;
	border: 1px solid #E5E5E5;
	/* border-left: 10px solid #dfdfdf;
    border-top: 10px solid #f1f1f1;
    border-bottom: 10px solid #ababab;
    border-right: 10px solid #ccc; */
	border-radius: unset;
    /* padding:.1em .3em; */
	
}

.ticket_takeout-btn{
	left:10%;
	height: 25.5vw;
	top: 25%;
	box-shadow : unset;
	border: 1px solid #E5E5E5;
	/* border-left: 10px solid #dfdfdf;
    border-top: 10px solid #f1f1f1;
    border-bottom: 10px solid #ababab;
    border-right: 10px solid #ccc; */
	border-radius: unset;
    /* padding:.1em .3em; */
}
.ticket_self_cashier-btn{
	right: 0%;
	height: 25.5vw;
	top: 25%;
	box-shadow : unset;
	border: 1px solid #E5E5E5;
	/* border-left: 10px solid #dfdfdf;
    border-top: 10px solid #f1f1f1;
    border-bottom: 10px solid #ababab;
    border-right: 10px solid #ccc; */
	border-radius: unset;
    /* padding:.1em .3em; */
}
.ticket_eatin-btn:active,.ticket_takeout-btn:active,.ticket_self_cashier-btn:active,.self_cashier-btn:active {
    /* box-shadow: unset;
    transform: unset; */
	border-right: 10px solid #dfdfdf;
    border-bottom: 10px solid #f1f1f1;
    border-top: 10px solid #ababab;
    border-left: 10px solid #ccc;
}

.ticket_single_service{
	width: 100%;
	border-radius: 0px;
	top: 27%;
	background: white;
}

/* ticket-vebdor.blade.php end */

/* show_browsing_history.blade.php start */
.browsing_his_item {
	width: 96%;
    margin: 2%;
    padding: 0px;
    overflow: hidden;
    position: relative;
    background-color: #FFF;
    border: 3px solid #9cccb4;
    border-radius: 15px;
}
.browsing_his_img{
	width: 100vw;
}
/* show_browsing_history.blade.php end */

/* shop.blade.php start */

.shop_body{
    width: 80%;
    margin: 8vw auto;
    border: 1px solid #b5b5b6;
  }
  .shop_tit{
    width: 100%;
    font-weight: bold;
    padding: 10px;

  }
  .shop_con{
    width: 100%;;
    padding: 10px;
    border-top: 1px solid #b5b5b6;
    border-bottom: 1px solid #b5b5b6;
  }
  .shop_modal_con{
    width: 100%;
    display: flex;
  }
  .shop_modal_locale{
    width: 33%;
    font-weight: bold;
  }

  .shop_padding-T-B {
	padding-top: 12vw;
	padding-bottom: 0px;
  }
  .shopbg-9CCCB4{
	background:#9CCCB4 !important;

  }

  .shop_can_padding {
	padding: 0 20%
  }
  .shop_qr-code-text {
	background: red;
	color: #fff;
	padding: 2.5vw 5vw;
  }

  .qr-code-area {
	text-align: center;
	margin-bottom: 5vw;
  }

/*  shop.blade.php end */

/* pre_menu.blade.php start */
.pre_menu_alignTitle {
	width: 100%;
	display: flex;
	justify-content: center;
	text-align: center;
	font-size: 1.3rem;
	height: 30%;
	position: relative;
}
.pre_menu_alignTitle > div {
	position: absolute;
    bottom: 0;
}

.pre_menu_alignImg {
	width: 100%;
	overflow: auto;
	-o-object-fit: contain;
	object-fit: contain;
}

/*  pre_menu.blade.php end */
/* popup  */
.popup_first_img{
	width: 8vw;
}

/* popup end */
.pay_err_c-button {
    appearance: none;
    border: 0;
    border-radius: 5px;
    background: #4676D7;
    color: #fff;
    padding: 8px 16px;
    font-size: 16px;
    width: 25vw;
    margin:auto;
    text-align: center;
}
/* loading.blade.php start */
.loading-modal {
	position: fixed;
	width: 100%;
	left: 0;
	text-align: center;
	z-index:1001;
	top: 20vh;
}
.loading-modal .loading-modal-body {
	width: 80%;
	margin-left: 10%;
	background: #fff;
	padding: 3%;
	border: 9px double #7DB08B;
	border-radius: 25px;
}
.loading-modal .loading-modal-body .loading-modal-text {
	margin: 1%;text-align:center;
}
.loading-modal-cover {
	position: fixed;
	left: 0px;
	top: 0px;
	background:rgba(0, 0, 0, 0.4);
	width: 100%;
	height: 100%;
	opacity: 0.6;
	z-Index: 1000;
}
/* loading.blade.php end */
/* voice_search.blade.php start */
.voice-search {
	max-width: 100%;
}
.voice-search .voice-search-body {
	height:50%;
	/* margin:2.5vw; */
}
.voice-search .microphone {
	top: 9rem;
	width: 100%;
	left: 0rem;
}
.voice-search .microphone img {
	border: none;
	vertical-align: bottom;
	pointer-events: none;
}
.modal-alert-voice {
	max-height: 80%;
	top:10%;
	overflow:auto;
}
.modal-alert-voice .modal-alert-voice-body {
	height:50%;
	margin:2.5vw;
	overflow:auto;
}
/* voice_search.blade.php end */
/* delivery_input_form.blade.php start */
.customer-info .md-form-group .md-label {
	display: inline;
	margin-left: 5%;
}
/* voice_search.blade.php end */
/* not_first_seat.blade.php start */
.not-first-seat {
	position: fixed;
	width: 100%;
	left: 0;
	z-index: 1001;
	top: 100px;
}
.not-first-seat-body {
	margin-left: 10%;
	padding: 3%;
	border: 9px double #9CCCB4;
	border-radius: 25px;
}
.not-first-seat-body .btn-green {
	margin: 1%;
	line-height:2;
	border-radius: 15px;
	border: 3px solid #9cccb4;
	padding: 10px;
}

.not-first-seat-body .no-seat-message {
	margin: 1%;
}
.not-first-seat-body .no-seat-margin {
	margin-top: 10%;
}
.not_first_seat_cover {
	position: fixed;
	left:0px;
	top:0px;
	background:rgba(0, 0, 0, 0.4);
	height:100%;
	width: 100%;
	opacity:0.6;
	z-Index:1000;
}
/* not_first_seat.blade.php end */
.pay_his_h1{
	padding-bottom: 1.25vw;
}
.bill-split-mtop{
	margin-top: -5vw;
}
.bill-split-ptop{
	padding-top:5vw;
}
.bill-split-fs{
	font-size:1.25rem;
	font-weight:bold;
}
/* confirm.blade.php start */
.confirm-btn-close {
	position: absolute;
    right: 0;
    top: 0;
}
.no_order{
	top: -20vw;
	position: relative;
}
.confirm-gray{
	background-color: #b5b5b6;
	border: 3px solid #b5b5b6;
}
.confirm-receipt {
	display: none;
}
.confirm-receipt + *::before {
	content: "";
	display: inline-block;
	vertical-align: bottom;
	width: 16px;
	height: 16px;
	margin-right: 0.3rem;
	border-radius: 10%;
	border-style: solid;
	border-color: #9cccb4;
	flex-shrink: 0;
	border: 2px solid #9cccb4;
}
.confirm-receipt:checked + * {
	color: black;
}
.confirm-receipt:checked + *::before {
	content: "✓";
	color: white;
	text-align: center;
	background: #9cccb4;
	border-color: #9cccb4;
}
.confirm-receipt + * {
	display: inline-flex;
	padding: 0.5rem 1rem;
}
/* confirm.blade.php end */
/* error.blade.php start */
.error-message {
	padding-top: 30vh;
}
/* error.blade.php end */
/* index_store_list.blade.php.blade.php start */
.index-store-img {
	height: 25vw;
	width: 25vw;
	max-width: 25vw;
}
/* index_store_list.blade.php end */
/* popup.blade.php start */
.popTimeSale .pop_menuitem {
	width: auto;
}
/* popup.blade.php end */
/* seld_cashier.blade.php start */
.self_cashier-btn{
	right: 30%;
	height: 25.5vw;
	top: 25%;
	box-shadow : unset;
	border: 1px solid #E5E5E5;
	/* border-left: 10px solid #dfdfdf;
    border-top: 10px solid #f1f1f1;
    border-bottom: 10px solid #ababab;
    border-right: 10px solid #ccc; */
	border-radius: unset;
    /* padding:.1em .3em; */
}
.soundtitle {
    border-top: 1px solid var(--system-secondary-color);
    border-bottom: 1px solid var(--system-secondary-color);
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    margin-top: 3rem;
}

.select-eatin-takeout-white {
    position: absolute;
    transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.fc-666666{
	color: #666666 !important;
}

.pre_menu_alignDiv {
    text-align: center;
}
.pre_menu_alignDiv img {
    width: 50%;
    margin-bottom: 5%;
    margin-top: 5%;
}
.font-size-2vw{
	font-size: 2vw;
}