:root {
  --base-bg-color: #f2f4f6;
  --header-bg-color: rgba(242, 244, 246, .75);
  --cart-btn-bg-color: #7ab3f5;
  --footer-bg-color: #697479;
  --footer-txt-color: #ffffff;
}

img {
  display: block;
}
small {
  font-size: 80%;
}
.is-bordered-top {
  border-top: 1px solid #ccc;
}
.columns {
  margin: 0;
}
.hbr-table tbody tr th, .hbr-table tbody tr td, .hbr-table>tr th, .hbr-table>tr td {
  background-color: #fff;
}
.hbr-table tbody tr:first-child th, .hbr-table tbody tr:first-child td, .hbr-table>tr:first-child th, .hbr-table>tr:first-child td {
  border-right: 1px solid #ccc;
}
.hbr-table tbody tr th:first-child, .hbr-table tbody tr:first-child td:first-child {
  border-left: 1px solid #ccc;
}
.hbr-table tbody tr td {
  border-right: 1px solid #ccc;
}
.cart.sold .stock::before {
  content: '残0';
}
@media screen and (max-width: 576px) {
  br:not(.sp) {
    display: none;
  }
  span.indent-space {
    display: none;
  }
}
/* ------------------------------------------
Header
------------------------------------------ */
.hbr-header {
  /* background-color: rgba(255,255,255,.75); */
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  background-color: var(--header-bg-color);
  position: sticky;
  z-index: 11;
  top: 0;
}
.navbar {
  background-color: initial;
  display: flex;
  align-items: stretch;
}
.navbar-end {
  justify-content: flex-end;
  margin-left: auto;
  align-items: stretch;
  display: flex;
}
.navbar-menu {
  display: none;
  opacity: 0;
  position: absolute;
  top: 4.2rem;
  right: 0;
  z-index: 100;
  background-color: var(--base-bg-color);
  padding: 20px 30px;
  transition: opacity 0.25s ease;
}
.navbar-menu.is-active {
  display: block;
}
.navbar-menu.is-visible {
  opacity: 1;
}
.navbar-item {
  gap: 13px;
  display: flex;
  align-items: center;
}
.navbar-item-icon {
  width: 24px;
}
.navbar-item__cart .navbar-item-icon {
  padding-left: 0px;
}
.navbar-item__account .navbar-item-icon {
  padding-left: 0px;
}
.navbar-item__help .navbar-item-icon {
  padding-left: 1px;
}
.navbar-item__storetop .navbar-item-icon {
  padding-left: 2px;
}
.navbar-item__contact .navbar-item-icon {
  padding-left: 1px;
}

.navbar-divider {
  background-color: #353535; 
  opacity: 0.4;
}
.navbar-burger {
  display: block;
  width: 5rem;
}
.navbar-burger span {
  width: 36px;
  left: calc(50% - 18px);
  color: #717171;
}
.navbar-burger span:nth-child(1) {
  top: calc(50% - 12px);
}
.navbar-burger span:nth-child(2) {
  top: calc(50% - 1px);
}
.navbar-burger span:nth-child(3) {
  top: calc(50% + 10px);
}
.navbar-burger.is-active span:nth-child(1) {
  transform: translateY(12px) rotate(45deg);
}
.navbar-burger.is-active span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}
.hbr-header .hbr-navbar-item {
  margin: 0;
}
.hbr-header .navbar-brand {
  padding: 0 0 0 8px;
  align-items: center;
}
.navbar-brand a{
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  margin: 10px 0;
}
.navbar a:link, .navbar a:visited {
  color: #07084d;
  transition: all .3s;
}
.device-pointer .hbr-navbar a:hover, .device-pointer .hbr-navbar a:active {
  opacity: .5;
}
@media (min-width: 1080px) {
  .navbar {
    max-width: 1080px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 768px) {
  .hbr-header .hbr-navbar-item {
    margin: 0 4px;
  }
}
@media (max-width: 769px) {
  .navbar-brand a img {
    width: 134px;
  }
  .navbar-burger span {
    left: calc(50% - 20px);
  }
}
/* ------------------------------------------
Main
------------------------------------------ */
.swiper-container {
  padding: 0;
  overflow: hidden;
}
.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after,
.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
  display: none;
}
.swiper-button-next, .swiper-rtl .swiper-button-prev {
  width: 40px;
  right: 0;
}
.swiper-button-prev, .swiper-rtl .swiper-button-next {
  width: 40px;
  left: 0;
}
.swiper-button-prev svg, .swiper-button-next svg {
  font-size: 40px;
  transition: fill .3s;
  fill: #07084d;
}
.slide-gallery-thumbs .swiper-wrapper .swiper-slide {
  margin-bottom: 10px;
  cursor: pointer;
  transition: opacity .3s;
}
.slide-gallery-thumbs .swiper-wrapper .swiper-slide:hover {
  opacity: .5;
}

