@charset "UTF-8";

/* カテゴリーバナー（リニューアル後使用無し） */
/* @media screen and (min-width: 769px) {
  .category-bnr-list {
    margin-top: 1rem;
    display: flex;
    gap: 7px;
    justify-content: space-between;
  }

  .category-bnr-list li {
    max-width: 408px;
  }

  .category-bnr-list img {
    border-radius: 4px;
  }
}

@media screen and (max-width: 768px) {
  .flickity-page-dots {
      display: none;
  }

  .flickity-button {
      display: none;
  }

  .category-bnr-list {
      margin-top: 1rem;
  }

  .category-bnr-list li {
      width: 270px;
      margin-right: 7px;
  }

  .category-bnr-list img {
      width: 100%;
      height: auto;
      border-radius: 0.4rem;
  }
} */
/* //カテゴリーバナー（リニューアル後使用無し） */

/* ================================================
共通設定
================================================ */
.category-info {
  padding: 2.4rem 10.2489019034vw;
}

.category-info__inner {
  max-width: 1080px;
  margin: 0 auto;
}

.categoryparts-container {
  padding: 4rem 0 2.4rem;
}

.categoryparts-title {
  font-size: 1.8rem;
  color: #000030;
  margin-bottom: 2.4rem;
}

@media (max-width: 768px) {
  .category-info {
    padding: 2.4rem 4.2666666667vw;
  }
}

/* ================================================
バナー部分
================================================ */
.kv-block {
  position: relative;
}

.kv-block .pic img {
  width: 100%;
  height: auto;
}

.kv-text {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: auto;
  color: #393c41;
  text-align: center;
  transform: translate(-50%, -50%);
  width: 90%;
}

.kv-text--white {
  color: #fff;
}

.kv-title {
  font-size: 4.8rem;
  margin-bottom: 2rem;
}

.kv-desc {
  font-size: 1.6rem;
}

.kv-note {
  font-size: 1.2rem;
}

.kv-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 1.6rem;
  margin-bottom: 2rem;
}

.kv-icon-wrapper .kv-title {
  margin-bottom: 0;
}

.kv-icon {
  width: 80px;
  height: 80px;
}

@media (max-width: 768px) {
  .kv-title {
    font-size: 2.8rem;
  }

  .kv-desc {
    font-size: 1.4rem;
  }

  .kv-icon {
    width: 45px;
    height: 45px;
  }
}


/* ================================================
香り一覧
================================================ */
.scent-list {
  display: flex;
  overflow-x: auto;
  column-gap: 2rem;
  scroll-snap-type: x mandatory;
  padding-bottom: 1rem;
  -webkit-overflow-scrolling: touch;
}

.scent-list .scent-card {
  flex: 0 0 calc((100% / 4.5));
  scroll-snap-align: start;
}

.scent-card-number {
  display: block;
  margin-bottom: 0.2em;
}

.scent-list::-webkit-scrollbar {
  background-color: #eee;
  width: 5px;
  height: 5px;
}

.scent-list::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 10px;
}

@media (max-width: 768px) {
  .scent-list {
    column-gap: 1.2rem;
    -webkit-overflow-scrolling: touch;
    padding: 0 0.8rem 1rem;
  }

  .scent-list::-webkit-scrollbar {
    display: none;
  }

  .scent-list .scent-card {
    flex: 0 0 40%;
    scroll-snap-align: start;
    min-height: auto;
  }
}

.scent-title {
  font-size: 1.6rem;
  padding: 8px 0 8px 0;
  text-align: center;
  font-weight: 400;
}
.scent-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 768px) {
  .scent-title {
    font-size: 1.6rem;
    padding: 10px;
  }

  .scent-wrapper {
    gap: 15px;
  }
}

.scent-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: 0.3s ease;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
}

.scent-card:hover {
  opacity: .7;
}

.scent-card::after {
  content: '';
  position: absolute;
  right: 12px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-top: 2px solid white;
  border-right: 2px solid white;
  transform: translateY(-50%) rotate(45deg);
  z-index: 3;
}
@media (max-width: 768px) {
  .scent-card::after {
    right: 8px;
    width: 6px;
    height: 6px;
  }
}

.scent-card-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.scent-card-info {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  padding: 20px;
}

