body {
  margin: 0 auto;
  font-family: var(--bs-body-font-family);
  font-size: var(--bs-body-font-size);
  font-weight: var(--bs-body-font-weight);
  line-height: var(--bs-body-line-height);
  color: var(--bs-body-color);
  text-align: var(--bs-body-text-align);
  background-color: #fff3ff;
  /* background-color: var(--bs-body-bg); */
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  max-width: 1140px;
}

h1, .h1 {
    font-size: calc(1rem + 0.5vw);
  }
  @media (min-width: 1200px) {
    h1, .h1 {
      font-size: 1.45rem;
    }
  }

  h2, .h2 {
    font-size: calc(1rem + 0.1vw);
  }
  @media (min-width: 1200px) {
    h2, .h2 {
      font-size: 1.20rem;
    }
  }

  h3, .h3 {
    font-size: 1rem;
  }
  @media (min-width: 1200px) {
    h3, .h3 {
      font-size: 1rem;
    }
  }

  h4, .h4 {
    font-size: 1rem;
  }
  @media (min-width: 1200px) {
    h4, .h4 {
      font-size: 1rem;
    }
  }

  h5, .h5 {
    font-size: 1rem;
    font-family: "BIZ UDPGothic", sans-serif;
    font-weight: 400;
    font-style: normal;
  }

  h6, .h6 {
    font-size: 1rem;
  }

  p {
    margin-top: 0;
    margin-bottom: 1.4rem;
  }

  em {
    font-weight: 600;
    font-style: italic;
  }

  .btn-outline-primary {
    --bs-btn-color: #0d6efd;
    --bs-btn-border-color: #0d6efd;
    --bs-btn-hover-color: #343a40;
    --bs-btn-hover-bg: #0d6efd;
    --bs-btn-hover-border-color: #0d6efd;
    --bs-btn-focus-shadow-rgb: 13, 110, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #0d6efd;
    --bs-btn-active-border-color: #0d6efd;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #0d6efd;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: #0d6efd;
    --bs-gradient: none;
  }

.btn-outline-gray{
  color: var(--bs-gray-600);
  background:var(--bs-white);
  border: 1px solid #6c757d;
  --bs-btn-hover-bg: #f8f9fa;
  --bs-btn-hover-border-color: #6c757d;
  --bs-btn-active-bg: #9ec3f9;
  --bs-btn-active-border-color: #9ec3f9;
 }

 a {
  color: #6c757d;
  text-decoration: underline;
}

a:hover {
  color:#343a40;
}

.pagination {
  --bs-pagination-padding-x: 0.75rem;
  --bs-pagination-padding-y: 0.375rem;
  --bs-pagination-font-size: 1rem;
  --bs-pagination-color: var(--bs-link-color);
  --bs-pagination-bg: var(--bs-body-bg);
  --bs-pagination-border-width: var(--bs-border-width);
  --bs-pagination-border-color: var(--bs-border-color);
  --bs-pagination-border-radius: var(--bs-border-radius);
  --bs-pagination-hover-color: #343a40;
  --bs-pagination-hover-bg: #f8f9fa;
  --bs-pagination-hover-border-color: var(--bs-border-color);
  --bs-pagination-focus-color: #343a40;
  --bs-pagination-focus-bg: var(--bs-secondary-bg);
  --bs-pagination-focus-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  --bs-pagination-active-color: #fff;
  --bs-pagination-active-bg: #0d6efd;
  --bs-pagination-active-border-color: #0d6efd;
  --bs-pagination-disabled-color: var(--bs-secondary-color);
  --bs-pagination-disabled-bg: var(--bs-secondary-bg);
  --bs-pagination-disabled-border-color: var(--bs-border-color);
  display: flex;
  padding-left: 0;
  list-style: none;
}

