@charset "UTF-8";
@keyframes fadeIn {
  100% {
    opacity: 1;
  }
}
@keyframes fadeOut {
  100% {
    opacity: 0;
  }
}
@keyframes clipPath {
  100% {
    clip-path: inset(0);
  }
}
@keyframes clipPathCircle {
  100% {
    clip-path: circle(100% at 50% 50%);
  }
}
/*
A modern CSS reset 2023 / 9 / 18
https://github.com/Andy-set-studio/modern-css-reset
*/
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

body, h1, h2, h3, h4, p, figure, blockquote, dl, dd {
  margin: 0;
}

ul[role=list], ol[role=list] {
  list-style: none;
}

body {
  min-height: 100vh;
  line-height: 1.5;
}

h1, h2, h3, h4, button, input, label {
  line-height: 1.1;
}

h1, h2, h3, h4 {
  text-wrap: balance;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
  color: currentColor;
}

img, picture {
  max-width: 100%;
  display: block;
}

input, button, textarea, select {
  font: inherit;
}

textarea:not([rows]) {
  min-height: 10em;
}

:target {
  scroll-margin-block: 5ex;
}

/**  base  **/
p,
ul,
ol,
h1,
h2,
h3,
figure,
dl,
dd,
button,
pre {
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

ul,
ol {
  list-style: none;
}

img,
video {
  max-width: 100%;
  vertical-align: bottom;
  line-height: 1;
}

select,
option {
  color: currentColor;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  appearance: none;
}

a,
button {
  color: currentColor;
  text-decoration: none;
  transition: filter 0.1s ease;
}
@media (hover: hover) {
  a:hover,
  button:hover {
    filter: brightness(1.12);
  }
}

[x-cloak],
[v-cloak] {
  display: none !important;
}

*:focus {
  outline: none;
}

@media (min-width: 600px) {
  .device-sp {
    display: none;
  }
}

.device-pc {
  display: none;
}
@media (min-width: 600px) {
  .device-pc {
    display: block;
  }
}

br {
  display: none;
}
@media (min-width: 600px) {
  br {
    display: block;
  }
}

html {
  scroll-behavior: smooth;
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  overflow-wrap: anywhere; /* 収まらない場合に折り返す */
  word-break: normal; /* 単語の分割はデフォルトに依存 */
  line-break: strict; /* 禁則処理を厳格に適用 */
}
body.scroll_lock {
  overflow: hidden;
}

/**  common  **/
html {
  scroll-padding: 6.5rem;
}

body {
  color: #000;
  font-family: "Yu Gothic Pr6N D", sans-serif;
}

header {
  height: 6.5rem;
  background-color: #B7C0C1;
  position: sticky;
  top: 0;
  z-index: 100;
}
header a,
header button {
  padding-right: 0.8rem;
  padding-left: 0.8rem;
}
header a:hover,
header button:hover {
  opacity: 0.5;
}
header .menu-toggle {
  margin-right: 0.8rem;
  margin-left: 0.8rem;
}
@media (min-width: 600px) {
  header .menu-toggle {
    order: 1;
    margin-right: 0;
    margin-left: 0;
  }
}
header div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  overflow: hidden;
}
@media (min-width: 600px) {
  header div {
    margin-right: 1.6rem;
    margin-left: 1.6rem;
  }
}
header h1 {
  margin-right: auto;
}
header .badge {
  font-family: "helvetica-neue-lt-pro", sans-serif;
  font-weight: 700;
  font-style: normal;
  position: absolute;
  top: 0;
  right: 0;
  font-size: 1rem;
  background-color: #7FB9B6;
  padding: 0.2rem 0.6rem;
  border-radius: 1rem;
  z-index: 10;
}
header .nav_cart {
  position: relative;
}

