.category-head {
  position: relative;
  margin-top: -7px;
}
.category-head:has(.category-head__img) {
  padding-right: 200px;
}
.category-head__name {
  position: relative;
  font-family: "DM Sans", "Noto Sans JP", sans-serif;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.5;
  padding-left: 30px;
}
.category-head__name::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 40px;
  background: #009de0;
  border-radius: 3px;
  transform: translateY(-48%);
}
.category-head__desc {
  font-size: 18px;
  letter-spacing: 0.06em;
  line-height: 1.8888888889;
  margin-top: 21px;
}
.category-head__img {
  position: absolute;
  right: -4px;
  top: -6px;
  display: block;
  width: 180px;
  height: 180px;
  -o-object-position: right top;
     object-position: right top;
  -o-object-fit: contain;
     object-fit: contain;
}

.pickup {
  position: relative;
  background: #f5f5f5;
  margin-top: 34px;
  padding: 0 40px 40px;
}
.pickup__catch {
  position: absolute;
  top: 0;
  left: 50%;
  margin: auto;
  display: block;
  width: -moz-max-content;
  width: max-content;
  background: #fff000;
  border-radius: 50px;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.5;
  padding: 7px 30px;
  transform: translate(-50%, -50%);
}
.pickup__catch::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% - 1px);
  margin: auto;
  display: block;
  width: 0;
  height: 0;
  border-top: solid 10px #fff000;
  border-left: solid 10px transparent;
  border-right: solid 10px transparent;
}
.pickup__catch b {
  color: #e60012;
}
.pickup__catch .num {
  position: relative;
  display: inline-block;
  font-family: "DM Sans", sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 1;
}
.pickup__catch .num::before {
  content: "";
  position: absolute;
  left: -10px;
  top: -10px;
  display: block;
  width: 14px;
  height: 15px;
  background: url(../img/common/accent.png) center/contain no-repeat;
}
.pickup__head {
  position: relative;
  padding: 47px 160px 42px 4px;
}
.pickup__head::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 30px;
  display: block;
  width: 125px;
  height: 185px;
  background: url(../img/category/model.png) bottom/contain no-repeat;
}
.pickup__ttl {
  color: #004490;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.5;
}
.pickup__ttl b {
  position: relative;
  display: inline-block;
}
.pickup__ttl b::before {
  content: "";
  position: absolute;
  top: -0.05em;
  left: 0;
  display: block;
  width: 100%;
  height: 0.16em;
  background: radial-gradient(circle at center, #004490 0.08em, transparent 0.08em) left/1.04em 100% repeat-x;
}
.pickup__desc {
  font-size: 18px;
  letter-spacing: 0.06em;
  margin-top: 10px;
}
.pickup__desc b {
  color: #e60012;
}
.pickup__desc .num {
  font-family: "DM Sans", sans-serif;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1;
}
.pickup__list {
  counter-reset: pickup;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.pickup-item {
  counter-increment: pickup;
  position: relative;
  display: flex;
  gap: 30px;
  background: #fff;
  border: solid 4px transparent;
  border-radius: 10px;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.06);
  padding: 26px 26px 56px;
  transition: 0.2s;
}
.pickup-item::before {
  content: counter(pickup, decimal-leading-zero);
  position: absolute;
  left: -24px;
  top: -29px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 77px;
  height: 73px;
  background: url(../img/common/star.svg) center/contain no-repeat;
  color: #004490;
  font-family: "DM Sans", sans-serif;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1;
  padding: 12px 0 0;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.1));
}
.pickup-item:hover {
  border-color: #004490;
}
.pickup-item__img {
  flex: 0 0 240px;
}
.pickup-item__img img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  -o-object-fit: contain;
     object-fit: contain;
}
.pickup-item__txt {
  flex: 1;
  min-width: 0;
}
.pickup-item__catch {
  display: flex;
  align-items: center;
  width: -moz-max-content;
  width: max-content;
  height: 40px;
  background: #fff000;
  color: #004490;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.5;
  margin-bottom: 15px;
  padding: 0 14px;
}
.pickup-item__catch img {
  display: block;
  margin-right: 8px;
}
.pickup-item__name {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.8;
  margin-bottom: 14px;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 8px;
}
.pickup-item__reason {
  position: relative;
  background: #f7f7f7;
  border-radius: 5px;
  margin-top: 43px;
  padding: 21px 30px 22px;
}
.pickup-item__reason-ttl {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -65%);
  width: -moz-max-content;
  width: max-content;
}
.pickup-item__reason-ttl img {
  display: block;
  width: 218px;
  height: auto;
}
.pickup-item__reason-txt {
  letter-spacing: 0.04em;
}
.pickup-item__more {
  position: absolute;
  right: -4px;
  bottom: -4px;
  display: flex;
  align-items: center;
  width: 130px;
  height: 40px;
  background-color: #004490;
  border-radius: 10px 0;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0 20px;
}
.pickup-item__more::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 16px;
  margin: auto;
  display: block;
  width: 16px;
  height: 16px;
  background: url(../img/common/circle-arrow_w.svg) center/contain no-repeat;
}

