@charset "UTF-8";
@font-face {
  font-family: "InterBold";
  src: url("../../../fonts/Inter-Bold.ttf") format("truetype");
}
@font-face {
  font-family: "InterMedium";
  src: url("../../../fonts/Inter-Medium.ttf") format("truetype");
}
@font-face {
  font-family: "InterLight";
  src: url("../../../fonts/Inter-Light.ttf") format("truetype");
}
* {
  border: 0;
  box-sizing: border-box;
  color: #45433e;
  font-family: "yu-gothic-pr6n", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.75;
  margin: 0;
  outline: 0;
  padding: 0;
}

html {
  font-size: clamp(0.8533333333rem, 4.2666666667vw, 2.1333333333rem);
  min-width: 20rem;
}
@media (min-width: 800px) {
  html {
    font-size: clamp(0.6675rem, 1.3333333333vw, 1rem);
  }
}

body {
  background: #45433e;
  overflow: auto;
  position: relative;
}

main {
  min-height: calc(100vh - 5rem);
}
@media (min-width: 800px) {
  main {
    min-height: calc(100vh - 5rem);
  }
}

h1 {
  color: #fff;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.2em;
}
@media (min-width: 800px) {
  h1 {
    font-size: 1.5rem;
    letter-spacing: 0.3em;
  }
}

h2 {
  color: #45433e;
  font-weight: 700;
  letter-spacing: 0;
}

ol,
ul {
  list-style: none;
}

a,
p,
li,
dt,
dd,
th,
td,
span,
label,
input,
button,
select {
  text-decoration: none;
}

button {
  background: none;
  cursor: pointer;
}

@media (min-width: 800px) {
  a,
  label,
  button,
  i,
  .hover {
    transition: opacity 0.2s ease;
  }
  a:hover,
  label:hover,
  button:hover,
  i:hover,
  .hover:hover {
    opacity: 0.8;
  }
}
a:disabled,
label:disabled,
button:disabled,
i:disabled,
.hover:disabled {
  cursor: not-allowed;
}
a:disabled:hover,
label:disabled:hover,
button:disabled:hover,
i:disabled:hover,
.hover:disabled:hover {
  opacity: 1;
}

img {
  font-size: 0;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  width: 100%;
}

.container__white-bg {
  background: #fff;
  border-radius: 0.625rem 0.625rem 0 0;
  overflow: hidden;
  position: relative;
  width: 100%;
}
@media (min-width: 800px) {
  .container__white-bg {
    border-radius: 1.25rem 1.25rem 0 0;
  }
}

.container__gray-bg {
  background: #f4f4f5;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.container__gray-bg::before {
  box-shadow: 0 0 0.375rem rgba(0, 0, 0, 0.2) inset;
  content: "";
  height: 120%;
  left: -10%;
  position: absolute;
  top: 0;
  width: 120%;
  z-index: 0;
}
@media (min-width: 800px) {
  .container__gray-bg::before {
    box-shadow: 0 0 0.375rem rgba(0, 0, 0, 0.2) inset;
  }
}

.pc-only {
  display: none;
}
@media (min-width: 800px) {
  .pc-only {
    display: inline-block;
  }
}

body:has(.nav[data-is-open=true]) {
  overflow: hidden;
}

.header {
  position: relative;
}

.header__inner {
  align-items: center;
  box-sizing: content-box;
  display: flex;
  height: 5rem;
  justify-content: space-between;
  margin: 0 auto;
  width: 20rem;
}

.header__buttons {
  display: flex;
  gap: 1rem; /* ボタン同士の間隔 */
}

@media (min-width: 800px) {
  .header__inner {
    height: 5rem;
    width: 71.25rem;
  }
}

.nav-open {
  align-items: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  font-family: "InterMedium", "YuGothic", "遊ゴシック", sans-serif;
  font-size: 0.625rem;
  justify-content: space-between;
  letter-spacing: 0.065em;
}
@media (min-width: 800px) {
  .nav-open {
    font-size: 0.75rem;
  }
}
.nav-open::before {
  background: url(../../../images/icon/icon_menu.svg) no-repeat center/contain;
  content: "";
  height: 1.6875rem;
  width: 1.6875rem;
}
@media (min-width: 800px) {
  .nav-open::before {
    height: 2rem;
    width: 2rem;
  }
}

.nav {
  background: rgba(0, 0, 0, 0.5);
  bottom: 0;
  left: 0;
  opacity: 0;
  position: fixed;
  right: 0;
  top: 0;
  transition: all 0.3s ease;
  visibility: hidden;
  z-index: 10000;
}
.nav[data-is-open=true] {
  opacity: 1;
  visibility: visible;
}