.scent-card-title {
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
  margin: 0;
}
@media (max-width: 768px) {
  .scent-card-title {
    font-size: 12px;
  }
}


.perfume-cat__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.perfume-cat__link {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: 0.3s ease;
  max-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
}

.perfume-cat__link:hover {
  opacity: 0.7;
}

.perfume-cat__img {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  width: 100%;
  height: auto;
  display: block;
}

.perfume-cat__text {
  position: absolute;
  z-index: 2;
  text-align: center;
  color: white;
  padding: 20px;
}

.perfume-cat__title {
  font-size: 1.4rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
  margin: 0;
}

.perfume-chart-link {
  text-align: center;
  margin-top: 4rem;
}

.perfume-chart-link__button {
  display: inline-block;
  background: #000030;
  color: #fff;
  text-decoration: none;
  padding: 12px 30px;
  font-size: 14px;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: 0.3s ease;
}

@media screen and (max-width: 768px) {
  .perfume-cat__grid {
    padding: 0 2%;
  }

  .perfume-cat__title {
    font-size: 1.2rem;
  }

  .perfume-chart-link {
    margin-top: 2.4rem;
  }
}


/* ================================================
アイテムから選ぶ
================================================ */
.categoryitem-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, 114px);
  gap: 2.4rem;
  justify-content: center;
}

@media (max-width: 768px) {
  .categoryitem-wrapper {
    grid-template-columns: repeat(4, 1fr);
    gap: 2.4rem 1.6rem;
  }
}

.categoryitem-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.categoryitem-card:hover {
  opacity: .7;
}

.categoryitem-card-info {
  position: relative;
  z-index: 2;
  text-align: center;
}

.categoryitem-card-title {
  font-size: 12px;
  line-height: 1.2;
  margin-top: 8px;
  text-align: center;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .categoryitem-card-title {
    font-size: 10px;
    letter-spacing: 0.02em;
  }
}

/* ================================================
ギフトページトップボタン
================================================ */
.btn__container {
  width: 100%;
  margin-bottom: 6rem;
}

.g-btn__list {
  display: flex;
  margin: auto;
}

.g-btn__list--main {
  max-width: 540px;
  column-gap: 4rem;
  margin-top: 4rem;
}

.g-btn__list--main .g-btn {
  width: 250px;
  padding: 1.5rem 0;
  font-size: 1.6rem;
}

.g-btn {
  display: block;
  border: 1px solid #393c41;
  border-radius: 4px;
  text-align: center;
}

.g-btn.active {
  background-color: #79888b;
  border: 1px solid #79888b;
  color: #fff;
}

@media (any-hover: hover){
  .g-btn:hover {
    background-color: #79888b;
    border: 1px solid #79888b;
    color: #fff;
  }
}

.g-title {
  margin-top: 4rem;
  text-align: center;
  font-size: 2rem;
}

.g-btn__list--sub {
  justify-content: center;
  margin-top: 2rem;
  column-gap: 2rem;
  max-width: 1200px;
}

.g-btn__list--sub .g-btn {
  padding: 0.6rem 2rem;
  font-size: 1.4rem;
}

@media screen and (max-width: 767px) {
  .btn__container {
    padding: 0 1.5rem;
    margin-bottom: 4rem;
  }

  .g-btn__list--main {
    column-gap: 0;
    width: 100%;
    justify-content: space-between;
    margin-top: 4rem;
  }

  .g-btn__list--main .g-btn__item {
    width: calc((100% - 2rem) / 2);
  }

  .g-btn__list--main .g-btn {
    width: 100%;
    padding: 1.5rem 0;
    font-size: 1.6rem;
  }

  .g-title {
    margin-top: 4rem;
    font-size: 1.8rem;
  }

  .g-btn__container--sub {
    overflow: auto;
    padding-bottom: 1rem;
  }

  .g-btn__list--sub {
    column-gap: 0.8rem;
    width: 570px;
    justify-content: flex-start;
  }

  .g-btn__list--sub.small {
    width: 505px;
  }
}

/* ギフトページピックアップ */
.g-pickup__container {
  width: 760px;
  margin: 0 auto 12rem;
}

.g-pickup__title {
  font-size: 2rem;
  font-weight: normal;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 5rem;
}