.page-link {
  position: relative;
  display: block;
  padding: var(--bs-pagination-padding-y) var(--bs-pagination-padding-x);
  font-size: var(--bs-pagination-font-size);
  color: #6c757d;
  text-decoration: none;
  background-color: var(--bs-pagination-bg);
  border: var(--bs-pagination-border-width) solid var(--bs-pagination-border-color);
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.page-link.active, .active > .page-link {
  z-index: 3;
  color: var(--bs-pagination-active-color);
  background-color: #6c757d;
  border-color: #6c757d;
}

.img-circle {
  border-radius: 50%;
  /* width: 32px; */
  /* height: 32px; */
  /* object-fit: none; */
}

@media (min-width: 992px) {
  .bd-layout {
      display:grid;
      grid-template-areas: "main sidebar";
      grid-template-columns: 5.5fr 1.7fr;
      gap: 0;
  }
  .display-option {

      display: block !important;
      margin-bottom: 0rem !important;

  }
  .col {
    margin-bottom: 1rem;
  }
}

@media (max-width: 599px) {
  .display-option {

      display: block !important;
      margin-bottom: 0rem !important;

  }
  .col {
    margin-bottom: 1rem;
  }
}

@media (max-width: 409px) {
  .btnclm {
    margin-top: 1rem;
  }
}



.bd-sidebar {
  grid-area: sidebar
}

.bd-main {
  grid-area: main
}

.noto-color-emoji-regular {
  font-family: "Noto Color Emoji", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.biz-udpgothic-regular {
  font-family: "BIZ UDPGothic", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.biz-udpgothic-bold {
  font-family: "BIZ UDPGothic", sans-serif;
  font-weight: 700;
  font-style: normal;
}

p.shipoverseas {
  font-size: small;
}

/* カラー丸リンク */
.colorblock-filter>.colorblock {
  vertical-align: middle;
  margin: 10px 8.5px 9px 0;
}

.colorblock {
  box-sizing: border-box;
  display: inline-block;
  width: 24px;
  height: 24px;
  border-radius: 50%;
}

@media (max-width: 768px) {
  .colorblock-filter>.colorblock {
    vertical-align: middle;
    margin: 10px 16px 9px 0;
  }
}

.colorblock.-white {
  border: 1px solid #ccc;
}

.colorblock.-multi-color {
  background: url("m-color-32x32.png") no-repeat;
  background-size: cover;
}

/* howto privacy policyのみ */
.h2tp {
  padding-top: 2.0rem;
  padding-bottom: 0.5rem;
}
@media (min-width: 320px) {
  .h2tp {
    font-size: 1.5rem;
  }
}

.guide {
  font-size: small;
  overflow-wrap: break-word;
}

p > strong {
  color: #d62525;
}

.hrtopbtm {
  margin-top: 100px;
}

.h3tp {
  padding-top: 1.5rem;
  padding-bottom: 0.5rem;
  font-weight: 600;
}
@media (min-width: 320px) {
  .h3tp {
    font-size: 1.2rem;
  }
}

/* ポイント倍率 */
.maru {
  height: 32px;
  width: 32px;
  border-radius: 50%;
  line-height: 31px;
  text-align: center;
  background: pink;
  font-size: 14px;
  margin-top: -10px;
  margin-left: 5px;
}
.wrapper {
  display: flex;
  position:absolute;
}
.xtext {
  font-size: xx-small;
}

.basic {
  padding: 10px;
  /* background-color: #fff; */
  border-radius: 8px;

  background-color: #facbff;
  background-image: repeating-linear-gradient(-45deg,#fff, #fff  4px,transparent 0, transparent 8px);
}

p.card-text-small {
  font-size: 0.75rem;
}

.ppurl {
  word-break: break-all;
}

/* サブクリックボタン */
.menu-subbtnlink {
  padding-top: 15px;
}

.space-subbtnlink {
  display: inline-block;
}

.subbtnlink-button {
  font-family: Meiryo, Hiragino Kaku Gothic ProN, MS PGothic, sans-serif;
  font-style: normal;
  text-decoration: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  box-sizing: border-box;
  position: relative;
  -webkit-tap-highlight-color: rgba(0, 0, 0, .3);
  color: #fff;
  font-weight: 400;
  white-space: nowrap;
}

@media (pointer: fine) {
  .subbtnlink-button-hv:hover {
      background: linear-gradient(rgba(0, 0, 0, .04), rgba(0, 0, 0, .04)), linear-gradient(#f7f7f7, #f7f7f7);
      border-color: rgba(0, 0, 0, .08);
  }
}

.subbtnlink {
  background-color: #f7f7f7;
  border-color: rgba(0, 0, 0, .08); /*ボーダーカラー*/
  color: #333;
  padding: 0 10px;
  margin-right: 10px;
  margin-top: 15px;
}

.subbtnlink-fontsize {
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.3;
  height: 32px;
}
.subbtnlink-radius {
  border-radius: 25px;
}

.searchtag {
    padding-left: 0;
    padding-bottom: 10px;
    list-style: none;
}

.tagform {
  margin-bottom: 0.375rem;
}

.tagbtnlink-button {
  font-family: Meiryo, Hiragino Kaku Gothic ProN, MS PGothic, sans-serif;
  font-style: normal;
  text-decoration: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  box-sizing: border-box;
  position: relative;
  -webkit-tap-highlight-color: rgba(0, 0, 0, .3);
  color: #fff;
  font-weight: 400;
  white-space: nowrap;
}

@media (pointer: fine) {
  .tagbtnlink-button-hv:hover {
      background: linear-gradient(rgba(0, 0, 0, .04), rgba(0, 0, 0, .04)), linear-gradient(#f7f7f7, #f7f7f7);
      border-color: rgba(0, 0, 0, .08);
  }
}

.tagbtnlink {
  background-color: #f7f7f7;
  border-color: rgba(0, 0, 0, .08); /*ボーダーカラー*/
  color: #333;
  padding: 0 10px;
  margin-right: 10px;
  margin-top: 15px;
}

.tagbtnlink-fontsize {
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.3;
  height: 32px;
}
.tagbtnlink-radius {
  border-radius: 25px;
}