.header-nav {
  position: relative;
  z-index: 100;
  font-family: "helvetica-neue-lt-pro", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 1.8rem;
}
@media (min-width: 600px) {
  .header-nav {
    width: min(100%, 37.5rem);
    margin-left: auto;
  }
}
.header-nav li {
  border-top: 1px solid currentColor;
}
.header-nav a {
  padding: 0.4em 1em;
  display: block;
}
.header-nav .global-menu {
  background-color: #B7C0C1;
}
.header-nav .global-menu a {
  background-color: #B7C0C1;
}
.header-nav .hobo-menu {
  background-color: #EDEDED;
}
.header-nav .hobo-menu a {
  background-color: #EDEDED;
}

.page-header {
  position: relative;
  aspect-ratio: 375/148;
  width: 100%;
}
@media (min-width: 600px) {
  .page-header {
    aspect-ratio: 1512/217;
    max-height: 21.7rem;
  }
}
.page-header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

main a[target=_blank]::after {
  margin: 0 3px 0 1px;
  font-family: "Hobonichi-Icons";
  content: "\e914";
  font-size: 85%;
  position: relative;
  top: -3px;
}

.breadcrumbs {
  font-family: "Yu Gothic Pr6N B", sans-serif;
  font-size: 1.2rem;
  margin: 1em;
}
@media (min-width: 992px) {
  .breadcrumbs {
    font-size: 1.4rem;
    margin-right: 0;
    margin-left: 0;
  }
}
.breadcrumbs ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.breadcrumbs ul li:not(:last-of-type)::after {
  content: "/";
  margin: 0 0.5em;
}
.breadcrumbs a {
  color: #646464;
}

