@charset "UTF-8";
:root {
  --cart-button-color: #0A93FC;
  --brand-logo-size: 116px;
  --brand-logo-mt: 26px;
  --brand-logo-mb: 34px;
  --collection-name-display: block;
  --collection-name-pb: 6px;
  --page-title-pt: 0;
  --page-title-pb: 8px;
  --header-height: 80px;
  --header-background-color: rgba(255, 255, 255, 0.75);
  --navbar-burger-color: #808080;
  --link-color: #485fc7;
}

body {
  font-family: 'Koburina Gothic W6 JIS2004';
  color: #373C3F;
  font-size: 15px;
  letter-spacing: 0.03em;
  line-height: 1.5;
}

img {
  display: block;
}

small {
  font-size: 80%;
}

#hbr-section-share {
  display: none;
}

.is-bordered-top {
  border-top: 1px solid #ccc;
}

.is-dashed-bordered-top {
  border-top: 1px dashed #ccc;
}

.is-dashed-bordered-bottom {
  border-bottom: 1px dashed #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-icon[href="https://www.1101.com/store/cart/"] {
  display: none;
}

@media screen and (max-width: 576px) {
  br:not(.sp) {
    display: none;
  }
  .detail br:not(.sp) {
    display: inherit;
  }
  .rmn-page-title br {
    display: inherit;
  }
}

/* ------------------------------------------
Header
------------------------------------------ */
header {
  background-color: #fff;
  box-shadow: 0px 1px 1px 0px rgba(96, 96, 96, 0.25);
  padding: 14px 30px 16px;
  position: fixed;
  top: 0;
  width: 100%;
  transition: .4s;
  opacity: 1;
  z-index: 5;
}

header .header-inner {
  max-width: 1328px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  position: relative;
}

header .header-left a img {
  max-width: 204px;
}

header .header-menu {
  position: absolute;
  right: -30px;
  top: -350px;
  max-width: 324px;
  width: 100%;
  background-color: #fff;
  padding: 66px 15px 24px;
  font-size: 14px;
  transition: .4s;
}

header .header-menu .header-menu-inner {
  max-width: 212px;
  margin: auto;
}

header .header-menu .header-menu-inner a {
  color: #373C3F;
}

header .header-menu .header-menu-inner a + a {
  margin-top: 16px;
}

header .header-menu .header-menu-inner > a {
  display: inline-block;
}

header .header-menu .header-menu-inner > a span {
  vertical-align: middle;
  display: inline-block;
}

header .header-menu .header-menu-inner > a span:nth-of-type(1) {
  margin-right: 3.5px;
}

header .header-menu .header-menu-inner > a span:nth-of-type(1) img {
  width: 28px;
}

header .header-menu .header-menu-inner .bottom {
  text-align: center;
  border-top: 1px dashed;
  margin-top: 16px;
  padding-top: 16px;
}

header .header-menu .header-menu-inner .bottom a {
  display: inline-block;
}

header .header-menu .header-menu-inner .bottom br + a {
  margin-top: 16px;
}

header .header-hamburger {
  width: 35px;
  height: 35px;
  background-color: #0A93FC;
  border-radius: 1000px;
  position: relative;
  cursor: pointer;
}

header .header-hamburger span {
  height: 2px;
  width: 18px;
  background-color: #fff;
  border-radius: 10px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  opacity: 1;
  transition: .4s;
}

header .header-hamburger span.top {
  top: 10px;
}

header .header-hamburger span.middle {
  top: 16px;
}

header .header-hamburger span.bottom {
  top: 22px;
}

header .header-hamburger:hover {
  opacity: .8;
}

header.open .header-menu {
  top: -14px;
}

header.open .header-hamburger span.top {
  top: 49%;
  transform: translateX(-51%) rotate(45deg);
}

header.open .header-hamburger span.middle {
  opacity: 0;
}

header.open .header-hamburger span.bottom {
  top: 49%;
  transform: translateX(-51%) rotate(-45deg);
}

header.active {
  opacity: 1;
  z-index: 5;
}

header.is-visible {
  opacity: 1;
}

@media (max-width: 767px) {
  header {
    padding: 14px 16px;
  }
  header .header-menu {
    max-width: 100vw;
    width: 100vw;
    right: initial;
    left: -16px;
  }
}