.g-pickup__title:before , .g-pickup__title:after {
  border-top: 2px solid #393c41;
  content: "";
  width: 2em;
}

.g-pickup__title:before {
  margin-right: 0.3em;
}

.g-pickup__title:after {
  margin-left: 0.3em;
}

.g-pickup__item {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: start;
}

.g-pickup__item:nth-last-of-type(even) {
  flex-direction: row-reverse;
}

.g-pickup__item + .g-pickup__item {
  margin-top: 8rem;
}

@media (any-hover: hover){
  .g-title__box:hover , g-addcart__area {
    opacity: 0.8;
    transition: 0.3s;
  }
  .g-pickup__img:hover {
    opacity: 0.5;
    transition: 0.3s;
  }
}

.g-pickup__img {
  width: calc((100% - 4rem) / 2);
}

.g-pickup__img img {
  border-radius: 4px;
}

.g-pickup__text {
  width: calc((100% - 4rem) / 2);
}

.g-productname {
  font-size: 1.6rem;
  font-weight: 600;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #393c41;
  position: relative;
  text-align: left;
}

.g-productname::after{
  position: absolute;
  top: 50%;
  right: 6px;
  width: 10px;
  height: 10px;
  margin-top: -7px;
  content: "";
  transform: rotate(0deg) translate(-50%, -50%);
  border-top: solid 2px #393c41;
  border-right: solid 2px #393c41;
  transform: rotate(45deg);
}

.g-price {
  font-size: 1.4rem;
  font-weight: 400;
  text-align: right;
  margin-top: 0.6rem;
}

.g-detail {
  background-color: #fff;
  padding: 3rem;
  font-size: 1.4rem;
  border-radius: 4px;
  margin-top: 3rem;
}

.g-addcart__area {
  text-align: right;
  margin-top: 2rem;
}

.g-addcart__link {
  display: inline-block;
  padding-bottom: 0.2rem;
  border-bottom: 1px solid #393c41;
  position: relative;
  padding-right: 1.8rem;
}

.g-addcart__link::after{
  position: absolute;
  top: 50%;
  right: 6px;
  width: 8px;
  height: 8px;
  margin-top: -5px;
  content: "";
  transform: rotate(0deg) translate(-50%, -50%);
  border-top: solid 1px #393c41;
  border-right: solid 1px #393c41;
  transform: rotate(45deg);
}

.g-comment-area {
  margin-top: 2rem;
}

.g-comment-tag {
  background-color: #000030;
  border-radius: 4px;
  padding: 0.3rem 1rem;
  display: inline-block;
  color: #fff;
  margin-bottom: 0.5rem;
}

.g-comment-name {
  margin-top: 0.5rem;
}

@media screen and (max-width: 767px) {
  .g-pickup__container {
    width: 100%;
    padding: 0 3rem;
    margin-bottom: 6rem;
  }

  .g-pickup__title {
    text-align: center;
  }

  .g-pickup__title:before , .g-pickup__title:after {
    content: none;
  }

  .g-pickup__item {
    width: 100%;
    flex-direction: column;
  }

  .g-pickup__item:nth-last-of-type(even) {
    flex-direction: column;
  }

  .g-pickup__item + .g-pickup__item {
    margin-top: 4rem;
  }
  
  .g-pickup__img {
    width: 100%;
  }
  
  .g-pickup__text {
    width: 100%;
    background-color: #fff;
    border-radius: 4px;
    padding: 2rem;
    margin-top: 2rem;
  }

  .g-productname {
    font-size: 1.4rem;
  }

  .g-productname::after{
    position: absolute;
    top: 50%;
    right: 6px;
    width: 10px;
    height: 10px;
    margin-top: -7px;
    content: "";
    transform: rotate(0deg) translate(-50%, -50%);
    border-top: solid 2px #393c41;
    border-right: solid 2px #393c41;
    transform: rotate(45deg);
  }

  .g-price {
    font-size: 1.2rem;
    font-weight: 400;
    text-align: right;
    margin-top: 0.6rem;
  }

  .g-detail {
    padding: 0;
    font-size: 1.4rem;
    margin-top: 2rem;
  }

  .g-addcart__link::after{
    margin-top: -4px;
  }
}