.nav__inner {
  background: #fff;
  border-radius: 0 0 0.3125rem 0.3125rem;
  margin: 0 auto;
  max-height: 100vh;
  overflow-y: auto;
  padding: 1.25rem 0 2.5rem;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
  width: 21.875rem;
}
@media (min-width: 800px) {
  .nav__inner {
    border-radius: 0 0 1.25rem 1.25rem;
    padding: 2.5rem 0;
    width: 100%;
  }
}
.nav[data-is-open=true] .nav__inner {
  transform: translateY(0);
}
.nav__inner ul {
  margin: 1.875rem auto 0;
  width: 20rem;
}
@media (min-width: 800px) {
  .nav__inner ul {
    margin-top: 1.875rem;
    width: 62.5rem;
  }
}
.nav__inner ul li {
  border-top: 1px solid #d3d2cf;
}
.nav__inner ul li a {
  display: flex;
  font-size: 0.875rem;
  justify-content: space-between;
  padding: 0.875rem 0.25rem;
}
@media (min-width: 800px) {
  .nav__inner ul li a {
    font-size: 1rem;
    padding: 1.25rem 0.5rem;
  }
}
.nav__inner ul li form {
  padding: 0.875rem 0.25rem;
  position: relative;
}
@media (min-width: 800px) {
  .nav__inner ul li form {
    padding: 1.25rem 0.5rem;
  }
}
.nav__inner ul li form input {
  border: 1px solid #d3d2cf;
  font-size: 0.875rem;
  padding: 0.875rem 1.875rem 0.875rem 0.5rem;
  width: 100%;
}
@media (min-width: 800px) {
  .nav__inner ul li form input {
    font-size: 1rem;
    padding: 1.25rem 3.75rem 1.25rem 1rem;
  }
}
.nav__inner ul li form button {
  box-sizing: content-box;
  height: 0.75rem;
  padding: 0.5rem;
  position: absolute;
  right: 0.5rem;
  top: calc(50% - 0.875rem);
  width: 0.75rem;
}
@media (min-width: 800px) {
  .nav__inner ul li form button {
    height: 1.125rem;
    padding: 0.5rem;
    right: 1.125rem;
    top: calc(50% - 1.0625rem);
    width: 1.125rem;
  }
}
.nav__inner ul li form button i {
  background: url(../../../images/icon/icon_search.svg) no-repeat center/contain;
  display: block;
  height: 100%;
  width: 100%;
}

.nav__close-btn {
  margin: 0 auto;
  width: 20rem;
}
@media (min-width: 800px) {
  .nav__close-btn {
    width: 62.5rem;
  }
}
.nav__close-btn button {
  align-items: center;
  display: flex;
  flex-direction: column;
  font-size: 0.625rem;
  margin-left: auto;
  padding-top: 0.25rem;
}
@media (min-width: 800px) {
  .nav__close-btn button {
    font-size: 0.75rem;
    padding-top: 0.125rem;
  }
}
.nav__close-btn button::before {
  background: url(../../../images/icon/icon_close.svg) no-repeat center/contain;
  content: "";
  height: 0.75rem;
  width: 0.75rem;
}
@media (min-width: 800px) {
  .nav__close-btn button::before {
    height: 1.5rem;
    width: 1.5rem;
  }
}

.breadcrumb {
  margin: 0 auto;
  padding: 1.1875rem 0;
  position: relative;
  width: 20rem;
  z-index: 5;
}
@media (min-width: 800px) {
  .breadcrumb {
    padding: 1.875rem 0;
    width: 62.5rem;
  }
}
.breadcrumb::before {
  box-shadow: 0 0 0.375rem rgba(0, 0, 0, 0.2);
  content: "";
  height: 100%;
  left: -25%;
  position: absolute;
  top: 0;
  width: 150%;
  z-index: -1;
}
@media (min-width: 800px) {
  .breadcrumb::before {
    content: none;
  }
}
.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3125rem;
}
@media (min-width: 800px) {
  .breadcrumb ol {
    gap: 0.3125rem;
  }
}
.breadcrumb li:not(:first-child)::before {
  content: ">";
  font-size: 0.75rem;
}
@media (min-width: 800px) {
  .breadcrumb li:not(:first-child)::before {
    font-size: 0.75rem;
  }
}
.breadcrumb a {
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-decoration: underline;
}
@media (min-width: 800px) {
  .breadcrumb a {
    font-size: 0.75rem;
  }
}
.breadcrumb span {
  font-size: 0.75rem;
  letter-spacing: 0.06em;
}
@media (min-width: 800px) {
  .breadcrumb span {
    font-size: 0.75rem;
  }
}

