﻿@charset "UTF-8";

:root {
  --usr-scrollbar-width: 0;
}

body {
  font-family: "Noto Sans JP", "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W6", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  color: #081f2c;
}

a {
  color: #081f2c;
}
h1 {
    margin-bottom: 32px;
    margin-top: 40px;
    font-size: 2.6rem;
    font-weight: bold;
    color: #10384F;
}

main h2 {
  font-size: 28px;
  font-weight: bold;
  color: #13216A;
}
.page-login main h2 {
  margin: 40px 0 0;
  padding: 0 0 16px;
  font-size: 24px;
}

h3,
.h3 {
  margin: 0 0 16px;
  padding: 16px 10px;
  font-size: 22px;
  font-weight: bold;
  color: #13216A;
  background: none;
}

h4,
.h4 {
  margin: 0;
  padding: 8px 10px;
  font-size: 16px;
  font-weight: bold;
  color: #111;
  border-bottom: 0;
  background: none;
}

h5,
.h5 {
  font-size: 14px;
  font-weight: bold;
  background: none;
}

h6,
.h6 {
  font-size: 14px;
  font-weight: 500;
  background: none;
}
.block-pickup-list-p--price-items{
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.block-pickup-list-p--price-items br {
  display: none;
}
.price,
.net-price,
.default-price{
  text-decoration: none;
  color: #13216A;
  display: flex;
  flex-direction: row;
  align-items: end;
  justify-content: start;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1;
}
.page-cssdebug .price,
.page-cssdebug .net-price,
.page-cssdebug .default-price{
  font-size: 1.0rem;
}
.page-search .price,
.page-search .default-price{
  font-size: 2.0rem;
}
.refill-price,
.default-price + .price{
  color: #E52E58;
  display: flex;
  flex-direction: row;
  align-items: end;
  justify-content: start;
  font-size: 2.0rem;
  font-weight: bold;
  line-height: 1;
}
.price_title_::before{
  content: '通常価格：';
}
.price_title_.refill_::before{
  content: '定期価格：';
}
.price_title_.sales_title_::before{
  content: '販売価格：';
}
.regular-false {
  position: relative;
}
.regular-false::after {
  display: inline-block;
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto 0 auto auto;
  width: 65%;
  height: 1px;
  background: #0D2D6C;
}
.isonsales .price_title_::before{
  content: 'セール価格：';
}

.yen_ {
  margin-left: 4px;
  font-size: 1.6rem;
  word-break: break-all;
  line-height: 1;
}
.tax_ {
  margin-left: 2.5px;
  margin-right: 3px;
  font-size: 0.8rem;
  word-break: break-all;
}
.pager-count span {
  font-weight: normal;
}

.action .btn {
  border-bottom-width: 1px;
}

.btn-default {
  border: 1px solid #0D2D6C;
  color: #0D2D6C;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  box-shadow: unset;
  border-radius: 31px;
  white-space: normal;
}

.btn-primary {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: none;
  border-radius: 31px;
  color: #fff;
  background: #0D2D6C;
  font-weight: bold;
  white-space: normal;
}

.btn-secondary {
  border: 1px solid #9d9896;
  color: #fff;
  background: #9d9896;
  white-space: normal;
}

.btn-danger {
  border: 1px solid #E52F58;
  color: #E52F58;
  background: #FDEBEF;
  white-space: normal;
}

.js-efo {
  padding: 1rem;
  display: block;
}

/*loading*/
#shutter-loading {
  width: 100%;
  height: 100%;
  min-height: 100vh;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  transition: opacity .6s;
}
#shutter-loading.is-hidden {
  opacity: 0;
  pointer-events: none;
}
.spinner {
  margin: 100px auto 0;
  width: 70px;
  text-align: center;
}

.spinner > div {
  width: 18px;
  height: 18px;
  background-color: #13216A;

  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.spinner .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

.spinner .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

@-webkit-keyframes sk-bouncedelay {
  0%, 80%, 100% { -webkit-transform: scale(0) }
  40% { -webkit-transform: scale(1.0) }
}

@keyframes sk-bouncedelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  } 40% {
    -webkit-transform: scale(1.0);
    transform: scale(1.0);
  }
}