/* information */
.gift-category-info {
  padding: 27px 0;
  border-radius: 0 0 4px 4px;
  background: #fff;
}

.gift-category-info .text-holder {
  max-width: 760px;
  margin: auto;
  text-align: center;
}

.categoryInfo.giftInfo {
  text-align: center;
}

@media screen and (max-width: 767px) {
  .gift-category-info {
    padding: 20px 0;
  }

  .gift-category-info .text-holder {
    margin: auto 2rem;
    text-align: left;
  }
}

/* アコーディオンテキスト装飾 */
.header-brand .categoryInfo {
  display: flex;
  justify-content: center;
  position: relative;
  padding: 27px 0;
  border-radius: 0 0 4px 4px;
  background: #fff;
  /* cursor: pointer; */
}

.header-brand .categoryInfo .text-holder {
  position: relative;
  margin: auto;
  max-width: 1000px;
}


.header-brand .categoryInfo .text-holder .read-more {
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}

.header-brand .categoryInfo .btn-read-more {
  position: absolute;
  top: 20px;
  right: 30px;
  width: 40px;
}

.header-brand .categoryInfo .text-holder .text-line-1 {
  overflow: auto;
  text-overflow: clip;
  white-space: wrap;
}

/* .header-brand .categoryInfo.open .text-holder .text-line-1 {
  max-height: none;
  text-overflow: unset;
  white-space: normal;
} */

.header-brand .categoryInfo.open .text-holder .read-more {
  display: none;
}

.header-brand .categoryInfo.open .readmoreBtn {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

@media screen and (max-width: 767px) {
  .header-brand .categoryInfo {
    flex-direction: column;
    background: #fff;
    padding: 20px 0;
    position: relative;
    cursor: pointer;
  }
  
  .header-brand .categoryInfo .text-holder {
    margin: auto 20px;
    position: relative;
    font-size: 12px;
  }
  
  .header-brand .categoryInfo .text-holder .text {
    width: 100%;
    max-height: 20px;
  }

  .header-brand .categoryInfo.giftInfo .text-holder {
    /* width: 100%; */
    max-height: 20px;
  }
  
  .header-brand .categoryInfo .text-holder .read-more {
    font-size: 12px;
    text-align: center;
  }
  
  .header-brand .categoryInfo .btn-read-more {
    margin-top: 0px;
  }
  
  .header-brand .categoryInfo .text-holder .text-line-1 {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    /* max-width: 360px; */
  }

  .header-brand .categoryInfo.giftInfo .text-holder {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .header-brand .categoryInfo.giftInfo.open .text-holder {
    text-overflow: unset;
    max-height: none;
    white-space: normal;
    text-align: center;
  }

  .header-brand .categoryInfo.open .text-holder .text-line-1 {
    text-overflow: unset;
    max-height: none;
    white-space: normal;
  }
  
  .header-brand .categoryInfo.open .text-holder .read-more {
    display: none;
  }

  .header-brand .categoryInfo .readmoreBtn {
    display: block;
    background: url(../images/icon/arrow_down_black.svg) no-repeat center center / 17px 10px;
    width: 100%;
    height: 30px;
    margin-bottom: -10px;
  }
  
  .header-brand .categoryInfo.open .readmoreBtn {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
}

/* ================================================
チャートへのリンク
================================================ */
.categorylink-block {
  padding-top: 2.4rem;
}

.categorylink-block__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4rem;
}

.categorylink__item a {
  position: relative;
}

/* 「?」マーク */
/* .categorylink__item a::before {
  position: absolute;
  content: "";
  background: url(../images/category/chartIcon.svg);
  background-size: 100%;
  background-repeat: no-repeat;
  top: 50%;
  transform: translateY(-40%);
  width: 1.5rem;
  height: 1.8rem;
  left: -1.8rem;
} */

.categorylink__item a span {
  text-decoration: underline;
}

@media screen and (max-width: 767px) {
  .categorylink__item {
    gap: 2.4rem;
  }
  
  .categorylink__item a {
    font-size: 1.2rem;
  }

  /* .categorylink__item a::before {
    width: 1.4rem;
    height: 1.4rem;
    left: -1.7rem;
  } */
}

/* ================================================
チャート図モーダル化
================================================ */
.chartmodal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;   
  background-color: rgba(0,0,0,0.7);
}
.modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 800px;
  max-height: 90vh;
  padding: 25px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
}
.chartModalImage {
  margin: 0 auto;
  overflow: auto;
}
.chartModalImage img {
  width: auto;
  max-width: 100%;
}
.modal-buttons {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  gap: 16px;
}
.modal-button {
  max-width: 210px;
  width: 100%;
  text-align: center;
  position: relative;
  padding: 10px 30px;
  background-color: #000030;
  border-radius: 3px;
  color: #fff;
  border: none;
  cursor: pointer;
}
.modal-button.chartModalcloseBtn::before,
.modal-button.chartModalcloseBtn::after{
  content: "";
  position: absolute;
  top: 50%;
  left: 15%;
  width: 2px;
  height: 15px; 
  background: #fff;
}
.modal-button.chartModalcloseBtn::before {
  transform: translate(-50%,-50%) rotate(45deg);
}
.modal-button.chartModalcloseBtn::after {
  transform: translate(-50%,-50%) rotate(-45deg);
}

