@charset "UTF-8";

/*==========================================================================
# reset - ブラウザの差異や不要なスタイルを無くすためのスタイル
========================================================================== */
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td,
small,
button,
time,
figure {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

li,
dd {
  list-style-type: none;
}

header,
footer,
nav,
section,
article,
aside,
figure,
figcaption {
  display: block;
}

img {
  border: none;
  vertical-align: bottom;
}

a {
  cursor: pointer;
  text-decoration: none;
}

.pc {
  display: none;
}

@media (min-width: 992px) {
  .pc {
    display: block;
  }
}

.sp {
  display: block;
}

@media (min-width: 992px) {
  .sp {
    display: none;
  }
}

/*1.0rem=10px*/
html {
  font-size: 62.5%;
}

body {
  background-color: #FBFBFB;
  color: #000;
  font-weight: 400;
  font-family: "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Sans", "ヒラギノ角ゴシック", YuGothic, "Yu Gothic", "メイリオ", Meiryo, "Arial", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

img {
  width: 100%;
}

button {
  background-color: transparent;
  cursor: pointer;
}

input,
label,
a {
  cursor: pointer;
}

dt,
dd {
  line-height: 1.6;
  margin-left: 0px;
}

/***********************************************
header
************************************************/
.l-header {
  height: 56px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background-color: #fff;
  /* box-shadow: 2px 2px 4px rgb(179, 179, 179); */
}

.l-header.--static {
  position: absolute;
}

@media (min-width: 992px) {
  .l-header {
    height: 100px;
  }
}

/***********************************************
headerの内容
************************************************/
.l-header__items {
  display: flex;
  justify-content: space-between;
}

@media (min-width: 992px) {
  .l-header__items {
    justify-content: flex-start;
  }
}

/***********************************************
header              左               ロゴ*****/
.l-header__left {
  margin-left: 10px;
  margin-right: auto;
}

@media (min-width: 992px) {
  .l-header__left {
    margin-right: 50px;
  }
}

.l-header__logo-wrapper {
  display: block;
  width: 130px;
  margin: 12px 0 5px;
  transition: all 0.2s linear 0s;
  text-align: center;
  color: #000;
  font-size: 10px;
}

.l-header__logo-wrapper:hover {
  opacity: 0.7;
}

.l-header__logo-wrapper img {
  width: 116px;
  display: block;
  margin: 0 auto 5px;
}

@media (min-width: 992px) {
  .l-header__logo-wrapper {
    width: 230px;
    margin: 20px 20px;
    font-size: 18px;
  }

  .l-header__logo-wrapper img {
    width: 230px;
  }
}

/***********************************************
header       右            *****/
.l-header__right {
  display: flex;
  justify-content: flex-end;
  font-size: 16px;
  font-weight: 700;
  vertical-align: bottom;
  margin: 12px 10px 0;
}

@media (min-width: 768px) {
  .l-header__right {
    margin-right: 2vw;
  }
}

@media (min-width: 992px) {
  .l-header__right {
    margin: 36px 10px 0;
  }
}

.l-header__right a {
  transition: all 0.2s linear 0s;
  color: #006ED3;
}

.l-header__right a:hover {
  opacity: 0.7;
}

.l-header__right img {
  width: 20px;
  display: block;
  margin: 0 auto;
}

@media (min-width: 992px) {
  .l-header__right {
    width: 100%;
  }
}

.l-header__logout-wrapper,
.l-header__register-wrapper,
.l-header__document-wrapper {
  width: 60px;
  text-align: center;
  font-size: 10px;
  text-decoration: underline;
  display: block;
}

.l-header__logout-wrapper img,
.l-header__register-wrapper img,
.l-header__document-wrapper img {
  width: 22px;
}

a.l-header__logout-wrapper {
  color: #EB5C02;
  width: 80px;
}
a.l-header__document-wrapper {
  color: #000;
  width: 80px;
}

a.l-header__logout-wrapper img {
  width: 18px;
  margin-bottom: 4px;
  padding-top: 2px;
}

.l-header__main {
  /* margin-top: 79px; */
  margin-top: 59px;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 100px;
}

@media (min-width: 992px) {
  .l-header__main {
    margin-top: min(20vw, 100px);
  }
}

/***********************************************
pc
************************************************/
.l-header__right-top {
  display: none;
}

@media (min-width: 992px) {
  .l-header__right-top {
    font-size: 11px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 10px 30px 10px 0;
    border-bottom: 1px solid #DDDDDD;
  }

  .l-header__right-top span {
    font-weight: 400;
  }
}

.l-header__edit-info,
.l-header__logout {
  padding: 0 10px;
  /* border-left: 1px solid #000; */
  border-right: 1px solid #000;
  font-size: 14px;
}

.l-header__logout {
  border-left: none;
  color: #EB5C02 !important;
}

.l-header__pc-right-items {
  width: 100%;
  padding-right: 10px;
  font-weight: 700;
}

.l-header__right-bottom {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding-top: 10px;
}

.l-header__right-bottom-texts {
  margin-top: -10px;
  font-size: 13px;
  line-height: 1.4;
}

.l-header__icons {
  display: flex;
  justify-content: flex-end;
  font-size: 14px;
  font-weight: 700;
  margin-right: 20px;
}

.l-header__icons a {
  transition: all 0.2s linear 0s;
  color: #006ED3;
  text-decoration: underline;
}

.l-header__icons a:hover {
  opacity: 0.7;
}

.l-header__icons img {
  width: 25px;
  display: block;
  margin: 2px auto;
}

.l-footer {
  width: 100%;
  height: auto;
  text-align: center;
  line-height: 2;
  z-index: 900;
  background-color: #fff;
  padding-bottom: 0;
  font-size: 20px;
  font-weight: 400;
  border-top: 1px solid #DDDDDD;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
}

.l-footer a {
  transition: all 0.2s linear 0s;
}

.l-footer a:hover {
  opacity: 0.7;
}

.l-footer__right {
  display: flex;
  justify-content: flex-end;
  font-size: 9px;
  font-weight: 700;
}
.l-footer__right > li {
  width: 50%;
  padding: 5px;
}
.l-footer__right > li:nth-child(1){
  background-color: #f5f5f5;
}
.l-footer__right > li:nth-child(2){
  background-color: #FFCC99;
}


.l-footer__right a {
  transition: all 0.2s linear 0s;
  color: #006ED3;
}

.l-footer__right a:hover {
  opacity: 0.7;
}

.l-footer__right img {
  width: 24px;
  display: block;
  margin: 0 auto;
}

a.l-footer__cart {
  display: block;
  margin: 0;
  color: #000;
  font-size: 10px;
}

a.l-footer__cart span {
  padding-top: 2px;
}

a.l-footer__cart::before {
  content: "";
  font-family: inter;
  top: 0;
  left: 30%;
  display: inline-block;
  padding: 0px 6px;
  text-decoration: none;
  background: #EB5C02;
  color: #FFF;
  border: 1px solid #fff;
  border-radius: 30px;
  font-size: 10px;
}

a.l-footer__cart.--pc-header {
  font-size: 14px;
  margin: 0 30px 15px 50px;
}

a.l-footer__cart.--pc-header::before {
  content: "";
  left: -5px;
  font-size: 9px;
  padding: 4px 6px;
}

.l-footer__copyright--wrapper {
  display: none;
}

.l-footer__copyright {
  display: block;
  width: 100%;
  color: #a9a2a2;
  font-size: 14px;
  letter-spacing: 0.2em;
  border-top: none;
  background-color: #FBFBFB;
  padding: 5px 0px;
}
@media (min-width: 992px) {
  .l-footer__copyright--wrapper {
    display: block;
  }
}

/* .l-footer__copyright.--login {
  border-top: none;
  font-size: 16px;
  padding: 5px 0px;
  color: #a9a2a2;
  letter-spacing: 0.2em;
} */

.l-contact {
  text-align: center;
  background-color: #ffa3a3;
}

.l-contact p {
  color: #BCDEF1;
}

.l-contact__inner {
  width: 98%;
  max-width: 1140px;
  margin: 0 auto;
}

.l-contact__heading {
  width: 80%;
  max-width: 778px;
  margin: 0 auto;
  padding-top: 120px;
}

@media (min-width: 576px) {
  .l-contact__heading {
    width: 90%;
    padding-top: 90px;
    padding-bottom: 10px;
  }
}

.l-contact__buttons {
  display: flex;
  justify-content: center;
  font-size: 20px;
  margin-top: 40px;
  font-weight: 700;
}

.l-contact__buttons a {
  color: #fff;
}

.l-contact__buttons img {
  width: 30px;
}

@media (min-width: 576px) {
  .l-contact__buttons img {
    width: 22px;
    vertical-align: middle;
  }
}

.l-contact__buttons .line,
.l-contact__buttons .contact {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 364px;
  height: 80px;
  background-color: #4877B0;
  margin: 0 10px;
}

@media (min-width: 576px) {

  .l-contact__buttons .line,
  .l-contact__buttons .contact {
    font-size: 14px;
    display: inline-block;
    margin: 0;
    width: 300px;
    height: 50px;
    margin: 10px;
    line-height: 50px;
  }
}

.l-contact__buttons .line {
  background-color: #00B900;
}

@media (min-width: 576px) {
  .l-contact__buttons {
    display: block;
    margin: 0px auto;
  }
}

.l-contact__tel-info {
  padding: 40px 0;
}

@media (min-width: 576px) {
  .l-contact__tel-info {
    padding-top: 20px;
    padding-bottom: 10px;
  }
}

.l-contact__tel-number {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 56px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.l-contact__tel-number span {
  font-size: 32px;
}

@media (min-width: 576px) {
  .l-contact__tel-number span {
    font-size: 16px;
  }
}

@media (min-width: 576px) {
  .l-contact__tel-number {
    font-size: 28px;
  }
}

.l-contact__tel-info-text {
  font-size: 20px;
  letter-spacing: 0.04em;
}

@media (min-width: 576px) {
  .l-contact__tel-info-text {
    font-size: 15px;
  }
}

.l-contact__price {
  width: 100%;
  margin: 30px auto 0;
  padding-bottom: 100px;
}

@media (min-width: 576px) {
  .l-contact__price {
    width: 90%;
    padding-bottom: 50px;
  }
}

.c-inner__center {
  min-width: 350px;
  width: 80%;
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
  line-height: 1.3;
}

@media (min-width: 992px) {
  .c-inner__center {
    width: 80%;
  }
}

.c-inner__center.--cancel {
  max-width: 100%;
  width: 95%;
}

.c-inner__left {
  width: 70%;
  max-width: 500px;
  margin: 0 auto;
  text-align: left;
}

@media (min-width: 992px) {
  .c-inner__left {
    width: 80%;
  }
}

.c-inner__left.--login {
  width: 90%;
  max-width: 900px;
}

@media (min-width: 992px) {
  .c-inner__left.--login {
    background-color: #fff;
    padding: 60px 60px 80px;
    margin: 10px auto 150px;
  }
}

.c-inner__align-left {
  text-align: left;
}

.c-inner__flex {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.c-inner__flex.--no-wrap {
  flex-wrap: nowrap;
}

.c-inner__flex-end {
  display: flex;
  justify-content: flex-end;
}

.c-inner__relative {
  position: relative;
}

.c-inner__transparent {
  background-color: transparent;
}

/***********************************************
margin
************************************************/
.c-margin__top-xs-minus {
  margin-top: -3px;
}

.c-margin__top-xs {
  margin-top: 5px;
}

.c-margin__top-small {
  margin-top: 10px;
}

.c-margin__top-medium {
  margin-top: 20px;
}

.c-margin__top-large {
  padding-top: 60px;
}

.c-margin__left-small {
  margin-left: 10px;
}

.c-margin__left-medium {
  margin-left: 20px;
}

.c-margin__left-large {
  margin-left: 30px;
}

.c-margin__left-auto {
  margin-left: auto;
}

.c-margin__right-small {
  margin-right: 10px;
}

.c-margin__bottom-small {
  margin-bottom: 10px;
}

.c-margin__bottom-medium {
  margin-bottom: 20px;
}

.c-margin__bottom-m-l {
  margin-bottom: 40px;
}

.c-margin__bottom-large {
  margin-bottom: 60px;
}

.c-margin__bottom-ll {
  margin-bottom: 100px;
}

/***********************************************
font
************************************************/
.c-font__regular {
  font-weight: 400;
}

.c-font__medium {
  font-weight: 500;
}

.c-font__semibold {
  font-weight: 600;
}

.c-font__bold {
  font-weight: 700;
}

.c-font__13px {
  font-size: 12px;
}

@media (min-width: 992px) {
  .c-font__13px {
    font-size: 14px;
  }
}

.c-font__14px {
  font-size: 14px;
}

@media (min-width: 992px) {
  .c-font__14px {
    font-size: 16px;
  }
}

.c-font__18px {
  font-size: 18px;
}

@media (min-width: 992px) {
  .c-font__18px {
    font-size: 20px;
  }
}

.c-font__20px {
  font-size: 20px;
}

@media (min-width: 992px) {
  .c-font__20px {
    font-size: 24px;
  }
}

/*footer hidden*/
.is-hidden {
  display: none;
}

/***********************************************
mordal表示　背景部分
************************************************/
/* 黒 背景 */
.c-modal__layer {
  background: rgba(0, 0, 0, 0.8);
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s linear 0s;
}

.c-modal__layer.is-open {
  z-index: 999;
  opacity: 1;
  visibility: visible;
}

.c-modal__layer.is-open .c-modal {
  opacity: 1;
  visibility: visible;
}

/* モーダル表示非表示調整コンテナ */
.c-modal {
  position: relative;
  min-width: 375px;
  width: 90%;
  opacity: 0;
  visibility: hidden;
  padding: 20px 0 5px;
  margin: 0 auto;
  transition: all 0.5s linear 0s;
}

/*モーダル表示白背景*/
.c-modal__inner {
  min-width: 375px;
  width: 90%;
  height: auto;
  margin: 0 auto 0;
  position: relative;
  background: #fff;
  display: block;
  padding: 22px 8px 45px;
  transition: all 0.5s linear 0s;
}

/*ボタンクリッカブルエリアの位置決め*/
.c-modal__button-wrap {
  position: absolute;
  right: 2px;
  top: 10px;
  display: inline-flex;
}

/*クリッカブルエリア*/
.c-modal__close-button {
  position: relative;
  width: 50px;
  height: 50px;
  cursor: pointer;
  background-color: transparent;
  /*ばつマーク*/
}

.c-modal__close-button span {
  width: 15px;
  height: 2px;
  background: #BCBCCB;
  display: inline-block;
  position: absolute;
  left: calc(50% - 7.5px);
  top: 50%;
}

.c-modal__close-button span:nth-child(1) {
  transform: rotate(45deg) translate(-1px, -1px);
}

.c-modal__close-button span:nth-child(2) {
  transform: rotate(-45deg) translate(1px, -1px);
}

.c-modal__content {
  padding: 23px 0;
}

/*黒背景*/
.c-modal__layer-black {
  background: rgba(0, 0, 0, 0.8);
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s linear 0s;
}

.c-modal__layer-black.is-open {
  z-index: 999;
  opacity: 1;
  visibility: visible;
}

/*モーダル表示白背景*/
.c-modal__layer-white-admin {
  background: #fff;
  width: 97%;
  max-width: 1500px;
  padding: 42px 5px 46px 40px;
  margin: 50px auto;
  height: 800px;
  overflow-y: scroll;
  position: relative;
}

.c-modal__layer-white-admin.--noscroll {
  height: auto;
  overflow-y: hidden;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.content {
  margin: 0 auto;
  padding: 40px;
}

.modal {
  display: none;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  /*追記*/
  width: 100%;
  z-index: 999;
}

.modal.--cancel {
  display: block;
}

.modal__bg {
  background: rgba(0, 0, 0, 0.8);
  height: 100vh;
  position: absolute;
  width: 100%;
}

.modal__content {
  background: #f5f5f5;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 80%;
  padding: 20px 0;
  overflow-y: auto;
  overflow-x: hidden;
  font-weight: 700;
}

.modal__content::-webkit-scrollbar {
  width: 4.5px;
}

.modal__content::-webkit-scrollbar-thumb {
  height: 70px;
  border-radius: 10px;
  background-color: #A5A4BF;
}

@media (min-width: 992px) {
  .modal__content {
    background: #FFF;
    width: 70%;
  }
  .modal__content .p-dashboard__order-food .p-dashboard__food-number {
    position: initial;
    text-align: center;
  }
  .p-dashboard__order-food-container .p-dashboard__order-food .p-dashboard__food-number {
    position: initial;
    text-align: center;
    border-top: 1px solid #000;
    padding-top: 10px;
  }
}

.modal__content2 {
  background: #fff;
  left: 50%;
  font-weight: 700;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  min-width: 320px;
  width: 60%;
  height: 80%;
  margin: 0 auto;
  padding: 0;
  overflow-y: auto;
}

.modal__content2::-webkit-scrollbar {
  width: 4.5px;
}

.modal__content2::-webkit-scrollbar-thumb {
  height: 70px;
  border-radius: 10px;
  background-color: #A5A4BF;
}

.modal__content2 .c-inner__left {
  width: 80%;
  margin: 30px auto;
}


@media (min-width: 992px) {
  .modal__content2 {
    padding: 50px 20px;
    height: 60vw;
    max-height: 700px;
    padding-top: 50px;
    width: 35%;
    max-width: 420px;
  }
}

.modal__content2.--black {
  background-color: transparent;
  box-shadow: none;
  width: 100%;
  max-width: 100%;
}

.c-modal__scroll-bar {
  overflow-y: auto;
  font-weight: 700;
}

.c-modal__scroll-bar::-webkit-scrollbar {
  width: 4.5px;
}

.c-modal__scroll-bar::-webkit-scrollbar-thumb {
  height: 70px;
  border-radius: 10px;
  background-color: #A5A4BF;
}

.c-icon {
  position: relative;
}

.c-icon::before {
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
}

.c-icon::after {
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
}

.c-icon__right {
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent transparent transparent #bcdef1;
  border-width: 24px 0px 24px 21px;
  margin: 30px;
}

.c-icon__top-triangle::before {
  background-image: url(../img/s6-head-icon.png);
  width: 127px;
  height: 80px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

input,
textarea,
select {
  width: 100%;
  max-width: 100%;
  font-family: "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Sans", "ヒラギノ角ゴシック", YuGothic, "Yu Gothic", "メイリオ", Meiryo, "Arial", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 15px;
  padding: 10px 10px;
  border: 1px solid rgb(179, 179, 179);
  border-radius: 5px;
}

input:focus,
textarea:focus,
select:focus {
  border: 1px solid #EB5C02;
  outline: 0;
}

input::placeholder,
textarea::placeholder,
select::placeholder {
  color: #AAAAAA;
  font-weight: 400;
  font-size: 13px;
}

@media (min-width: 992px) {

  input::placeholder,
  textarea::placeholder,
  select::placeholder {
    font-size: 15px;
  }
}

label {
  display: block;
}

select {
  display: block;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  font-weight: 400;
}

select:invalid {
  color: #BBBBBB;
}

select option {
  color: black;
}

select:focus {
  outline: 0;
  outline: 1px solid #EB5C02;
}

.validation-error {
  color: rgb(255, 69, 58);
}

/* inputのすぐ隣に配置するメッセージ要素 */
.error-message {
  font-size: 11px;
  color: #EC0000;
  /* 非表示に */
}

/* :invalid時だけ隣の要素を表示 */
input:invalid+.error-message,
select:invalid+.error-message {
  display: block;
}

/***********************************************
セレクトボタン
************************************************/
.c-button__select {
  width: 155px;
  position: relative;
}

.c-button__select::before {
  content: "▼";
  width: 10px;
  height: 10px;
  font-size: 10px;
  position: absolute;
  /*top: 12px;*/
  top: 13px;
  right: 10px;
  pointer-events: none;
  z-index: 50;
}

@media (min-width: 992px) {
  .c-button__select {
    width: 200px;
  }
}

.c-button__select.--order2 {
  width: 100%;
}

.c-button__select::-ms-expand {
  display: none;
}

.c-button__select.p-dashboard__delivery-date {
  width: 126px;
}

/***********************************************
セレクトボタンここまで
************************************************/
textarea {
  font-size: 13px;
}

@media (min-width: 992px) {
  textarea {
    font-size: 14px;
  }
}

.btn-square-shadow {
  display: inline-block;
  padding: 0.7em 1.5em;
  text-decoration: none;
  background: #EB5C02;
  color: #FFF;
  border-radius: 5px;
  width: 80px;
}

@media (min-width: 992px) {
  .btn-square-shadow {
    width: 80px;
  }
}

.btn-square-shadow.--blue {
  background-color: #49A8FF;
}

.btn-square-shadow.--red {
  background-color: #9C0000;
}

.btn-square-shadow.--back {
  background-color: #92B3BD;
  width: 250px;
  display: block;
  margin: 25px auto 70px;
}

@media (min-width: 992px) {
  .btn-square-shadow.--back {
    width: 160px;
    padding: 0.3em 3em;
  }
}

.btn-square-shadow.--back.--2 {
  padding: 0.8em 0;
  font-size: 18px;
}

@media (min-width: 992px) {
  .btn-square-shadow.--back.--2 {
    font-size: 18px;
    width: 300px;
  }
}

.btn-square-shadow.--back.--pd {
  margin-bottom: 30px;
}

.btn-square-shadow.--back.--3 {
  padding: 15px 10px;
  font-size: 20px;
}

@media (min-width: 992px) {
  .btn-square-shadow.--back.--3 {
    width: 180px;
    font-size: 22px;
    padding: 5px 10px;
  }
}

.btn-square-shadow.--login-send-btn {
  width: 300px;
  height: auto;
  display: block;
  margin: 50px auto 40px;
  font-size: 18px;
}

@media (min-width: 992px) {
  .btn-square-shadow.--login-send-btn.--pc {
    width: 100%;
    height: 40px;
    padding: 0;
    font-size: 20px;
  }
}

@media (min-width: 992px) {
  .btn-square-shadow.--login-send-btn.--pc.--24 {
    font-size: 24px;
    padding: 10px 0;
    height: 50px;
  }
}

@media (min-width: 992px) {
  .btn-square-shadow.--login-send-btn.--pc.--modal {
    width: 300px;
    height: 50px;
  }
}

@media (min-width: 992px) {
  .btn-square-shadow.--login-send-btn.--fix {
    font-size: 20px;
  }
}

.btn-square-shadow.--dashboard {
  text-align: left;
  padding: 0.5em 0.8em;
  width: 300px;
  height: auto;
  display: block;
  margin: 20px auto;
  font-size: 28px;
}

.btn-square-shadow.--dashboard::after {
  background-image: url(../img/vector-white.png);
  width: 20px;
  height: 30px;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
}

@media (min-width: 992px) {
  .btn-square-shadow.--dashboard {
    text-align: center;
    width: 250px;
    height: 50px;
    padding: 10px 0;
    font-size: 24px;
  }

  .btn-square-shadow.--dashboard::after {
    background: none;
  }
}

.btn-square-shadow.--black {
  border: 1px solid #EB5C02;
  background-color: #fff;
  color: #000;
}

.btn-square-shadow.--black::after {
  background-image: url(../img/vector-orange.png);
}

@media (min-width: 992px) {
  .btn-square-shadow.--black {
    display: none;
  }
}

.btn-square-shadow.--reset {
  padding: 13px 8px;
  background: #92B3BD;
  font-size: 100%;
}

@media (min-width: 992px) {
  .btn-square-shadow.--reset {
    width: 65px;
    padding: 6px 6px 0;
    position: absolute;
    top: 25px;
    right: 150px;
  }
}

.btn-square-shadow:active {
  -webkit-transform: translateY(4px);
  transform: translateY(4px);
  border-bottom: none;
}

.c-button__link {
  color: #49A8FF;
  text-decoration: underline;
}

.c-button__warning {

  background-color: #fff;
  border-radius: 5px;
  color: #FF0000;
  font-weight: 700;
  font-size: 16px;
  position: absolute;
  padding: 8px 14px;
  bottom: 17px;
  left: 150px;


  font-size: 20px;
  height: auto;
  color: gray;
  border: 1px solid gray;
  box-sizing: border-box;
  transition: all .3s;
  padding: 14px 10px;
}

.c-button__warning:hover {
  color: #fff;
  background-color: rgb(175, 175, 175);

}

@media (min-width: 992px) {
  .c-button__warning {
    position: relative;
    bottom: auto;
    left: auto;
    font-size: 17px;
    margin-left: 10px;
    width: 191px;
  }
}

@media (min-width: 1200px) {
  .c-button__warning {
    font-size: 20px;
    height: auto;
    color: gray;
    border: 1px solid gray;
    box-sizing: border-box;
    transition: all .3s;
    padding: 14px 10px;
  }

  .c-button__warning:hover {
    color: #fff;
    background-color: rgb(175, 175, 175);

  }
}

.c-button__warning.--change {
  padding: 0;
  font-size: 16px;
  height: 40px;
  bottom: 17px;
  left: 18px;
  font-size: 20px;
  width: 115px;
  height: auto;
  color: #EB5C02;
  border: 2px solid #EB5C02;
  padding: 13.5px;
}

.c-button__warning.--change:hover {
  color: #fff;
  background-color: rgb(235, 133, 70);
}

@media (min-width: 992px) {
  .c-button__warning.--change {
    position: relative;
    bottom: auto;
    left: auto;
    font-size: 17px;
    margin: 0 0 0 auto;
  }
}

@media (min-width: 1200px) {
  .c-button__warning.--change {
    font-size: 20px;
    width: 135px;
    height: auto;
    color: #EB5C02;
    border: 2px solid #EB5C02;
    padding: 13.5px;
  }

  .c-button__warning.--change:hover {
    color: #fff;
    background-color: rgb(235, 133, 70);
  }
}

/***********************************************
ラジオボタン
************************************************/
input[type=radio] {
  display: none;
  /* ラジオボタンを非表示にする */
}

.label {
  display: block;
  /* ブロックレベル要素化する */
  float: left;
  /* 要素の左寄せ・回り込を指定する */
  margin: 5px;
  /* ボックス外側の余白を指定する */
  width: 251px;
  /* ボックスの横幅を指定する */
  height: 65px;
  /* ボックスの高さを指定する */
  padding-left: 5px;
  /* ボックス内左側の余白を指定する */
  padding-right: 5px;
  /* ボックス内御右側の余白を指定する */
  color: #000;
  /* フォントの色を指定 */
  font-size: 20px;
  text-align: center;
  /* テキストのセンタリングを指定する */
  line-height: 45px;
  /* 行の高さを指定する */
  cursor: pointer;
  /* マウスカーソルの形（リンクカーソル）を指定する */
  border: 3px solid #c8c8c8;
  /* ボックスの境界線を実線で指定する */
  border-radius: 30px;
  /* 角丸を指定する */
  padding: 8px 5px;
}

@media (min-width: 576px) {
  .label {
    width: 140px;
    font-size: 16px;
  }
}

input[type=radio]:checked+.wpcf7-list-item-label {
  border: 3px solid #3393c5;
  /* マウス選択時の枠や背景色を指定する */
}

/*******普通っぽい◎のラジオボタン******/
.c-button__radio {
  font-size: 15px;
  position: relative;
  padding-left: 30px;
  margin-right: 40px;
}

.c-button__radio::before {
  content: "";
  display: block;
  border-radius: 50%;
  border: 2px solid #c8c8c8;
  width: 20px;
  height: 20px;
  margin-right: 10px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}

input[type=radio]:checked+.c-button__radio::before {
  background-color: #EB5C02;
}

input[type=radio]:checked+.c-button__radio::after {
  content: "";
  position: absolute;
  top: 7px;
  left: 7px;
  display: block;
  width: 9px;
  height: 5px;
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
  transform: rotate(-45deg);
}

.c-button__radio-title {
  display: block;
}

.c-button__radio-wrap {
  display: block;
  margin-top: 24px;
}

/***********************************************
ページネーション
************************************************/
.c-button__pagination {
  display: flex;
  justify-content: center;
  margin: 20px 0;
}

.c-button__pagination.--foodlist .page-numbers {
  padding: 20px 5px 2px;
  margin: 10px;
  font-family: "Noto Sans JP";
  font-size: 16px;
  border-bottom: 1px solid #49A8FF;
}

@media (min-width: 992px) {
  .c-button__pagination.--foodlist .page-numbers {
    display: none;
  }
}

.c-button__pagination.--foodlist .page-numbers.current {
  border: none;
  text-decoration: none;
  color: #000;
}

.c-button__pagination.--pc-dashboard,
.c-button__pagination.--pc-dashboard-bottom {
  display: none;
}

@media (min-width: 992px) {

  .c-button__pagination.--pc-dashboard,
  .c-button__pagination.--pc-dashboard-bottom {
    display: flex;
  }

  .c-button__pagination.--pc-dashboard .page-numbers,
  .c-button__pagination.--pc-dashboard-bottom .page-numbers {
    color: #000;
    padding: 0 5px;
  }

  .c-button__pagination.--pc-dashboard .page-numbers.current,
  .c-button__pagination.--pc-dashboard-bottom .page-numbers.current {
    color: #49A8FF;
    border: none;
    border-radius: 0;
    border-bottom: 1px solid #49A8FF;
  }

  .c-button__pagination.--pc-dashboard .page-numbers.prev,
  .c-button__pagination.--pc-dashboard .page-numbers.next,
  .c-button__pagination.--pc-dashboard-bottom .page-numbers.prev,
  .c-button__pagination.--pc-dashboard-bottom .page-numbers.next {
    color: #49A8FF;
    text-decoration: underline #49A8FF;
    padding: 0 50px;
  }

  .c-button__pagination.--pc-dashboard .page-numbers.prev::before,
  .c-button__pagination.--pc-dashboard .page-numbers.next::before,
  .c-button__pagination.--pc-dashboard-bottom .page-numbers.prev::before,
  .c-button__pagination.--pc-dashboard-bottom .page-numbers.next::before {
    display: none;
  }
}

.c-button__pagination.--pc-dashboard-bottom {
  margin-top: 50px;
}

.nav-links {
  display: flex;
}

.page-numbers {
  display: inline-block;
  margin-right: 10px;
  padding: 5px 25px;
  color: #49A8FF;
}

.page-numbers.current {
  border-radius: 3px;
  padding: 5px 25px;
  border: 1px solid #49A8FF;
  margin-top: -1px;
}

.page-numbers.prev,
.page-numbers.next {
  background: transparent;
  box-shadow: none;
  border: none;
  color: #49A8FF;
  position: relative;
}

.page-numbers.prev::before,
.page-numbers.next::before {
  content: "";
  position: absolute;
  top: 10px;
  left: -30px;
  width: 14px;
  height: 14px;
  border-bottom: 2px solid #D9D9D9;
  border-left: 2px solid #D9D9D9;
  transform: rotate(45deg);
}

.page-numbers.next::before {
  top: 10px;
  left: auto;
  right: -30px;
  border-color: #EB5C02;
  transform: rotate(225deg);
}

.page-numbers.dots {
  background: transparent;
  box-shadow: none;
  border: none;
  color: #49A8FF;
}

/***********************************************
チェックボックス　
************************************************/
.c-button__my-checkbox {
  display: block;
  position: relative;
  cursor: pointer;
  user-select: none;
  /* テキストの選択を防ぐ */
  font-size: 15px;
  font-weight: 400;
  text-align: center;
}

/* inputは非表示にする */
.c-button__my-checkbox input {
  display: none;
}

.c-button__my-checkbox input[type=text] {
  display: block;
}

/* □ */
.c-button__checkmark {
  font-size: 15px;
  position: relative;
  padding-left: 45px;
  text-align: left;
  transition: all 0.2s linear 0s;
}

.c-button__checkmark::before {
  content: "";
  display: block;
  border-radius: 50%;
  border: 2px solid #c8c8c8;
  background-color: #fff;
  width: 30px;
  height: 30px;
  margin-right: 10px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}

@media (min-width: 992px) {
  .c-button__checkmark::before {
    border-radius: 3px;
    width: 22px;
    height: 22px;
    left: 4px;
    top: 54%;
  }
}

/* ✓ */
/* チェックが入ったときの□ */
.c-button__my-checkbox input:checked+.c-button__checkmark {
  transition: all 0.2s linear 0s;
}

.c-button__my-checkbox input:checked+.c-button__checkmark::before {
  background-color: #F47827;
}

.c-button__my-checkbox input:checked+.c-button__checkmark::after {
  content: "";
  position: absolute;
  /* top: 4px; */
  top: 0;
  left: 9px;
  display: block;
  width: 13px;
  height: 7px;
  border-bottom: 3px solid #fff;
  border-left: 3px solid #fff;
  transform: rotate(-45deg);
}

/* チェックが入ったときの✓ */
.c-button__my-checkbox input:checked+.c-button__checkmark:after {
  opacity: 1;
  /* 透明を解除 */
}

/***********************************************
ここまで　チェックボックス　チェックボックス
*************************************************************************************************************/
.p-login__flex {
  display: flex;
  justify-content: center;
}

.p-login__heading {
  font-weight: 700;
  text-align: center;
  padding: 60px 0 26px;
  font-size: 20px;
  max-width: 240px;
  margin: 0 auto;
}

@media (min-width: 992px) {
  .p-login__heading {
    font-size: 20px;
    max-width: 300px;
  }

  .p-login__heading.--fontsize {
    font-size: 24px;
  }
}

table {
  border-collapse: collapse;
  width: 100%;
}

.p-login__staff-table td {
  border-top: 1px solid #C5C5C5;
  padding: 20px 3px;
}

.p-login__td1 {
  width: 10%;
  min-width: 8.8px;
  text-align: center;
}

.p-login__td2 {
  width: 50%;
  min-width: 160px;
}

.p-login__td3,
.p-login__td4 {
  width: 20%;
  min-width: 80px;
  text-align: right;
}

.p-login__td3 {
  width: 20%;
  min-width: 38px;
  text-align: right;
}

.p-login__password-eye {
  width: 20px;
  position: absolute;
  bottom: 7px;
  right: 10px;
}

.p-login__id-label {
  padding: 20px 0 10px;
}

.p-login__reregister-title {
  padding: 40px 0 43px;
}

.p-login__mail {
  font-size: 20px;
}

@media (min-width: 992px) {
  .p-login__mail {
    font-size: 22px;
  }
}

/***********************************************
PC
************************************************/
.p-login__flex2 {
  display: none;
}

@media (min-width: 992px) {
  .p-login__flex2 {
    display: flex;
    justify-content: space-between;
    padding-bottom: 15px;
  }

  .p-login__flex2 p {
    padding: 4px 0;
  }
}

.p-login__reg-flex {
  display: flex;
  margin-left: 5%;
}

@media (min-width: 992px) {
  .p-login__reg-flex {
    margin-left: 0;
  }
}

.p-login__reg-label {
  padding: 0 0 10px 8%;
}

@media (min-width: 992px) {
  .p-login__reg-label {
    padding-left: 0;
  }
}

.p-login__reg-btn {
  margin-left: auto;
}

@media (min-width: 992px) {
  .p-login__reg-btn {
    width: 140px;
    margin-left: 30px;
  }
}

.p-login__input {
  width: 155px;
  height: 34px;
}

@media (min-width: 992px) {
  .p-login__input {
    width: 200px;
    text-align: left;
  }
}

@media (min-width: 992px) {
  .p-login__id {
    margin-right: 100px;
  }
}

.p-login__top-back-btn {
  display: none !important;
  margin: 0 0 10px 0 !important;
  position: absolute;
  bottom: 0;
  left: 0;
  white-space: nowrap;
}

@media (min-width: 992px) {
  .p-login__top-back-btn {
    display: block !important;
  }

  .btn-square-shadow.--back.p-login__top-back-btn {
    width: auto;
    min-width: 160px;
    padding: 0.3em 1.5em;
  }

  .p-login__top-back-btn.--pd {
    padding: 10px 0px;
  }
}

.p-login__relative {
  position: relative;
  border-bottom: none;
}

@media (min-width: 992px) {
  .p-login__relative {
    display: block;
    width: 90%;
    max-width: 1200px;
    margin: 20px auto;
    border-bottom: 1px solid #DDDDDD;
  }

  .p-login__relative.--allergy {
    margin: 0 0 0 0;
    border: none;
  }
}

.p-dashboard__inner {
  min-width: 350px;
  width: 90%;
  margin: 50px auto 170px;
  line-height: 1.3;
}

@media (min-width: 992px) {
  .p-dashboard__inner {
    width: 95%;
    max-width: 1200px;
  }
}

.p-dashboard__top-flex {
  display: flex;
  justify-content: space-between;
  padding: 10px 0 0;
}

.p-dashboard__top-order-date {
  min-width: 130px;
  font-size: 10px;
}

@media (min-width: 992px) {
  .p-dashboard__top-order-date {
    font-size: 16px;
  }
}

.p-dashboard__top-order-date dt {
  float: left;
}

.p-dashboard__top-order-date dd {
  font-weight: 400;
}

/***********************************************
直近の注文履歴
************************************************/
.p-dashboard__heading {
  text-align: center;
  font-size: 30px;
  margin-bottom: 30px;
  padding-top: 24px;
}

@media (min-width: 992px) {
  .p-dashboard__heading {
    font-size: 30px;
  }

  .p-dashboard__heading.--pc {
    border-top: 1px solid #DDDDDD;
    padding-top: 18px;
  }
}

.p-dashboard__heading span {
  color: #FF0000;
}

@media (min-width: 992px) {
  .p-dashboard__heading.--history {
    padding: 50px 0 0;
    margin-bottom: 0;
  }
}

.p-dashboard__order-container {
  background-color: #f5f5f5;
  padding-bottom: 20px;
}

@media (min-width: 992px) {
  .p-dashboard__order-container {
    padding: 0;
    border: 1px solid #DDDDDD;
    border-top: none;
    background-color: #fff;
  }
  .p-dashboard__order-container.orders + .p-dashboard__order-container.orders {
    margin-top: 40px;
  }

  .p-dashboard__order-container.--fix {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #DDDDDD;
  }
}

/***********************************************
赤色の部分
************************************************/
.p-dashboard__warning {
  margin: 8px auto 30px;
  background-color: #AD0C0C;
  width: 100%;
  padding: 20px 18px 90px;
  color: #fff;
  font-size: 11px;
  position: relative;
  line-height: 1.5;
}

@media (min-width: 992px) {
  .p-dashboard__warning {
    font-size: 14px;
    padding: 12px 10px;
    margin: 0;
  }
}

@media (min-width: 1200px) {
  .p-dashboard__warning {
    padding: 10px;
  }
}

.p-dashboard__warning.--pd {
  margin-bottom: 16px;
}

.p-dashboard__warning-texts {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (min-width: 992px) {
  .p-dashboard__warning-texts {
    justify-content: flex-start;
  }
}

.p-dashboard__flex2 {
  display: flex;
  align-items: baseline;
  margin: -10px 0 10px 0;
}

@media (min-width: 992px) {
  .p-dashboard__flex2 {
    margin: -20px 0 10px 0;
  }
}

@media (min-width: 992px) {

  .p-dashboard__flex3,
  .p-dashboard__flex4 {
    display: flex;
    align-items: baseline;
    padding: 5px 0px 5px 15px;
    flex-shrink: 0;
  }
}

/* @media (min-width: 992px) {
  .p-dashboard__flex4 {
    border: 1px solid #000;
    margin-bottom: 20px;
  }
} */

.p-dashboard__inner .p-dashboard__search {
  padding: 10px;
  background-color: #fff;
  border: 1px solid #c5c5c5;
  border-radius: 5px;
  box-sizing: border-box;
}

@media (min-width: 992px) {
  .p-dashboard__search-item {
    border-right: 1px solid #000;
    padding: 0 10px 15px 0;
    margin-right: 10px;
  }
}

@media (min-width: 1200px) {
  .p-dashboard__search-item.--date {
    display: flex;
  }

  .p-dashboard__search-item.--date .c-button__radio {
    margin-right: 20px;
  }
}

.p-dashboard__order-end-time {
  font-size: 16px;
  font-family: Inter;
}

@media (min-width: 992px) {
  .p-dashboard__order-end-time {
    font-size: 18px;
  }
}

.p-dashboard__order-limit {
  padding: 10px 0 0 0px;
}

.p-dashboard__order-limit span {
  font-size: 21px;
  font-family: Inter;
}

@media (min-width: 992px) {
  .p-dashboard__order-limit span {
    font-size: 24px;
  }
}

@media (min-width: 992px) {
  .p-dashboard__order-limit {
    padding: 10px 0 0 0px;
  }
}

/**締め切り**/
.p-dashboard__deadline-sign {
  background-color: #BFBFBF;
  border-radius: 2px;
  font-size: 22px;
  color: #fff;
  text-align: center;
  padding: 20px 0;
  margin: 15px auto 20px;
}

@media (min-width: 992px) {
  .p-dashboard__deadline-sign {
    font-size: 23px;
    text-align: left;
    padding-left: 50px;
  }
}

/***********************************************
注文番号以降
************************************************/
/* .p-dashboard__order-info--wrapper {
  margin: 10px;
} */
.p-dashboard__order-info {
  font-size: 14px;
  padding: 10px;
  margin: 0 10px;
  background-color: #fff;
  border-radius: 5px;
  padding-bottom: 15px;
}

.p-dashboard__order-info dt {
  font-weight: 400;
  float: left;
}

@media (min-width: 992px) {
  .p-dashboard__order-info {
    font-size: 18px;
  }
}

.p-dashboard__order-info.--bg-gray {
  background-color: #fff;
  padding: 25px 12px;
}

.p-dashboard__order-info.--bg-gray.--modal {
  margin-bottom: 30px;
}

@media (min-width: 992px) {
  .p-dashboard__order-info.--bg-gray.--modal {
    margin-bottom: 0;
  }
}

.p-dashboard__order-number {
  margin-bottom: 10px;
  font-size: 18px;
  text-align: center;
  padding-top: 10px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
}

@media (min-width: 992px) {
  .p-dashboard__order-number {
    font-size: 16px;
    font-weight: 400;
    padding: 0;
    text-align: left;
    border: none;
  }
}

.p-dashboard__order-number span {
  font-size: 18px;
}

@media (min-width: 992px) {
  .p-dashboard__order-number span {
    font-size: 16px;
    padding: 0;
    font-weight: 700;
  }
}

.p-dashboard__order-number.--pd0 {
  padding: 0 0 0 3px;
}

.p-dashboard__order-number.--pd {
  padding: 0;
  padding-bottom: 10px;
  border-bottom: 1px solid #ddd;
  margin-bottom: 10px;
}

.p-dashboard__order-number.--pd2 {
  padding: 0;
  padding-bottom: 10px;
  margin: 0 0 10px 0;
  text-align: center;
  border-bottom: 1px solid #ddd;
}

.p-dashboard__order-flex {
  display: flex;
  justify-content: space-between;
}

.p-dashboard__dtdd-flex,
.p-dashboard__place-flex {
  width: 170px;
  display: flex;
  justify-content: flex-start;
  margin-right: 4px;
}

.p-dashboard__dtdd-flex .--width,
.p-dashboard__place-flex .--width {
  width: 60px;
}

.p-dashboard__dtdd-flex dt,
.p-dashboard__place-flex dt {
  flex-shrink: 0;
}


.p-dashboard__place-flex {
  width: auto;
}

.p-dashboard__place-name1 {
  width: 90px;
}


@media (min-width: 992px) {
  .p-dashboard__place-flex {
    width: 190px;
  }

  .p-dashboard__place-name2 {
    flex-shrink: 0;
  }
}

.p-dash__date {
  margin-left: auto;
}

.deliver-time {
  margin-left: auto;
}

dt.p-dashboard__deliver-states {
  font-weight: 700;
}

/***********************************************
    画像付き注文商品
    ************************************************/
.p-dashboard__order-food-container {
  width: 100%;
  margin: 30px auto;
}

.p-dashboard__food-flex {
  display: flex;
  align-items: center;
  position: relative;
}

@media (min-width: 992px) {
  .p-dashboard__food-flex {
    display: block;
  }
}

.p-dashboard__order-food {
  background-color: #fff;
  border-radius: 5px;
  padding: 10px;
  margin: 0 10px;
  margin-bottom: 15px;
  position: relative;
}

@media (min-width: 992px) {
  .p-dashboard__order-food {
    background-color: #f5f5f5;
    width: 19%;
    margin: 0.5%;
  }
}

.p-dashboard__food-img {
  width: 30%;
  margin: 0 10px 0 0;
}

@media (min-width: 992px) {
  .p-dashboard__food-img {
    width: 100%;
  }
}

.p-dashboard__order-food-info {
  width: 50%;
  font-size: 14px;
  line-height: 1.5;
}

.p-dashboard__order-food-info p {
  font-weight: 400;
  font-size: 12px;
}

.allergy-tags-header {
  background-color: #ddd;
  text-align: center;
  margin: 10px 0;
}


@media (min-width: 992px) {
  .p-dashboard__order-food-info {
    width: 100%;
  }

  .p-dashboard__order-food-info h4,
  .p-dashboard__order-food-info p {
    font-weight: 400;
    font-size: 14px;
    padding: 5px 0;
  }

  .p-dashboard__order-food-info h4 {
    padding-top: 5px;
    font-size: 16px;
    font-weight: bold;
  }
}

.p-dashboard__food-number {
  width: 13%;
  text-align: right;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  font-size: 18px;
}

.p-dashboard__food-number em {
  font-style: normal;
}

@media (min-width: 992px) {
  .p-dashboard__food-number {
    top: auto;
    bottom: 10px;
    right: 80px;
    transform: none;
    width: auto;
  }

  .p-dashboard__food-number em {
    font-size: 20px;
    font-weight: 400;
    padding: 0 2px;
  }

  .p-dashboard__food-number span {
    display: inline-block;
  }
}

.p-dashboard__allergy-tags {
  display: flex;
  flex-wrap: wrap;
}

.p-dashboard__allergy-tags span {
  display: block;
  background-color: #DDDDDD;
  border-radius: 40px;
  padding: 2px 10px;
  font-weight: 400;
  font-size: 12px;
  margin: 0 5px 7px 0;
}

@media (min-width: 768px) {
  .p-dashboard__allergy-tags span {
    font-size: 14px;
  }
}

@media (min-width: 992px) {
  .p-dashboard__allergy-tags.--pc span {
    background-color: #ddd;
    color: #000;
    font-size: 14px;
    padding: 2px 7px;
  }
}

.p-dashboard__allergy-tags.--gray {
  width: 100%;
  margin: 0;
  padding: 10px;
}

.p-dashboard__allergy-tags.--gray span {
  background-color: #DDDDDD;
}

@media (min-width: 992px) {
  .p-dashboard__allergy-tags.--gray {
    width: auto;
  }
}

@media (min-width: 992px) {
  .p-dashboard__allergy-tags.--color {
    width: 100%;
  }
}

.p-dashboard__allergy-tags.--margin {
  padding: 0 0.6vw;
}

@media (min-width: 992px) {
  .p-dashboard__allergy-tags.--margin {
    width: 100%;
  }
}

.p-dashboard__text {
  padding: 10px;
  font-size: 12px;
  margin: 0 10px;
  background-color: #fff;
  border-radius: 5px;
}
.p-dashboard__text > h5 {
  text-align: center;
  padding-bottom: 5px;
  border-bottom: 1px solid #cfcfcf;
  margin-bottom: 10px;
}

@media (min-width: 992px) {
  .p-dashboard__text {
    width: 50%;
    margin: 30px auto 0;
    font-size: 14px;
    background-color: #F5F5F5;
  }
  .p-dashboard__text > h5 {
  text-align: center;
  padding-bottom: 5px;
  border-bottom: 1px solid #cfcfcf;
  margin-bottom: 10px;
}
}

@media (min-width: 992px) {
  .p-dashboard__boader {
    margin-top: 20px;
    border-bottom: 1px solid #DDDDDD;
    background-color: #fff;
  }
}

.p-dashboard__total {
  font-size: 14px;
  font-weight: 400;
  margin-inline: auto;
  display: block;
  border-radius: 5px;
  background-color: #fff;
  margin: 0 10px;
  padding: 10px;
}

.p-dashboard__total p {
  display: table;
  text-align: left;
  margin-right: auto;
}

.p-dashboard__total span {
  padding: 0 13px;
  font-size: 20px;
}

@media (min-width: 992px) {
  .p-dashboard__total {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 0 auto;
    padding-bottom: 20px;
  }

  .p-dashboard__total p {
    font-size: 20px;
    margin: 25px 0 0 40px;
  }

  .p-dashboard__total span {
    font-size: 30px;
  }

  .p-dashboard__total.--pc p:first-child {
    margin-left: 0;
  }

  .p-dashboard__total.--pc p:last-child {
    margin-right: 50px;
  }
}

/***********************************************
注文履歴
************************************************/
.p-dashboard__search dt {
  float: none;
  margin: 15px 0 10px;
  font-size: 13px;
}

@media (min-width: 992px) {
  .p-dashboard__search dt {
    font-size: 15px;
  }
}

.p-dashboard__radio-flex {
  display: flex;
}

.p-dashboard__radio-flex label {
  font-weight: 400;
}

.p-dashboard__date-flex {
  display: flex;
  justify-content: flex-start;
  margin-top: 10px;
}

.p-dashboard__date-flex span {
  padding: 5px 20px;
}

.p-dashboard__date-flex input {
  color: #000;
}

.p-dashboard__date-flex input[type=date]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

.p-dashboard__date-flex input[type=date]::-webkit-clear-button {
  -webkit-appearance: none;
}

.p-dashboard__date-flex input[type=date]::-webkit-calendar-picker-indicator {
  color: rgba(0, 0, 0, 0);
  background: url(../img/calender_icon.svg) no-repeat;
  width: 10px;
  height: 10px;
}

.p-dashboard__delivery-date-flex {
  display: flex;
  justify-content: space-between;
}

.p-dashboard__flex3,
.p-dashboard__flex4 {
  display: block;

}

@media (min-width: 992px) {

  .p-dashboard__flex3,
  .p-dashboard__flex4 {
    display: flex;
    position: relative;
  }
}

select option {
  color: #707070;
}

select option:checked,
select option:hover {
  background: rgba(73, 168, 255, 0.2);
  color: #000;
}

.p-dashboard__search-btn {
  width: 100%;
  max-width: 300px;
  font-size: 24px;
  padding: 0.9em 1.5em;
  display: block;
  margin: 20px auto;
  position: relative;
}

@media (min-width: 992px) {
  .p-dashboard__search-btn {
    width: 130px;
    position: absolute;
    top: 5px;
    right: 10px;
  }
}

.p-dashboard__month-history {
  text-align: center;
  font-size: 18px;
}

@media (min-width: 992px) {
  .p-dashboard__month-history {
    font-size: 20px;
  }
}

.p-dashboard__month-history span {
  color: #FF0000;
}

/***********************************************
法事の種類選択
************************************************/
.p-dashboard__service-type-title {
  font-size: 20px;
}

.p-dashboard__service-type {
  padding: 15px 0px 15px 15px;
  display: flex;
  flex-direction: row-reverse;
  width: 100%;
  margin: 0px auto 15px;
  text-align: center;
  font-size: 28px;
}
@media (min-width: 768px) {
  .p-dashboard__service-type {
    width: 70%;
  }
}
@media (min-width: 992px) {
  .p-dashboard__service-type {
    display: block;
    padding: 0;
    max-width: 246px;
    font-size: 16px;
    background-color: #F5F5F5;
    border: 1px solid #C5C5C5;
    color: #000;
    transition: all 0.2s linear 0s;
    border-radius: 3px 3px 10px 10px;
    margin: 0 3px;
  }

  .p-dashboard__service-type:hover {
    background-color: #EB5C02;
    color: #fff;
  }
}

.p-dashboard__service-type img {
  object-fit: cover;
  width: 150px;
  height: 75px;
}

@media (min-width: 992px) {
  .p-dashboard__service-type img {
    width: 244px;
    height: 160px;
    border-radius: 0 0 3px 3px;
  }
}

.p-dashboard__service-type span {
  display: inline-block;
  margin: 15px auto;
  vertical-align: middle;
  line-height: normal;
}

.p-dashboard__service-type-warning {
  background-color: #F4DCDC;
  padding: 20px;
  margin: 20px 0;
  font-size: 20px;
}

.p-dashboard__service-type-warning span {
  color: #FF0000;
  display: inline-block;
}

.p-dashboard__service-type-warning>h2 {
  text-align: center;
}

.p-dashboard__service-type-warning>h2>span {
  display: none;
}

.p-dashboard__service-type-warning p {
  display: block;
  padding: 0px 0 0px 15px;
  color: #FF0000;
  font-size: 15px;
  line-height: 1.35;
  margin: 10px;
}

.p-dashboard__service-type-warning p .sp {
  display: none;
}

.p-dashboard__service-type-warning p span {
  margin-left: -19px;
}

@media (min-width: 992px) {
  .p-dashboard__service-type-warning {
    width: 85%;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }

  .p-dashboard__service-type-warning h2 {
    text-align: center;
    padding: 10px 0;
  }

  .p-dashboard__service-type-warning p {
    display: block;
    width: 70%;
    margin: 8px auto;
  }
}

@media (min-width: 992px) {
  .p-dashboard__pc-warning-base {
    position: relative;
    padding-bottom: 250px;
  }
}

.p-dashboard__service-type-flex {
  display: block;
}

@media (min-width: 992px) {
  .p-dashboard__service-type-flex {
    display: flex;
    justify-content: center;
  }
}

.p-dashboard__heading2 {
  text-align: left;
  font-size: 20px;
  width: 95%;
  padding-left: 10px;
  margin: 0px auto 20px;
}

select>option.p-dashboad__select-gray {
  color: #fafafa;
}

/***********************************************
    pc調整
    ************************************************/
.p-dashboard__pc-staff {
  display: none;
}

@media (min-width: 992px) {
  .p-dashboard__pc-staff {
    display: block;
    font-size: 16px;
    font-weight: 400;
  }
}

@media (min-width: 992px) {
  .p-dashboard__pc-staff span {
    padding: 0;
    font-weight: 700;
  }
}

.p-dashboard__pc-info-items {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 20px;
}

.p-dashboard__pc-info-items dt {
  float: left;
  font-weight: 400;
}

.p-dashboard__pc-info-item {
  width: 200px;
  font-size: 16px;
}

.p-dashboard__pc-info-item.--place {
  margin: 0 0px;
  width: 300px;
  font-size: 16px;
}

.p-dashboard__pc-info-item.--orderdate {
  font-size: 14px;
}

.p-dashboard__pc-inner {
  display: none;
}

@media (min-width: 992px) {
  .p-dashboard__pc-inner {
    display: block;
    width: 100%;
    margin: 0 auto;
  }
}

.p-dashboard__pc-derivery-date {
  border-top: 1px solid #DDD;
  font-family: inter;
  font-size: 20px;
  padding: 20px;
}

@media (min-width: 992px) {
  .p-dashboard__ordered-items {
    display: flex;
    flex-wrap: wrap;
  }
}

.p-dashbord__ordered-item {
  width: 180px;
  margin: 0 5px;
}

@media (min-width: 992px) {
  p.p-dashboard__bold {
    font-weight: 700;
  }

  p.p-dashboard__bold span {
    font-weight: 400;
  }

  p.p-dashboard__bold.--13px {
    padding: 4px 0 10px;
    font-size: 14px;
  }
}

.p-dashboard__margin {
  margin: 10px auto;
}

@media (min-width: 992px) {
  .p-dashboard__margin {
    margin-top: 30px;
  }
}

/***********************************************
注文フォームインプット画面
************************************************/
.p-order__service-type-title {
  margin-top: 10px;
  text-align: center;
  padding-bottom: 5px;
  border-bottom: 1px solid #d9d9d9;
  font-size: 15px;
}

@media (min-width: 992px) {
  .p-order__service-type-title {
    font-size: 14px;
    text-align: left;
    border-bottom: none;
  }
}

.p-order__service-type {
  text-align: center;
  padding: 30px 0;
  font-size: 24px;
}

@media (min-width: 992px) {
  .p-order__service-type {
    font-size: 26px;
  }

  .p-order__service-type.--left {
    text-align: left;
    padding-bottom: 20px;
  }

  .p-order__service-type.--pd {
    margin: 0 0 50px 0;
  }
}

.p-order__input-container {
  position: relative;
  margin-bottom: 150px;
}

@media (min-width: 992px) {
  .p-order__input-container {
    background-color: #fff;
    padding: 50px 200px;
  }

  .p-order__input-container.--other {
    background-color: transparent;
    padding: 50px 0;
  }
}

.p-order__back-btn {
  margin-top: 5px;
  padding: 5px 0px 5px 20px;
  background-color: #AAAAAA;
  position: absolute;
  top: 0px;
  left: 0px;
}

.p-order__back-btn::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 17px;
  width: 12px;
  height: 12px;
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
  transform: rotate(45deg);
}

@media (min-width: 992px) {
  .p-order__back-btn {
    display: none;
  }
}

.p-order__form {
  width: 93%;
  margin: 0 auto;
}

.p-order__form label {
  padding: 20px 0 5px;
}

.p-order__form input,
.p-order__form select,
.p-order__form textarea {
  font-weight: 400;
  font-size: 13px;
}

@media (min-width: 992px) {

  .p-order__form input,
  .p-order__form select,
  .p-order__form textarea {
    font-size: 15px;
  }
}

.p-order__textarea {
  margin: 10px 0;
  padding: 7px 10px;
  height: 35px;
  font-size: 13px;
}

.p-order__master-name-inputs input {
  width: 88%;
}

.p-order__master-name-inputs input::placeholder {
  color: #AAAAAA;
}

.p-order__master-name-inputs dd span {
  display: inline;
  padding-left: 18px;
}

/***********************************************
注文フォーム　　確認画面
************************************************/
.p-order__confirm-top-text {
  padding-top: 30px;
  font-weight: 400;
  font-size: 18px;
}

.p-order__ruby {
  font-size: 15px;
  line-height: 0.9;
}

.p-order__input-container.--confirm dt {
  float: none;
}

.p-order__form.--confirm dt {
  padding: 10px;
  font-size: 16px;
  background-color: #dddddd;
}

@media (min-width: 992px) {
  .p-order__form.--confirm dt {
    font-weight: bold;
    font-size: 15px;
    background-color: #dddddd;
    padding: 5px 10px;
    margin-bottom: 0;
  }
}

.p-order__form.--confirm dt.p-order__company {
  font-weight: 700;
}

.p-order__form.--confirm dd {
    font-size: 18px;
    padding: 10px;
}

@media (min-width: 992px) {
  .p-order__form.--confirm dd {
    font-size: 18px;
    padding: 5px 10px;
    margin-bottom: 16px;

  }
}

.p-order__form.--confirm dd.p-order__company-staff {
  font-size: 18px;
}

.p-order__form.--confirm dl > div.c-inner__flex {
    display: block;
}
.p-order__form.--confirm dl > div.c-inner__flex > div.c-margin__left-medium {
  margin-left: 0;
}

@media (min-width: 992px) {
  .p-order__form.--confirm {
    min-width: 450px;
    width: 60%;
    margin: 0 auto;
  }

  .p-order__form.--confirm dl {
    width: 100%;
    margin: 30px auto;
  }
  .p-order__form.--confirm dl > div.c-inner__flex {
    display: block;
  }
  .p-order__form.--confirm dl > div.c-inner__flex > div.c-margin__left-medium {
    margin-left: 0;
  }
}

.p-order__confirm-place-detail {
  font-size: 15px;
}

@media (min-width: 992px) {
  .p-order__confirm-place-detail {
    font-size: 18px;
  }
}

.p-order__warning {
  padding-top: 60px;
  padding-left: 25px;
  color: #FF0000;
  font-size: 18px;
}

.p-order__warning::before {
  content: "※";
  top: 60px;
  left: 0;
}

@media (min-width: 992px) {
  .p-order__warning {
    padding-top: 0;
  }

  .p-order__warning::before {
    top: 0;
    left: 0;
  }
}

.p-order__confirm-edit-btn {
  width: auto;
  height: 40px;
  display: block;
  margin: 40px auto 0px;
  padding: 10px 50px;
  font-size: 15px;
  background-color: #49A8FF;
}

@media (min-width: 992px) {
  .p-order__confirm-edit-btn {
    margin: 70px auto 40px;
  }
}

.p-order__confirm-select-btn {
  padding: 10px 0px;
  height: 80px;
  font-size: 32px;
}

@media (min-width: 992px) {
  .p-order__confirm-select-btn {
    font-size: 20px !important;
    width: 100% !important;
    height: 60px !important;
  }
}

.p-order__popup-container {
  position: relative;
  min-width: 300px;
  width: 90%;
  max-width: 560px;
  padding: 20px 20px 50px;
  margin: 100px auto;
  line-height: 1.3;
  background-color: #fff;
}

@media (min-width: 992px) {
  .p-order__popup-container {
    width: 100%;
    padding: 70px 70px 20px;
    margin: 200px auto;
  }
}

.p-order__popup-container .p-cart__close-btn {
  margin: 5px 25px 0 0;
}

.p-order__popup-container .p-cart__close-btn::before,
.p-order__popup-container .p-cart__close-btn::after {
  right: -20px;
}

.p-order__popup-container .p-order__confirm-edit-btn {
  width: 80%;
  height: 50px;
  max-width: 360px;
  font-size: 18px;
  margin-top: 30px;
}

.p-cart__warning-heading {
  display: block;
  background-color: #F4DCDC;
  color: #FF0000;
  font-size: 12px;
  padding: 7px;
  width: 100%;
  margin: 0 auto;
}

.p-cart__warning-heading p {
  padding: 5px;
  font-size: 14px;
  line-height: 1.2em;
}
.p-cart__warning-heading h2 {
  font-size: 20px;
  color: #000;
  margin: 10px 0;
  text-align: center;
}

@media (min-width: 992px) {
  .p-cart__warning-heading {
  background-color: #F4DCDC;
  color: #FF0000;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  padding: 7px;
  width: 100%;
  margin: 0 auto;
}

  .p-cart__warning-heading h2 {
  font-size: 20px;
  color: #000;
  padding-right: 10px;
}
}


.p-cart__warning-heading h2 span {
  color: #FF0000;
}

.p-cart__warning-heading.--pc {
  display: none;
}

@media (min-width: 992px) {
  .p-cart__warning-heading.--pc {
    display: flex;
  }
}

.p-cart__cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

@media (min-width: 992px) {
  .p-cart__cards {
    justify-content: left;
  }
}

.p-cart__card {
  width: 48%;
  box-shadow: 1px 1px 3px 1px rgba(0, 0, 0, 0.2);
  padding: 10px;
  margin-bottom: 20px;
  background-color: #EBF5FE;
}

@media (min-width: 992px) {
  .p-cart__card {
    width: 19%;
    padding: 10px;
    /* box-shadow: none; */
    margin: 20px 5px;
  }
}

.p-cart__allergy {
  background-color: #49A8FF;
  color: #fff;
  font-size: 12px;
  padding: 10px 10px;
  display: block;
  margin: 10px auto;
  border-radius: 5px;
}

@media (min-width: 992px) {
  .p-cart__allergy {
    padding: 5px 15px;
  }
}

.p-cart__price {
  font-size: 13px;
  font-weight: 700;
  padding: 2px 0 0;
}

.p-cart__price span {
  font-weight: 400;
}

@media (min-width: 992px) {
  .p-cart__price {
    padding-left: 10px;
  }
}

.p-cart__pack {
  font-size: 16px;
  font-weight: bold;
  padding: 5px;
}

@media (min-width: 992px) {
  .p-cart__pack {
    padding: 10px;
  }
}

.p-cart__allergy-text {
  text-align: center;
  font-size: 12px;
  padding: 6px 0;
}

@media (min-width: 992px) {
  .p-cart__allergy-text {
    text-align: left;
    padding-left: 10px;
  }
}

.p-cart__bg-blue {
  max-width: 180px;
  margin: 10px auto 0;
}

@media (min-width: 992px) {
  .p-cart__bg-blue {
    width: auto;
    max-width: none;
    margin: 0;
    background-color: #EBF5FE;
    padding: 18px 10px 10px;
    margin-top: 8px;
  }

  .p-cart__bg-blue.--2 {
    background-color: transparent;
    padding: 0;
    margin: 0 20px 0 auto;
  }

  .p-cart__bg-blue.--3 {
    background-color: #f5f5f5;
    padding: 15px 10px;
    width: 100%;
    border-top: 1px solid #000;
  }
}

.p-cart__product-qty {
  display: flex;
}

@media (min-width: 992px) {
  .p-cart__product-qty {
    justify-content: center;
  }

  .p-cart__product-qty span {
    flex-shrink: 0;
    padding: 5px 10px;
  }
}

.p-cart__quantity-left-minus,
.p-cart__quantity-right-plus {
  background-color: #EB5C02;
  width: 40px;
  height: 36px;
  font-size: 40px;
  padding: 20px;
  border-radius: 5px 0 0 5px;
}

.p-cart__quantity-left-minus::before,
.p-cart__quantity-right-plus::before {
  width: 15px;
  height: 3px;
  background-color: #fff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.p-cart__quantity-right-plus {
  border-radius: 0 5px 5px 0;
}

.p-cart__quantity-right-plus::after {
  width: 3px;
  height: 15px;
  background-color: #fff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.p-cart__input-quantity {
  font-size: 22px;
  padding: 1px 12px;
  text-align: right;
  border-top: 1px solid #BFBFBF;
  border-bottom: 1px solid #BFBFBF;
  text-shadow: none;
  border-radius: 0;
  box-shadow: none;
}

@media (min-width: 992px) {
  .p-cart__input-quantity {
    width: 80px;
    height: 30px;
    font-size: 20px;
    border: none;
    box-shadow: inset 1px 1px 1px rgba(0, 0, 0, 0.25);
  }
}

.p-cart__input-quantity.--2 {
  width: 100px !important;
}

a.p-cart__send {
  width: 100%;
  padding: 1em 1em;
  text-align: center;
  margin: 10px 0 10px;
}

button.p-cart__send {
  display: block;
  width: 100%;
  max-width: 300px;
  font-size: 18px;
  padding: 20px 0;
  margin: 20px auto 0;
}

/***********************************************
.p-cart__allergy
************************************************/
.p-cart__container h2 {
  text-align: center;
  font-size: 18px;
  padding: 10px 0;
}

.p-cart__container h3 {
  padding: 20px 0 10px;
}

.p-cart__container h3.allergy_ttl {
    padding: 10px;
    color: #fff;
    background-color: #F47827;
}

.p-cart__allergy-item {
  border: 1px solid #C5C5C5;
  padding: 20px 0px 20px 10px;
  width: 50%;
  height: 60px;
}

.p-cart__allergy-item label {
  text-align: left;
}

@media (min-width: 992px) {
  .p-cart__allergy-item {
    border: none;
    width: 160px;
    color: #F47827;
  }
}

.p-cart__selected-allergy {
  background-color: #D9D9D9;
  padding: 16px;
  margin: 30px auto;
}

.p-cart__selected-allergy h4 {
  padding-bottom: 10px;
}

.p-cart__selected-allergy .p-cart__product-qty {
  justify-content: center;
}

@media (min-width: 992px) {
  .p-cart__selected-allergy .p-cart__product-qty {
    width: 200px;
    justify-content: right;
  }
}

.p-cart__selected-allergy .p-cart__input-quantity {
  width: 30%;
  flex-shrink: 0;
}

@media (min-width: 992px) {
  .p-cart__selected-allergy .p-cart__input-quantity {
    width: 82px;
  }
}

@media (min-width: 992px) {
  .p-cart__selected-allergy {
    display: flex;
    align-items: center;
  }

  .p-cart__selected-allergy h4 {
    padding: 0 50px 0 30px;
    flex-shrink: 0;
  }
}

.p-cart__allergy-tags {
  margin: 8px 0;
  min-height: 35px;
  display: flex;
  flex-wrap: wrap;
}

.p-cart__allergy-tags span {
  display: block;
  height: 30px;
  background-color: #fff;
  border-radius: 40px;
  padding: 4px 10px;
  font-weight: 400;
  font-size: 15px;
  margin: 0 10px 7px 0;
}

@media (min-width: 992px) {
  .p-cart__allergy-tags span {
    margin: 3.5px 10px 3.5px 0;
  }
}

.p-cart__product-qty.--allergy {
  margin: 30px auto;
  width: 220px;
}

.p-cart__product-qty.--allergy .p-cart__quantity-left-minus,
.p-cart__product-qty.--allergy .p-cart__quantity-right-plus {
  width: 60px;
  height: 60px;
  border-radius: 5px 0 0 5px;
}

.p-cart__product-qty.--allergy .p-cart__quantity-right-plus {
  border-radius: 0 5px 5px 0;
}

.p-cart__product-qty.--allergy input {
  padding: 10px 20px;
  font-size: 24px;
}

.p-cart__food-flex {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 10px;
  margin: 0 auto;
  line-height: 0.9;
}
.p-cart__food-flex > div:first-child {
  width: 40%;
  margin-right: 10px;
}
.p-cart__food-flex > div:last-child {
  width: 60%;
}

.p-cart__food-flex img {
  width: 100%;
  margin-right: 10px;
}

.p-cart__food-flex.--margin {
  margin: 50px auto 20px;
  background-color: #D9D9D9;
}

@media (min-width: 992px) {
  .p-cart__food-flex.--pc {
    width: auto;
    justify-content: center;
  }
}

.p-cart__food-flex.--pc2 {
  width: auto;
  justify-content: center;
}

.p-cart__food-flex.--pc2 img {
  width: 30%;
  object-fit: cover;
}

@media (min-width: 992px) {
  .p-cart__food-flex.--pc2 {
    display: flex;
    width: auto;
    justify-content: left;
    padding-left: 35px;
    align-items: center;
  }

  .p-cart__food-flex.--pc2 h4,
  .p-cart__food-flex.--pc2 p {
    font-size: 20px;
    padding: 3px;
  }

  .p-cart__food-flex.--pc2 img {
    width: 220px;
    height: 150px;
    object-fit: cover;
  }
}

.p-cart__order-food-info {
  font-weight: 700;
  font-size: 15px;
  line-height: 1.3;
}

.p-cart__order-food-info span {
  font-weight: 400;
}

p.p-cart__food-info-warning {
  font-size: 18px;
}

@media (min-width: 992px) {
  p.p-cart__food-info-warning {
    font-size: 20px;
  }
}

.p-cart__allergy-bottom-texts {
  width: 100%;
  margin: 60px auto 30px;
  color: #A15D60;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.75;

  background-color: #fff;
  border: 3px solid #A15D60;
  border-radius: 10px;
  padding: 10px;
}

.p-cart__allergy-bottom-texts h5 {
  padding: 0px 0 20px;
}

@media (min-width: 992px) {
  .p-cart__allergy-bottom-texts {
    background-color: #fff;
    border: 3px solid #A15D60;
    border-radius: 10px;
    padding: 10px 50px 20px;
  }

  .p-cart__allergy-bottom-texts h5 {
    text-align: center;
    padding: 10px 0 10px;
  }
}

a.p-cart__allergy-send {
  display: block;
  text-align: center;
  width: 250px;
  font-size: 18px;
  margin: 0 auto;
}

@media (min-width: 992px) {
  a.p-cart__allergy-send {
    font-size: 34px;
  }
}

a.p-cart__allergy-send span {
  display: block;
  font-size: 15px;
}

@media (min-width: 992px) {
  a.p-cart__allergy-send span {
    font-size: 16px;
  }
}

/***********************************************
    カート
    ************************************************/

.registration_ttl-wrap {
  display: block;
}
.registration_ttl-wrap .ttl {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  padding-bottom: 10px;
  padding-top: 10px;
  border-bottom: 1px solid #DDDDDD;
}

@media (min-width: 992px) {
  .order-btns {
   display: flex;
   justify-content: center;
  }

}


.p-cart__inner-top {
  background-color: #FBFBFB;
}

.p-cart__top-flex {
  display: flex;
  justify-content: space-between;
  padding: 10px 0 10px;
  min-width: 350px;
  width: 90%;
  max-width: 500px;
  margin: 50px auto 0px;
  line-height: 1.3;
}

.p-cart__top-flex p,
.p-cart__top-flex dt {
  font-weight: 700;
}

.p-cart__inner {
  min-width: 350px;
  /**360px*/
  width: 90%;
  max-width: 500px;
  margin: 0px auto 30px;
  line-height: 1.3;
}
.modal__content .p-cart__inner {
  min-width: inherit;
  width: 100%;
}

.p-cart__inner.--pc {
  min-width: 350px;
}

@media (min-width: 992px) {
  .p-cart__inner {
    width: 95%;
  }

  .p-cart__inner.--pc {
    min-width: auto;
    width: 90%;
    max-width: 1200px;
  }
}

.p-cart__inner .p-dashboard__order-info {
  font-size: 13px;
  border: 1px solid #c5c5c5;
  border-radius: 5px;
  margin-bottom: 30px;
}

@media (min-width: 992px) {
  .p-cart__inner .p-dashboard__order-info {
    font-size: 15px;
    width: 230px;
  }
}

.p-cart__inner .p-dashboard__order-info dt,
.p-cart__inner .p-dashboard__order-info dd {
  padding: 5px 0;
}

@media (min-width: 992px) {
  .p-cart__inner.--add {
    min-width: 360px;
    width: 90%;
    max-width: 1200px;
  }
}

.p-cart__inner.--warning {
  width: 100%;
  max-width: none;
}

.p-cart__inner.--nomin {
  min-width: auto;
}

a.p-cart__fix {
  display: block;
  text-align: center;
  width: 90%;
  max-width: 428px;
  font-size: 32px;
  margin: 110px auto 20px;
  font-weight: 700;
}

@media (min-width: 992px) {
  a.p-cart__fix.--pc {
    position: absolute;
    top: -65px;
    right: 0;
    width: 200px;
    height: 50px;
    font-size: 20px;
  }
}

.p-cart__bg-on {
  background-color: rgba(235, 92, 2, 0.2);
  padding: 10px 0;
}

@media (min-width: 992px) {
  .p-cart__bg-on {
    background-color: transparent;
  }

  .p-cart__bg-on.--on {
    background-color: rgba(235, 92, 2, 0.2);
  }
}

.p-cart__bg-on.--margin {
  margin-top: -150px;
}

@media (min-width: 992px) {
  .p-cart__bg-on.--margin {
    margin-top: -220px;
  }
}

.p-cart__items-heading {
  text-align: center;
  font-size: 18px;
  padding: 10px;
  background-color: #EB5C02;
  color: #fff;
}

/* .p-cart__items-heading.--pd {
  padding-top: 40px;
} */

.p-cart__order-info {
  background-color: #fff;
  padding: 10px;
  position: relative;
  margin-top: 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
}


@media (min-width: 992px) {
  .p-cart__order-info {
    width: 19%;
    margin: 0.5%;
    background-color: #f5f5f5;
  }
}

@media (min-width: 992px) {
  .p-cart__order-info.--border-none {
    border: none;
    background-color: #f5f5f5;
  }
}

.p-cart__change-btn {
  display: block;
  width: 180px;
  margin: 15px auto 0;
  background-color: #49A8FF;
}
.p-cart__back-btn {
  display: block;
  font-size: 15px;
  width: auto;
  max-width: 300px;
  min-width: 180px;
  margin: 15px auto 0;
  background-color: #92B3BD;
}

.p-cart__add-btn {
  display: block;
  font-size: 20px;
  width: auto;
  max-width: 300px;
  min-width: 180px;
  margin: 15px auto 0;
  background-color: #EB5C02;
}

.p-cart__change-btn.--fix {
  margin-bottom: 20px;

  margin: 10px auto;
  float: none;
}

.p-cart__change-btn.--fix.delete-btn {
  background-color: #FF0000;
  width: auto;
  max-width: 300px;
  min-width: 180px;
}

@media (min-width: 992px) {
  .p-cart__change-btn.--fix {
    margin: 10px;
    float: none;
  }
  .p-cart__add-btn.--fix {
    margin: 10px auto;
    float: none;
  }
}

.p-cart__change-btn.--fix.--pd {
  margin: 30px 0 100px;
}

.p-cart__change-btn.--mgt {
  margin-top: 0;
}

.p-cart__item-top-info {
  width: 80%;
}

.p-cart__close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 50px;
  height: 20px;
  color: #FF0000;
  font-size: 13px;
  cursor: pointer;
  z-index: 700;
}

.p-cart__close-btn.--2 {
  width: 100px;
  height: 50px;
}

.p-cart__close-btn::before,
.p-cart__close-btn::after {
  border-radius: 20px;
  top: 6px;
  right: -5px;
  width: 26px;
  height: 4px;
  background-color: #FF0000;
  transform: rotate(45deg);
}

.p-cart__close-btn::after {
  transform: rotate(-45deg);
}

@media (min-width: 992px) {
  .p-cart__close-btn {
    display: inline-block;
    padding: 8px 10px;
    text-decoration: none;
    background: #FF0000;
    color: #FFF;
    border-radius: 5px;
    width: 50px;
    height: 35px;
    font-size: 15px;
  }

  .p-cart__close-btn::before,
  .p-cart__close-btn::after {
    display: none;
    top: 13px;
  }
}

@media (min-width: 992px) {
  .p-cart__close-btn.--x-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    width: auto;
    height: auto;
    color: #ff0000;
    font-size: 13px;
    cursor: pointer;
    z-index: 900;
    background-color: transparent;
    box-shadow: none;
  }
}

.p-cart__close-btn.--x-icon::before,
.p-cart__close-btn.--x-icon::after {
  display: block;
}

.p-cart__close-btn:active {
  /*ボタンを押したとき*/
  -webkit-transform: translateY(4px);
  transform: translateY(4px);
  /*下に動く*/
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.2);
  /*影を小さく*/
  border-bottom: none;
}

@media (min-width: 992px) {
  .p-cart__price-pc {
    font-size: 14px;
    padding: 10px 0 5px;
  }
}

@media (min-width: 992px) {
  .p-cart__name-pc {
    font-size: 16px;
    font-weight: bold;
  }
}

@media (min-width: 992px) {
  .p-cart__ordered-item {
    display: flex;
    flex-wrap: wrap;
  }

  .p-cart__ordered-item.--pc-white {
    background-color: #fff;
    border-top: 1px solid #DDDDDD;
  }
}

.p-cart__ordered-item-info {
  display: flex;
  align-items: center;
  font-size: 16px;
  /* margin: 20px 0; */
}

.p-cart__ordered-item-info img {
  width: 45%;
  height: auto;
  padding: 10px;
}

/* .p-cart__ordered-item-info p {
  padding-bottom: 5px;
} */

.p-cart__ordered-item-info span {
  font-weight: bold;
}

@media (min-width: 992px) {
  .p-cart__ordered-item-info {
    display: block;
    margin-top: 40px;
  }

  .p-cart__ordered-item-info img {
    width: 100%;
    height: auto;
    padding: 10px;
  }
  .p-cart__ordered-item-info.p-finish img {
    width: 100%;
    height: auto;
    padding: 0;
  }
}

.p-cart__allergy-sign {
  padding: 6px 30px;
  width: 100%;
  text-align: center;
  font-size: 14px;
  margin: 10px auto;
  background-color: #ddd;
}

.p-cart__allergy-sign.is-active {
  border-color: inherit;
  color: #000;
  font-size: 14px;
  width: 100%;
  border: none;
  background-color: #ddd;
  margin: 0;
}

@media (min-width: 992px) {
  .p-cart__allergy-sign.--gray {
    padding-bottom: 130px;
    font-size: 15px;
    color: #000;
    border-color: #ddd;
  }
}

@media (min-width: 992px) {
  .p-cart__allergy-sign {
    border: none;
    color: #000;
    font-size: 15px;
    width: auto;
    padding: 6px;
  }

  .p-cart__allergy-sign.is-active {
    border-top: 1px solid #ddd;
    color: #000;
  }
}

.p-cart__history-table {
  font-weight: 400;
  font-size: 10px;
  width: 140px;
  margin: 0 auto;
  text-align: right;
  line-height: 1.5;
}

.p-cart__history-table .td1 {
  width: 30px;
}

.p-cart__history-table .td2 {
  width: 30px;
}

.p-cart__history-table .td3 {
  width: 40px;
}

.p-cart__product-qty.--orderd {
  margin: 10px auto 0;
}

.p-cart__total-bg-white {
  background-color: #fff;
  padding: 15px 0px;
  margin: 10px 0;
}

.p-cart__total-bg-white.--border2 {
  margin: 10px 0;
  border: 1px solid #C5C5C5;
}

.p-cart__total-bg-white.--border3 {
  margin: 0;
}
.p-cart__total-bg-white .p-dashboard__total {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .p-cart__total-bg-white.--border3 {
    border: none;
    border-top: 1px solid #DDDDDD;
    border-bottom: 1px solid #DDDDDD;
  }
}

@media (min-width: 992px) {
  .p-cart__total-bg-white {
    padding: 10px 0;
    width: 100%;
    background-color: transparent;
    border-top: 1px solid #DDDDDD;
    border-bottom: 1px solid #DDDDDD;
  }

  .p-cart__total-bg-white.--pc-w {
    background-color: #fff;
    margin: 0;
    border-bottom: none;
  }

  .p-cart__total-bg-white.--transparent {
    background-color: transparent;
    margin-bottom: 100px;
  }
}

.p-cart__note {
  width: 95%;
  margin: 20px auto 0;
  font-size: 13px;
}

.p-cart__note textarea {
  margin: 5px 0 0;
  min-height: 100px;
  font-weight: normal;
}

.p-cart__note textarea::placeholder {
  color: #AAAAAA;
}

.p-cart__note.--border2 {
  width: 100%;
  margin: 0;
  padding: 20px 30px;
  background-color: #fff;
}

/* .p-cart__note.--border2 p {
  padding: 2px;
} */

@media (min-width: 992px) {
  .p-cart__note.--border2 {
    border: 0;
  }
}

.p-cart__note.--border3 {
  width: 100%;
  margin: 0;
  padding: 20px 30px;
  border: 0;
  background-color: #fff;
}

.p-cart__note.--border3 div {
  width: 60%;
}

.p-cart__note.--border3 p {
  padding: 2px;
}

@media (min-width: 992px) {
  .p-cart__note.--transparent {
    background-color: transparent;
  }
}

@media (min-width: 992px) {
  .p-cart__note {
    margin: 0 auto;
    width: 600px;
  }

  .p-cart__note.--mgb {
    margin-top: 60px;
    margin-bottom: 60px;
  }
}

.p-cart__note-pc-short > p {
  margin-bottom: 10px;
}
.p-cart__note-pc-short > p + p {
    border-radius: 5px;
    padding: 10px;
    font-weight: 500;
  }

@media (min-width: 992px) {
  .p-cart__note-pc-short {
    width: 60%;
    margin: 0 auto;
    font-size: 15px;
  }
  
}

.p-cart__add {
  font-size: 24px;
  border-top: 1px solid #DDDDDD;
  padding-top: 20px;
  color: #EB5C02;
  text-align: center;
}

.p-cart__add-itemlist {
  font-size: 18px;
  padding: 8px 0 30px;
  text-align: center;
}

/***********************************************
pc  pc
************************************************/
@media (min-width: 992px) {
  .p-cart__allergy-pc {
    display: flex;
    width: 100%;
    margin: 20px auto;
    background-color: #f5f5f5;
  }

  .p-cart__allergy-pc h3 {
    flex-shrink: 0;
    width: 200px;
  }
}

@media (min-width: 992px) {
  .p-cart__pc-button-flex .p-cart__allergy-send {
    width: 300px;
    height: auto;
    padding: .8em 0;
    font-size: 18px;
    margin: 0 auto;
  }

  .p-cart__pc-button-flex .p-cart__allergy-send span {
    font-size: 12px;
  }

  .p-cart__pc-button-flex.--fix {
    width: 60%;
    margin: 0 auto;
  }

  .p-cart__pc-button-flex.--fix .btn-square-shadow {
    margin: 10px auto 40px;
    width: 40%;
    max-width: 300px;
    float: none;
    font-size: 18px;
    height: auto;
  }

  .p-cart__pc-button-flex.--fix.--pd {
    margin: 50px auto 100px;
  }

}

@media (min-width: 992px) {
  .p-cart__allergy-img-pc img {
    width: 113px;
    height: 78px;
    object-fit: cover;
  }

  .p-cart__gray-zone {
    padding: 10px 110px;
    background-color: #F3F4F3;
  }
}

img.p-cart__allergy-bottom-img {
  width: 220px;
  height: 150px;
  object-fit: cover;
}

.p-cancel__heading {
  font-size: 24px;
  padding: 10px 0 15px;
  text-align: center;
}

.p-cancel__text {
  display: block;
  width: 70%;
  margin: 0 auto 15px;
  color: #FF0000;
  font-size: 16px;
}

.p-cancel__text::before {
  content: "※";
  top: 0;
  left: -20px;
  color: #FF0000;
}

.p-cancel__text.--reg {
  font-size: 14px;
  width: 90%;
  margin: 40px 10px 28px auto;
}

@media (min-width: 992px) {
  .p-cancel__text.--reg {
    margin: 16px 10px 10px auto;
  }
}

@media (min-width: 992px) {
  .p-cancel__text {
    width: 40%;
  }
}

@media (min-width: 1200px) {
  .p-cancel__text {
    display: inline;
  }

  .p-cancel__text::before {
    top: 2px;
  }
}

.p-cancel__send-btn1 {
  width: 350px;
  height: 80px;
  display: block;
  margin: 50px auto 40px;
  font-size: 23px;
}

@media (min-width: 992px) {
  .p-cancel__send-btn1 {
    height: 50px;
    font-size: 20px;
  }
}

.p-cancel__add-btn {
  margin: 30px auto;
  display: block;
  width: 200px;
  padding: 10px 0 10px 30px;
  border-radius: 5px;
}

.p-cancel__add-btn::before {
  width: 15px;
  height: 2px;
  background-color: #fff;
  top: 53%;
  left: 30%;
  transform: translate(-50%, -50%);
  border-radius: 10px;
}

.p-cancel__add-btn::after {
  width: 2px;
  height: 15px;
  background-color: #fff;
  top: 53%;
  left: 30%;
  transform: translate(-50%, -50%);
  border-radius: 10px;
}

@media (min-width: 992px) {
  .p-cancel__add-btn {
    display: none;
  }
}

.p-cancel__service-type-flex {
  display: flex;
  padding: 20px 0 5px;
}

.p-cancel__service-type-flex label {
  padding: 0;
}

.p-cancel__x-icon {
  width: 350px;
  height: 80px;
  display: block;
  margin: 30px auto 40px;
  font-size: 32px;
}

.p-cancel__x-icon::before,
.p-cancel__x-icon::after {
  border-radius: 20px;
  top: 39px;
  right: 20px;
  width: 40px;
  height: 5px;
  background-color: #fff;
  transform: rotate(45deg);
}

.p-cancel__x-icon::after {
  transform: rotate(-45deg);
}

.p-cancel__x-icon.--top {
  width: auto;
  height: auto;
  font-size: 22px;
  text-align: right;
  padding-right: 50px;
  cursor: pointer;
}

.p-cancel__x-icon.--top::before,
.p-cancel__x-icon.--top::after {
  top: 10px;
  right: 0px;
  background-color: #FF0000;
}

@media (min-width: 992px) {
  .p-cancel__x-icon.--top {
    display: none;
  }
}

.p-cancel__x-icon.--2 {
  margin-right: 40px;
}

/* .p-cancel__x-icon.--cancel {
  padding-right: 70px;
} */

@media (min-width: 992px) {
  .p-cancel__x-icon.--cancel {
    width: 350px;
    height: 80px;
    display: block;
    margin: 50px auto 40px;
    font-size: 23px;
    font-size: 20px;
    height: 51px;
    padding: 0;
  }

  .p-cancel__x-icon.--cancel::before,
  .p-cancel__x-icon.--cancel::after {
    display: none;
  }
}

@media (min-width: 992px) {

  .p-cancel__x-icon.--pc::before,
  .p-cancel__x-icon.--pc::after {
    display: none;
  }
}

.p-cancel__modal-qty {
  font-size: 18px;
  font-weight: 700;
}

.p-cancel__modal-qty em {
  font-style: normal;
  padding-right: 10px;
}

.p-cancel__modal-qty span {
  display: inline;
}

@media (min-width: 992px) {
  .p-cancel__modal-qty {
    font-size: 15px;
  }

  .p-cancel__modal-qty em {
    font-size: 20px;
    /* padding-left: 50%; */
  }

  .p-cancel__modal-qty span:first-child {
    display: none;
  }
}

.p-cancel__modal-text1 {
  text-align: center;
  font-size: 18px;
  color: #F00;
  margin-top: 20px;
}

.p-cancel__item-info {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 700;
}

.p-cancel__item-info h2 {
  padding-top: 14px;
}
.p-cancel__item-info h2.delete_name {
  font-size: 16px;
  font-weight: bold;
}
.p-cancel__item-info #delete_price {
  font-size: 16px;
}

.p-cancel__item-info span {
  font-weight: 700;
}

@media (min-width: 992px) {
  .p-cancel__item-info {
    font-size: 15px;
    padding: 0;
    line-height: 1;
  }
  .p-cancel__item-info h2 {
    font-size: 24px;
    font-weight: bold;
  }
  .p-cancel__item-info #delete_price {
    font-size: 20px;
  }
}

.p-cancel__bottom-text2 {
  font-size: 20px;
  text-align: center;
  padding: 50px 0 0px;
}

@media (min-width: 992px) {
  .p-cancel__bottom-text2 {
    padding: 58px 0 8px;
  }
}

.p-cancel__opacity {
  opacity: 0.5;
}

@media (min-width: 992px) {
  .p-cancel__delete-container {
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
    width: 700px;
    margin: 0 auto 500px;
    padding: 84px;
    height: 1000px;
  }

  .p-cancel__delete-container img {
    width: 230px;
  }

  .p-cancel__delete-container .c-inner__left {
    width: 230px;
  }
}

.p-cancel__amount {
  margin-top: 10px;
}

@media (min-width: 992px) {
  .p-cancel__amount {
    width: 100%;
    /* padding: 20px 30px;
    background-color: #D9D9D9;
    position: absolute;
    bottom: 0px;
    left: 0; */
  }
}

@media (min-width: 992px) {
  .p-cancel__relative {
    position: relative;
    text-align: center;
    margin-bottom: 15px;
  }
}

.p-cancel__top-back-btn {
  display: none;
  background-color: #92B3BD;
  padding: 1.5em 3em;
  width: 130px;
  margin: 25px auto 70px;
}

@media (min-width: 992px) {
  .p-cancel__top-back-btn {
    padding: 3px 0 !important;
    display: block;
    position: absolute;
    top: 20px;
    left: 0;
  }
}

@media (min-width: 992px) {
  .p-cancel__inner {
    max-width: 1200px;
    margin: 0px auto;
  }
}

@media (min-width: 992px) {
  .p-cancel__complete-container {
    border: 1px solid #DDDDDD;
    padding: 0px;
    background-color: #fff;
  }
}

.p-cancel__bg-white {
  background-color: #fff;
  padding: 10px 20px;
}

@media (min-width: 992px) {
  .p-cancel__bg-white.--change {
    background-color: transparent;
    border-bottom: 1px solid #DDDDDD;
  }

  .p-cancel__bg-white.--cancel {
    background-color: transparent;
    border-top: 1px solid #DDDDDD;
  }

  .p-cancel__bg-white.--cancel .p-cancel__complete-title {
    padding-bottom: 50px;
  }
}

@media (min-width: 992px) {
  .p-cancel__absolute {
    width: 95%;
    max-width: 1200px;
    position: absolute;
    top: 35px;
    left: 50%;
    transform: translateX(-50%);
  }
}

.p-cancel__complete-title {
  display: none;
}

@media (min-width: 992px) {
  .p-cancel__complete-title {
    display: inline-block;
    text-align: center;
    margin: 0 auto;
    font-size: 24px;
    padding-top: 16px;
    margin-bottom: 32px;
  }
}

.p-cancel__complete-title.--pd {
  margin-top: 40px;
}

.p-cancel__complete-flex {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}
.p-cancel__complete-flex.p-finish {
  font-size: 14px;
}

/* @media (min-width: 992px) {
  .p-cancel__complete-flex {
    flex-direction: column-reverse;
  }
} */

@media (min-width: 992px) {
  .p-cancel__border {
    border: 0;
    padding: 10px;
    /* min-height: 400px; */
  }

  .p-cancel__border .p-cart__ordered-item-info {
    margin-top: 0;
    margin-bottom: 0;
  }

  .p-cancel__border .p-dashboard__allergy-tags span {
    font-size: 14px;
    padding: 2px 7px;
  }
}

.p-cancel__info-food-name {
  display: block;
}

.p-cancel__info-food-name p {
  padding: 0;
}

@media (min-width: 992px) {
  .p-cancel__info-food-name {
    display: block;
    font-weight: 400;
    font-size: 16px;
    padding: 5px 0;
  }

  .p-cancel__info-food-name span {
    padding-left: 10px;
  }
  .p-cancel__info-food-name.p-finish span {
    padding-left: 0;
  }

  .p-cancel__info-food-name p {
    text-align: center;
    font-weight: 700;
    padding: 5px;
    margin: 10px 0;
    background-color: #ddd;
  }
  .p-finish__allergy-tags-header {
    font-size: 14px;
    text-align: center;
    font-weight: 700;
    padding: 5px;
    margin: 10px 0;
    background-color: #ddd;
  }
}

.p-cancel__item-price {
  margin-top: 0;
  display: block;
}

@media (min-width: 992px) {
  .p-cancel__item-price {
    padding: 5px 0;
    font-size: 14px;
  }
}

@media (min-width: 992px) {
  .p-cancel__gray-amount {
    border-top: 1px solid #000;
    padding: 8px 10px;
    text-align: center;
  }

  .p-cancel__gray-amount em {
    font-size: 20px;
    padding-left: 70px;
    padding-right: 20px;
    font-style: normal;
  }
}

.p-cancel__align-center {
  text-align: center;
}

.p-cancel__change-inner {
  width: 100%;
  margin: 0 auto;
}

@media (min-width: 992px) {
  .p-cancel__change-inner {
    max-width: 1200px;
    margin: 0 auto;
  }
}

@media (min-width: 992px) {
  .p-cancel__change-item {
    border: none;
    background-color: #f5f5f5;
  }

  .p-cancel__change-item .p-dashboard__allergy-tags span {
    font-size: 14px;
    padding: 2px 7px;
  }
}

.p-cancel__flex-colum {
  display: flex;
  flex-direction: column;
}

@media (min-width: 992px) {
  .p-cancel__flex-colum {
    flex-direction: column-reverse;
  }
}

@media (min-width: 992px) {
  .p-cancel__inner-delete {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid #DDDDDD;
  }

  .p-cancel__inner-delete .p-cart__order-info {
    background-color: transparent;
  }
}

.p-cancel__sp-container {
  width: 100%;
  margin: 0 auto;
}

.p-cancel__left {
  text-align: left;
}

.cart-inactive * {
  text-decoration: none !important;
  opacity: 0.5;
  cursor: default;
}

.cart-inactive .c-icon::before {
  display: none;
}

#modal-cart-delete .btn-square-shadow.--back {
  padding: 1.5em 1em;

}