/* ------------------------------------------
Main
------------------------------------------ */
main .container {
  padding-top: 53px;
}

main .container .columns {
  margin-bottom: 38px;
}

.product-top-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

main .container.rmn-section {
  padding-top: 0;
}

.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: #ffffff;
}

.swiper-slide {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  background-color: #ffffff;
  height: auto;
}

.swiper-slide img {
  width: 100%;
}

.swiper-pagination {
  /*
  margin: -30px auto 0;
  position: relative;
*/
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.35);
  width: 6em;
  border-radius: 30px;
  color: #fff;
  font-size: 14px;
  font-family: YuGothic,'Yu Gothic','Arial',sans-serif;
  font-weight: bold;
  z-index: 4;
}

.has-slide-caption .swiper-pagination {
  bottom: 53px;
}

.brand-logo {
  width: var(--brand-logo-size);
  margin-top: var(--brand-logo-mt);
  margin-bottom: var(--brand-logo-mb);
}

.sp-brand-logo {
  width: 80px;
  margin: 0 auto 1em auto;
}

.rmn-product.gallery-thumbs {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 40px 0 0;
  padding: 0;
  list-style: none;
  border-bottom: none;
  margin-bottom: 0 !important;
}

.rmn-product.gallery-thumbs li dl {
  max-width: 100%;
}

.rmn-product.gallery-thumbs li dd,
.rmn-product.gallery-thumbs li p {
  display: none;
}

.rmn-product.gallery-thumbs li {
  /* width: 17.5%; */
  width: 88px;
  /* margin-right: 2.1333333333vw; */
  line-height: 1;
  position: relative;
  /* padding-bottom: 20px; */
}

.rmn-product.gallery-thumbs li dt {
  width: 100%;
  height: 100%;
  text-align: center;
}

.rmn-product.gallery-thumbs li dt img {
  border-radius: 4px;
}

.rmn-product.gallery-thumbs li dt .product-name {
  padding-top: 3px;
  font-size: 14px;
  line-height: 1.25;
  letter-spacing: 0px;
}

.hbr-cart-start-date {
  margin-top: 8px;
  font-family: YuGothic, 'Yu Gothic', 'Arial', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.63;
  /* padding-top: 16px; */
  color: #DE2E2E;
  text-align: center;
}

h2.rmn-collection-name {
  font-size: 14px;
  display: var(--collection-name-display);
  padding-bottom: var(--collection-name-pb);
}

h1.rmn-page-title {
  font-size: 22px;
  line-height: 1.4;
  padding-top: var(--page-title-pt);
  padding-bottom: 8px;
}

.price-wrapper {
  font-family: 'Koburina Gothic W9 JIS2004';
}

.price-wrapper small {
  font-weight: 700;
  font-size: 100%;
}

.price-range {
  font-size: 20px;
}

.page-message {
  font-family: YuGothic, 'Yu Gothic', 'Arial', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.63;
  padding-top: 16px;
  color: #DE2E2E;
  text-align: center;
}

.yen {
  font-size: 18px;
  font-weight: 700;
  padding-left: 3px;
}

.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;
  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;
}

.delete::after, .delete::before, .modal-close::after, .modal-close::before {
  background-color: #000;
}

.modal-ttl {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}

.modal-ttl span.icon {
  margin-right: 8px;
}

.modal-ttl span.icon img {
  width: 34px;
}

.modal-ttl span.txt {
  font-family: 'Koburina Gothic W9 JIS2004';
  font-size: 20px;
  letter-spacing: 0.13em;
}

.rmn-section {
  margin-top: 2rem;
}

.rmn-section.rmn-detailWrap {
  padding: 56px 0;
  margin: 0;
  position: relative;
}

.rmn-section.rmn-detailWrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  background-image: url(/store/mitiru/assets/img/bg-related.jpg);
  background-size: cover;
  z-index: -1;
}

.rmn-section.rmn-detail {
  display: block;
  max-width: 1122px;
  margin: 0 auto;
  font-size: 15px;
}

.rmn-section.rmn-detail > div {
  line-height: 1.87;
}

.rmn-section.rmn-detail a {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 326px;
  width: 100%;
  padding: 10px;
  margin: 24px auto 0;
  background-color: #fff;
  font-size: 15px;
  border: 1px dashed #0A93FC;
  border-radius: 1000px;
  color: #0A93FC;
  position: relative;
}