.modal-button.newtabBtn::before {
  position: absolute;
  content: '';
  top: 50%;
  right: 9%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14.973' height='14.973' viewBox='0 0 14.973 14.973'%3E%3Cg transform='translate(-2.5 -2.293)'%3E%3Cpath d='M15,3h4.589V7.589' transform='translate(-2.823)' fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='1'/%3E%3Cpath d='M10,11.412,18.412,3' transform='translate(-1.647)' fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='1'/%3E%3Cpath d='M14.471,11.353v4.589a1.53,1.53,0,0,1-1.53,1.53H4.53A1.53,1.53,0,0,1,3,15.942V7.53A1.53,1.53,0,0,1,4.53,6H9.118' transform='translate(0 -0.706)' fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='1'/%3E%3C/g%3E%3C/svg%3E") no-repeat center center / contain;
}
@media (max-width: 768px) {
  .modal-content {
    max-height: 65vh;
    padding: 15px;
  }
  .modal-buttons {
      display: flex;
      justify-content: center;
      gap: 10px;
  }

  .chartModalImage img {
    width: 100%;
  }
  .modal-button {
      flex: 1;
      padding: 12px 10px;
      font-size: 1.2rem;
  }
  .modal-button.chartModalcloseBtn::before,
  .modal-button.chartModalcloseBtn::after{
    height: 12px; 
  }
  .modal-button.newtabBtn::before {
    width: 12px;
    height: 12px;
    right: 9.5%;
  }
}

/* ================================================
カテゴリページアコーディオン
================================================ */
.categoryAccordion {
  position: relative;
  cursor: pointer;
  padding-bottom: 3.2rem;
}
.categoryAccordion__panel {
  display: none;
  margin-top: 4rem;
}
.categoryAccordion.open .categoryAccordion__panel {
  display: block;
}
.categoryAccordion__heading {
  font-size: 2.4rem;
  line-height: 1.5;
  font-weight: 600;
  text-align: center;
  color: #000030;
  margin-bottom: 1.6rem;
}
.categoryAccordion__desc {
  text-align: center;
}
.categoryAccordion__header {
  user-select: none;
}
/* 矢印アイコン */
.categoryAccordion__header::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 1.2em;
  height: 1.2em;
  background: url("/ec/images/icon/ico_arrow_down.svg") no-repeat center center;
  background-size: contain;
  transform: translateX(-50%) rotate(0deg);
}
/* 開いたときに矢印を上向きに */
.categoryAccordion.open .categoryAccordion__header::after {
  transform: rotate(180deg);
}
.categoryBox-1 {
  display: flex;
  flex-wrap: wrap;
  column-gap: 5%;
}
.categoryBox-1__item {
  flex: 1 1 50%;
}
.categoryBox-1__item.--gap16 * + * {
  margin-top: 1.6rem;
}
.categoryBox-1__item.--small {
  flex: 0 0 25%;
}

@media (max-width: 768px) {
  .categoryAccordion {
    width: 100%;
  }
  .categoryAccordion__heading {
    font-size: 1.8rem;
  }
  .categoryBox-1 {
    flex-direction: column;
    row-gap: 2.4rem;
  }
  .categoryBox-1__item {
    width: 100%;
  }
}