#modal-cart-delete .btn-square-shadow.--login-send-btn {
  font-size: 18px;
}

#modal-cart-delete .modal__content2 {
  padding: 60px 20px;
}

#modal-cart-delete .p-cancel__modal-text1 {
  width: 100%;
  margin: 0 auto;
  text-align: center;
  font-size: 18px;
  line-height: 1.3;
  color: #ff0000;
}

#modal-cart-delete .p-cancel__x-icon::before,
#modal-cart-delete .p-cancel__x-icon::after {
  width: 0px;
}

.p-dashboard__dtdd-flex dt,
.p-dashboard__place-flex dt,
.p-dashboard__order-info dt {
  width: 85px;
  text-align: right;
}

@media (min-width: 992px) {
  #modal-cart-delete .modal__content2 {
    height: 50%;
    width: 60%;
    max-width: 700px;
    margin: 0;
  }


  #modal-cart-delete .btn-square-shadow.--login-send-btn.--pc.--modal {
    height: 60px;
  }

  #modal-cart-delete .btn-square-shadow.--back {
    font-size: 20px;
    width: 300px;
    padding: 0.7em 1.5em;
  }

  .p-dashboard__pc-info-item {
    width: 232px;
    font-size: 16px;
  }

}

.p-dashboard__flex3 {
  font-size: 18px;
}