.rmn-section.rmn-detail a::after {
  content: '';
  width: 10px;
  height: 10px;
  background-image: url(/store/mitiru/assets/img/ico-arrow-right.svg);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  margin-left: 4.5px;
}

.rmn-section.rmn-detail a + br {
  display: none;
}

.rmn-article-title {
  font-size: 1rem;
  line-height: 1.25;
  padding-bottom: 26px;
}

.rmn-article-text {
  padding-top: 26px;
  font-size: 16px;
  line-height: 1.8;
  font-family: "Ryumin Regular KL", serif;
}

.rmn-article-text b {
  font-family: "Ryumin Bold KL", serif;
  font-size: 22px;
  line-height: 1.65;
  font-weight: normal;
}

.rmn-article-text img {
  margin-top: 24px;
  margin-bottom: 24px;
}

.rmn-article-text-wrap + div {
  padding-top: 2em;
}

.swiper-wrap {
  position: relative;
  margin-bottom: 25px;
}

.rmn-spec-container > h4,
.rmn-related-content-container > h4,
.rmn-related-product-container > h4 {
  padding-bottom: 1em;
  font-size: 1.25rem;
  line-height: 1.25;
}

.rmn-related-product-link {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.rmn-related-product-link h5 {
  font-size: 0.9rem;
  line-height: 1.5;
  padding-top: 0.5em;
  flex-grow: 1;
}

.rmn-related-product > div a.soldout h5 {
  color: #999999;
}

.rmn-related-product-price {
  font-size: 0.9rem;
}

.rmn-related-product {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.rmn-related-product > div {
  width: 18.25%;
  border: 1px solid #dddddd;
  border-radius: 5px;
  padding: 10px;
  margin-bottom: 1.85%;
  background-color: #fff;
}

.rmn-related-product > div:empty {
  height: 0;
  padding: 0;
  border: none;
  margin: 0;
}

.rmn-related-content-link h5 {
  font-size: 14px;
  line-height: 1.6;
  padding-top: 10px;
}

.detail {
  background-color: #e8edf0;
}

.detail h4 {
  line-height: 1.25;
  font-size: 1.25rem;
  padding-bottom: 1em;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.6);
}

.detail h5 {
  line-height: 1.25;
  padding-bottom: 12px;
}

.detail .rmn-information h5 {
  font-size: 1.25rem;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.6);
  margin-bottom: 1.2em;
}

.detail .container {
  padding: 2em 1em;
}

.related-content, .related-product {
  padding-top: 56px;
}

.related-content .container, .related-product .container {
  margin-top: 0;
}

.detail .rmn-section {
  margin-top: 1.5rem;
}

.relatedWrap {
  background-image: url(/store/mitiru/assets/img/bg-related.jpg);
  background-size: cover;
  padding-bottom: 46px;
}

.rmn-spec-title, .rmn-notice-title {
  margin-bottom: 1em;
  font-size: 0.875rem;
  line-height: 1.63;
}

.rmn-spec-text-wrap {
  font-size: 0.875rem;
  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;
  line-height: 1.25;
}

.rmn-information-text-wrap {
  font-size: 0.875rem;
  line-height: 1.63;
  margin-top: 0.35em;
  margin-bottom: 1.35em;
}

.rmn-notice-text-wrap {
  font-size: 0.875rem;
  line-height: 2;
}

.rmn-information h5 {
  font-size: 1.25rem;
  line-height: 1.5;
  padding-top: 2rem;
}

.has-text-centered a {
  font-size: 1.125rem;
  line-height: 1.25;
}

.rmn-related-content-container .rmn-related-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 8%;
  row-gap: 18px;
}

.rmn-section.rmn-related-product-container {
  max-width: 95%;
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 767px) {
  .modal-ttl span.icon img {
    width: 30px;
  }
  .modal-ttl span.txt {
    font-size: 18px;
  }
  .rmn-product.gallery-thumbs {
    margin: 24px 0 0;
    gap: 13px;
  }
  .rmn-product.gallery-thumbs li {
    width: 74px;
  }
  .rmn-page-description {
    padding-top: 56px;
    margin-top: 56px;
    border-top: 1px dashed #373C3F;
  }
  .information > .rmn-section {
    margin-top: 0;
  }
  .detail .rmn-information h5 {
    padding-bottom: 20px;
    padding-top: 14px;
  }
}

