.button {
  display: inline-block;
  padding: 10px 8px 8px;
  border: 2px solid #e5e5e5;
  border-radius: 4px;
  background-color: #ffffff;
  color: #16160e;
  font-size: 14px;
  text-align: center;
  box-sizing: border-box;
  -webkit-appearance: none;
          appearance: none;
  cursor: pointer;
}
.button:hover {
  opacity: 0.85;
}
.button [class^=mf-]:first-child,
.button [class^=icn-]:first-child {
  margin-right: 2px;
}
.button [class^=mf-]:last-child,
.button [class^=icn-]:last-child {
  margin-left: 2px;
}
.button.-red {
  border-color: #ad0003;
  background-color: #ad0003;
  color: #ffffff;
}
.button.-black {
  background-color: #16160e;
  color: #ffffff;
  border-color: #16160e;
  font-weight: bold;
}
.button.-gray {
  background-color: #e5e5e5;
  border-color: #e5e5e5;
  font-weight: bold;
}
.button.-expanded {
  display: block;
}

.switch-button-list {
  margin-bottom: 8px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.switch-button-list__button {
  cursor: pointer;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  background-color: #ffffff;
  padding: 6px 11px;
  font-size: 14px;
  line-height: 1;
  margin-left: 8px;
}
.switch-button-list .is-current {
  background-color: #16160e;
  border-color: #16160e;
  color: #ffffff;
  cursor: default;
}

.button-rounded {
  border: solid 1px #c8c8c8;
  border-radius: 20px;
  text-align: center;
  padding: 7px 0;
}
.button-rounded:hover {
  opacity: 0.85;
}

.grid-image {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: auto 10px auto;
  -ms-grid-columns: 2fr 10px 1fr;
      grid-template: "area-1 area-2" auto "area-1 area-3" auto/2fr 1fr;
  gap: 10px;
}

.grid-image__item {
  position: relative;
  display: flex;
}
.grid-image__item::before {
  content: "";
  display: block;
  width: 0;
  padding-top: 100%;
}
.grid-image__item:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-row-span: 3;
  -ms-grid-column: 1;
  grid-area: area-1;
}
.grid-image__item:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
  grid-area: area-2;
}
.grid-image__item:nth-child(3) {
  -ms-grid-row: 3;
  -ms-grid-column: 3;
  grid-area: area-3;
}

.grid-image__link {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  border: solid 1px #e5e5e5;
  cursor: pointer;
}
.grid-image__link:hover, .grid-image__link:focus, .grid-image__link:active {
  opacity: 0.85;
}
.grid-image__link > img {
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover";
  width: 100%;
  height: 100%;
}

.modal-component {
  z-index: 10000;
  display: none;
}
.modal-component.-opened {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
}

.modal-component__wrapper {
  display: none;
}

.modal-component__overlay {
  background: rgba(0, 0, 0, 0.6);
  width: 100vw;
  height: 100vh;
}