.by-use {
  position: relative;
  background: #f5f5f5;
  margin-top: 80px;
  padding: 53px 40px 40px;
}
.by-use::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  display: block;
  width: 86px;
  height: auto;
  aspect-ratio: 86/112;
  background: url(../img/common/staff-illust.png) center/contain no-repeat;
  transform: translate(-50%, -60%);
}
.by-use__ttl {
  color: #004490;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.5;
  text-align: center;
}
.by-use__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 20px;
  margin-top: 53px;
}

.by-use-item {
  position: relative;
  background: #fff;
  border: solid 4px transparent;
  border-radius: 10px;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.06);
  padding: 33px 0 25px;
  transition: 0.2s;
}
.by-use-item:hover {
  border-color: #004490;
}
.by-use-item__catch {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -63%);
  display: flex;
  align-items: center;
  width: -moz-max-content;
  width: max-content;
  height: 40px;
  background: #fff000;
  border-radius: 40px;
  color: #004490;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.5;
  padding: 0 20px;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.1));
}
.by-use-item__catch::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% - 1px);
  margin: auto;
  display: block;
  width: 0;
  height: 0;
  border-top: solid 10px #fff000;
  border-left: solid 10px transparent;
  border-right: solid 10px transparent;
}
.by-use-item__desc {
  color: #004490;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.6666666667;
  margin-bottom: 18px;
  text-align: center;
}
.by-use-item__img {
  width: 100%;
  max-width: 200px;
  margin: 0 auto 17px;
}
.by-use-item__img img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  -o-object-fit: contain;
     object-fit: contain;
}
.by-use-item__name {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.8;
  margin-bottom: 10px;
  text-align: center;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 8px;
}
.by-use-item .c-price {
  text-align: center;
}
.by-use-item__more {
  position: relative;
  display: flex;
  align-items: center;
  width: 150px;
  height: 40px;
  background-color: #004490;
  border-radius: 5px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin: 20px auto 0;
  padding: 0 30px;
}
.by-use-item__more::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 26px;
  margin: auto;
  display: block;
  width: 16px;
  height: 16px;
  background: url(../img/common/circle-arrow_w.svg) center/contain no-repeat;
}

