@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+JP:wght@400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Hanken+Grotesk:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Marcellus&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Shippori+Mincho+B1&display=swap");
:root {
  --text-color: #191919;
  --wh: #fff;
  --bk: #191919;
  --gray: #f4f4f4;
  --green: #45b035;
  --border-color: #f2f2f2;
}

@media screen and (max-width: 834px) {
  .pc {
    display: none !important;
  }
}

@media screen and (min-width: 835px) {
  .sp {
    display: none !important;
  }
}

@media screen and (max-width: 1024px) {
  .pc-tb {
    display: none !important;
  }
}

@media screen and (min-width: 1025px) {
  .sp-tb {
    display: none !important;
  }
}

@media screen and (max-width: 640px) {
  .pc-sm {
    display: none !important;
  }
}

@media screen and (min-width: 641px) {
  .sp-sm {
    display: none !important;
  }
}

@media screen and (max-width: 499px) {
  .pc-xsl {
    display: none !important;
  }
}

@media screen and (min-width:500px) {
  .sp-xsl {
    display: none !important;
  }
}

@media screen and (max-width: 376px) {
  .pc-xs {
    display: none !important;
  }
}

@media screen and (min-width: 377px) {
  .sp-xs {
    display: none !important;
  }
}

.search-area {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 5vw, 5rem) 0;
}
.search-area dt {
  width: 100%;
  max-width: 24rem;
}
.search-area dt:not(:first-child) {
  margin-top: 5rem;
}
.search-area dd {
  width: calc(100% - 24rem);
}
@media screen and (max-width: 1680px) {
  .search-area dd {
    width: 100%;
    max-width: 100%;
  }
}
.search-area .note {
  color: #191919;
  display: flex;
  gap: 2rem;
}
@media screen and (max-width: 834px) {
  .search-area .note {
    margin-top: 1rem;
  }
}
.search-area .note::before {
  content: "";
  display: inline-block;
  width: 3px;
  height: auto;
  background-color: var(--green);
  margin-left: 4rem;
}
@media screen and (max-width: 1500px) {
  .search-area .note::before {
    margin-left: 0;
  }
}
@media screen and (max-width: 834px) {
  .search-area .note::before {
    margin-left: 0;
  }
}
.search-area .form-label {
  color: #5d60b0;
  width: 100%;
  max-width: 24rem;
  margin-top: 2rem;
  white-space: nowrap;
  display: flex;
  font-size: 1.7rem;
}
@media screen and (max-width: 1500px) {
  .search-area .form-label {
    flex-direction: column;
    gap: 1rem;
  }
}
@media screen and (max-width: 834px) {
  .search-area .form-label {
    margin-top: 0;
    flex-direction: column;
  }
}
@media screen and (max-width: 640px) {
  .search-area .form-label {
    font-size: 1.5rem;
  }
}
.search-area .list {
  gap: 3rem 0;
  display: grid;
  grid-template-columns: repeat(7, minmax(14rem, 1fr));
}
@media screen and (max-width: 1500px) {
  .search-area .list {
    gap: 3rem 1rem;
  }
}
@media screen and (max-width: 1300px) {
  .search-area .list {
    grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
  }
}
@media screen and (max-width: 1200px) {
  .search-area .list {
    grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
  }
}
@media screen and (max-width: 834px) {
  .search-area .list {
    grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
  }
}
@media screen and (max-width: 640px) {
  .search-area .list {
    grid-template-columns: repeat(auto-fit, minmax(11rem, 1fr));
  }
}
.search-area .list-item {
  position: relative;
}
.search-area .list label {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  padding-bottom: 2rem;
  font-size: 1.7rem;
  white-space: nowrap;
}
@media screen and (max-width: 640px) {
  .search-area .list label {
    font-size: 1.5rem;
  }
}
.search-area .list input {
  /* 基本リセット */
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  /* 円にする（aspect-ratio ではなく explicit height を使用） */
  width: 14rem;
  height: 14rem;
  /* ← スペース必須 */
  border-radius: 50%;
  position: relative;
  background-color: #f9f9fa;
}
@media screen and (max-width: 1200px) {
  .search-area .list input {
    width: 13rem;
    height: 13rem;
  }
}
@media screen and (max-width: 834px) {
  .search-area .list input {
    width: 12rem;
    height: 12rem;
  }
}
@media screen and (max-width: 640px) {
  .search-area .list input {
    width: 11rem;
    height: 11rem;
  }
}
.search-area .list input:checked {
  background-color: var(--wh);
  border: 1px solid rgba(155, 105, 212, 0.1);
  box-shadow: 0 0 20px rgba(155, 105, 212, 0.15);
}
.search-area .list input:checked + svg {
  color: #9b69d4;
}
.search-area .list input:checked ~ span {
  color: #9b69d4;
}
.search-area .list svg,
.search-area .list img {
  max-width: 85px;
  max-height: 90px;
  -o-object-fit: contain;
     object-fit: contain;
  position: absolute;
  color: #ddd;
}
@media screen and (max-width: 834px) {
  .search-area .list svg,
  .search-area .list img {
    max-width: 68px;
    max-height: 72px;
  }
}
.search-area .list span {
  position: absolute;
  bottom: -1.5rem;
  color: #191919;
  font-weight: 600;
  text-align: center;
}/*# sourceMappingURL=search-byarea-beauty.css.map */