@charset "utf-8";

.floating-bnr {
    position: fixed;
    top: 50%;
    translate: 0 -50%;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 1px;
    z-index: 100;
}

.floating-bnr a {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  writing-mode: vertical-lr;
  color: #fff;
  font-size: 17px;
  background: #00a7b2;
  padding: 10px 20px;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

.floating-bnr a:nth-child(2) {
  background: #3155a9;
}

.floating-bnr a:nth-child(3) {
  background: #00506b;
}

.floating-bnr a i {
      text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sp-only {
  display: none;
}

@media screen and (max-width: 767px) {
  .sp-only {
  display: block;
}

  .floating-bnr {
    top: initial;
    bottom: 0;
    translate: 0;
    flex-direction: initial;
    width: 100vw;
    justify-content: center;
  }

  .floating-bnr a {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    text-align: center;
    justify-content: center;
    writing-mode: initial;
    color: #fff;
    font-size: 14px;
    padding: 5px 10px;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
}

  #js-footer-bar.c-footer-bar {
    display: none;
  }
}

.order-details {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr min(360 / 1200 * 100vw, 360px);
    gap: 10px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px dashed #a5a5a5;
}

@media screen and (max-width: 767px) {
  .order-details {
    grid-template-columns: repeat(2,1fr);
  }
}