.buying-guide {
  margin-top: 80px;
  padding-bottom: 30px;
}
.buying-guide__ttl {
  position: relative;
  border-bottom: solid 3px #004490;
  color: #004490;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.5;
  padding: 0 0 19px;
  text-align: center;
}
.buying-guide__ttl b {
  position: relative;
  display: inline-block;
}
.buying-guide__ttl b::before {
  content: "";
  position: absolute;
  top: -0.05em;
  left: 0;
  display: block;
  width: 100%;
  height: 0.16em;
  background: radial-gradient(circle at center, #004490 0.08em, transparent 0.08em) left/1.04em 100% repeat-x;
}
.buying-guide__ttl::before {
  content: "";
  position: absolute;
  top: -20px;
  right: calc(50% + 211px);
  display: block;
  width: 93px;
  height: auto;
  aspect-ratio: 93/112;
  background: url(../img/common/kujira03.png) center/contain no-repeat;
}

.buying-guide-sec {
  position: relative;
  background: #e5f8ff url(../img/category/guide-bg.png) center top/100% auto no-repeat;
  background-blend-mode: hard-light;
  padding: 76px 40px 60px;
}
.buying-guide-sec + .buying-guide-sec {
  margin-top: 80px;
}
.buying-guide-sec__ttl {
  position: relative;
  color: #004490;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.5;
  text-align: center;
}
.buying-guide-sec__ttl::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -46px;
  transform: translateX(-50%);
  display: block;
  width: 4px;
  height: 30px;
  background: #009de0;
  border-radius: 2px;
}
.buying-guide-sec__desc {
  font-size: 18px;
  letter-spacing: 0.06em;
  line-height: 1.7777777778;
  margin-top: 18px;
}
.buying-guide-sec__spec-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 20px;
  margin-top: 54px;
}
.buying-guide-sec__link {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  transform: translateY(50%);
  display: flex;
  justify-content: center;
}

.buying-guide-spec-item {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.06);
  padding: 18px 20px 22px;
}
.buying-guide-spec-item__ttl {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: -moz-max-content;
  width: max-content;
  height: 40px;
  background: #fff000;
  color: #004490;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.5;
  padding: 0 20px;
}
.buying-guide-spec-item__val {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 90px;
  padding: 16px 0;
}
.buying-guide-spec-item__val1 {
  display: block;
  color: #004490;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.5;
  text-align: center;
}
.buying-guide-spec-item__val2 {
  display: block;
  letter-spacing: 0.06m;
  line-height: 1.5;
  text-align: center;
}
.buying-guide-spec-item__desc {
  background: #f7f7f7;
  border-radius: 5px;
  font-size: 14px;
  letter-spacing: 0.06em;
  line-height: 1.7142857143;
  padding: 15px 20px 17px;
}

.guide-bnr {
  margin-top: 40px;
}
.guide-bnr__catch {
  display: flex;
  justify-content: center;
  gap: 28px;
  font-size: 24px;
  letter-spacing: 0.06em;
  line-height: 1.5;
  margin-bottom: 10px;
  text-align: center;
}
.guide-bnr__catch::before, .guide-bnr__catch::after {
  content: "";
  display: block;
  width: 1px;
  height: 50px;
  background: #111;
}
.guide-bnr__catch::before {
  transform: rotate(-30deg);
}
.guide-bnr__catch::after {
  transform: rotate(30deg);
}
.guide-bnr a {
  transition: opacity 0.2s ease;
}
.guide-bnr a:hover {
  opacity: 0.75;
}

.category-faq {
  margin-top: 43px;
}
.category-faq .c-faq-item {
  background: #f7f7f7;
}

.category-contact {
  margin-top: 50px;
}