@media screen and (min-width: 768px) {
  .page-message {
    font-size: 20px;
  }
  .is-wrapped {
    padding: 0 12px;
  }
  .navbar-brand img {
    width: 126px;
  }
  .rmn-section {
    margin-top: 2.8rem;
  }
  .rmn-section.rmn-detail {
    display: flex;
    justify-content: space-around;
  }
  .rmn-section.rmn-detail > div {
    max-width: 370px;
    width: 49%;
  }
  .rmn-related-content-link h5 {
    font-size: 15px;
    line-height: 1.8;
    padding-top: 15px;
  }
  .slide-gallery-thumbs .swiper-wrapper {
    flex-wrap: wrap;
  }
  .slide-gallery-thumbs .swiper-wrapper .swiper-slide:nth-of-type(5n) {
    margin-right: 0 !important;
  }
  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-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: 28px;
    padding-bottom: 16px;
  }
  .detail .container {
    padding: 56px 12px 28px;
  }
  .detail .container .columns {
    margin-bottom: 0;
    justify-content: space-between;
  }
  .detail .is-half {
    padding: 0;
    width: calc(50% - 10px);
    max-width: 500px;
  }
  .rmn-mid-container {
    margin-top: 2rem;
  }
  .price-range {
    font-size: 24px;
  }
}

@media (min-width: 1200px) {
  .rmn-related-content-container .rmn-related-content {
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 80px;
    row-gap: 40px;
  }
  .container {
    max-width: 1200px !important;
  }
  .slide-related-content div {
    max-width: 240px;
    margin-right: 20px;
    margin-left: 20px;
  }
}

@media (max-width: 768px) {
  .column {
    padding: 0;
  }
  main .container {
    padding-top: 63px;
  }
  main .container .columns {
    margin-bottom: 32px;
  }
  main .detail .columns {
    margin-bottom: 0;
  }
  .detail .container {
    padding: 32px 0 12px;
    width: 86%;
    margin: 0 auto;
  }
  .rmn-section.rmn-detailWrap {
    width: 86%;
    margin: 0 auto;
    padding: 32px 0;
  }
  .related-content, .related-product {
    padding-top: 32px;
  }
  .relatedWrap {
    padding-bottom: 17px;
  }
  .rmn-related-content-container,
  .rmn-related-product-container {
    width: 86%;
    margin: 0 auto;
    padding: 0;
  }
  .product-top-container {
    padding: 0;
    width: 500px;
    max-width: 86%;
    margin: 12px auto 0;
  }
  .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;
  }
  .related-content .container, .related-product .container {
    padding: 2em 0 1em 0;
  }
  .rmn-related-product-link h5 {
    font-size: 0.75rem;
  }
  .rmn-related-product-price {
    font-size: 0.75rem;
  }
  .rmn-related-product > div {
    width: 48%;
    padding: 10px;
    margin-bottom: 4%;
  }
  .rmn-related-product-name1 + br {
    display: none;
  }
  .rmn-related-product-name1 {
    padding-right: .5em;
  }
  .rmn-article-text {
    padding-top: 1.5em;
  }
  .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: 8px solid transparent;
    border-right-color: #ccc;
    top: calc(50% - 20px);
    left: 1.1333333333vw;
    transform: translateY(-50%);
  }
  .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: 8px solid transparent;
    border-left-color: #ccc;
    top: calc(50% - 20px);
    right: 1.1333333333vw;
    transform: translateY(-50%);
  }
}

/* ------------------------------------------
Cart menu
------------------------------------------ */
.hbr-cart-modal-page {
  overflow-y: hidden;
}

.button-cart:hover {
  border-color: initial;
  color: #fff;
  opacity: .5;
}

.button-cart.end:hover {
  cursor: default;
  opacity: 1;
}

.button-cart [class*=hbi-] {
  margin-right: 0.25em;
}

.button-cart .hbi-cart {
  display: none;
}

.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; */
}

.product-top-container .button-cart {
  font-size: 17px;
  min-height: 70px;
}