.p-dashboard__order-end-time {
  font-size: 1.7em;
}

.require {
  color: #FF0000;
}


/************0109.8:00追記********************/

.p-dashboard__dtdd-flex {
  width: 100%;
}

.p-dashboard__order-info dt {
  font-weight: 400;
  float: left;
  width: 85px;
  text-align: right;
}

.c-button__radio {
  margin-right: 20px;
}

.p-dashboard__date-flex span {
  padding: 14px 10px !important;
}

.p-order__form select option {
  color: black !important;
}

.p-order__form .btn-square-shadow.--login-send-btn {
  width: 100%;
  max-width: 300px;
  height: 65px;
  display: block;
  margin: 44px auto;
  font-size: 24px;
}

.c-button__select:has(#delivery_date) {
  width: 170px;
}

.c-button__select:has(#delivery_time) {
  width: 100px;
}

.p-order__form .btn-square-shadow.--back {
  /* background-color: #FF0000; */
  padding: 0.8em 3em;
  font-size: 18px;
}

.p-dashboard__search .btn-square-shadow {
  padding: 13px 0;
  font-size: 15px;
}

.p-dashboard__inner .p-cancel__x-icon {
  width: 80%;
  height: auto;
  font-size: 20px;
  text-align: center;
}

.p-dashboard__inner .btn-square-shadow.--cancel,
.modal__content2 .btn-square-shadow.--cancel {
  display: block;
  width: 250px;
  height: auto;
  font-size: 20px;
  text-align: center;
  margin: 10px auto;
  background-color: #f00;
}
#modal-cart-delete .modal__content2 .btn-square-shadow.--cancel {
  width: 300px;
}