.search__by {
  border-bottom: 1px solid #d3d2cf;
  box-shadow: 0px 0px 0.375rem rgba(0, 0, 0, 0.2) inset;
  display: flex;
  margin: 0 -25% 0;
  padding: 0 25%;
  width: 150%;
}
@media (min-width: 800px) {
  .search__by {
    box-shadow: unset;
    margin: 0 auto;
    padding: 0;
    width: 62.5rem;
  }
}
.search__by a, .search__by .is-current {
  color: #807f7d;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1;
  padding: 2.1875rem 0 1.03125rem;
  position: relative;
  text-align: center;
  width: 50%;
}
@media (min-width: 800px) {
  .search__by a, .search__by .is-current {
    font-size: 1rem;
    line-height: 1.75;
    padding: 2.5rem 1.25rem 0.875rem;
    width: auto;
  }
}
.search__by .is-current {
  color: #45433e;
}
.search__by .is-current::after {
  background: #45433e;
  border-radius: 9999px;
  bottom: -0.09375rem;
  content: "";
  height: 0.1875rem;
  left: 0;
  position: absolute;
  width: 100%;
}
@media (min-width: 800px) {
  .search__by .is-current::after {
    bottom: -0.125rem;
    height: 0.1875rem;
  }
}

.search__sort {
  margin: 0 auto 1rem;
  overflow-y: auto;
  padding: 1.75rem 0 .75rem;
  width: 21.875rem;
}
@media (min-width: 800px) {
  .search__sort {
    margin: 0 auto;
    padding: 1.75rem 0;
    width: 62.5rem;
  }
}
.search__sort::-webkit-scrollbar {
  height: .25rem;
}
@media (min-width: 800px) {
  .search__sort::-webkit-scrollbar {
    height: .375rem;
  }
}
.search__sort::-webkit-scrollbar-thumb {
  background-color: #d3d2cf;
  border-radius: .25rem;
  cursor: grab;
}
@media (min-width: 800px) {
  .search__sort::-webkit-scrollbar-thumb {
    border-radius: .375rem;
  }
}
.search__sort::-webkit-scrollbar-thumb:active {
  cursor: grabbing
}
.search__sort::-webkit-scrollbar-track {
  margin: 1.625rem 0
}
@media (min-width: 800px) {
  .search__sort::-webkit-scrollbar-track {
    margin: 1.875rem 0
  }
}

.search__sort dl {
  display: grid;
  gap: 0.9375rem;
  grid-template-columns: repeat(10, 1fr);
  margin: 0 auto;
  text-align: center;
}
@media (min-width: 800px) {
  .search__sort dl {
    width: 100%;
  }
}
.search__sort dl a {
  border: 1px solid #ccc;
  width: 5.5rem;
}
@media (min-width: 800px) {
  .search__sort dl a {
    width: auto;
  }
}

body:has(.modal[data-is-shown=true]) {
  overflow: hidden;
}
body:has(.modal[data-is-shown=true]) main {
  overflow: auto;
  scrollbar-gutter: stable;
}

.home__links--brands {
  display: flex;
  flex-wrap: wrap;
  gap: 1.875rem 1.25rem;
  margin: 1rem auto 3rem;
  width: 20rem;
}
@media (min-width: 800px) {
  .home__links--brands {
    gap: 1.875rem 1.25rem;
    margin: 1rem auto 3rem;
    width: 52rem;
  }
}
.home__links--brands li {
  border: 1px solid #d3d2cf;
  flex-basis: 9.375rem;
  height: 3.125rem;
  position: relative;
  margin-bottom: 1rem;
  text-align: center;
}
@media (min-width: 800px) {
  .home__links--brands li {
    flex-basis: 9.375rem;
    height: 3.125rem;
  }
}
.home__links--brands li:last-child {
  flex-basis: 9.375rem;
  flex-grow: 0;
}
.home__links--brands li[data-has-flag=true]::before {
  color: #c80421;
  content: attr(data-flag-txt);
  display: block;
  font-family: "InterMedium", "YuGothic", "遊ゴシック", sans-serif;
  font-size: 0.75rem;
  left: 0;
  position: absolute;
  top: -1.8em;
}
@media (min-width: 800px) {
  .home__links--brands li[data-has-flag=true]::before {
    font-size: 0.75rem;
  }
}
.home__links--brands li p {
  font-size: .7em;
  line-height: 1em;
}