.button-cart {
  width: 100%;
  color: #fff;
  background-color: var(--cart-button-color);
  font-size: 18px;
  line-height: 1.25;
  transition: all .3s;
  font-family: "Koburina Gothic W9 JIS2004", sans-serif;
  margin-top: 24px;
  border-radius: 8px;
  min-height: 54px;
}

.button-cart small {
  display: block;
  opacity: .5;
  text-align: center;
}

.button-cart.sold {
  background-color: #666;
}

.button-cart.sold svg {
  display: none;
}

.button-cart.end {
  background-color: #6E6E6E;
}

.hbr-cart-modal-title {
  padding-left: 16px;
  display: none;
}

.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;
  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;
  line-height: 1.5;
}

.modal-content .cart-container dd {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-top: 1px solid #e6e6e6;
}

.modal-content .price {
  font-size: 16px;
}

.modal-content .yen {
  font-weight: normal;
}

.cart-wrapper .cart_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background-color: var(--cart-button-color);
  font-size: 1rem;
  line-height: 1.25;
  width: 48px;
  height: 48px;
  margin: 0;
  transition: all .3s;
}

.cart-wrapper .cart_btn svg {
  margin: 0;
}

.stock {
  text-align: center;
  font-size: 0.875rem;
  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;
  padding-left: 1em;
}

.modal-content .cart-container .shipping {
  font-size: 0.8125rem;
  line-height: 1.5;
}

.modal-content .cart-container .rmn-product-message-red {
  color: #d21e1e;
  font-size: 0.8125rem;
  line-height: 1.5;
}

.modal-content .cart-container .rmn-product-message {
  font-size: 0.8125rem;
  line-height: 1.5;
}

.rmp-page-message-red {
  color: #d21e1e;
}

@media screen and (min-width: 768px) {
  .product-top-container .button-cart {
    min-height: 80px;
    font-size: 20px;
  }
  .button-cart {
    margin-top: 40px;
  }
  .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
------------------------------------------ */
footer {
  background-color: #373C3F;
  color: #fff;
}

footer a {
  color: #fff;
}

footer .footer-inner {
  padding: 40px 30px;
  max-width: 1164px;
  margin: auto;
}

footer .footer-row1 {
  display: flex;
  align-items: center;
}

footer .footer-row1 div {
  font-size: 13px;
  border-top: 1px dashed;
  border-bottom: 1px dashed;
  padding: 3px 0 0.5px;
}

footer .footer-row1 a {
  width: 40px;
  margin-left: 16px;
}

footer .footer-row2 {
  margin: 24px 0;
  display: flex;
  align-items: center;
}

footer .footer-row2 a img {
  display: inline;
  vertical-align: middle;
  width: 20px;
  margin-right: 12px;
}

footer .footer-row2 a span {
  vertical-align: middle;
}

footer .footer-row2 a + a {
  margin-left: 24px;
}

footer .footer-row3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  letter-spacing: 0;
}

footer .footer-txtlinks {
  display: flex;
  flex-wrap: wrap;
  font-size: 14px;
}

footer .footer-txtlinks a + a {
  margin-left: 24px;
}

footer .footer-hobonichi {
  font-family: 'Shuei MaruGo L';
  font-size: 10px;
}

.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: #D1D9DD;
  border: 1px solid #fff;
  color: #fff;
  z-index: 10;
}

.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: 1px solid;
  background-color: #fff;
  color: #8ca0aa;
}