footer {
  background-color: #EDEDED;
  padding: 4rem 5.2rem;
}
footer a:hover {
  opacity: 0.5;
}
footer .wrapper {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  width: min(100%, 120rem);
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 600px) {
  footer .wrapper {
    gap: 2.8rem;
  }
}
footer .footer-share {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 2rem;
}
footer .footer-share li:first-child {
  margin-right: 0.8rem;
}
footer .footer-hobo {
  font-size: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
@media (min-width: 600px) {
  footer .footer-hobo {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.8rem 4rem;
  }
}
footer .footer-store {
  display: flex;
  justify-content: space-between;
  align-items: end;
}
footer .footer-store ul {
  font-size: 1rem;
}
footer .footer-store div {
  font-size: 1.2rem;
}
footer .footer-store div span {
  font-family: "helvetica-neue-lt-pro", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.btn-arrow {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  gap: 0.5em;
  line-height: 1;
}
.btn-arrow::after {
  content: "";
  display: inline-block;
  width: 1.4em;
  height: 1.4em;
  background-color: currentColor;
  mask-image: url(/store/taekokusaba/images/common/ico-arrow.svg);
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-position: center;
}
.btn-arrow.disabled {
  background-color: #D9D9D9;
  border-color: #D9D9D9;
  pointer-events: none;
}
.btn-arrow.disabled::before {
  content: none;
}

.btn-orange {
  background-color: #D16F4C;
  border: 1.5px solid #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Yu Gothic Pr6N B", sans-serif;
  position: relative;
  gap: 0.5em;
  line-height: 1;
  color: currentColor;
}
.btn-orange.disabled, .btn-orange[disabled] {
  background-color: #D9D9D9;
  border-color: #D9D9D9;
  color: #646464;
  pointer-events: none;
}
.btn-orange.disabled::before, .btn-orange[disabled]::before {
  content: none;
}

.favorite-btn {
  fill: transparent;
  width: 2rem;
  aspect-ratio: 20/24;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #D16F4C;
}
.favorite-btn.is-disabled {
  pointer-events: none;
  opacity: 0.5;
}
.favorite-btn.is-favorite {
  color: #D16F4C;
}
.favorite-btn.is-favorite svg {
  fill: currentColor;
}
.favorite-btn svg {
  width: 100%;
  aspect-ratio: 20/24;
  display: block;
}

.select-wrapper {
  position: relative;
  font-size: 1.4rem;
  min-width: 16rem;
}
.select-wrapper::after {
  content: "";
  pointer-events: none;
  position: absolute;
  right: 1em;
  width: 1em;
  height: 100%;
  mask-image: url(../../images/common/select-arrow.svg);
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-position: center;
  background-color: currentColor;
}
.select-wrapper select {
  width: 100%;
  padding: 0.5em 2.5em 0.5em 1em;
  border: 1px solid #000;
  box-sizing: border-box;
  appearance: none;
  cursor: pointer;
}
.select-wrapper select:hover {
  filter: brightness(1.12);
}

.checkbox-wrapper {
  display: flex;
  align-items: center;
  column-gap: 1.5em;
}
.checkbox-wrapper li {
  display: inline-flex;
  align-items: center;
  line-height: 1;
  cursor: pointer;
}
.checkbox-wrapper li:hover input[type=checkbox] {
  background-color: rgba(255, 255, 255, 0.3);
}
.checkbox-wrapper input[type=checkbox] {
  appearance: none;
  position: relative;
  width: 1em;
  height: 1em;
  border: 1px solid currentColor;
  margin-right: 0.5em;
  cursor: pointer;
}
.checkbox-wrapper input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  top: -2px;
  left: 4px;
  width: 20px;
  height: 12px;
  background-image: url(../../images/common/ico-check.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.checkbox-wrapper label {
  cursor: pointer;
}

.btn-color-compare {
  background-color: #D16F4C;
  border: 1.5px solid #000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: "Yu Gothic Pr6N B", sans-serif;
  position: relative;
  gap: 0.5em;
  line-height: 1;
}
.btn-color-compare::after {
  content: "";
  display: inline-block;
  width: 1.6em;
  height: 1.6em;
  background-image: url(../../images/common/ico-arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.btn-color-compare.disabled, .btn-color-compare[disabled] {
  background-color: #D9D9D9;
  border-color: #D9D9D9;
  pointer-events: none;
}
.btn-color-compare.disabled::before, .btn-color-compare[disabled]::before {
  content: none;
}

body {
  background-color: #F7F7F7;
  font-size: 1.5rem;
}

main {
  position: relative;
}
main a,
main button {
  color: #8E2726;
}

.breadcrumbs {
  margin-right: initial;
  margin-left: initial;
}

.wrapper {
  width: min(100% - 4rem, 100rem);
  margin-left: auto;
  margin-right: auto;
}

h2 {
  margin-bottom: 1.2rem;
}

.compare-section {
  margin-bottom: 4.8rem;
}

.select-compare-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: space-between;
  gap: 1.6rem;
  margin-bottom: 1.2rem;
  position: sticky;
  background-color: #F7F7F7;
  top: 6rem;
  padding-top: 2.4rem;
}
@media (min-width: 600px) {
  .select-compare-items {
    gap: 2.4rem;
    margin-bottom: 7.2rem;
  }
}

.compare-item .select-btn {
  border: 2px dashed #646464;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #B0B2B2;
  aspect-ratio: 1;
}
@media (min-width: 600px) {
  .compare-item .select-btn {
    aspect-ratio: 450/225;
  }
}
.compare-item .select-btn::after {
  content: "";
  width: 1em;
  height: 1em;
  margin-left: 0.25em;
  background-color: currentColor;
  mask-image: url(../../images/common/ico-plus-circle.svg);
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-position: center;
}
@media (min-width: 600px) {
  .compare-item .select-btn {
    font-size: 2.8rem;
  }
}

.selected-item {
  display: flex;
  flex-direction: column;
  border-bottom: 1.5px solid #000;
  height: 100%;
}
.selected-item .brand {
  font-family: "helvetica-neue-lt-pro", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 1rem;
  margin-bottom: 0.4rem;
  color: #646464;
}
@media (min-width: 600px) {
  .selected-item .brand {
    font-size: 1.4rem;
  }
}
.selected-item .name {
  font-family: "Yu Gothic Pr6N B", sans-serif;
  font-size: 1.4rem;
  margin-bottom: 1em;
}
@media (min-width: 600px) {
  .selected-item .name {
    font-size: 1.9rem;
  }
}
.selected-item .price-info {
  margin-bottom: 1.2rem;
}
.selected-item .price {
  font-family: "helvetica-neue-lt-pro-cond", sans-serif;
  font-weight: 700;
  font-style: normal;
}
@media (min-width: 600px) {
  .selected-item .price {
    font-size: 2.4rem;
  }
}
.selected-item small {
  font-size: 1rem;
}
.selected-item .item-link {
  display: flex;
  flex-direction: column;
  margin-top: auto;
  gap: 0.4rem;
  margin-bottom: 0.8rem;
}
@media (min-width: 600px) {
  .selected-item .item-link {
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
  }
}
.selected-item .item-link a {
  font-size: 1.2rem;
}
@media (min-width: 600px) {
  .selected-item .item-link a {
    font-size: 1.5rem;
  }
}
.selected-item .item-link button {
  display: flex;
  align-items: center;
  font-size: 1.2rem;
}
.selected-item .item-link button svg {
  width: 1.5em;
  height: 1.5em;
  flex-shrink: 0;
  object-fit: contain;
  display: block;
  margin-left: 0.25em;
  rotate: 45deg;
  stroke-width: 1.5px;
}
@media (min-width: 600px) {
  .selected-item .item-link button {
    font-size: 2rem;
  }
  .selected-item .item-link button span {
    display: none;
  }
}

.select-compare-photos {
  display: grid;
  gap: 2rem;
}
.select-compare-photos .photo-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
}
@media (min-width: 600px) {
  .select-compare-photos .photo-row {
    gap: 2.4rem;
  }
}
.select-compare-photos .photo-item-compare {
  grid-column-start: 2;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
}

.modal-content {
  background-color: rgba(255, 255, 255, 0.9);
  position: relative;
}

.modal-main {
  overflow: auto;
  width: min(90vw, 100rem);
  height: min(80vh, 90rem);
}

.product-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
  margin: 2.4rem 1.6rem;
}
@media (min-width: 600px) {
  .product-list {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 992px) {
  .product-list {
    grid-template-columns: repeat(5, 1fr);
    margin: 9.6rem 10.2rem 2.4rem;
  }
}

.modal-footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.2rem;
  padding: 1.6rem;
}
@media (min-width: 600px) {
  .modal-footer {
    flex-direction: row;
  }
}
.modal-footer .btn-orange {
  width: 100%;
  height: 4.8rem;
}
@media (min-width: 600px) {
  .modal-footer .btn-orange {
    width: min(100%, 32rem);
  }
}
.modal-footer .btn-close {
  color: #000;
  align-self: end;
}
@media (min-width: 992px) {
  .modal-footer .btn-close {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
  }
}
.modal-footer .btn-close svg {
  width: 1.6em;
  height: 1.6em;
  flex-shrink: 0;
  object-fit: contain;
  display: block;
  margin-left: 0.25em;
  rotate: 45deg;
  stroke-width: 1.5px;
}

.thumbnail {
  border: 1.5px solid #000;
  position: relative;
  margin-bottom: 0.8rem;
}
.thumbnail.is-base, .thumbnail.is-compare, .thumbnail.is-active {
  border-color: #D16F4C;
}
.thumbnail.is-base::after, .thumbnail.is-compare::after, .thumbnail.is-active::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid #D16F4C;
  box-sizing: border-box;
  pointer-events: none;
}
.thumbnail.is-base, .thumbnail.is-compare {
  opacity: 0.5;
}
.thumbnail.is-active {
  border-color: #D16F4C;
}
.thumbnail img {
  width: 100%;
}

.item-meta {
  text-align: left;
}
.item-meta .brand {
  font-family: "helvetica-neue-lt-pro", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 1rem;
  margin-bottom: 0.4rem;
  color: #646464;
}
.item-meta .name {
  font-family: "Yu Gothic Pr6N B", sans-serif;
  font-size: 1.4rem;
  margin-bottom: 1em;
  color: #000;
}/*# sourceMappingURL=color-compare.css.map */