@charset "utf-8";
/**********************************************************
共通css
***********************************************************/
/* モーダルが開いた時のバックコンテンツの挙動 */
.os__win.modal-open {
  padding-right: 17px;
}
.os__win .modalOpenHead {
  padding-right: 17px;
}

.customerModal {
  background: rgba(0, 0, 0, 0.25);
  z-index: 100005;
}
.customerModal.-pc,
.customerModal.-mailAuth {
  overflow-x: hidden;
  overflow-y: auto;
}
.customerModal.-sp {
  overflow: hidden;
}

.customerModal__bg {
  width: 100%;
  height: 100vh;
  position: fixed;
  background: transparent;
}

.customerModal__contentHeader {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 50px;
  position: relative;
  background: transparent;
  border-bottom: solid 1px #cccccc;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .customerModal__contentHeader {
    background: #ffffff;
  }
}
.customerModal.-pc .customerModal__contentHeader,
.customerModal.-mailAuth .customerModal__contentHeader {
  height: 55px;
}
@media screen and (max-width: 420px) {
  .customerModal.-mailAuth .customerModal__contentHeader {
    height: 32px;
    border-bottom: none;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
  }
}
.customerModal__contentHeader .customerModal__h {
  line-height: 1em;
}
.customerModal.-pc .customerModal__contentHeader .customerModal__h,
.customerModal.-mailAuth .customerModal__contentHeader .customerModal__h {
  font-size: 16px;
  font-weight: bold;
}
.customerModal.-sp .customerModal__contentHeader .customerModal__h {
  font-size: 14px;
  font-weight: normal;
}
.customerModal__h.-pc {
  display: inline-block;
}
.customerModal__h.-sp {
  display: none;
}
@media screen and (max-width: 420px) {
  .customerModal__h.-pc {
    display: none;
  }
  .customerModal__h.-sp {
    display: block;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 24px;
  }
}

.customerModal.-pc .customerModal__content,
.customerModal.-mailAuth .customerModal__content {
  width: 752px;
  height: 690px;
  margin: 40px 0;
  position: absolute;
  top: 0;
  left: 50%;
  background: #ffffff;
  border-radius: 4px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  transform: translate(-50%, 0);
}
.customerModal.-sp .customerModal__content {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  background: #ffffff;
}
.customerModal__scroll {
  overflow-x: hidden;
  overflow-y: auto;
}

/**********************************************************
受取場所選択モーダル用css
***********************************************************/
.customerModal.-shop,
.customerModal.-menu {
  display: block;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.customerModal__scroll.-shop,
.customerModal__scroll.-menu {
  height: calc(100% - 50px);
}
.customerModal__shopList {
  width: 100%;
  margin-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .slideArea__shopLists {
    height: 100%;
    overflow-x: hidden;
    overflow-y: scroll;

  }
  .customerModal__shopList {
    margin-bottom: 150px;
    padding: 4px 8px 8px;
  }
}
.customerModal__shopContent {
  position: relative;
}
.customerModal__shopContent:hover {
  background: rgba(0, 0, 0, 0.03);
}
.customerModal__shopContent.disabled:hover {
  background: none;
}
.customerModal.-pc .customerModal__shopContent.disabled .customerModal__shopDetailsWrap {
  cursor: default;
}
.customerModal__shopContent.-active {
  background-color: #fff0d9;
}

/* 2Column Layout */
.twoColumn__layout.-shopList {
  display: flex;
  margin: 0;
}
@media screen and (max-width: 991px) {
  .twoColumn__layout.-shopList {
    flex-direction: row;
  }
}
/* 左カラム */
.twoColumn__left.-shopList {
  display: block;
  flex: 1;
  margin-right: 0;
}
/* 右カラム */
.twoColumn__right.-shopList {
  width: 344px;
  margin: 0;
  background: #eeeeee;
  border-left: solid 1px #cccccc;
}

/* 検索 */
.customerModal__searchBox {
  padding: 8px;
  border-bottom: solid 1px #cccccc;
}
.customerModal__searchBox.-sp {
  padding: 16px 8px 8px;
  border-bottom: none;
}
.customerModal__searchBoxInner {
  position: relative;
}
.inputText.-modalSearchSize {
  height: 40px;
  padding: 6px 12px 8px 34px;
}
.inputText.-modalSearchSize.-sp {
  height: 36px;
  background: #ffffff;
  border-color: transparent;
}
.inputText.-modalSearchSize::placeholder {
  font-size: 16px;
  font-weight: normal;
}
.customerModal__searchIcon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #999999;
  text-align: center;
  width: 34px;
  height: 34px;
  position: absolute;
  top: 2px;
  left: 3px;
  cursor: pointer;
}