.swiper-slide-thumb-active::after {
  position: absolute;
  bottom: -4px;
  display: block;
  width: 100%;
  height: 2px;
  content: "";
  background-color: #07084d;
}
.swiper-slide {
  aspect-ratio: 1 / 1;
}
.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (min-width: 768px){
  .swiper-slide {
    aspect-ratio: 8 / 5;
  }
  .rmn-related-product-container .swiper-slide {
    aspect-ratio: unset;
  }
  .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}
.slide-gallery-thumbs {
  padding-top: 22px;
}
.rmn-product.gallery-thumbs {
  display: flex;
  flex-wrap: wrap;
  margin: 16px 0 0 -20px;
  padding: 0;
  list-style: none;
}
.rmn-product.gallery-thumbs li dd,
.rmn-product.gallery-thumbs li p {
    display: none;
}
.rmn-product.gallery-thumbs li {
  /* width: 17.5%; margin-right: 2.1333333333vw;*/
  width: calc((100% - 80px) / 4);
  margin-left: 20px;
  line-height: 1;
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding-bottom: 20px;
}
.rmn-product.gallery-thumbs li dt{
  width: 100%;
  height: 100%;
  text-align: center;
}
.rmn-product.gallery-thumbs li dt .product-name{
  padding-top: 3px;
  font-size: 0.6875rem;
  line-height: 1.25;
}

