@charset "UTF-8";

/* =========================
   Pepper+ Sub Navigation
========================= */

.pepper-subnav,
.pepper-subnav * {
  box-sizing: border-box;
}

.sp-only {
  display: none;
}

.pepper-subnav {
  position: relative;
  z-index: 5;
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
}

/* WordPress共通CSSの clearfix / 疑似要素対策 */
.pepper-subnav__inner::before,
.pepper-subnav__inner::after,
.pepper-subnav__list::before,
.pepper-subnav__list::after {
  content: none !important;
  display: none !important;
}

.pepper-subnav__inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 15px 13px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 32px;
}

.pepper-subnav__logo {
  display: inline-block;
  width: 130px;
  max-width: 130px;
  flex: 0 0 130px;
  text-decoration: none;
}

.pepper-subnav__logo img {
  display: block;
  width: 100%;
  height: auto;
}

.pepper-subnav__list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 25px;
  width: auto;
  max-width: none;
  margin: 0 0 0 auto;
  padding: 0;
  list-style: none;
  flex: 0 0 auto;
}

.pepper-subnav__item {
  margin: 0;
  padding: 0;
  flex: 0 0 auto;
}

.pepper-subnav__link {
  display: inline-flex;
  align-items: center;
  color: #303036;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.25s ease;
}

.pepper-subnav__link:hover {
  opacity: 0.6;
}

.pepper-subnav__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  min-height: 35px;
  padding: 0 18px;
  border-radius: 5px;
  background-image: linear-gradient(
    90deg,
    #41413d,
    #555551 45%,
    #7d7d79 70%,
    #41413d
  );
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.pepper-subnav__btn:hover {
  opacity: 0.9;
}

/* =========================
   SP
========================= */

@media screen and (max-width: 768px) {
  .pc-only {
    display: none;
  }

  .sp-only {
    display: inline;
  }

  .pepper-subnav {
    overflow: hidden;
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
  }

  .pepper-subnav__inner {
    width: 100%;
    max-width: none;
    padding: 12px 16px 10px;
    display: block;
  }

  .pepper-subnav__logo {
    display: inline-block;
    width: 110px;
    max-width: 110px;
    flex: none;
  }

  .pepper-subnav__logo img {
    display: block;
    width: 100%;
    height: auto;
  }

  .pepper-subnav__list {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 18px;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0 16px 2px 0;
    overflow-x: auto;
    overflow-y: hidden;
    list-style: none;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .pepper-subnav__list::-webkit-scrollbar {
    display: none;
  }

  .pepper-subnav__item {
    flex: 0 0 auto;
  }

  .pepper-subnav__link {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    color: #303036;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
  }

  .pepper-subnav__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: auto;
    min-height: 30px;
    padding: 0 16px;
    border-radius: 4px;
    background-image: linear-gradient(90deg, #41413d, #555551 55%, #41413d);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
  }
}