/* ================================================
オイル/美容液　製品紹介コンテンツ
================================================ */
.category-pickup__header {
  text-align: center;
  margin-bottom: 4rem;
}

.category-pickup__heading {
  font-size: 2.4rem;
  line-height: 1.5;
  font-weight: 600;
  margin-bottom: 1.6rem;
  color: #000030;
}

.category-pickup__itemlist {
  width: 100%;
}

.category-pickup__itemlist ul {
  display: flex;
  justify-content: center;
  align-items: center;
}

.category-pickup__itemlist li {
  display: flex;
  flex-direction: column;
  margin: 0 15px;
}

.category-pickup__itemlist img {
  width: 200px;
  height: auto;
}

.category-pickup__overlap {
  position: relative;
}

.category-pickup__text {
  position: absolute;
  /*重ねたい子要素にabsolute*/
  width: 100%;
  top: 7px;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  margin: 0 !important;
  /*文字がずれている場合や*/
  padding: 0 !important;
  /*文字が折り返される場合*/
  text-align: center;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.category-pickup__price {
  position: absolute;
  /*重ねたい子要素にabsolute*/
  width: 100%;
  right: -40px;
  bottom: 1px;
  font-size: 14px;
  color: #fff;
  margin: 0 !important;
  /*文字がずれている場合や*/
  padding: 0 !important;
  /*文字が折り返される場合*/
  text-align: center;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.category-pickup__buttonWrapper {
  margin-top: 40px;
  display: flex;
  column-gap: 4rem;
  justify-content: center;
  align-items: center;
}

.category-pickup__button {
  background-color: #000030;
  border: 1px solid #000030;
  display: block;
  padding: 1rem;
  width: 100%;
  max-width: 400px;
  min-height: 4.4rem;
  color: #fff;
  text-align: center;
  margin: 0;
  font-size: 1.4rem;
  position: relative;
  transition: all ease 0.4s;
}

.category-pickup__subtitle {
  margin-bottom: 5px;
  font-size: 12px;
}

.category-pickup__sign {
  font-size: 16px;
  font-weight: bold;
}

.category-pickup__markarea {
  text-align: right;
  padding: 2.4rem 0 0;
}

.category-pickup__mark {
  font-size: 12px;
}

.category-pickup__card {
  border: 1px solid #eee;
}

@media (max-width: 768px) {
  .category-pickup__header p {
    font-size: 14px;
  }

  .category-pickup__heading {
    font-size: 16px;
  }

  .category-pickup__itemlist {
    padding: 0;
  }

  .category-pickup__sign {
    font-size: 14px;
  }

  .category-pickup__text {
    font-size: 14px;
  }

  .category-pickup__price {
    right: unset;
    text-align: end;
    bottom: -20px;
    font-size: 10px;
    color: #393C41;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0);
  }

  .category-pickup__itemlist ul {
    max-width: 100%
  }

  .category-pickup__itemlist img {
    max-width: 100%;
    height: auto;
  }

  .category-pickup__itemlist li {
    margin: 0 5px;
  }

  .category-pickup__button {
    max-width: 250px;
  }

  .category-pickup__markarea {
    padding: 20px 10px 0 0;
  }
}


/* ============================================================
   フィルターリスト — ピルタグデザイン
   ============================================================ */

/* スクロールコンテナ（#filter 要素に指定、またはラッパーとして使用） */
.filter-list-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
}
.filter-list-wrapper::-webkit-scrollbar {
  display: none; /* Chrome / Safari */
}

/* リストのリセットと1行横並びレイアウト */
.filter-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: nowrap; /* 折り返し禁止 */
  gap: 8px;
}

/* 各アイテム（li）は中身に合わせたサイズ */
.filter-item {
  display: inline-flex;
}

/* リンク本体 ― ピル形状 */
.filter-link {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  border-radius: 3px;
  font-size: 13px;
  line-height: 1.4;
  color: #333;
  background-color: #f6f6f6;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

/* ホバー */
.filter-link:hover {
  background-color: #f5f5f5;
  border-color: #999;
  color: #111;
}

/* アクティブ（選択中） */
.filter-link:active,
.filter-link.is-active {
  background-color: #333;
  border-color: #333;
  color: #fff;
}