.header-description {
  margin-top: 2em;
  margin-bottom: 2em;
}
.header-description > div {
  width: 100%;
  padding: 0 5%;
}
.header-description > .header-description__cart {
  padding-bottom: 1em;
}
@media screen and (min-width: 768px){
  .header-description {
    display: flex;
    flex-direction: row-reverse;
    gap: 5%;
    margin-top: 3em;
    margin-bottom: 2em;
  }
  .header-description > div {
    width: 50%;
  }
}
h2.rmn-collection-name {
  display: none;
  color: #666;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.5;
}
h1.rmn-page-title {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
}
.price-range {
  font-weight: bold;
}
.page-message {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.63;
  padding-top: 1em;
}
.page-message:empty {
  padding: 0;
}
.hbr-share {
  display: flex;
  justify-content: flex-end;
  margin: 16px 0;
}
.hbr-share ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.hbr-share-items {
  display: flex;
  justify-content: flex-end;
  padding: 4px 12px !important;
  border: 1px solid #e6e6e6;
}
.hbr-share-item {
  margin-left: 1rem;
  width: auto;
  line-height: 0;
}
.hbr-share-item-twitter {
  margin-left: 0;
}
.hbr-share-item a {
  display: flex;
  align-items: center;
  line-height: 1.5;
  letter-spacing: .05em;
  transition: color .3s;
}
.hbr-share-item-twitter a {
  color: #1b95e0 !important;
}
.hbr-share-item-twitter a svg {
  color: #1b95e0;
}
.hbr-share-item a svg {
  transition: color .3s;
  font-size: 1rem;
}
.hbr-share-item a span {
  font-size: 0.6875rem;
  font-weight: 700;
  line-height: 1.5;
  display: block;
  margin-left: 0.125rem;
}
.hbr-share-item-facebook a {
  color: #1877f2 !important;
}
.hbr-share-item-facebook a svg {
  color: #1877f2;
}
.is-wrapped {
  padding: 0 4.2666666667vw;
}
.rmn-section {
  margin-top: 2rem;
}
.rmn-article-title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.25;
  padding-bottom: 1em;
}
.rmn-article-text {
  padding-top: 1em;
}
.rmn-article-text-wrap + div{
  padding-top: 2em;
}
.swiper-wrap {
  position: relative;
  margin-bottom: 25px;
}
.rmn-related-content-container > h4,
.rmn-related-product-container > h4 {
  padding-bottom: 1em;
  font-size: 1.25rem;
  line-height: 1.25;
}
.rmn-related-content-container > h4 {
  padding-top: 1.5em;
}
.rmn-related-content-link h5,
.rmn-related-product-link h5 {
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.5;
  /* height: 4.5em; */
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  padding-top: 1em;
}
.detail {
  background-color: #ffffff;
}
.detail h5 {
  font-size: 1.25rem;
  line-height: 1.25;
  padding-bottom: 1.2em;
}
.detail .container {
  padding-top: 2em;
}
.rmn-spec > .rmn-sub-section:first-child .rmn-spec-header-wrap.is-bordered-top {
  border-top: none;
  padding-top: 0;
}
.rmn-spec-title, .rmn-notice-title{
  margin-bottom: 1em;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.63;
}
.rmn-spec-text-wrap {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 2;
  margin-bottom: 2em;
}
.rmn-spec-image-wrap + .rmn-spec-text-wrap {
  margin-top: 0.8em;
}
.rmn-spec-header-wrap + .rmn-spec-title-wrap > .rmn-spec-title {
  margin-top: .35em; 
}
.rmn-mid-container h4 {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.25;
}
.rmn-information-text-wrap {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.63;
  margin-top: 0.35em;
  margin-bottom: 1.35em;
}
.rmn-notice-text-wrap {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.8;
}
.rmn-information h5 {
  font-size: 0.875rem;
  line-height: 1.5;
  padding-top: 3rem;
}
.has-text-centered a {
  font-size: 1.125rem;
  line-height: 1.25;
}
@media screen and (min-width: 768px){
  .is-wrapped {
    padding: 0 4.2666666667vw;
  }
  .slide-gallery-thumbs .swiper-wrapper {
    /* flex-wrap: wrap; */
  }
  article a:not(.hbr-button):not(.hbr-totop):not(.current) {
    transition: color .3s;
  }
  .swiper-wrap {
    margin-bottom: 50px;
  }
  .slide-related-content div:first-child,
  .slide-related-product div:first-child {
    margin-left: 0;
  }
  .rmn-related-content-container > h4 {
    padding-top: 3em;
  }
  .rmn-related-content-link,
  .rmn-related-product-link {
    display: block;
    transition: all .3s;
  }
  .rmn-related-content-link:hover, 
  .rmn-related-product-link:hover{
    opacity: .5;
  }
  .rmn-related-content-container .swiper-button-prev:not(.swiper-button-disabled),
  .rmn-related-product-container .swiper-button-prev:not(.swiper-button-disabled) {
    height: 100%;
    top: 0;
    margin-top: 0;
    border-right: 1px solid #ccc;
  }
  .rmn-related-content-container .swiper-button-prev,
  .rmn-related-product-container .swiper-button-prev  {
    width: 40px;
    left: -45px;
  }
  .rmn-related-content-container .swiper-button-prev:not(.swiper-button-disabled)::before,
  .rmn-related-product-container .swiper-button-prev:not(.swiper-button-disabled)::before {
    content: "";
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border: 4px solid transparent;
    border-right-color: #ccc;
    top: calc(50% + 15px);
    left: 1.1333333333vw;
    transform: translateY(-50%);
  }
  .rmn-related-content-container .swiper-button-next:not(.swiper-button-disabled),
  .rmn-related-product-container .swiper-button-next:not(.swiper-button-disabled)  {
    height: 100%;
    top: 0;
    margin-top: 0;
    border-left: 1px solid #ccc;
  }
  .rmn-related-content-container .swiper-button-next,
  .rmn-related-product-container .swiper-button-next {
      width: 40px;
    right: -45px;
  }
  .rmn-related-content-container .swiper-button-next:not(.swiper-button-disabled)::before,
  .rmn-related-product-container .swiper-button-next:not(.swiper-button-disabled)::before {
    content: "";
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border: 4px solid transparent;
    border-left-color: #ccc;
    top: calc(50% + 15px);
    right: 1.1333333333vw;
    transform: translateY(-50%);
  }
  h1.rmn-page-title {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.5;
  }  
  .detail .is-half {
    padding: 0 4.2666666667vw 2rem;
  }
  .rmn-mid-container {
    margin-top: 2rem;
  }
}
@media (min-width: 1080px) {
  .container {
    max-width: 1080px !important;
  }
  .slide-related-content div {
    max-width: 240px;
    margin-right: 20px;
    margin-left: 20px;
  }
}
@media (max-width: 769px) {
  .slide-gallery-top-container {
    padding: 0;
  }
  .slide-gallery-thumbs {
    padding-left: 15px;
  }
  .rmn-spec-container {
    margin-top: 1rem;
  }
  .rmn-spec .rmn-sub-section:first-child {
    margin-top: 0;
  }
  .rmn-related-product-name1 + br {
    display: none;
  }
  .rmn-related-product-name1 {
    padding-right: .5em;
  }
  .rmn-article-text {
    padding-top: .6em;
  }  
}
@media (orientation: portrait) {
  .swiper-button-next, .swiper-button-prev {
    display: none;
  }
}
/* ------------------------------------------
Cart menu
------------------------------------------ */
.hbr-cart-modal-page {
  overflow-y: hidden;
}
.button-cart:hover {
  border-color: initial;
  color: #fff;
  opacity: .5;
}
.button-cart [class*=hbi-] {
  margin-right: 0.25em;
}
.modal-card, .modal-content {
  background-color: #fff;
}