.category-search {
  margin-top: 43px;
}
.category-search .c-ttl01 {
  background: #f5f5f5;
  padding: 20px 30px;
  cursor: pointer;
  transition: all 0.3s;
}
.category-search .c-ttl01:before {
  content: none;
}
.category-search .c-ttl01::after {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  right: 40px;
  width: 35px;
  height: 35px;
  background: url(../img/common/circle-arrow_b.svg) center/cover no-repeat;
  transform: rotate(90deg);
  margin: auto;
  transition: all 0.3s;
}
.category-search .c-ttl01:hover {
  color: #004490;
}
.category-search .c-ttl01.is-open::after {
  transform: rotate(-90deg);
}
.category-search__container {
  background: #f5f5f5;
  padding: 0 20px 20px;
}
.category-search__inner {
  display: grid;
  grid-template-columns: auto auto auto;
  gap: 37px 20px;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.06);
  padding: 28px 30px 39px;
}
.category-search__inner:not(:has(.category-search__group)) {
  display: block;
}
.category-search__inner:not(:has(.category-search__group)) .category-search__list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px 20px;
}
.category-search__inner:not(:has(.category-search__group)) .category-search__list li:not(:first-child) {
  margin-top: 0;
}
.category-search__group-ttl {
  position: relative;
  display: block;
  color: #004490;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.5;
  margin-bottom: 17px;
  padding-left: 11px;
}
.category-search__group-ttl::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 4px;
  height: 26px;
  background: #009de0;
  border-radius: 3px;
  transform: translateY(-42%);
}
.category-search__list li:not(:first-child) {
  margin-top: 7px;
}
.category-search__list a {
  display: block;
  font-size: 15px;
  letter-spacing: 0.06em;
  line-height: 1.66;
  transition: 0.2s;
}
.category-search__list a:hover {
  color: #004490;
}
.category-search__list a .cat-name {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}
.category-search__list a .num {
  color: #666;
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  letter-spacing: 0.06em;
  line-height: 1.66;
}

.c-product-list:not(:first-child) {
  margin-top: 35px;
}

.category-checked {
  margin: 43px 0 0;
}
.category-checked .c-product-item__list {
  margin: 36px 0 0;
}

.advanced-search {
  margin-top: -7px;
  margin-bottom: 35px;
}
.advanced-search__cond {
  background: #f5f5f5;
  padding: 20px;
  margin: 30px 0 0;
  position: relative;
}
.advanced-search__cond-box {
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 2px rgba(0, 0, 0, 0.06);
  padding: 23px 30px 40px;
}
.advanced-search__cond-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px 5%;
}
.advanced-search__toggle {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 61px;
  border: 1px solid #004490;
  color: #004490;
  font-weight: bold;
  background: #e5f8ff;
  position: relative;
  cursor: pointer;
  transition: 0.3s;
  margin: 16px 0 40px;
  padding: 0;
}
.advanced-search__toggle:hover {
  opacity: 0.8;
}
.advanced-search__toggle::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 19px;
  width: 24px;
  height: 24px;
  background: url(../img/common/circle-arrow_b.svg) center center/cover no-repeat;
  transform: translateY(-50%) rotate(90deg);
  transition: 0.2s;
}
.advanced-search__toggle.is-open {
  margin-bottom: 23px;
}
.advanced-search__toggle.is-open::after {
  transform: translateY(-50%) rotate(-90deg);
}
.advanced-search__submit {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.advanced-search-condition-group {
  position: relative;
}
.advanced-search-condition-group:has(.advanced-search-condition-group__clear) {
  padding-bottom: 20px;
}
.advanced-search-condition-group__ttl {
  font-size: 18px;
  font-weight: 600;
  color: #004490;
  display: flex;
  align-items: center;
  margin-bottom: 17px;
}
.advanced-search-condition-group__ttl:not(:first-child) {
  margin-top: 23px;
}
.advanced-search-condition-group__ttl::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 26px;
  border-radius: 2px;
  background: #009de0;
  margin-right: 12px;
  margin-top: 4px;
}
.advanced-search-condition-group__clear {
  position: relative;
  display: inline-block;
  line-height: 1;
  margin-top: 10px;
}
.advanced-search-condition-group__clear::after {
  content: "";
  position: absolute;
  background: #848484;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  right: 0;
  top: -1px;
  pointer-events: none;
}
.advanced-search-condition-group__clear a {
  position: relative;
  color: #004490;
  font-size: 16px;
  line-height: 1;
  font-weight: bold;
  padding-right: 25px;
}
.advanced-search-condition-group__clear a::before, .advanced-search-condition-group__clear a::after {
  content: "";
  position: absolute;
  top: calc(50% + 1px);
  right: 7px;
  width: 3px;
  height: 10px;
  background: #fff;
  z-index: 1;
  border-radius: 2px;
}
.advanced-search-condition-group__clear a::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.advanced-search-condition-group__clear a::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.advanced-search-condition-group input[type=text] {
  height: 50px;
  border: 2px solid #004490;
  border-radius: 5px;
  font-size: 15px;
  padding: 16px;
  margin-bottom: 10px;
}
.advanced-search-condition-group input[type=text].search-keyword {
  width: 100%;
}
.advanced-search-condition-group input[type=text].search-price {
  width: calc(100% - 20px);
  margin-right: 3px;
}