.p-dashboard__inner .p-cancel__x-icon::before,
.p-dashboard__inner .p-cancel__x-icon::after {
  width: 33px;
}

.p-dashboard__inner .js-modal-close.p-cancel__x-icon::before,
.p-dashboard__inner .js-modal-close.p-cancel__x-icon::after {
  top: 20px;
}

.p-dashboard__flex2 {
  font-size: 17px;
}

.p-order__input-container .p-order__form>div dd {
  margin: -9px 0 0px;
}

.p-login__staff-table .btn-square-shadow {
  padding: 0.7em 0em;
  width: 58px;
}

.p-login__staff-table .p-login__td4 {
  min-width: 40px;
}

.c-button__select.--order:has(#delivery_time) {
  width: 142px;
}

.c-margin__left-medium:has(.c-button__select.--order) {
  margin-left: 0;
}

.p-dashboard__inner:has(#cartForm) {
  margin: 50px auto 0px;
}
.p-order__form dl > div.c-inner__flex.--no-wrap {
  display: block;
}

.pw-reset__ttl {
  font-size: 18px;
  margin-bottom: 24px;
  padding-top: 24px;

}

@media (min-width: 992px) {
  .p-dashboard__pc-staff {
    font-size: 16px;
  }

  .p-dashboard__order-number span {
    font-size: 19px;
  }

  .p-dashboard__pc-info-item.--place {
    margin: 0 0px 0 -50px;
    width: 330px;
    font-size: 16px;
  }

  .p-dashboard__pc-info-item.--orderdate {
    font-size: 12px;
  }

  .c-button__radio {
    margin-right: 40px;
  }

  .p-order__form .btn-square-shadow.--login-send-btn {
    height: 65px;
  }

  .c-button__select:has(#delivery_date) {
    width: 190px;
  }

  .p-dashboard__flex4 .c-button__select:has(#delivery_date) {
    width: 112px;
  }

  .p-dashboard__search-item.--date>div:last-child>dt {
    display: none;
  }

  .p-dashboard__date-flex {
    margin: 34px 0 0;
  }

  .p-dashboard__inner .modal__content {
    top: 50%;
    transform: translate(-50%, -50%);
    padding-top: 50px;
    height: 80%;
  }

  .p-dashboard__inner .p-cancel__x-icon.--cancel {
    width: 350px;
    height: 80px;
    display: block;
    margin: 50px auto 40px;
    font-size: 23px;
    font-size: 20px;
    height: 51px;
    padding: 0;
    background-color: #f00;
  }

  .p-order__input-container .p-order__form {
    margin: 20px auto 0;
  }

  .p-dashboard__flex4 .btn-square-shadow.--reset {
    right: 122px;
  }

  .p-dashboard__search-btn {
    width: 105px;
  }

  .p-login__staff-table .btn-square-shadow {
    padding: 1.0em 0em;
    width: 130px;
  }

  .c-button__select.--order:has(#delivery_time) {
    width: 190px;
  }

}

/* Tablet */
@media (min-width: 768px) and (max-width: 991px) {
  .l-header__logout-wrapper, 
  .l-header__register-wrapper, 
  .l-header__document-wrapper {
    width: 100px;
  }
  .p-dashboard__food-number {
    font-size: 24px;
  }
  .p-dashboard__order-food-info {
    font-size: 20px;
  }
  .p-dashboard__order-food-info p {
    font-size: 20px;
  }
  .p-dashboard__text {
    font-size: 18px;
  }
  .p-dashboard__total,
  .p-dashboard__total span {
    font-size: 24px;
  }
}

/* Manual Page */
  #manual .table-container {
      overflow-x: auto;
  }
  #manual table {
      width: 100%;
      border-collapse: collapse;
      margin-top: 20px;
  }
  #manual th, #manual td {
      border: 1px solid #ddd;
      padding: 10px;
      text-align: left;
      word-wrap: break-word;
      word-break: break-word;
  }
  #manual th {
      background-color: #f4f4f4;
  }
  #manual .download-btn {
      display: inline-block;
      padding: 5px 10px;
      background-color: #EB5C02;
      color: #fff;
      text-decoration: none;
      border-radius: 5px;
  }
  #manual td:nth-child(3) {
      max-width: 300px;
  }