.hbr-cart-modal-menu {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 32px;
  background-color: #07084d;
}
.button-cart {
  width: 100%;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.25;
  transition: all .3s;
  border: none;
}
.button-cart small {
  display: block;
  opacity: .5;
  text-align: center;
}
.button-cart.sold svg {
  display: none;
}
.hbr-cart-modal-title {
  padding-left: 16px;
}
.hbr-cart-modal-title svg {
  width: 20px;
  margin-right: 8px;
  fill: #fff;
}
.hbr-cart-modal-title.sold svg {
  display: none;
}
.hbr-cart-modal-title p small {
  opacity: .5;
}
.hbr-cart-modal-title p {
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1;
}
.modal-close {
  position: absolute;
  z-index: 100;
  top: 0px;
  right: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  min-height: 32px;
}
.hbr-cart-modal-close svg {
  fill: #fff;
}
.modal-content {
  overflow-y: auto;
  padding-bottom: 40px;
  box-sizing: border-box;
  padding-bottom: 16px;
  -webkit-overflow-scrolling: touch;
}
.hbr-cart-modal-header {
  margin-bottom: 16px;
  padding: 16px 4.2666666667vw;
  border-bottom: 1px solid #e6e6e6;
}
.modal-content .cart-container {
  padding: 8px 4.2666666667vw;
}
.modal-content .cart-container dt{
  display: flex;
  align-items: center;
  padding: 8px 0;
}
.modal-content .cart-container dt > img{
  max-width: 50px;
  margin-right: 8px;
}
.modal-content .cart-container dt > .product-name {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
}
.modal-content .cart-container dd {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-top: 1px solid #e6e6e6;
}
.cart-wrapper .cart_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background-color: #07084d;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.25;
  width: 48px;
  height: 48px;
  margin: 0;
  transition: all .3s;
}
.cart-wrapper .cart_btn svg{
  margin: 0 0.25em 0 0;
}
.stock {
  text-align: center;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 2;
}
.cart.sold .cart_btn {
  background-color: #ccc;
  color: #666;
  cursor: default;
}
.cart.sold .cart_btn:hover {
  opacity: 1;
}
.cart-wrapper .cart_btn span {
  display: none;
}
.modal-content .cart-container .shipping {
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.5;
}
.modal-content .cart-container .rmn-product-message-red {
  color: #d21e1e;
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.5;
}
.modal-content .cart-container .rmn-product-message {
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.5;
}
.rmp-page-message-red {
  color: #d21e1e;
}
@media screen and (min-width: 768px){
  .button-cart {
      min-height: 56px;
  }
  .modal-content {
    width: 75vw;
    max-width: 1000px;
  }
  .hbr-cart-modal-header {
    max-width: 960px;
    margin-right: auto;
    margin-left: auto;
  }
  .modal-content .cart-container {
    max-width: 960px;
    margin-right: auto;
    margin-left: auto;
  }
  .cart-wrapper .cart_btn {
    width: auto;
    min-width: 192px;
    max-width: 240px;
    padding: 0 24px;
  }
  .cart-wrapper .cart_btn span {
    display: block;
  }
}
/* ------------------------------------------
Footer
------------------------------------------ */
.hbr-footer p, .hbr-footer a:link, .hbr-footer a:visited, .hbr-copyright {
  color: var(--footer-txt-color);
}
.hbr-footer {
  padding-bottom: 86px;
}
.hbr-navbar-container {
  display: flex;
}
.hbr-navbar-left, .hbr-navbar-center, .hbr-navbar-right {
  display: flex;
}
.hbr-footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.hbr-footer .hbr-navbar-container {
  padding: 0 4.2666666667vw;
}
.hbr-footer-container>.hbr-section#hbr-section-footer-email {
  width: 100%;
  border-top: 1px solid rgba(255,255,255,.2);
}
.hbr-footer-container>.hbr-section#hbr-section-footer-about {
  width: 50%;
  border-top: 1px solid rgba(255,255,255,.2);
}
.hbr-footer-container>.hbr-section#hbr-section-footer-app {
  width: 50%;
  border-left: 1px solid rgba(255,255,255,.2);
  border-top: 1px solid rgba(255,255,255,.2);
}
.hbr-footer-container>.hbr-section#hbr-section-footer-hobo {
  width: 100%;
  border-top: 1px solid rgba(255,255,255,.2);
}
.hbr-footer-container>.hbr-section#hbr-section-footer-follow {
  width: 100%;
  border-top: 1px solid rgba(255,255,255,.2);
}
.hbr-footer #hbr-section-footer-company {
  border-top: 1px solid rgba(255,255,255,.2);
}
.hbr-company-info .hbr-navbar-left {
  flex-direction: column;
}
.hbr-company-info .hbr-navbar-item {
  flex-direction: row;
  justify-content: flex-start;
}
.hbr-section {
  width: 100%;
}
.hbr-navbar {
  padding: 16px 0;
}
.hbr-icon-h {
  display: flex;
  align-items: center;
}
.hbr-icon-h svg {
  margin-right: 0.25em;
}
.hbr-follow .hbr-navbar-item {
  margin: 0 0.75em;
  min-width: auto;
  min-height: auto;
}
.hbr-follow .hbr-navbar-item svg {
  font-size: 32px;
}
.hbr-follow p {
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.25;
}
.hbr-footer #hbr-section-footer-company {
  border-top: 1px solid rgba(255,255,255,.2);
}
.hbr-footer .hbr-navbar-container {
  padding: 0 4.2666666667vw;
}
.hbr-company-info a {
  margin: 8px 0;
  padding: 4px 0;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.5;
}
.hbr-footer .hbr-navbar-left, .hbr-footer .hbr-navbar-center, .hbr-footer .hbr-navbar-right {
  justify-content: space-around;
  width: 100%;
  margin: 0;
}
.hbr-copyright {
  font-family: "Helvetica Neue","Helvetica","Arial",sans-serif;
  text-align: left;
  text-transform: uppercase;
  margin-top: 40px;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.5;
  padding: 0 4.2666666667vw;
}
.hbr-totop {
  position: fixed;
  right: 8px;
  bottom: calc(env(safe-area-inset-bottom, 0) + 8px);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  transition: bottom .3s ease-out,background-color .3s;
  background-color: #07084d;
  border: 1px solid #fff;
  color: #fff;
  z-index: 11;
}
.hbr-totop:link, .hbr-totop:visited {
  text-decoration: none;
  color: #fff;
  outline: none;
}
.hbr-totop.hbr-hidden {
  bottom: -40px;
}
.hbr-totop.hbr-active {
  bottom: calc(env(safe-area-inset-bottom, 0) + 65px);
}
.hbr-totop:hover {
  border: 2px solid;
  background-color: #fff;
  color: #07084d;
}
.button-cart-fixed-container {
  z-index: 12;
  padding-bottom: calc(env(safe-area-inset-bottom, 0) + 8px);
  border-top: 1px solid rgba(0,0,0,.05);
  background-color: rgba(255,255,255,.75);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  position: fixed;
  bottom: -72px;
  left: 0;
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  padding: 8px 8px 8px 8px;
  transition: bottom .3s ease-out,padding-bottom .3s ease-out;
  text-align: center;
}
.button-cart-fixed-container.is-fixed {
  bottom: 0;
}
.button-cart-fixed {
  max-width: 320px;
  margin: 0 auto;
}
@media screen and (min-width: 768px){
  .hbr-footer a:hover {
    opacity: .5;
  }
  .hbr-footer {
    padding-top: 16px;
  }
  .hbr-footer-container {
    flex-wrap: nowrap;
    margin: auto;
  }
  .hbr-footer-container>.hbr-section>* {
    margin: 0;
  }
  .hbr-footer-container>.hbr-section {
    display: flex;
  }
  .hbr-footer-container .hbr-navbar-container {
    padding: 0;
  }
  .hbr-sort-menu-button, .hbr-filter-menu-button, .hbr-navbar-item {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }
  .hbr-footer-container .hbr-navbar-left, .hbr-footer-container .hbr-navbar-center, .hbr-footer-container .hbr-navbar-right {
    justify-content: center;
  }
  .hbr-footer-container>.hbr-section#hbr-section-footer-help {
    flex: 1 444 auto;
    justify-content: flex-start;
    width: 100%;
    padding-left: 3.3333333333%;
  }
  .hbr-footer-container>.hbr-section#hbr-section-footer-email {
    flex: 1 458 auto;
    justify-content: flex-start;
    width: 100%;
    border-top: 0 none transparent;
  }
  .hbr-footer-container>.hbr-section#hbr-section-footer-about {
    flex: 1 512 auto;
    justify-content: flex-end;
    width: 100%;
    border-top: 0 none transparent;
  }
  .hbr-footer-container>.hbr-section#hbr-section-footer-app {
    flex: 1 494 auto;
    justify-content: flex-end;
    width: 100%;
    border-left: 0 none transparent;
    border-top: 0 none transparent;
    padding-right: 3.3333333333%;
  }
  .hbr-footer-container>.hbr-section#hbr-section-footer-hobo {
    justify-content: flex-start;
    width: 100%;
    border-top: 0 none transparent;
    padding-left: 3.3333333333%;
  }
  .hbr-footer-container>.hbr-section#hbr-section-footer-follow {
    justify-content: flex-end;
    width: 100%;
    border-top: 0 none transparent;
    padding-right: 3.3333333333%;
  }
  .hbr-navbar {
    max-width: 768px;
    margin: 0 auto;
  }
  .hbr-company-info .hbr-navbar-left {
    flex-direction: row;
  }
  .hbr-company-info .hbr-navbar-item {
    justify-content: center;
    flex-direction: row;
  }
  .hbr-totop.hbr-active {
    bottom: calc(env(safe-area-inset-bottom, 0) + 81px);
  }
  .hbr-copyright { 
    text-align: center;
  }
}
@media screen and (min-width: 768px) and (min-width: 992px) {
  .hbr-footer-container {
      max-width: 992px;
  }
  .hbr-navbar {
    max-width: 992px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 768px) and (min-width: 1080){
  .hbr-footer-container {
      max-width: 1080;
  }
  .hbr-navbar {
    max-width: 1440px;
    margin: 0 auto;
  }
}
body {
  font-family: "Yu Gothic Pr6N M", sans-serif;
  color: #000;
  line-height: 2;
  background-color: var(--base-bg-color);
}
a {
  /* color: #4d4d4d; */
  color: #3c50dc;
  transition: all .3s;
}
a:hover {
  color: #3c50dc;
  opacity: .5;
}
a.toplink-bottom, a.toplink-bottom:hover {
  color: #4d4d4d;
}
span.bullet {
  /* 中黒インデント */
  margin-left: -1em;
}
ol {
  margin-left: 1.5em;
}
.rmn-page-description {
  padding-bottom: 1em;
}
.rmn-page-description a, .rmn-article a, .detail a {
  border-bottom: 0.5px solid rgba(60, 80, 220, 0.5);
  padding-bottom: 1px;
}
.navbar a:link, .navbar a:visited {
  color: #000;
  transition: all .3s;
}
.hbr-totop:hover {
  opacity: 1;
}
.rmn-related-content-container a, .rmn-related-product-container a{
  color: #4d4d4d;
}
.swiper-button-next, .swiper-button-prev {
  display: none;
}
.detail {
  padding-bottom: 4rem;
}
.rmn-article-title, .detail h5, .rmn-related-content-container > h4, .rmn-related-product-container > h4, .rmn-information h5, .has-text-centered a{
  font-family: "Yu Gothic Pr6N M", sans-serif;
}
.rmn-article-text {
  font-family: "Yu Gothic Pr6N M", sans-serif;
  font-size: 0.875rem;
}
.rmn-spec-text-wrap {
  font-family: "Yu Gothic Pr6N M", sans-serif;
}
.rmn-mid-container h4 {
  font-family: "Yu Gothic Pr6N M", sans-serif;
  font-weight: normal;
  line-height: 1.5;
  padding-bottom: .8em;
}
.rmn-mid-container .rmn-information-text {
  font-family: "Yu Gothic Pr6N M", sans-serif;
  font-size: 1rem;
  line-height: 1.875;
}
.rmn-notice-text-wrap {
  font-family: "Yu Gothic Pr6N M", sans-serif;
  padding-bottom: 1em;
}
.rmn-information-text-wrap {
  font-family: "Yu Gothic Pr6N M", sans-serif;
}
.rmn-information-text-wrap {
  font-family: "Yu Gothic Pr6N M", sans-serif;
}
@media screen and (min-width: 768px){
  .rmn-spec {
    display: flex;
    flex-wrap: wrap;
  }
  .rmn-spec > div {
    width: 50%;
  }
}
.rmn-spec .is-bordered-top,
.rmn-notice .is-bordered-top {
  padding-top: 2rem;
}
.rmn-notice-text b:has(+ br) {
  display: block;
}
.button-cart, .hbr-cart-modal-menu, .cart-wrapper .cart_btn{
  background-color: var(--cart-btn-bg-color);
}
.hbr-totop, .hbr-footer {
  background-color: var(--footer-bg-color);
}
.hbr-totop:hover {
  color: #D3D8DC;
}
.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.pc_only {
  display: none;
}
@media screen and (min-width: 769px){
  .pc_only {
    display: inherit;
  }
  .sp_only {
    display: none;
  }
  .column.is-6, .column.is-6-tablet {
    margin-right: 2.5%;
  }
  .rmn-article {
    margin: 0 auto;
    display: flex;
    column-gap: 4%;
    row-gap: 50px;
    flex-wrap: wrap;
    padding: 50px 0 25px;
  }
  .rmn-article > div {
    width: 48%;
  }
  .rmn-information-text-wrap {
    display: inline-block;
    width: 50%;
    vertical-align: top;
    margin-bottom: 0;
    padding-right: 1.5rem;
  }
  .rmn-spec-text-wrap {
    width: 50%;
  }
  .rmn-spec-section {
    display: inline-block;
    vertical-align: top;
  }
  .rmn-spec-section:nth-of-type(odd) {
    margin-left: 4%;
  }
  .rmn-spec-section .rmn-spec-text-wrap{
    width: 100%;
  }
  .rmn-notice-text-wrap {
    width: 50%;
    display: inline-block;
    vertical-align: top;
  }
  .rmn-notice-title-wrap {
    width: 100%;
  }
}
@media screen and (min-width: 1080px){
  .rmn-article {
    column-gap: 100px;
    row-gap: 50px;
  }
  .rmn-article > div {
    width: 490px;
  }
}
@media (max-width: 1024px) {
  .rmn-article {
    padding: 2.75rem 0.75rem 0;
  }
  .rmn-article > div {
    margin-bottom: 2rem;
  }
}