.modal-component__container {
  position: absolute;
  top: 50vh;
  left: 50vw;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.modal-component__x {
  position: absolute;
  padding: 16px;
  right: 0;
  top: -36px;
  cursor: pointer;
}
.modal-component__x::before, .modal-component__x::after {
  content: "";
  height: 32px;
  width: 2px;
  position: absolute;
  background-color: #fff;
  right: 12px;
  top: 0;
}
.modal-component__x::before {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.modal-component__x::after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.modal-component__body {
  background: #fff;
  border-radius: 6px;
  padding: 24px 30px;
  overflow-y: auto;
}

.modal-component__header {
  margin-bottom: 24px;
  padding: 10px 30px 0;
  border-bottom: 1px solid #e5e5e5;
  width: calc(100% + 60px);
  position: relative;
  left: -30px;
  box-sizing: border-box;
}
.modal-component__header.none {
  display: none;
}

.modal-component__main {
  max-height: 65vh;
}
.modal-component__main h4 {
  font-size: 20px;
}

.modal-component__footer {
  margin-top: 24px;
  padding: 10px 30px 0;
  border-top: 1px solid #e5e5e5;
  position: relative;
  box-sizing: border-box;
}
.modal-component__footer.none {
  display: none;
}

.modal-component__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
}

.modal-component.-slider .modal-component__container {
  top: 48vh;
  width: 100vw;
}
.modal-component.-slider .modal-component__body {
  background: none;
  border-radius: 0;
  padding: 0;
}
.modal-component.-slider .modal-component__overlay {
  background: rgba(0, 0, 0, 0.75);
}
.modal-component.-slider .modal-component__main {
  max-height: 70vh;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.modal-component.-slider .modal-component__main::-webkit-scrollbar {
  display: none;
}
.modal-component.-slider .modal-component__x {
  right: 8px;
  z-index: 1;
}
.modal-component.-slider .grid-image {
  display: flex;
  justify-content: center;
  gap: 0;
  margin: 10px -5px 0;
}
.modal-component.-slider .grid-image__item {
  width: 82px;
  padding: 0 5px;
}
.modal-component.-slider .grid-image__item.is-current .grid-image__link {
  border: solid 2px #ad0003;
}
.modal-component.-slider .grid-image__link {
  border: 0;
  right: 5px;
  left: 5px;
}
.modal-component.-slider .review-list__title {
  font-size: 16px;
}
.modal-component.-slider .review-list__text {
  margin-top: 10px;
}
.modal-component.-slider .review-list__goods {
  font-size: 18px;
}
.modal-component.-slider .review-reason {
  font-size: 14px;
  margin-top: 4px;
}

.modal-slider-component {
  overflow: hidden;
  position: relative;
}

.modal-slider-component__list {
  display: flex;
  background: #16160e;
}

.modal-slider-component__item {
  flex-shrink: 0;
  width: 100vw;
  height: 75vw;
}
.modal-slider-component__item > img {
  -o-object-fit: scale-down;
     object-fit: scale-down;
  font-family: "object-fit: scale-down";
  width: 100%;
  height: 100%;
}

.modal-slider-component__prev,
.modal-slider-component__next {
  visibility: hidden;
  opacity: 0;
  color: #ffffff;
  background: rgba(22, 22, 14, 0.7);
  border: 0;
  position: absolute;
  top: calc(50% - 37px);
  z-index: 0;
  width: 33px;
  height: 74px;
  overflow: hidden;
  cursor: pointer;
  transition: visibility 0.2s, opacity 0.2s;
}
.modal-slider-component__prev:hover, .modal-slider-component__prev:focus, .modal-slider-component__prev:active,
.modal-slider-component__next:hover,
.modal-slider-component__next:focus,
.modal-slider-component__next:active {
  outline: 0;
}
.modal-slider-component__prev > i,
.modal-slider-component__next > i {
  display: inline-block;
  position: absolute;
  top: calc(50% - 12px);
  left: calc(50% - 8px);
  transition: left 0.2s;
}
.modal-slider-component__prev > i > span,
.modal-slider-component__next > i > span {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.modal-slider-component__prev {
  border-radius: 0 4px 4px 0;
  left: 0;
}
.modal-slider-component__prev:hover > i {
  left: calc(50% - 12px);
}
.modal-slider-component__prev > i::before {
  display: inline-block;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.modal-slider-component__next {
  border-radius: 4px 0 0 4px;
  right: 0;
}
.modal-slider-component__next:hover > i {
  left: calc(50% - 4px);
}

.modal-slider-component__caption {
  color: #ffffff;
  padding: 0 16px;
  margin-top: 10px;
}

.modal-slider-component__content {
  margin-top: 15px;
  overflow: hidden;
}

.navigation--local__title {
  font-size: 16px;
  padding-bottom: 12px;
}
.navigation--local__title i {
  margin-right: 4px;
  position: relative;
  top: 2px;
}
.navigation--local__list li {
  font-size: 14px;
  border-bottom: solid 1px #e5e5e5;
}
.navigation--local__list li a,
.navigation--local__list li span {
  display: inline-block;
  width: 100%;
  padding: 12px 0;
  cursor: pointer;
}
.navigation--local__list li a {
  color: #1e50a2;
}
.navigation--local__list__parent {
  position: relative;
}
.navigation--local__list__parent img {
  width: 40px;
  margin-right: 8px;
}
.navigation--local__list__parent:after {
  position: absolute;
  content: "";
  top: 22px;
  right: 4px;
  width: 8px;
  height: 8px;
  cursor: pointer;
  border-color: #767676;
  border-right: solid 1px;
  border-bottom: solid 1px;
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
  transition: 0.3s;
}
.navigation--local__list__children {
  margin-left: 16px;
}
.navigation--local__list__children li:last-child {
  border-bottom: none;
}
.navigation--local__list__label {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}
.navigation--local__list__wrap {
  border-top: solid 1px #e5e5e5;
}
.navigation--local__list .close:after {
  top: 18px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.navigation--local__list .close .navigation--local__list__wrap {
  display: none;
}
.navigation--area .hokkaido:before {
  background: #355298;
}
.navigation--area .tohoku:before {
  background: #53a4d5;
}
.navigation--area .kanto:before {
  background: #3baaa3;
}
.navigation--area .chubu:before {
  background: #2aa25c;
}
.navigation--area .kinki:before {
  background: #80b927;
}
.navigation--area .chugoku:before {
  background: #f7b400;
}
.navigation--area .shikoku:before {
  background: #ec6d34;
}
.navigation--area .kyushu:before {
  background: #ed8598;
}
.navigation--area__parent {
  background: #f6f6f6;
  border-top: solid 1px #c8c8c8;
}
.navigation--area__parent:last-child {
  border-bottom: solid 1px #c8c8c8;
}
.navigation--area__parent.is-open .navigation--area__children {
  display: block;
}
.navigation--area__label {
  position: relative;
  display: block;
  font-size: 16px;
  font-weight: bold;
  padding: 12px 16px 12px 28px;
  color: #16160e;
  background: none;
  border: 0;
  width: 100%;
  text-align: left;
}
.navigation--area__label:before {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 17px;
  margin: auto;
  width: 4px;
  height: 22px;
}
.navigation--area__label:after {
  position: absolute;
  content: "";
  right: 16px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 8px;
  height: 8px;
  border-right: solid 1px #16160e;
  border-bottom: solid 1px #16160e;
  -webkit-transform: rotate(225deg);
          transform: rotate(225deg);
}
.navigation--area .is-close .navigation--area__label:after {
  bottom: 5px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.navigation--area__children {
  background: #fff;
  display: none;
}
.navigation--area__child {
  color: #1e50a2;
  border-top: solid 1px #c8c8c8;
}
.navigation--area__child a {
  display: block;
  padding: 16px;
}

.current {
  font-weight: bold;
  color: #16160e !important;
}

.visible {
  opacity: 1 !important;
  z-index: 10000 !important;
}

.nav-result {
  border-top: solid 1px #e5e5e5;
  border-bottom: solid 1px #e5e5e5;
  padding: 16px 0;
  display: flex;
  align-items: flex-end;
}
.nav-result.-no-border {
  border: 0;
  padding-top: 0;
}
.nav-result .nv-favorite__wrap {
  padding-bottom: 0;
}

.nav-result__num:not(:first-child) {
  display: inline;
}
.nav-result__num dt {
  display: inline-block;
  margin-right: 4px;
  color: #6b6b6b;
  font-size: 14px;
}
.nav-result__num dd {
  display: inline-block;
  font-size: 14px;
}
.nav-result__num dd > span {
  font-size: 16px;
}

.nav-result__order {
  margin-left: auto;
}

.flag {
  background-color: rgba(0, 0, 0, 0.6);
  color: #ffffff;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  font-size: 22px;
  line-height: 24px;
  text-align: center;
  position: absolute;
  opacity: 1;
  top: 0;
  left: 0;
  z-index: 10;
  -webkit-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

#main.page-product {
  overflow-x: hidden;
}

.review-list {
  margin-top: 40px;
}
.review-list h2 {
  font-size: 20px;
}
.review-list .review-null {
  margin-top: 20px;
}
.review-list .btn-wrap--reverse {
  margin-top: 48px;
  margin-bottom: 112px;
}

.review-list__content {
  position: relative;
  box-sizing: border-box;
  border: 1px solid #e5e5e5;
  border-radius: 16px;
  padding: 24px 16px;
  margin-top: 20px;
}
.review-list__content .review-list__name {
  font-size: 12px;
  margin-bottom: 16px;
}
.review-list__content .review-list__title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 16px;
}
.review-list__content .review-images {
  margin-bottom: 8px;
}
.review-list__content .review-images .grid-image__link {
  border: none;
}
.review-list__content .review-images .grid-image__link img {
  border-radius: 16px;
}
.review-list__content .review-list__text-wrap {
  min-height: 65px;
}
.review-list__content .review-list__text {
  word-break: break-word;
}
.review-list__content .review-list__goods {
  font-size: 12px;
  margin-bottom: 4px;
  margin-top: 16px;
}
.review-list__content .review-reason {
  font-size: 12px;
  margin-bottom: 16px;
  line-height: 1.8;
}
.review-list__content .review-reason .review-reason__item {
  display: inline;
}
.review-list__content .review-reason .review-reason__item:not(:last-child):after {
  content: "|";
  margin-left: 4px;
}
.review-list__content .review-tag {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.review-list__content .review-tag .review-tag__item {
  display: inline;
  color: #ad0003;
  font-size: 12px;
  margin-right: 16px;
}
.review-list__content .review-tag .review-tag__item:last-of-type {
  margin-right: 0;
}
.review-list__content .review-tag .review-tag__item.is-null {
  color: #767676;
}
.review-list__content .review-tag .review-tag__item i {
  vertical-align: middle;
  font-size: 18px;
  margin-right: 4px;
}
.review-list__content .review-list__data {
  font-size: 12px;
  color: #6b6b6b;
}
.review-list__content .review-list__date {
  font-size: 12px;
  color: #6b6b6b;
}
.review-list__content .review-list__delete {
  display: inline-block;
  color: #1e50a2;
  font-size: 14px;
  margin-top: 12px;
}

.review-list__box {
  background-color: #f6f6f6;
  padding: 16px;
  margin-top: 12px;
  border-radius: 8px;
}
.review-list__box small {
  display: inline-block;
  margin-top: 6px;
  font-size: 12px;
  color: #767676;
}

.review-list__reply {
  margin: 16px 0;
}
.review-list__reply .toggle-controller {
  position: relative;
  cursor: pointer;
  color: #1e50a2;
}
.review-list__reply .toggle-controller::after {
  position: absolute;
  content: "";
  top: -5px;
  bottom: 0;
  right: -16px;
  margin: auto;
  width: 6px;
  height: 6px;
  border-top: 2px solid #1e50a2;
  border-left: 2px solid #1e50a2;
  transition: 0.2s;
  -webkit-transform: rotate(225deg);
          transform: rotate(225deg);
}
.review-list__reply .toggle-controller:has(+ .toggle-target.-active)::after {
  top: 2px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.review-list__reply .toggle-trigger {
  display: none;
}
.review-list__reply .toggle-trigger:checked + .toggle-controller::after {
  top: 2px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.review-list__reply .toggle-target {
  overflow: hidden;
  transition: height 150ms linear;
}
.review-list__reply .toggle-target:not(.-active) {
  height: 0;
}

.bx-more2__wrap {
  transition: height 150ms linear;
}
.bx-more2__wrap.is-more + .bx-more2__button::before {
  content: "";
  display: block;
  width: 100%;
  height: 18px;
  position: absolute;
  top: -31px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 68%);
}
.bx-more2__wrap.is-more + .bx-more2__button .btn-more__icon::after {
  top: 8px;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

.bx-more2__button {
  position: relative;
  display: none;
  justify-content: center;
}

.bx-more2__button.-active {
  display: flex;
  justify-content: end;
  margin-top: 8px;
}

.btn-more {
  text-align: center;
}
.btn-more::before {
  content: "";
  display: none;
}

.btn-more__text {
  color: #1e50a2;
  background-color: #ffffff;
  margin-top: -29px;
}

.btn-more__icon {
  display: block;
  position: relative;
  height: 24px;
}
.btn-more__icon::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-width: 1px 1px 0 0;
  border-style: solid;
  position: absolute;
  top: 16px;
  right: 0;
  left: 0;
  margin: 0 auto;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.fixed-favorite {
  z-index: 20;
  border: 0;
  background: none;
  margin: 0;
  padding: 0;
}
.fixed-favorite span {
  display: block;
  width: 56px;
  height: 56px;
  border: 4px solid #767676;
  border-radius: 30px;
  box-sizing: border-box;
  background-color: #ffffff;
}
.fixed-favorite i {
  font-size: 26px;
  line-height: 1;
  color: #767676;
  text-align: center;
  padding-top: 13px;
}
.fixed-favorite .btn-active__icon {
  display: none;
}
.fixed-favorite .btn-passive__icon {
  display: block;
  -webkit-animation: blink 0.4s ease;
          animation: blink 0.4s ease;
}

.fixed-favorite.on span {
  border: 4px solid #ad0003;
}
.fixed-favorite.on i {
  color: #ad0003;
}
.fixed-favorite.on .btn-active__icon {
  display: block;
  -webkit-animation: beat 0.4s ease-in-out;
          animation: beat 0.4s ease-in-out;
}
.fixed-favorite.on .btn-passive__icon {
  display: none;
}

.review-reaction-wrap {
  display: flex;
  justify-content: end;
}

.review-reaction-button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 176px;
  padding: 2px 20px;
  border-radius: 54px;
  border: 1px solid #e5e5e5;
  background-color: #ffffff;
  font-size: 14px;
  transition: background-color ease 0.4s;
  cursor: pointer;
  color: #16160e;
}
.review-reaction-button.-active {
  background-color: #f3f3f3;
  border-color: #f3f3f3;
}
.review-reaction-button.-active .review-reaction-button__icon {
  -webkit-animation: beat 0.4s ease-in-out;
          animation: beat 0.4s ease-in-out;
}

.review-reaction-button__icon,
.review-reaction-button__text {
  display: inline-block;
  margin-right: 8px;
  flex-shrink: 0;
}

.review-reaction-button__icon {
  font-size: 20px;
}

.review-reaction-button__number {
  text-align: left;
}

.nav-result {
  justify-content: flex-end;
}

.switch-button-list {
  margin-bottom: 0;
}

.review-info {
  position: relative;
}

.review-info-header {
  padding: 24px 0;
}
.review-info-header h1 {
  line-height: 1;
}

.review-info-header__title {
  display: block;
  font-size: 22px;
  margin-bottom: 24px;
}

.review-info-header__product-name {
  display: block;
  min-height: calc(54px + 0.3em);
  position: relative;
  padding-left: 106px;
}

.review-info-header__link-wrap {
  display: block;
}
.review-info-header__link-wrap:not(:last-child) {
  margin-bottom: 8px;
}

.review-info-header__product-link {
  color: #1e50a2;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.5;
}
.review-info-header__product-link:hover, .review-info-header__product-link:focus, .review-info-header__product-link:active {
  color: #1e50a2;
  text-decoration: underline;
}
.review-info-header__product-link:hover .review-info-header__thumbnail, .review-info-header__product-link:focus .review-info-header__thumbnail, .review-info-header__product-link:active .review-info-header__thumbnail {
  opacity: 0.85;
}

.review-info-header__thumbnail {
  display: block;
  position: absolute;
  top: 0.3em;
  left: 0;
  width: 88px;
  height: 54px;
  border: solid 1px #e5e5e5;
  font-weight: 400;
}
.review-info-header__thumbnail img {
  -o-object-fit: scale-down;
     object-fit: scale-down;
  -o-object-position: center;
     object-position: center;
  font-family: "object-fit: scale-down; object-position: center";
  width: 100%;
  height: 100%;
}

.review-info-header__city-link {
  color: #1e50a2;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.5;
}
.review-info-header__city-link:hover, .review-info-header__city-link:focus, .review-info-header__city-link:active {
  text-decoration: underline;
}
.review-info__wrap img {
  width: 100%;
  border: 1px solid #e5e5e5;
  border-radius: 2px;
}
.review-info__column .btn-wrap--reverse {
  margin-top: 20px;
}
.review-info__column .counter-tag,
.review-info__column .counter-reason {
  font-weight: bold;
}
.review-info__column .counter-tag::before,
.review-info__column .counter-reason::before {
  content: "(";
  font-weight: normal;
}
.review-info__column .counter-tag::after,
.review-info__column .counter-reason::after {
  content: ")";
  font-weight: normal;
}
.review-info__column-item + .review-info__column-item .review-info__contents {
  border-top: 0;
}

.review-info__contents {
  border: solid #e5e5e5;
  border-width: 1px 0;
  margin: 0 -16px;
  padding: 0 16px;
  overflow: hidden;
  transition: height 0.2s;
}
.review-info__contents .review-reason {
  margin-top: 0;
  font-size: 14px;
  line-height: 1.8;
}
.review-info__contents .review-reason__item {
  display: inline;
}
.review-info__contents .review-reason__item:not(:last-child)::after {
  content: "|";
  margin-left: 4px;
}
.review-info__contents .review-tag {
  display: flex;
  flex-wrap: wrap;
  line-height: 1.3;
}
.review-info__contents .review-tag i {
  vertical-align: middle;
  font-size: 18px;
  margin-right: 3px;
}
.review-info__contents .review-tag__item {
  display: inline;
  color: #ad0003;
  font-weight: bold;
  font-size: 14px;
  margin-right: 16px;
}
.review-info__contents .review-tag__item:last-of-type {
  margin-right: 0;
}
.review-info__contents .review-tag__item.is-null {
  color: #767676;
}

.review-info__contents.is-open .review-tag,
.review-info__contents.is-open .review-reason {
  padding-bottom: 20px;
}
.review-info__contents.is-open .review-info__icon {
  -webkit-transform: rotate(270deg);
          transform: rotate(270deg);
}

.review-info__contents.is-close .review-tag,
.review-info__contents.is-close .review-reason {
  height: 0;
  visibility: hidden;
}

.review-info__contents-title {
  font-size: 14px;
  font-weight: 400;
  padding: 20px 0;
  position: relative;
  cursor: pointer;
}

.review-info__icon {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  position: absolute;
  top: calc(50% - 12px);
  right: 4px;
}

.fixed-favorite {
  position: fixed;
  right: 16px;
  bottom: 16px;
}

.result-num {
  justify-content: space-between;
}

.result-num-wrap {
  display: flex;
  align-items: center;
}

@media only screen and (min-width: 835px), (min-device-width: 835px) {
  .button {
    padding: 8px 16px 6px;
  }
  .switch-button-list__button {
    margin-left: 6px;
  }
  .button-rounded.-expanded {
    display: block;
  }
  .grid-image {
    display: flex;
    margin-right: -5px;
    margin-left: -5px;
    gap: 0;
  }
  .grid-image__item {
    width: 105px;
    padding: 0 5px;
  }
  .grid-image__link {
    right: 5px;
    left: 5px;
  }
  .modal-component__body.-size-auto {
    width: auto;
    max-width: 810px;
    padding: 32px;
  }
  .modal-component__body.-size-s {
    width: 324px;
  }
  .modal-component__body.-size-m {
    width: 620px;
  }
  .modal-component__body.-size-l {
    width: 916px;
  }
  .modal-component__main h4 {
    font-size: 22px;
  }
  .modal-component.-slider .modal-component__container {
    top: 50vh;
    width: auto;
  }
  .modal-component.-slider .modal-component__main {
    max-height: calc(80vh - 44px);
  }
  .modal-component.-slider .modal-component__x {
    top: -44px;
    right: calc(50% - 292px);
  }
  .modal-component.-slider .grid-image__item {
    width: 95px;
  }
  .modal-slider-component {
    margin: 0 auto;
    width: 600px;
  }
  .modal-slider-component:hover .modal-slider-component__prev,
  .modal-slider-component:hover .modal-slider-component__next {
    visibility: visible;
    opacity: 1;
  }
  .modal-slider-component__item {
    width: 600px;
    height: 450px;
  }
  .modal-slider-component__caption {
    color: #16160e;
    padding: 0;
    margin-top: 20px;
  }
  .nav-result {
    align-items: flex-start;
    padding-bottom: 0;
    margin-top: 24px;
  }
  .nav-result .nv-favorite__wrap {
    padding-bottom: 16px;
  }
  .nav-result__num:not(:first-child) {
    margin-left: 12px;
    display: block;
  }
  .nav-result__num-wrap {
    display: flex;
  }
  #main.page-product {
    margin-bottom: 48px;
  }
  .review-list {
    margin-top: 80px;
  }
  .review-list .review-null {
    margin-top: 24px;
  }
  .review-list .btn-wrap--reverse {
    margin-top: 64px;
    margin-bottom: 62px;
  }
  .review-list__content .review-list__title {
    font-size: 20px;
  }
  .review-list__content .review-list__text-wrap {
    min-height: auto;
  }
  .review-list__content .review-list__goods {
    font-size: 14px;
  }
  .review-list__content .review-reason {
    font-size: 14px;
  }
  .review-list__content .review-tag {
    line-height: 1.5;
  }
  .review-list__content .review-tag .review-tag__item {
    height: 26px;
  }
  .review-list__content .review-list__data {
    display: inline-block;
    margin-right: 8px;
  }
  .review-list__content .review-list__date {
    display: inline-block;
  }
  .review-list__box small {
    margin-top: 12px;
  }
  .review-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .nav-result__order {
    margin-left: 16px;
  }
  .review-info {
    padding-top: 15px;
  }
  .review-info-header {
    padding-top: 0;
    margin-bottom: 32px;
    border-bottom: solid 1px #e5e5e5;
  }
  .review-info-header__title {
    font-size: 26px;
  }
  .review-info-header__product-name {
    min-height: calc(98px + 0.3em);
    padding-left: 180px;
  }
  .review-info-header__product-link {
    font-size: 16px;
  }
  .review-info-header__thumbnail {
    width: 158px;
    height: 98px;
  }
  .review-info-header__city-link {
    font-size: 14px;
  }
  .review-info__wrap {
    display: flex;
    overflow: hidden;
  }
  .review-info__wrap img {
    box-sizing: border-box;
    width: 520px;
    height: auto;
    margin-right: 32px;
  }
  .review-info__column {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -20px;
  }
  .review-info__column .btn-wrap--reverse {
    margin-top: 0;
  }
  .review-info__column-item {
    width: 50%;
    padding: 0 20px;
    box-sizing: border-box;
  }
  .review-info__contents {
    border: 0;
    margin: 0;
    padding: 0;
  }
  .review-info__contents .review-reason {
    margin-top: 16px;
  }
  .review-info__contents .review-tag {
    margin-top: 16px;
    line-height: 1.5;
  }
  .review-info__contents .review-tag i {
    position: absolute;
    top: -5px;
    font-size: 20px;
  }
  .review-info__contents .review-tag__item {
    position: relative;
    height: 26px;
  }
  .review-info__contents .review-tag__text {
    padding-left: 24px;
  }
  .review-info__contents.is-close .review-tag,
  .review-info__contents.is-close .review-reason {
    height: auto;
    visibility: visible;
  }
  .review-info__contents-title {
    font-size: 16px;
    font-weight: bold;
    padding: 0;
    cursor: default;
  }
  .review-info__icon {
    display: none;
  }
  .fixed-favorite {
    right: 28px;
  }
  .image-checkbox {
    margin-top: 3px;
  }
}

@media only screen and (max-width: 834px) and (max-device-width: 834px) {
  .button-rounded {
    font-size: 14px;
    padding: 0 16px;
    white-space: nowrap;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    height: 24px;
  }
  .modal-component__container {
    width: 93vw;
  }
  .navigation--full-screen {
    position: fixed;
    display: flex;
    z-index: -10000;
    opacity: 0;
    transition: 0.3s;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
  }
  .navigation--full-screen__layer0 {
    background: #fff;
    height: 100%;
    width: 100%;
    transition: 0.3s;
    flex-shrink: 0;
  }
  .navigation--full-screen__head {
    color: #fff;
    padding: 14px 0;
    background-color: #ad0003;
    text-align: right;
  }
  .navigation--full-screen__head__title {
    font-size: 14px;
    text-align: center;
  }
  .navigation--full-screen__head__close {
    position: relative;
    display: block;
  }
  .navigation--full-screen__head__close:before, .navigation--full-screen__head__close:after {
    position: absolute;
    content: "";
    top: -12px;
    right: 16px;
    width: 16px;
    height: 2px;
    background: #fff;
  }
  .navigation--full-screen__head__close:before {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  .navigation--full-screen__head__close:after {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
  .navigation--full-screen__head__close > span {
    position: absolute;
    z-index: -1;
    white-space: nowrap;
    font-size: 10px;
    opacity: 0;
  }
  .navigation--full-screen__body {
    width: 100%;
    height: 100vh;
    padding: 16px 16px 240px;
    overflow: auto;
    box-sizing: border-box;
  }
  .navigation--full-screen__body select {
    width: 100%;
    padding: 11px 8px;
  }
  .navigation--full-screen__button {
    position: relative;
    cursor: pointer;
    display: inline-block;
    border: solid 1px #767676;
    border-radius: 4px;
    width: 100%;
    padding: 11px 8px;
    box-sizing: border-box;
    color: #16160e !important;
    font-weight: bold;
    text-align: left;
    background: none;
  }
  .navigation--full-screen__button:after {
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    margin: auto;
    right: 10px;
    width: 8px;
    height: 8px;
    border-top: solid 1px;
    border-right: solid 1px;
    border-color: #767676;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  .navigation--full-screen__footer {
    position: absolute;
    width: 100%;
    bottom: 0;
    display: flex;
    background: #f3f3f3;
    padding: 12px 8px;
    box-sizing: border-box;
    box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.16);
  }
  .navigation--full-screen__footer .btn-normal {
    width: 135px;
    margin-right: 8px;
  }
  .navigation--full-screen__back {
    background: #f6f6f6;
    display: inline-block;
    width: 100%;
    padding: 16px;
    box-sizing: border-box;
  }
  .navigation--full-screen__back a:before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    border-bottom: solid 1px;
    border-left: solid 1px;
    border-color: #767676;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    margin-right: 4px;
  }
  .navigation--full-screen__list li a,
  .navigation--full-screen__list li label {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 16px;
    border-bottom: solid 1px #e5e5e5;
    box-sizing: border-box;
    color: #1e50a2;
  }
  .navigation--full-screen__list li a:after {
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    margin: auto;
    right: 16px;
    width: 8px;
    height: 8px;
    border-top: solid 1px;
    border-right: solid 1px;
    border-color: #767676;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  .navigation--full-screen__list li img {
    width: 50px;
    margin-right: 8px;
  }
  .navigation--full-screen__layer1, .navigation--full-screen__layer2 {
    overflow: scroll;
    background: #fff;
    transition: 0.3s;
    width: 100%;
    height: 100%;
    flex-shrink: 0;
  }
  .flag {
    font-size: 14px;
  }
  .review-list__content .review-list__text {
    margin-bottom: 0px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
  }
  .review-list__content .review-list__text.is-show {
    display: block;
  }
  .bx-more2__wrap.is-more {
    height: 5em;
    overflow: hidden;
  }
  .review-box .review-list-wrap {
    display: none;
  }
  .review-box .review-list-wrap.is-show {
    display: block;
    margin-bottom: 16px;
  }
  .review-reaction-wrap {
    margin-top: 16px;
  }
  .inner-content {
    padding: 0 16px;
  }
  .image-label {
    margin-top: 0;
  }
}

@media only screen and (max-width: 599px) and (max-device-width: 599px) {
  .modal-component__container {
    top: 43vh;
  }
  .modal-component__body {
    max-height: 60vh;
  }
  .modal-component.-slider .modal-component__body {
    max-height: 70vh;
  }
}