.search-selected {
  width: 100%;
  max-width: 1200px;
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}
.search-selected__list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.search-selected__badge {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: flex;
  align-items: center;
  gap: 8px;
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
  border-radius: 5px;
  background: #f5f5f5;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  padding: 8px 16px;
  cursor: pointer;
}
.search-selected__badge-text {
  flex-shrink: 0;
  overflow: hidden;
  max-width: 300px;
  white-space: nowrap;
}
.search-selected__badge-close {
  flex-shrink: 0;
  transition: 0.2s;
}
.search-selected__badge:hover .search-selected__badge-close {
  color: #009de0;
}

#list {
  scroll-margin-top: 200px;
}

@media screen and (min-width: 751px) {
  .category-faq .c-faq-item__q {
    padding: 26px 74px 27px;
  }
  .category-faq .c-faq-item__q::before {
    left: 29px;
  }
  .category-faq .c-faq-item__q::after {
    right: 30px;
  }
  .category-checked .c-product-item:nth-child(n+4) {
    display: none;
  }
}

@media screen and (max-width: 1200px) {
  .advanced-search__cond-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 1050px) {
  .pickup-item {
    display: block;
  }
  .pickup-item__img {
    margin-bottom: 24px;
  }
  .pickup-item__img img {
    max-width: 250px;
    margin: auto;
  }
  .pickup-item__catch {
    margin: 0 auto 13px;
  }
  .pickup-item .c-price {
    text-align: right;
  }
  .by-use__list {
    grid-template-columns: 1fr 1fr;
  }
  .buying-guide-sec__spec-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 959px) {
  .category-search__inner {
    grid-template-columns: auto auto;
  }
}

