@charset "UTF-8";
/* Universal box-sizing reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
}

/* Set default styles for html */
html {
  box-sizing: border-box;
  font-size: 100%;
}

/* Reset margin for common block-level elements */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
  font-weight: normal;
}

/* Remove list styles on ul, ol elements with a list role */
ul[role="list"],
ol[role="list"] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  font-family: sans-serif; /* Set a base font family */
}

/* Reset default link styles */
a {
  text-decoration: none; /* Remove underlines from all links */
  color: inherit; /* Make sure the link color inherits the surrounding text color */
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Reset styles for form elements */
input,
button,
textarea,
select {
  font: inherit;
  border: none; /* Remove borders on form elements */
  background: transparent; /* Make background transparent */
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* Remove animations and transitions for users with reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
:root {
  --notosans: "Noto Sans jP", sans-serif;
  --zengothic: "Zen Kaku Gothic New", sans-serif;
  --bizgothic: "BIZ UDGothic", sans-serif;
  --notoserif: "Noto Serif JP", serif;
  --zenold: "Zen Old Mincho", serif;
  --sawarabi: "Sawarabi Mincho", serif;
  --sippori: "Shippori Mincho", serif;
  --kiwi: "Kiwi Maru", "Zen Maru Gothic", "Kosugi Maru", serif;
  --zenmaru: "Zen Maru Gothic", serif;
  --kosugimaru: "Kosugi Maru", serif;
  --sree: "Sree Krushnadevaraya", serif;
  --zenantique: "Zen Antique", serif;
  --base: #333333;
  --main: #4c2808;
  --or: #f0731f;
  --gray: #ababab;
}

* {
  margin: 0;
  padding: 0;
  zoom: 1;
}

*,
*:before,
*:after {
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: none;
  scroll-behavior: smooth;
}

body {
  word-break: auto-phrase;
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  font-size: 0.875rem;
  line-height: 1.8;
  letter-spacing: 0.1em;
  color: var(--base);
  font-family: var(--notosans);
}
@media (min-width: 576px) {
  body {
    font-size: 1rem;
  }
}

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

img {
  -ms-interpolation-mode: bicubic;
  vertical-align: bottom;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

i,
strong {
  font-style: normal;
}

a {
  text-decoration: none;
  outline: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
a:hover {
  transition: all 0.3s ease;
}

button {
  color: var(--base);
}

li {
  list-style-type: none;
}

.clear {
  clear: both;
}

.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="submit"],
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

hr {
  margin: 0;
  color: transparent;
  border: none;
  opacity: 1;
}

.fadeIn {
  opacity: 0;
  transition: 1s;
}

.fadeIn.is-show {
  opacity: 1;
}

.js__upSider > li {
  transform: translateY(100%);
}

.fadeUp {
  -webkit-animation-name: fadeUpAnime;
  animation-name: fadeUpAnime;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  transition: all 0.1s ease-in-out !important;
}
@-webkit-keyframes fadeUpAnime {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fadeUpAnime {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.blur_event {
  opacity: 0;
  filter: blur(40px);
}

.js_blur {
  opacity: 1 !important;
  filter: blur(0) !important;
  transition: all 1s ease-in-out !important;
}

.slide_appear {
  overflow: hidden;
  position: relative;
}
.slide_appear::before {
  content: "";
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: #f1f0ec;
  transform: translateX(0);
}

.js_slide_appear::before {
  -webkit-animation-name: bgLRextendAnime;
  animation-name: bgLRextendAnime;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-timing-function: cubic-bezier(1, 0, 0, 1);
  animation-timing-function: cubic-bezier(1, 0, 0, 1);
}

@-webkit-keyframes bgLRextendAnime {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(105%);
  }
}

@keyframes bgLRextendAnime {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(105%);
  }
}
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  transition: all 0.3s ease;
  background-color: transparent;
  background-color: white;
}
.l-header__inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 10px 20px;
  gap: 15px;
}
@media (min-width: 576px) {
  .l-header__inner {
    padding: 15px 10px;
    align-items: normal;
  }
}
@media (min-width: 768px) {
  .l-header__inner {
    flex-direction: row;
    padding: 15px 25px;
    gap: 10px;
    align-items: center;
  }
}
.l-header__logo {
  font-size: 0.625rem;
  width: 100%;
  flex: 1;
  max-width: 50px;
}
@media (min-width: 576px) {
  .l-header__logo {
    max-width: 350px;
    text-align: left;
    margin: 0;
  }
}
.l-header__logo .pc-logo {
  display: none;
}
@media (min-width: 576px) {
  .l-header__logo .pc-logo {
    display: block;
  }
}
.l-header__logo .sp-logo {
  display: block;
}
@media (min-width: 576px) {
  .l-header__logo .sp-logo {
    display: none;
  }
}
.l-header__logo img {
  max-width: 240px;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}
@media (min-width: 768px) {
  .l-header__logo img {
    max-width: 305px;
  }
}
.l-header__right {
  flex: 1;
  position: fixed;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: stretch;
  width: 100%;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s 0.25s;
  background-color: white;
  padding-block: 10px;
  padding-inline: clamp(20px, 7vw, 50px);
  gap: 15px;
  align-items: center;
}
@media (min-width: 576px) {
  .l-header__right {
    padding-inline: clamp(20px, 11vw, 80px);
  }
}
@media (min-width: 768px) {
  .l-header__right {
    background-color: transparent;
    margin-left: auto;
    position: static;
    gap: 10px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    justify-content: flex-end;
    padding-inline: 0;
    padding-left: 20px;
  }
}
@media (max-width: 767px) {
  .l-header__right.is-hidden-on-footer {
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s 0.25s;
  }
}
.l-header__search__text {
  /* Chrome / Safari / Edge の search 型 */
  /* 念のため text 型も */
}
.l-header__search__text > form {
  border-bottom: solid 1px var(--main);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px;
  margin-inline: auto;
  width: 100%;
  gap: 8px;
  font-size: 1rem;
}
@media (min-width: 576px) {
  .l-header__search__text > form {
    min-width: 168px;
    margin-inline: 0;
  }
}
@media (min-width: 992px) {
  .l-header__search__text > form {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.l-header__search__text input {
  flex: 1;
  width: 100%;
}
.l-header__search__text input:focus {
  outline: 0;
  border: none;
  background-color: transparent;
}
.l-header__search__text input:-internal-autofill-selected {
  background-color: transparent !important;
}
.l-header__search__text input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
}
.l-header__search__text input[type="text"]::-webkit-clear-button {
  -webkit-appearance: none;
  appearance: none;
}
.l-header__search__text .btn-search {
  min-width: 11px;
  width: 11px;
}
.l-header__search__text {
  width: 50%;
}
@media (min-width: 768px) {
  .l-header__search__text {
    width: auto;
  }
}
.l-header-category,
.l-header-fav,
.l-header-user {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 67px;
}
.l-header-category button,
.l-header-category a,
.l-header-fav button,
.l-header-fav a,
.l-header-user button,
.l-header-user a {
  width: 100%;
  font-size: 12px;
}
.l-header-category {
  margin-left: auto;
}
@media (min-width: 768px) {
  .l-header-category {
    margin-left: 0;
  }
}
.l-header-category .btn-category {
  color: var(--main);
  font-weight: 400;
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
}
@media (min-width: 768px) {
  .l-header-category .btn-category {
    border-radius: 999px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.l-header-fav .c-favlink {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.l-header-fav .c-favlink__text {
  color: var(--main);
}
.l-header .icon {
  max-width: 30px;
  min-width: 30px;
  width: 30px;
  height: 30px;
}

.info-pop {
  width: 34px;
  position: fixed;
  z-index: 999;
  right: 3%;
  bottom: 100px;
}
@media (min-width: 768px) {
  .info-pop {
    bottom: 50px;
  }
}
.info-pop > a {
  display: block;
}

.l-header-user {
  position: relative;
  margin-left: auto;
  /* ▼ トリガーボタン */
  /* ▼ ドロップダウンメニュー（初期は閉） */
  /* ▼ ボタンの矢印 */
  /* ▼ 開いた状態（親に .is-open を付与） */
  /* ユーザーが低減を希望する場合はトランジション短縮/無効（任意） */
}
@media (min-width: 768px) {
  .l-header-user {
    margin-left: 0;
  }
}
.l-header-user .btn-signin {
  display: flex !important;
  align-items: center;
  flex-direction: column;
  color: var(--main);
}
.l-header-user__user__btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: none;
  border: 0;
  cursor: pointer;
}
.l-header-user__user__btn__icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  -o-object-fit: cover;
  object-fit: cover;
}
.l-header-user__user__btn__name {
  display: inline-block;
  max-width: 12ch;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  vertical-align: bottom;
}
.l-header-user__user__menu {
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 120px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  padding: 4px 0;
  z-index: 1000;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease,
    visibility 0s linear 0.22s;
}
@media (min-width: 768px) {
  .l-header-user__user__menu {
    min-width: 150px;
  }
}
.l-header-user__user__menu__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.l-header-user__user__menu__list__item__btn {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 10px 14px;
  text-decoration: none;
  color: inherit;
  background: none;
  border: 0;
  gap: 10px;
}
.l-header-user__user__menu__list__item__btn:hover {
  background: #f6f6f6;
}
.l-header-user__user__menu__list__item__btn > svg {
  width: 18px;
}
.l-header-user__user__btn__arrow {
  transition: transform 0.15s ease;
}
.l-header-user__user.is-open .l-header-user__user__menu.is-show {
  opacity: 1;
  transform: translateY(10px);
  pointer-events: auto;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0s;
}
.l-header-user__user.is-open .l-header-user__user__btn__arrow {
  transform: rotate(180deg);
}
@media (prefers-reduced-motion: reduce) {
  .l-header-user__user__menu {
    transition: none;
  }
  .l-header-user.is-open .l-header-user__user__menu {
    transition: none;
  }
  .l-header-user__user__btn__arrow {
    transition: none;
  }
}

/* ツールチップ */
.c-tooltip {
  position: relative;
}
.c-tooltip__tip {
  position: absolute;
  bottom: 110%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  font-size: 0.75rem;
  padding: 4px 8px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
}
.c-tooltip__tip.is-success {
  background: #4caf50;
}
.c-tooltip__tip.is-error {
  background: #e53935;
}
.c-tooltip:hover .c-tooltip__tip {
  opacity: 1;
  transform: translate(-50%, -4px);
}

/* モーダル */
.c-authmodal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.c-authmodal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.c-authmodal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.c-authmodal__panel {
  position: relative;
  z-index: 1;
  width: min(420px, 92vw);
  border-radius: 14px;
  background: #fff;
  padding-block: 45px 20px;
  padding-inline: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
  transform: translateY(8px);
  transition: transform 0.2s ease;
}

.c-authmodal.is-open .c-authmodal__panel {
  transform: translateY(0);
}

.c-authmodal__title {
  margin: 0 0 14px;
  font-size: 18px;
  font-weight: 700;
}

.c-authmodal__buttons {
  display: grid;
  gap: 10px;
}

.c-authbtn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 10px;
  text-decoration: none;
  padding: 12px 14px;
  border: 1px solid #ddd;
  color: #111;
}

.c-authbtn:hover {
  background: #fafafa;
}

.c-authbtn--google {
  border-color: #dadce0;
}

.c-authbtn--email {
  border-color: #dadce0;
}

.c-authmodal__close {
  position: absolute;
  top: 8px;
  right: 10px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 0;
  background: #f2f2f2;
  cursor: pointer;
}

.l-footer {
  background-color: var(--main);
  color: white;
  padding: 25px 0 15px;
}
.l-footer__inner {
  max-width: 840px;
  margin: 0 auto;
  padding: 0 20px;
}
.l-footer__nav {
  max-width: 600px;
  margin: 0 auto 20px;
}
.l-footer__nav ul {
  display: flex;
  flex-wrap: wrap;
  row-gap: 10px;
}
@media (min-width: 992px) {
  .l-footer__nav ul {
    row-gap: 0;
  }
}
.l-footer__nav ul li {
  border-left: solid 1px white;
  border-right: solid 1px white;
  width: 50%;
}
@media (min-width: 768px) {
  .l-footer__nav ul li {
    border-left: none;
    width: 25%;
  }
}
.l-footer__nav ul li:first-child {
  border-left: solid 1px white;
}
.l-footer__nav ul li:nth-child(even) {
  margin-left: -1px;
}
@media (min-width: 768px) {
  .l-footer__nav ul li:nth-child(even) {
    margin-left: 0;
  }
}
.l-footer__nav ul li > a {
  display: block;
  text-align: center;
  font-size: 0.75rem;
}
@media (max-width: 400px) {
  .l-footer__nav ul li > a {
    font-size: 0.625rem;
  }
}
.l-footer__copy {
  text-align: center;
  display: block;
  font-size: 0.625rem;
}

.inner_full {
  margin: 0 calc(50% - 50vw);
}

.left__full {
  margin-left: calc(50% - 50vw);
}

.right__full {
  margin-right: calc(50% - 50vw);
}

.pc_only {
  display: block;
}
@media (max-width: 640px) {
  .pc_only {
    display: none;
  }
}

.sp_only {
  display: none;
}
@media (max-width: 640px) {
  .sp_only {
    display: block;
  }
}

.c-btn {
  transition: all 0.5s linear;
  display: inline-block;
  position: relative;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  line-height: 1;
  vertical-align: middle;
  white-space: nowrap;
  padding: 1em 2em;
}
.c-btn:hover {
  text-decoration: none;
}

.c-btn--block {
  display: block;
}

.c-btn_container {
  text-align: center;
}

.js-tab_panel {
  display: none;
  opacity: 0;
}

.js-tab_panel.is-show {
  display: block;
  -webkit-animation: panel-show 0.6s ease forwards;
  animation: panel-show 0.6s ease forwards;
}

@-webkit-keyframes panel-show {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes panel-show {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* SNSボタン全体 */
.p-gallery-ui-head__sns {
  display: flex;
  gap: 0.75rem;
  list-style: none;
  padding: 0;
  justify-content: center;
  margin-bottom: 20px;
  margin-inline: auto;
}
@media (min-width: 992px) {
  .p-gallery-ui-head__sns {
    justify-content: start;
    margin-inline: auto;
  }
}
.p-gallery-ui-head__sns__item {
  position: relative;
}

/* 丸いアイコンボタン */
.c-btn-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: #fff;
  color: #222;
  cursor: pointer;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
  transition: background 0.2s, transform 0.15s;
}
.c-btn-circle:hover {
  background: #f2f2f2;
  transform: translateY(-1px);
}
.c-btn-circle svg {
  width: 20px;
  height: 20px;
}

/* パンくず */
.c-breadcrumbs {
  font-size: 0.875rem;
  margin-block: 50px 0;
}
.c-breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35em 0.5em;
  list-style: none;
  margin: 0;
  padding: 0;
}
.c-breadcrumbs li {
  display: flex;
  align-items: center;
}
.c-breadcrumbs li:not(:last-child)::after {
  content: "/";
  opacity: 0.5;
  margin-left: 0.5em;
}
.c-breadcrumbs li > span {
  font-weight: bold;
}
.c-breadcrumbs a {
  color: var(--main);
  font-weight: 500;
}
.c-breadcrumbs a:hover {
  opacity: 0.5;
}

/* モーダルのベース（画面全体のオーバーレイ） */
.c-modal {
  position: fixed;
  inset: 0;
  place-items: center;
  background-color: rgb(247, 246, 244);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.28s ease, transform 0.28s ease;
  z-index: 1000;
  padding: 70px 0;
}
.c-modal__body {
  max-height: min(75vh, 860px);
  overflow: auto;
  padding-right: 15px;
}
@media (max-height: 650px) {
  .c-modal__body {
    max-height: min(65vh, 860px);
  }
}
.c-modal__body::-webkit-scrollbar {
  width: 10px;
}
.c-modal__body::-webkit-scrollbar-track {
  background-color: transparent;
}
.c-modal__body::-webkit-scrollbar-thumb {
  background-color: var(--main);
  border-radius: 8px;
}
.c-modal.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.c-modal.is-closing {
  opacity: 0;
  transform: translateY(10px);
  /* NOTE: keep capturing taps/clicks during the closing transition
     to avoid “click-through” on iOS Safari */
  pointer-events: auto;
}
.c-modal__title {
  padding-bottom: 25px;
  border-bottom: solid 0.5px var(--gray);
  font-weight: 500;
  font-size: 1.125rem;
  margin-right: 25px;
}
@media (min-width: 576px) {
  .c-modal__title {
    font-size: 1.2rem;
  }
}
@media (min-width: 768px) {
  .c-modal__title {
    font-size: 1.5rem;
  }
}
.c-modal__close {
  position: absolute;
  line-height: 1;
  opacity: 0.9;
  color: var(--main);
  top: 20px;
  right: 20px;
  font-size: 2.1875rem;
}
@media (min-width: 768px) {
  .c-modal__close {
    top: 30px;
    right: 30px;
  }
}
.c-modal__close:hover {
  opacity: 1;
}

/* スクロール禁止（開いている間、JSが <html> に付ける） */
html.is-filter-open {
  overflow: hidden;
}

.c-filter-group {
  padding: 30px 0;
  border-bottom: solid 0.5px var(--gray);
}
@media (min-width: 768px) {
  .c-filter-group {
    padding: 50px 0;
  }
}
.c-filter-group__title {
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 1rem;
}
@media (min-width: 576px) {
  .c-filter-group__title {
    font-size: 1.25rem;
  }
}
.c-filter-group__items {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
@media (max-width: 400px) {
  .c-filter-group__items {
    display: flex;
    flex-direction: column;
  }
}

.c-filter-item {
  cursor: pointer;
  font-size: clamp(0.688rem, 0.627rem + 0.26vw, 0.875rem);
  display: inline-block;
  border-radius: 99px;
  font-weight: 600;
  box-shadow: -2px -2px 4px #fff, 2px 2px 4px rgba(0, 0, 0, 0.24);
  transition: box-shadow 0.2s;
}
.c-filter-item:hover {
  transition: box-shadow 0.2s;
  box-shadow: 0px 0px 2px #fff, 0px 0px 2px rgba(0, 0, 0, 0.24);
}
.c-filter-item__label {
  display: block;
  padding-inline: 12px;
  padding-block: 7px;
}

.c-filter-bar {
  position: fixed;
  z-index: 9999;
  width: 100%;
  bottom: 0;
  left: 0;
  background-color: var(--main);
  color: white;
  display: none;
}
.c-filter-bar__wrap {
  max-width: 1120px;
  padding: 20px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media (min-width: 768px) {
  .c-filter-bar__wrap {
    gap: 25px;
    flex-direction: row;
    justify-content: space-between;
  }
}
.c-filter-bar__count {
  background-color: white;
  color: var(--main);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: bold;
  border-radius: 6px;
}
@media (min-width: 576px) {
  .c-filter-bar__count {
    font-size: 1rem;
  }
}
@media (min-width: 768px) {
  .c-filter-bar__count {
    font-size: 1.25rem;
    width: 45%;
  }
}
@media (orientation: landscape) and (max-width: 900px), (max-height: 700px) {
  .c-filter-bar__count {
    font-size: 0.875rem;
  }
}
.c-filter-bar__count strong {
  font-size: 1.875rem;
  line-height: 1;
  margin-top: -6px;
  padding: 10px 0;
  font-weight: 500;
}
@media (min-width: 576px) {
  .c-filter-bar__count strong {
    font-size: 2.25rem;
    margin-top: -8px;
    padding: 16px 0;
  }
}
@media (min-width: 768px) {
  .c-filter-bar__count strong {
    font-size: 2.8125rem;
    margin-top: -10px;
  }
}
.c-filter-bar__actions {
  display: flex;
  gap: 10px;
  flex: 1;
}
@media (min-width: 576px) {
  .c-filter-bar__actions {
    gap: 18px;
  }
}
@media (min-width: 768px) {
  .c-filter-bar__actions {
    gap: 25px;
  }
}
.c-filter-bar__actions > .c-btn {
  position: relative;
  width: calc(50% - 5px);
  border: solid 2px white;
  border-radius: 9999px;
  color: white;
  font-size: 1rem;
  font-weight: 400;
}
@media (min-width: 576px) {
  .c-filter-bar__actions > .c-btn {
    font-size: 1.125rem;
    width: calc(50% - 9px);
  }
}
@media (min-width: 768px) {
  .c-filter-bar__actions > .c-btn {
    font-size: 1.25rem;
    width: calc(50% - 12.5px);
  }
}
.c-filter-bar__actions > .c-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  display: block;
  width: 18px;
  height: 18px;
}
@media (min-width: 576px) {
  .c-filter-bar__actions > .c-btn::after {
    right: 25px;
    width: 25px;
    height: 25px;
  }
}
.c-filter-bar__actions > .c-btn--primary {
  background-color: var(--or);
  position: relative;
}
.c-filter-bar__actions > .c-btn--primary::after {
  background: url(../images/common/arrow.svg) center/contain no-repeat;
}
.c-filter-bar__actions > .c-btn--primary:hover {
  background-color: #ed9255;
}
.c-filter-bar__actions > .c-btn--ghost {
  background-color: var(--gray);
}
.c-filter-bar__actions > .c-btn--ghost::after {
  background: url(../images/common/reset.svg) center/contain no-repeat;
}
.c-filter-bar__actions > .c-btn--ghost:hover {
  background-color: #cecece;
}

.c-colorchip {
  display: inline-block;
  inline-size: 1em;
  block-size: 1em;
  margin-right: 0.5rem;
  border-radius: 9999px;
  background: var(--chip, #eee); /* 値が無いときは薄グレー */
  vertical-align: -0.1em;
}

.c-colorchip--gradient {
  background: conic-gradient(#f66, #ff0, #6f6, #6cf, #96f, #f66);
  border: 1px solid #333333;
}

/* 0件時に出す注意メッセージ */
.filter-zero-msg {
  margin-top: 8px;
  font-size: 0.875rem;
  color: #c00;
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  text-align: center;
  white-space: pre-line;
  width: 100%;
  line-height: 1.5;
}

/* “押せなさそう”な見た目だけ付ける（クリックは検出したいので pointer-events は切らない） */
button.is-disabled,
input[type="submit"].is-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.c-filter-selected-wrap {
  margin-top: 20px;
  margin-bottom: 20px;
}
.c-filter-chip {
  display: flex;
  align-items: center;
  border: solid 0.5px var(--base);
  border-radius: 999px;
  padding: 4px 10px;
  gap: 5px;
}
.c-filter-chip > span {
  font-size: 0.875rem;
  font-weight: 400;
}
.c-filter-chip > button {
  font-size: 0.9375rem;
}
.c-filter-selected {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