/* 画像 */
.customerModal__Image {
  margin-right: 8px;
  background: #cccccc;
  object-fit: cover;
}
.customerModal.-pc .customerModal__Image {
  width: 88px;
  height: 88px;
}
.customerModal.-sp .customerModal__Image {
  width: 100%;
  height: 172px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.customerModal__Image img {
  object-fit: cover;
}

.customerModal__shopState {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  padding: 8px;
}
.customerModal__shopImage + .customerModal__shopState {
  width: calc(100% - 96px);
}
@media screen and (max-width: 767px) {
  .customerModal__shopState {
    display: block;
  }
  .customerModal__shopImage + .customerModal__shopState {
    width: 100%;
  }
  .customerModal__shopStateInner {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}


.customerModal__shopName,
.customerModal__shopAddress {
  display: block;
  font-size: 16px;
}
.customerModal__shopName {
  font-weight: bold;
}
.customerModal__shopAddress {
  font-size: 14px;
  margin-top:4px;
  padding-left: 16px;
  position: relative;
  pointer-events: none;
}
.customerModal__shopAddress::before {
  content: "\e0c8";
  font-size: 16px;
  font-family: "Material Icons";
  color: #8e8e8e;
  position: absolute;
  top: -1px;
  left: -2px;
}
.customerModal__shopAddressText {
  display: block;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (max-width: 767px) {
  .customerModal__shopAddressText {
    width: calc(100vw - 86px);
  }
}
.customerModal__shopAddressText.-noShopImage {
  width: 350px;
}
@media screen and (max-width: 767px) {
  .customerModal__shopAddressText.-noShopImage {
    width: calc(100vw - 88px);
  }
}
.customerModal__goShopDetail {
  min-width: 100%;
  min-height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.customerModal__goShopDetailBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8e8e8e;
  width: 24px;
  margin: 0 4px;
}
.customerModal__goShopDetailBtn:hover {
  color: #8e8e8e;
}
.customerModal__quickShopSelectBtn {
  width: 90px;
  position: relative;
}
.customerModal__quickShopSelectBtn .cotolUserBtn.-shopQuickSelect {
  display: flex !important;
  justify-content: flex-start;
  font-size: 14px;
  font-weight: bold;
  line-height: 1em;
  color: #cccccc;
  max-width: 90px;
  min-width: 24px;
  height: 32px;
  margin-right: 6px;
  padding: 0 12px 0 8px;
  border-radius: 16px;
  box-shadow: none;
}
.customerModal__quickShopSelectBtn .cotolUserBtn.-shopQuickSelect.-selected {
  color: #e8a248;
  background: #fff0d9;
  border: 1px solid #fff0d9;
}
.customerModal__quickShopSelectedState {
  display: flex;
  align-items: center;
}
.btn.cotolUserBtn.-shopQuickSelect .material-icons-outlined {
  font-size: 26px;
  position: relative;
  left: -2px;
}
.btn.cotolUserBtn.-shopQuickSelect .material-icons {
  font-size: 24px;
  margin: 0 4px 0 0;
}

/* PC */
.customerModal.-pc .customerModal__contentHeader.-shopSelect {
  height: 55px;
}

.customerModal.-pc .customerModal__scroll.-shop {
  width: 408px;
  height: 560px;
  overflow-x: hidden;
  overflow-y: auto;
}
.customerModal.-pc .customerModal__goShopDetailBtn {
  display: none;
}
.customerModal.-pc .customerModal__shopDetailsWrap {
  display: flex;
  align-items: top;
  min-height: 65px;
  margin: 0 8px;
  padding: 8px 0;
  border-bottom: solid 1px #cccccc;
  cursor: pointer;
}

/* SP */
.customerModal.-sp .customerModal__content.-shopSelect {
  background: #e4e4e4;
}
.customerModal.-sp .customerModal__shopContent {
  margin-top: 16px;
}
.customerModal.-sp .customerModal__shopContent:first-child {
  margin-top: 0;
}
.customerModal.-sp .customerModal__shopDetailsWrap {
  position: relative;
  background: #ffffff;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
}
/*

/* PCモーダルカルーセル */
@media not all, (-webkit-transform-3d) {
  /* カルーセルのスピード */
  .carousel-inner>.item {
    -webkit-transition: -webkit-transform .4s ease-in-out;
    transition: transform .4s ease-in-out;
  }
}

.customerModal__shopDetailImageBox {
  height: 245.6px;
}
.customerModal__shopDetailImage {
  width: 100%;
  height: 228.6px;
  background: #ffffff;
  position: relative;
}
.customerModal__shopDetailImage img {
  width: 343px;
  height: 228.6px !important;
  object-fit: contain;
}
.carousel-control {
  opacity: 1;
}
.carousel-control:hover,
.carousel-control:focus {
  opacity: 1;
}
.customerModal__shopDetailImageBtn {
  display: flex !important;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  width: 42px !important;
  height: 42px !important;
  top:40% !important;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  text-shadow: none;
}
.customerModal__shopDetailImageBtn:hover,
.customerModal__shopDetailImageBtn:focus {
  background: rgba(0, 0, 0, 0.3);
}
.carousel-indicators li {
  width: 8px;
  height: 8px;
  margin: 0;
  background: #cccccc;
  border: none;
}
.carousel-indicators li + li,
.carousel-indicators li + li.active {
  margin-left: 10px;
}
.carousel-indicators .active {
  width: 8px;
  height: 8px;
  background: #333333;
}
.customerModal__shopDetailImageBtn.-prev::before {
  content: "\e5cb";
  font-family: "Material Icons";
}
.customerModal__shopDetailImageBtn.-next::before {
  content: "\e5cc";
  font-family: "Material Icons";
}
.customerModal__shopDetailImageBox .carousel-indicators {
  bottom: -6px;
}

.customerModal__shopImg {
  padding: 0 !important;
}

/* 受取場所情報 */
.shopDetails {
  height: 288.4px;
  padding: 16px 16px 42px 16px;
  position: relative;
}
@media screen and (max-height: 800px) {
  .shopDetails {
    height: 186px;
  }
}
.shopSummary__box.-allHeight {
  height: 100% !important;
}
.shopDetails.-allHeight {
  height: 100% !important;
}
.shopDetails__DescriptionBox {
  width: 100%;
  overflow: hidden;
}
.shopDetails__Description {
  display: block;
}
.shopDetails__Description.-shopName {
  margin-bottom: 8px;
}
.shopDetails__Description.-description.-shortLength {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 8;
}
@media screen and (max-height: 800px) {
  .shopDetails__Description.-description.-shortLength {
    -webkit-line-clamp: 4;
  }
}
.shopDetails__Description.-description.-longLength {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 20;
}
.shopDetails__Description.-moreDetail {
  color: #8e8e8e;
  padding-right: 20px;
  position: absolute;
  bottom: 16px;
  right: 16px;
}
.shopDetails__Description.-moreDetail a {
  color: #8e8e8e;
  text-decoration: underline;
}
.shopDetails__Description.-moreDetail:hover a {
  text-decoration: none;
}
.shopDetails__Description.-moreDetail::before {
  content: "\e895";
  font-family: "Material Icons";
  font-size: 16px;
  position: absolute;
  top: -1px;
  right: 0;
}

/* 受取場所未選択時 */
.noShopSummary__box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.noShopSummary {
  text-align: center;
}
.noShopSummary__icon {
  display: block;
  margin-bottom: 16px;
}
.noShopSummary__icon svg {
  width: 56px;
}
.noShopSummary p {
  color: #bcbcbc;
}
/* 受取場所一覧 取扱がない */
.customerModal__shopDetailsWrap.-notReceiptable {
  color: #cccccc;
  cursor: default !important;
}
.customerModal__shopDetailsWrap.-notReceiptable a.customerModal__shopAddressLink,
.customerModal__shopDetailsWrap.-notReceiptable a.customerModal__shopAddressLink:hover,
.customerModal__shopDetailsWrap.-notReceiptable .customerModal__shopAddress::before {
  color: #cccccc;
  text-decoration: none;
  cursor: default;
}

/**********************************************************
受取場所で取扱なしラベル
***********************************************************/
.item__notReceiptable {
  display: block;
  font-weight: normal;
  white-space: nowrap;
  color: #c82527;
  padding: 6px 8px;
  background: #ffe3e3;
  border: 1px solid #ffc1c1;
  border-radius: 3px;
}
.item__notReceiptable.-inImage {
  position: absolute;
  top: 8px;
  left: 8px;
}
@media screen and (max-width: 767px) {
  .item__notReceiptable.-inImage {
    font-size: 12px;
  }
}
.item__notReceiptableBox {
  text-align: right;
}
@media screen and (max-width: 420px) {
  .item__notReceiptable {
    padding: 3px 8px;
  }
}
@media screen and (max-width: 1200px) {
  .item__notReceiptable.hidden-lg {
    display: inline-block !important;
    margin-top: 4px;
  }
}

/* 受取場所一覧 ラベルエリア */
.customerModal.-sp .customerModal__labelArea {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
}
.shoplist__receiptPaymantArea {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

/* 受取場所一覧 取扱なしラベル 支払い方法ラベル */
.shoplist__label {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 78px;
  margin-top: 8px;
  padding: 0 2px;
  border: 1px solid inherit;
  border-radius: 2px;
}
.shoplist__label.-paymentType.-both {
  width: 160px;
}
@media screen and (max-width: 360px) {
  .shoplist__label.-paymentType.-both {
    width: 148px;
  }
}
.shoplist__label + .shoplist__label {
  margin-left: 8px;
}
@media screen and (max-width: 360px) {
  .shoplist__label + .shoplist__label {
    margin-left: 4px;
  }
}

/* 受取場所一覧 在庫ありラベル */
.shoplist__label.-inStock {
  color: #ffffff;
  background: #3F81C1;
  border: 1px solid #3F81C1;
}
/* 受取場所一覧 完売ラベル */
.shoplist__label.-soldOut {
  color: #3F81C1;
  background: transparent;
  border: 1px solid #3F81C1;
}
/* 受取場所一覧 取扱なしラベル */
.shoplist__label.-outOfStock,
.shoplist__label.-notReceiptable,
.shoplist__label.-disabled {
  color: #999999;
  background: #e8e8e8;
  border: 1px solid #e8e8e8;
}

/**********************************************************
カテゴリ選択モーダル用css
***********************************************************/
/* PCカテゴリ選択 */
.customerModal.-category.-pc .customerModal__content {
  width: 490px;
}
.customerModal.-category.-sp {
  display: block;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  z-index: 100001;
}

.customerModal__scroll.-category {
  height: calc(100% - 70px);
  overflow-y: scroll;
}

/* カテゴリリスト */
.categorySelect .customerModal__categoryList {
  padding-bottom: 100px;
}
.categorySelect li a,
.categorySelect li a.parents {
  display: block;
  width: 100%;
  color: #333333;
  padding: 16px 40px;
  position: relative;
}
.categorySelect li.category__nameLayout.-selected a::after {
  content: "\e5ca";
  font-family: "material Icons";
  font-size: 24px;
  color: #e8a248;
  position: absolute;
  top: 50%;
  left: 8px;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.enableHover .categorySelect li:hover {
  background: rgba(0, 0, 0, 0.03);
}
.categorySelect li.category__nameLayout.menu-open {
  background: #fff0d9;
}
.categorySelect li.category__nameLayout.menu-open a::after {
  color: #cccccc;
}

.categorySelect li.treeview a.parents:before {
  padding:0;
  right: 10px;
}

/* サブカテゴリリスト */
.categorySelect ul.treeview-menu.subCategory__list {
  padding: 0;
  background: #f7f7f7;
  border-top: 1px solid #dddddd;
}
.categorySelect ul.subCategory__list li.subCategory__nameLayout {
  padding-left: 32px;

}
.categorySelect ul.subCategory__list li a.subCategory__name {
  padding: 16px 16px 16px 40px;
  border-bottom: 1px solid #dddddd;
}
.categorySelect ul.subCategory__list li.subCategory__nameLayout:last-child a.subCategory__name {
  border-bottom: none;
}
.categorySelect li.menu-open ul.subCategory__list li a::after {
  content: none;
}
.categorySelect li.menu-open ul.subCategory__list li.subCategory__nameLayout.-selected a::after {
  content: "\e5ca";
  font-family: "material Icons";
  font-size: 24px;
  color: #e8a248;
  position: absolute;
  top: 50%;
  left: 8px;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

/**********************************************************
QRコードモーダル
***********************************************************/
.customerModal.-sp.-qrCode .customerModal__contentHeader {
  background: transparent;
  border-bottom: none;
}
.customerModal.-sp.-qrCode .customerModal__content {
  text-align: center;
  width: 90%;
  height: 70%;
  background: #ffffff;
  position: absolute;
  top: 50% !important;
  left:50%;
  transform: translate(-50%, -50%);
  border-radius: 6px;
}
.customerModal.-sp.-qrCode .qrCode__box {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70%;
}
@media screen and (max-width: 420px) {
  .customerModal.-sp.-qrCode .qrCode__box canvas,
  .customerModal.-sp.-qrCode .qrCode__box img {
    width: 200px;
    height: 200px;
  }
}
.customerModal.-sp.-qrCode .customerModal__closeText {
  display: inline-block;
  color: #8e8e8e;
  margin: 0 auto;
  text-decoration: underline;
}

/**********************************************************
受取日時選択モーダル
***********************************************************/
.customerModal.-receiptAt.-pc .customerModal__content.-dateTimeSelect {
  width: 490px;
  height: auto;
  min-height: 462px;
  max-height: 796px;
}
.customerModal.-receiptAt.-pc .customerModal__contentHeader {
  border: none;
}
.customerModal.-receiptAt .customerModal__panelBody {
  padding: 16px 40px 40px;
}
.customerModal.-receiptAt.-sp .customerModal__panelBody {
  padding: 16px 16px 180px;
}

.customerModal.-sp .customerModal__scroll.-receiptAtList {
  height: 100%;
  padding-bottom: 150px;
}

/**********************************************************
販売カレンダーモーダル
***********************************************************/
.customerModal__content.-dateTimeSelect {
  height: auto;
}
.customerModal.-salesCalendar.-pc .customerModal__content.-dateTimeSelect {
  width: 490px;
  height: auto;
  min-height: 468px;
  max-height: 672px;
}
.customerModal.-salesCalendar.-pc.-withProduct .customerModal__content.-dateTimeSelect {
  max-height: fit-content;
}
/* 選択されている時間 */
.columnHeader__selectedDateTime {
  font-weight: bold;
  color: #ffffff;
  margin-left: 16px;
  padding: 2px 8px;
  background: #e8a248;
  border-radius: 5px;
}

/* panel-body */
.modalBody.-salesCalendar {
  padding: 16px 40px 24px !important;
}
.customerModal.-sp .modalBody.-salesCalendar {
  padding: 16px 16px 60px !important;
}

/* sp */
.customerModal.-sp .customerModal__content.-dateTimeSelect .columnHeader__selectedDateTime {
  margin-left: 8px;
}

.selectDateArea {
  padding: 8px !important;
}
.selectDateArea__text,
.selectDateArea__text.-selectDate {
  font-size: 20px !important;
}
@media screen and (max-width:991px) {
  .selectDateArea__text,
  .selectDateArea__text.-selectDate {
    font-size: 16px !important;
  }
}
.selectDateArea__text.-stockNum,
.selectDateArea__text.-outOfStock {
  padding: 8px;
}

/* カレンダーの挙動 選択している日が受け取れない時 */
.fc-bg .not_select.day_select,
.fc-bg td.fc-today.not_select.day_select {
  background: #c82527;
}
.fc-content-skeleton .not_select.day_select .dayStatusBlock,
.fc-content-skeleton td.fc-today.not_select.day_select .dayStatusBlock {
  border: 2px solid transparent;
}
.selectDateArea__heading.-notSale {
  background: #c82527;
}
.selectDateArea__text.-notSale,
.selectDateArea__text.-selectDate.-notSale {
  color: #c82527;
}
.selectDateArea__text.-selectedText {
  text-align: center;
  margin-bottom: 24px;
}

/* プルダウンの挙動 選択時間表示 */
.selectInput__box.-selesCalendar .formGroup__label,
.selectInput__box.-selesCalendar .calendarTimetable {
  font-size: 18px;
}

.visible-xs.hidden {
  display: none !important;
}

/**********************************************************
メール認証モーダル
***********************************************************/
.customerModal.-mailAuth .customerModal__content {
  width: 490px;
  height: 430px;
  margin: 40px 0;
}
@media screen and (max-width:767px) {
  .customerModal.-mailAuth .customerModal__content {
    width: 327px;
    height: 552px;
    margin: 48px 0;
  }
}
.modalBody.-mailAuth {
  padding: 24px 0;
}
@media screen and (max-width: 767px) {
  .modalBody.-mailAuth {
    padding: 0 0 24px;
  }
}
/* メールアイコン */
.mailAuthIcon__box {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .mailAuthIcon__box {
    margin-bottom: 24px;
  }
}
.mailAuthIcon {
  width: 64px;
  color: #cccccc;
}

/* スライドエリア */
.slideArea__box {
  width: 100%;
  height: 272px;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 767px) {
  .slideArea__box {
    height: 384px;
  }
}
.slideArea__box.-shop {
  height: calc(100% - 50px);
}
.slideArea {
  display: flex;
  align-items: flex-start;
  position: absolute;
  top: 0;
  left: 0;
  transition: .3s;
}
.slideArea.-slide {
  left: -490px;
}
@media screen and (max-width: 767px) {
  .slideArea.-slide {
    left: -327px;
  }
}
.slideArea__content {
  width: 490px;
  padding: 0 24px;
  text-align: center;
}
@media screen and (max-width:767px) {
  .slideArea__content {
    width: 327px;
    text-align: left;
  }
  .slideArea__content.-shop {
    height: calc(100vh - 50px);
    padding: 0;
    overflow-x: hidden;
    overflow-y: auto;
  }
  .slideArea__content.-shop.-list {
    overflow-x: hidden;
    overflow-y: hidden;
  }

  .slideArea__content.-shop .box {
    margin-bottom: 150px;
  }
}

.slideArea__text {
  font-size: 16px;
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .slideArea__text.-authCode {
    margin-bottom: 16px;
  }
}
.slideArea__mail {
  font-size: 20px;
  font-weight: bold;
  height: 90px;
  margin-bottom: 24px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .slideArea__mail {
    font-size: 18px;
    height: 96px;
  }
}

.btnBox.-mailAuth {
  margin: 0;
}
.btnBox__discription.-mailAuth {
  text-align: center;
  width: 100%;
  height: 16px;
  margin-bottom: 8px;
}

/* コードフォーム */
.formGroup__label.-authCode {
  align-items: center;
  flex-direction: column;
  margin-bottom: 0;
}
.inputText.-authCodeSize {
  width: 170px;
  height: 40px;
  font-weight: normal;
  text-align: center;
  letter-spacing: 2px;
}
@media screen and (max-width:767px) {
  .inputText.-authCodeSize {
    font-size: 20px;
    width: 200px;
    height: 50px;
    font-weight: normal;
    text-align: center;
  }
}
.inputText.-authCodeSize::placeholder {
  font-weight: bold;
  letter-spacing: 1px;
}
.slideArea__description {
  width: 378px;
  font-size: 13px;
  text-align: left;
  margin: 0 auto 24px;
}
@media screen and (max-width:767px) {
  .slideArea__description {
    width: auto;
    font-size: 14px;
  }
}

/* ボタン */
.btnBox.-mailAuth.-sp {
  display: none;
}
@media screen and (max-width:767px) {
  .btnBox.-mailAuth.-pc {
    display: none;
  }
  .btnBox.-mailAuth.-sp {
    display: flex;
  }
}
.btnBox.-mailAuth .cotolConfirmBtn__linelayout::before {
  content: "";
  margin: 0;
}

/* テキストリンク */
.linkText__layout.-mailAuth.-sp {
  display: none;
}
@media screen and (max-width:767px) {
  .linkText__layout.-mailAuth.-sp {
    display: block;
  }
}
/* エラー表示 */
.error__authCodeBox {
  text-align: center;
  height: 18px;
  margin: 8px 0 0;
  padding: 0;
}
.error__authCode {
  font-weight: normal;
}

/**********************************************************
予約完了画面・予約後確認画面 受取場所モーダル
***********************************************************/
.customerModal__scroll.-deliveryShopModal {
  height: calc(100vh - 50px);
}