@media screen and (max-width: 750px) {
  .category-head {
    margin-top: 0;
  }
  .category-head:has(.category-head__img) {
    padding-right: 0;
  }
  .category-head__name {
    font-size: 27px;
    letter-spacing: 0.06em;
    padding-left: 21px;
  }
  .category-head__name::before {
    width: 5px;
    height: 30px;
  }
  .category-head:has(.category-head__img) .category-head__name {
    padding-right: 90px;
  }
  .category-head__desc {
    font-size: 16px;
    letter-spacing: 0.06em;
    line-height: 1.6875;
    margin-top: 36px;
  }
  .category-head__img {
    right: 0;
    top: -19px;
    width: 90px;
    height: 90px;
  }
  .pickup {
    width: calc(100% + 40px);
    margin: 45px -20px 0;
    padding: 0 20px 25px;
  }
  .pickup__catch {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.02em;
    padding: 5px 23px;
    transform: translate(-50%, -50%);
  }
  .pickup__catch::after {
    border-width: 8px 9px 0 9px;
  }
  .pickup__catch .num {
    font-size: 24px;
  }
  .pickup__catch .num::before {
    left: -10px;
    top: -10px;
    width: 20.5px;
    height: 11.5px;
  }
  .pickup__head {
    position: relative;
    padding: 40px 130px 29px 0;
  }
  .pickup__head::after {
    bottom: 0;
    right: -6px;
    display: block;
    width: 134px;
    height: 199px;
  }
  .pickup__ttl {
    font-size: 24px;
    letter-spacing: 0.04em;
  }
  .pickup__desc {
    font-size: 16px;
    letter-spacing: 0.06em;
    line-height: 1.75;
    margin-top: 8px;
  }
  .pickup__desc .num {
    font-size: 24px;
    letter-spacing: 0.02em;
  }
  .pickup__list {
    gap: 20px;
  }
  .pickup-item {
    border: none;
    border-radius: 5px;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
    padding: 28px 20px 25px;
  }
  .pickup-item::before {
    left: -5px;
    top: -5px;
    width: 50px;
    height: 48px;
    color: #111;
    font-size: 18px;
    letter-spacing: 0.04em;
    padding: 12px 0 0;
    filter: drop-shadow(0 1px 5px rgba(0, 0, 0, 0.1));
  }
  .pickup-item__name {
    font-size: 16px;
    letter-spacing: 0.06em;
    line-height: 1.625;
    margin: 0 auto 5px;
    text-underline-offset: 3px;
  }
  .pickup-item__reason {
    margin-top: 40px;
    padding: 24px 15px 13px;
  }
  .pickup-item__reason-ttl {
    transform: translate(-50%, -58%);
  }
  .pickup-item__reason-ttl img {
    width: 166px;
  }
  .pickup-item__reason-txt {
    font-size: 12px;
    letter-spacing: 0.04em;
    line-height: 1.9166666667;
  }
  .pickup-item__more {
    position: relative;
    right: unset;
    bottom: unset;
    width: 160px;
    height: 40px;
    border-radius: 5px;
    margin: 15px auto 0;
    padding: 0 35px;
  }
  .pickup-item__more::after {
    right: 32px;
    width: 14px;
    height: 14px;
  }
  .by-use {
    width: calc(100% + 40px);
    margin: 56px -20px 0;
    padding: 28px 20px 25px;
  }
  .by-use::before {
    width: 54px;
    transform: translate(-50%, -64%);
  }
  .by-use__ttl {
    font-size: 21px;
    letter-spacing: 0.04em;
  }
  .by-use__list {
    grid-template-columns: 1fr;
    gap: 40px 20px;
    margin-top: 35px;
  }
  .by-use-item {
    border: none;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
    padding: 34px 0 25px;
    transition: 0.2s;
  }
  .by-use-item__catch {
    transform: translate(-50%, -50%);
  }
  .by-use-item__desc {
    line-height: 1.5;
    margin-bottom: 16px;
  }
  .by-use-item__img {
    max-width: 250px;
    margin-bottom: 15px;
  }
  .by-use-item__name {
    margin-bottom: 11px;
    text-underline-offset: 6px;
  }
  .by-use-item__more {
    width: 160px;
    margin-top: 18px;
    padding: 0 36px;
  }
  .by-use-item__more::after {
    right: 32px;
    width: 14px;
    height: 14px;
  }
  .buying-guide {
    margin-top: 45px;
    padding-bottom: 25px;
  }
  .buying-guide__ttl {
    border-width: 2px;
    font-size: 24px;
    letter-spacing: 0.04em;
    padding: 0 0 10px;
  }
  .buying-guide__ttl::before {
    top: -7px;
    right: calc(50% + 130px);
    width: 47px;
  }
  .buying-guide-sec {
    padding: 50px 20px 50px;
  }
  .buying-guide-sec + .buying-guide-sec {
    margin-top: 60px;
  }
  .buying-guide-sec__ttl {
    font-size: 21px;
    letter-spacing: 0.04em;
  }
  .buying-guide-sec__ttl::before {
    top: -32px;
    width: 2px;
    height: 20px;
  }
  .buying-guide-sec__desc {
    font-size: 14px;
    margin-top: 18px;
  }
  .buying-guide-sec__spec-list {
    grid-template-columns: 1fr;
    gap: 30px 20px;
    margin-top: 30px;
  }
  .buying-guide-sec__link {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    transform: translateY(50%);
    display: flex;
    justify-content: center;
  }
  .buying-guide-spec-item {
    border-radius: 5px;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
    padding: 13px 20px 22px;
  }
  .buying-guide-spec-item__ttl {
    height: 30px;
    font-size: 16px;
    padding: 0 15px;
  }
  .buying-guide-spec-item__val {
    flex: auto;
    min-height: unset;
    padding: 16px 0;
  }
  .buying-guide-spec-item__val1 {
    font-size: 18px;
  }
  .buying-guide-spec-item__val2 {
    display: block;
    letter-spacing: 0.06m;
    line-height: 1.5;
    text-align: center;
  }
  .buying-guide-spec-item__desc {
    padding: 15px 20px 17px;
  }
  .guide-bnr {
    margin-top: 34px;
  }
  .guide-bnr__catch {
    font-size: 16px;
    letter-spacing: 0.06em;
    margin-bottom: 3px;
  }
  .guide-bnr__catch::before, .guide-bnr__catch::after {
    height: 65px;
  }
  .category-faq {
    margin-top: 29px;
  }
  .category-contact {
    width: calc(100% + 40px);
    margin: 40px -20px 0;
  }
  .category-search {
    margin-top: 33px;
  }
  .category-search .c-ttl01 {
    margin: 0 -20px;
    padding: 15px 20px;
  }
  .category-search .c-ttl01::after {
    right: 20px;
    width: 25px;
    height: 25px;
  }
  .category-search__container {
    width: calc(100% + 40px);
    margin: 0 -20px;
    padding: 0;
  }
  .category-search__inner {
    grid-template-columns: 1fr;
    gap: 1px;
    background: none;
    border-radius: 0;
    box-shadow: unset;
    padding: 0;
  }
  .category-search__inner:not(:has(.category-search__group)) .category-search__list {
    grid-template-columns: 1fr;
    gap: 5px;
  }
  .category-search__group-ttl {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 50px;
    background: #004490;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1.5;
    margin-bottom: 0;
    padding: 0;
  }
  .category-search__group-ttl::before {
    display: none;
  }
  .category-search__group-ttl::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 19px;
    margin: auto;
    display: block;
    width: 15px;
    height: 15px;
    background: url(../img/common/down-arrow_w.svg) center/contain no-repeat;
    transition: 0.2s;
  }
  .category-search__group-ttl.is-open::after {
    transform: rotate(180deg);
  }
  .category-search__group-ttl + .category-search__list {
    display: none;
  }
  .category-search__list {
    padding: 10px 20px 19px;
  }
  .category-search__list li::before {
    left: 21px;
    width: 15px;
  }
  .category-search__list li:not(:first-child) {
    margin-top: 5px;
  }
  .category-search__list li a {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    height: 60px;
    background: #fff;
    border-radius: 2.5px;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
    font-size: 14px;
    letter-spacing: 0.06em;
    line-height: 1.5;
    padding: 0 48px 0 18px;
    transition: 0.2s;
  }
  .category-search__list li a::after {
    content: "";
    position: absolute;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto;
    display: block;
    width: 22px;
    height: 22px;
    background: url(../img/common/circle-arrow-light_b.svg) center/contain no-repeat;
    transition: 0.2s;
  }
  .category-search__list li a .cat-name {
    text-underline-offset: 2px;
  }
  .c-product-list:not(:first-child) {
    margin-top: 28px;
  }
  .category-checked {
    margin-top: 35px;
  }
  .category-checked .c-product-item__list {
    margin-top: 20px;
  }
  .advanced-search__cond {
    padding: 10px;
    margin: 20px -20px 0;
  }
  .advanced-search__cond-box {
    border-radius: 2.5px;
    box-shadow: 0 1px rgba(0, 0, 0, 0.06);
    padding: 15px 15px 50px;
  }
  .advanced-search__cond-container {
    grid-template-columns: 100%;
  }
  .advanced-search-condition-group__clear::after {
    width: 18px;
    height: 18px;
  }
  .advanced-search-condition-group__clear a {
    font-size: 14px;
  }
  .advanced-search-condition-group__clear a::before, .advanced-search-condition-group__clear a::after {
    right: 6px;
  }
  #list {
    scroll-margin-top: 100px;
  }
}