.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, 0.05);
  background-color: rgba(255, 255, 255, 0.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 (min-width: 768px) {
  .hbr-totop.hbr-active {
    bottom: calc(env(safe-area-inset-bottom, 0) + 81px);
  }
}

@media (max-width: 767px) {
  footer .footer-inner {
    padding: 40px 9% 26px;
  }
  footer .footer-row1 {
    justify-content: center;
  }
  footer .footer-row1 a {
    margin-left: 8px;
  }
  footer .footer-row1 a:nth-of-type(1) {
    margin-left: 16px;
  }
  footer .footer-row2 {
    display: block;
    margin: 16px auto 40px;
    width: 200px;
    text-align: center;
    font-size: 15px;
  }
  footer .footer-row2 a {
    display: inline-block;
  }
  footer .footer-row2 a img {
    margin-right: 6px;
  }
  footer .footer-row2 a + a {
    margin: 16px 0 0;
  }
  footer .footer-row3 {
    display: block;
    text-align: center;
  }
  footer .footer-txtlinks {
    flex-direction: column;
    align-items: center;
    margin-bottom: 48px;
    font-size: 12px;
  }
  footer .footer-txtlinks a + a {
    margin: 16px 0 0;
  }
}

/* ------------------------------------------
------------------------------------------ */
a {
  color: var(--link-color);
  transition: all .3s;
}

a:hover {
  opacity: .5;
}

.hbr-totop:hover {
  opacity: 1;
}

.rmn-related-content-container a, .rmn-related-product-container a {
  color: #373C3F;
}

.rmn-article-title,
.detail h5,
.rmn-spec-container > h4,
.rmn-related-content-container > h4,
.rmn-related-product-container > h4,
.rmn-information h5,
.has-text-centered a {
  font-weight: normal;
}

.rmn-mid-container h4 {
  font-weight: normal;
  line-height: 1.5;
  padding-bottom: .8em;
}

.rmn-mid-container .rmn-information-text {
  font-family: "Koburina Gothic W3 JIS2004", sans-serif;
  font-size: 1rem;
  line-height: 1.875;
}

.rmn-information.is-bordered-top {
  margin-top: 2rem;
}

.rmn-notice-text-wrap {
  padding-bottom: 1em;
}

.rmn-information-title-wrap {
  font-size: 1.125rem;
  font-weight: normal;
  padding-bottom: 0.5em;
}

.rmn-mid-container {
  border-bottom: 1px solid #ccc;
  padding-bottom: 0.5em;
}

.styling {
  /* background-color: #8CA0AA; */
  /* color: #ffffff; */
  /* margin-top: 3.2rem; */
  /* margin-bottom: 3.2rem; */
}

.styling .rmn-article {
  width: 500px;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.styling .column_title {
  width: 500px;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 40px;
}

.styling .column_title img {
  width: 360px;
  max-width: 96%;
  margin-right: auto;
}

.styling .rmn-article-image {
  padding-top: 26px;
}

.styling .rmn-article .rmn-sub-section + .rmn-sub-section {
  border-top: 1px dashed #ccc;
  margin-top: 2.5em;
  padding-top: 2.5em;
}

.styling-title {
  width: 140px;
}

.styling .rmn-article:empty {
  display: none;
}

.slide-gallery-top-container {
  opacity: 0;
  position: relative;
}

.slide-gallery-top-container.show {
  opacity: 1;
  transition: opacity 0.25s ease;
}

@media screen and (min-width: 769px) {
  .slide-gallery-top-container {
    margin-right: 2.5%;
  }
  .rmn-article {
    margin: 0 auto;
    padding: 0 0 60px 0;
  }
}

@media screen and (min-width: 1200px) {
  .rmn-article {
    column-gap: 100px;
    row-gap: 50px;
  }
}

@media (max-width: 769px) {
  .rmn-article {
    padding: 0 0.75rem 2.75rem 0.75rem;
  }
  .styling .column_title {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
  .rmn-mid-container {
    border-top: 1px solid #ccc;
    margin-top: 0;
    padding-top: 2rem;
  }
  .swiper-pagination {
    /* margin: -25px auto 0; */
    bottom: 18px;
  }
  .has-slide-caption .swiper-pagination {
    bottom: 40px;
  }
}

@media (max-width: 600px) {
  :root {
    --header-height: 54px;
  }
  .navbar > .navbar-center-logo img {
    height: 44px;
  }
  .navmenu-inner .navbar-item {
    padding: .65rem 1.5rem;
  }
  .navbar > div.navbar-brand {
    width: 82px;
  }
  .navbar > div.navbar-center-logo {
    width: 140px;
  }
  .navbar > div.navbar-end {
    width: 82px;
  }
}

[data-rmn-page="1180"] .rmn-sub-section[data-rmn-part-name="サイズ別着用イメージ"] .rmn-spec-section {
  display: inline-flex;
  width: 48%;
  margin-right: 1%;
  flex-direction: column;
  align-items: center;
}

@media (max-width: 360px) {
  .rmn-section.rmn-detail a {
    font-size: 4vw;
  }
}