.new-products__product-info {
  margin: 0 auto;
  padding: 1.5625rem 0 9.375rem;
  width: 21.875rem;
}
@media (min-width: 800px) {
  .new-products__product-info {
    padding: 2.5rem 0 12.5rem;
    width: 62.5rem;
  }
}

.product-card {
  background: #fff;
  border-radius: 0.625rem;
  box-shadow: 0 0 0.375rem rgba(0, 0, 0, 0.2);
  overflow: hidden;
  position: relative;
}
@media (min-width: 800px) {
  .product-card {
    border-radius: 0.625rem;
    box-shadow: 0 0 0.375rem rgba(0, 0, 0, 0.2);
    margin-top: 1.25rem;
  }
}
.product-card:not(:first-child) {
  margin-top: 1.5625rem;
}
@media (min-width: 800px) {
  .product-card:not(:first-child) {
    margin-top: 1.25rem;
  }
}

.product-card__header {
  align-items: center;
  background: #fff;
  display: flex;
  height: 3.4375rem;
  padding: .9375rem 1.25rem .8125rem;
}
@media (min-width: 800px) {
  .product-card__header {
    height: 3.75rem;
    padding: .3125rem 1.25rem .3125rem;
  }
}

.product-card__header p {
  line-height: 3em;
}

/* Backボタンのスタイル */
.back-btn {
	background-color: #eee;
	border: none;
	padding: 0.3rem;
	font-size: 1rem;
	color: #333;
	cursor: pointer;
	border-radius: 4px;
}
.back-btn:hover {
	background-color: #bbb;
}
@media (min-width: 800px) {
	.back-btn {
		display: none;
	}
}

.floating-btn {
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 0.1875rem rgba(0, 0, 0, 0.2);
    cursor: pointer;
    display: block;
    width: 3.6rem;
    overflow: hidden;
    position: fixed;
    bottom: 3.4rem;
    right: 0.3rem;
	z-index: 10;
}
.floating-btn a {
    align-items: center;
    display: flex;
    right: 1rem;
    height: 100%;
    justify-content: center;
    padding: 1.03125rem;
    width: 100%;
}
main:has(form[data-has-data=false]) .floating-btn {
	display: none;
}
@media (min-width: 800px) {
  .floating-btn {
    height: 5.625rem;
    width: 5.625rem;
    bottom: 6rem;
    right: 1.875rem;
  }
}

.floating-back {
  display: none;
}
@media (min-width: 800px) {
  .floating-back {
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 0.1875rem rgba(0, 0, 0, 0.2);
    cursor: pointer;
    display: block;
    overflow: hidden;
    position: fixed;
    top: 6rem;
    right: 1.875rem;
    height: 5.625rem;
    width: 5.625rem;
  }
  .floating-back a {
    align-items: center;
    display: flex;
    height: 100%;
    justify-content: center;
    padding: 0.8rem;
    width: 100%;
  }
}

.footer {
  bottom: 0;
  display: flex;
  height: 3rem;
  justify-content: center;
  left: 0;
  overflow: hidden;
  padding-top: 0.8rem;
  position: fixed;
  width: 100%;
  z-index: 5;
}
@media (min-width: 800px) {
  .footer {
    height: 3.75rem;
    padding-top: 1.25rem;
  }
}
.footer::before {
  background: #45433e;
  box-shadow: 0 0 0.375rem #000 inset;
  content: "";
  height: 120%;
  left: -10%;
  position: absolute;
  top: 0;
  width: 120%;
  z-index: -1;
}
@media (min-width: 800px) {
  .footer::before {
    box-shadow: 0 0 0.375rem #000 inset;
  }
}
.footer a {
  align-items: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  font-family: "InterMedium", "YuGothic", "遊ゴシック", sans-serif;
  font-size: 0.8rem;
}
@media (min-width: 800px) {
  .footer a {
    font-size: 0.75rem;
  }
}
.footer a::before {
  border: 0.0625rem solid transparent;
  border-left-color: #fff;
  border-top-color: #fff;
  content: "";
  height: 0.5rem;
  transform: rotate(45deg) translate(0, 12px);
  width: 0.5rem;
}
@media (min-width: 800px) {
  .footer a::before {
    border-width: 0.125rem;
    height: 0.375rem;
    width: 0.375rem;
	transform: rotate(45deg) translate(0, 0);
  }
}
.footer p{
	color: #FFFFFF;
	margin: 0;
	padding: 5px;
	display: block;
	position: absolute;
	top: 0;
	font-size: 0.6rem;
}
@media (min-width: 800px) {
  .footer p {
	right: 0;
	font-size: 0.7rem;
  }
}