/* stylelint-disable no-descending-specificity */
@charset "UTF-8";

/* =======================
common
======================= */

:root {
  --font-avenir: "Avenir", sans-serif;
  --color-black-primary: #000;
  --color-black-secondary: #333;
  --color-gray-primary: #373737;
  --color-gray-secondary: #666;
  --color-gray-tertiary: #e5e5e5;
  --color-gray-999999: #999;
  --color-white-gray: #f5f5f5;
}

html {
  font-family: "Helvetica Neue", Avenir, "Hiragino Sans", "ヒラギノ角ゴ Pro W3",
    "游ゴシック体", "Yu Gothic", YuGothic, "メイリオ", "ＭＳ Ｐゴシック",
    sans-serif;
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

#content {
  display: block !important;
}

.hype-drop {
  position: relative;
  max-width: 540px;
  margin: 20px auto 30px;
}

.scroll-container {
  white-space: initial;
}

.filter-invert {
  filter: invert();
}

.dividing-line {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  margin: 28px 0 31px;
  background: var(--color-gray-tertiary);
}

.mb-7 {
  margin-bottom: 7px;
}

.container {
  padding: 0 15px;
}

h2.sec-ttl {
  font-weight: bold;
  font-size: 2rem;
  line-height: 1.4;
}

.sec-new-in,
.sec-category,
.sec-brand,
.sec-drop-schedule,
.sec-brand-news,
.sec-store-info,
.sec-about,
.sec-history,
.sec-features,
.drop-history {
  margin: 40px 0 0;
}

.block-title {
  margin: 0 15px;
}

.block-title h2.main-title {
  color: var(--color-black-primary);
  font-size: 1.8rem;
  font-weight: bold;
}

.block-title h3.sub-title {
  margin: 8px 0 0;
  color: var(--color-gray-secondary);
  font-size: 1rem;
  font-weight: 400;
}

a.drop-link {
  color: #666;
  text-decoration: underline;
}

.margin-wrapper {
  margin-top: -30px;
  padding-top: 30px;
}

/* =======================
item-list
======================= */
.item-list-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  row-gap: 30px;
}

.item-list {
  width: calc(50% - 5px);
}

.item-list a {
  display: block;
  color: var(--color-gray-primary);
}

.item-list .img-box,
.item-list .item-img {
  position: relative;
  margin: 0 0 7px;
}

.item-list .item-price {
  margin: 0 0 5px;
  font-family: var(--font-avenir);
  font-weight: bold;
  font-size: 1.1rem;
}

.item-list .item-price.isSale {
  margin-top: 4px;
  font-size: 1rem;
  text-decoration: line-through;
  line-height: 1;
}

.item-list .item-sale-price {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 5px;
  color: #fe0000;
  font-family: var(--font-avenir);
  font-size: 1.3rem;
  font-weight: bold;
  line-height: 1;
}

.item-list .item-sale-price .discount-rate {
  font-size: 1rem;
  font-weight: bold;
  line-height: 1;
}

.item-list .brand-name,
.item-list .item-brands {
  margin: 0 0 4px;
  font-size: 1rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  min-height: 11px;
  line-height: 11px;
}

.item-list .item-name {
  font-size: 1rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  min-height: 11px;
  line-height: 11px;
}

.list-hype-drop-product__container {
  margin: 0 -15px;
  padding: 0 15px;
}

/*  block-item-list (scroll-x) */
.block-item-list {
  margin: 15px 0 0;
  padding: 0 15px;
}

.block-item-list .item-list-box {
  margin: 0 -15px;
  padding: 0 15px;
  overflow-x: auto;
  flex-wrap: nowrap;
}

.block-item-list .item-list-box::-webkit-scrollbar {
  display: none;
}

.block-item-list .item-list {
  min-width: calc(100% / 2.9);
}

/* history col-3 */
.block-item-list.col-3 .list-hype-drop-product__container {
  flex-wrap: wrap;
}

.block-item-list.col-3 .item-list {
  min-width: initial;
  max-width: initial;
  width: calc((100% - 20px) / 3);
}

.block-item-list.col-3 .item-list .item-name {
  display: inherit;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* =======================
label
======================= */
.label-box {
  position: absolute;
  display: flex;
  gap: 5px;
  right: 6px;
  bottom: 8px;
}

.label-box.top {
  top: 8px;
}

.label-box.bottom {
  bottom: 8px;
}

.label-box .label-new {
  content: "";
  display: block;
  position: absolute;
  width: 26px;
  height: 14px;
  right: 0;
  top: 0;
  background: url("../../../img/hype-drop/label-new.png") no-repeat center 100%/100%;
}

.label-box .label-sale {
  content: "";
  display: block;
  background: url("../../../img/hype-drop/label-sale.png") no-repeat center 100%/100%;
  width: calc(28px * 0.9);
  height: calc(14px * 0.9);
}

.label-box .label-exclusive {
  content: "";
  display: block;
  background: url("../../../img/hype-drop/label-exclusive.png") no-repeat center
    100%/100%;
  width: calc(61px * 0.9);
  height: calc(14px * 0.9);
}

.label-box .label-raffle {
  content: "";
  display: block;
  width: calc(47px * 0.9);
  height: calc(14px * 0.9);
  background: url("../../../img/hype-drop/label-raffle.png") no-repeat center
    100%/100%;
}

.label-box .label-pre-sale {
  content: "";
  display: block;
  width: calc(44px * 0.9);
  height: calc(14px * 0.9);
  background: url("../../../img/hype-drop/label-pre-sale.png") no-repeat center
    100%/100%;
}

.label-box .label-Exclusive-pre-sale {
  content: "";
  display: block;
  width: calc(61px * 0.9);
  height: calc(14px * 0.9);
  background: url("../../../img/hype-drop/label-Exclusive-pre-sale.png")
    no-repeat center 100%/100%;
}

.label-box .label-restock {
  content: "";
  display: block;
  width: calc(44px * 0.9);
  height: calc(14px * 0.9);
  background: url("../../../img/hype-drop/label-restock.png") no-repeat center
    100%/100%;
}

/* c-label */
.c-label-exclusive::before {
  content: "";
  display: block;
  position: absolute;
  right: 6px;
  bottom: 7px;
  width: calc(61px * 0.9);
  height: calc(14px * 0.9);
  background: url("../../../img/hype-drop/label-exclusive.png") no-repeat center
    100%/100%;
}

.c-label-raffle::before {
  content: "";
  display: block;
  position: absolute;
  right: 6px;
  bottom: 7px;
  width: calc(47px * 0.9);
  height: calc(14px * 0.9);
  background: url("../../../img/hype-drop/label-raffle.png") no-repeat center
    100%/100%;
}

.c-label-pre-sale::before {
  content: "";
  display: block;
  position: absolute;
  right: 6px;
  bottom: 7px;
  width: calc(44px * 0.9);
  height: calc(14px * 0.9);
  background: url("../../../img/hype-drop/label-pre-sale.png") no-repeat center
    100%/100%;
}

.c-label-Exclusive-pre-sale::before {
  content: "";
  display: block;
  position: absolute;
  right: 6px;
  bottom: 7px;
  width: calc(61px * 0.9);
  height: calc(14px * 0.9);
  background: url("../../../img/hype-drop/label-Exclusive-pre-sale.png")
    no-repeat center 100%/100%;
}

.c-label-restock::before {
  content: "";
  display: block;
  position: absolute;
  right: 6px;
  bottom: 7px;
  width: calc(44px * 0.9);
  height: calc(14px * 0.9);
  background: url("../../../img/hype-drop/label-restock.png") no-repeat center
    100%/100%;
}

.c-label-new::after {
  content: "";
  display: block;
  position: absolute;
  width: 26px;
  height: 14px;
  right: 0;
  top: 0;
  background: url("../../../img/hype-drop/label-new.png") no-repeat center 100%/100%;
}

/* =======================
TOP
======================= */

.top-scroll-container {
  position: relative;
}

.top-scroll-container::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -10px;
  right: 20px;
  z-index: 1;
  width: calc(261px / 3);
  height: calc(51px / 3);
  background: url("../../../img/hype-drop/swiper-arrow.png") no-repeat center
    100%/100%;
}

.swiper-pagination-bullet {
  width: 6px !important;
  height: 6px !important;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
  --swiper-theme-color: #fff !important;
}

/* ============= category ============= */

.block-category-list {
  margin: 15px 0 0;
  padding: 0 15px;
}

.category-list-box {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.category-list {
  width: calc(100% / 5 - 8px);
}

.category-list a {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 4px;
  color: var(--color-black-secondary);
}

.category-list span {
  height: 28px;
  font-size: 1rem;
  line-height: 1.4;
  text-align: center;
  white-space: nowrap;
}

/* ============= brand ============= */
.block-view-more {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.block-view-more .btn-view-more a {
  font-size: 1.2rem;
  color: var(--black-primary);
  display: block;
  line-height: 40px;
  padding: 0 15px;
}

.block-brand-list {
  margin: 15px 0 0;
  padding: 0 15px;
}

.brand-list-box {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.brand-list {
  width: calc(100% / 5 - 8px);
}

.brand-list a {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 4px;
  color: var(--color-black-secondary);
}

.brand-list a .brand-logo-img {
  border-radius: 100%;
  padding: 5px;
}

.brand-list a .brand-logo-img.bg-multiply {
  background: #f5f5f5;
}

.brand-list a .brand-logo-img.bg-multiply img {
  mix-blend-mode: multiply;
}

.brand-list span {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-height: 1.4;
  height: 28px;
  font-size: 1rem;
  text-align: center;
}

/* ============= drop-schedule ============= */

.sec-drop-schedule {
  padding: 40px 0;
  background: #f5f5f5;
}

.block-drop-schedule {
  margin: 15px 0 0;
  padding: 0 15px;
}

.drop-schedule-list-box {
  margin: 0 -15px;
  padding: 0 15px;
  display: flex;
  overflow-x: auto;
  gap: 15px;
  flex-wrap: nowrap;
}

.drop-schedule-list-box::-webkit-scrollbar {
  display: none;
}

.drop-schedule-list {
  min-width: calc(100% / 1.1);
}

.drop-schedule-list a {
  display: block;
  color: var(--color-gray-primary);
}

.drop-schedule-list .drop-card {
  overflow: hidden;
  border-radius: 10px;
}

.all .drop-card img {
  max-height: 232px;
}

.drop-schedule-list .drop-title {
  margin: 10px 0 0;
}

.drop-schedule-list .drop-title .drop-name {
  color: var(--color-black-primary);
  font-weight: bold;
  font-size: 2rem;
  line-height: 1;
}

.drop-schedule-list .drop-title .drop-name span {
  overflow: hidden;
  flex: 1;
  white-space: nowrap;
  text-overflow: ellipsis;
  height: 23px;
}

.drop-schedule-list .drop-title .drop-name.official {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  max-width: 100%;
}

.drop-schedule-list .drop-title .drop-name.official::after {
  content: "";
  display: block;
  position: relative;
  top: -1px;
  width: 15px;
  height: 15px;
  background-image: url("../../../img/common/icon-drop-official.png");
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
}

.drop-schedule-list .drop-title .drop-time {
  margin: 5px 0 0;
  color: var(--color-black-primary);
  font-weight: bold;
  font-size: 1.4rem;
}

.drop-schedule-list .drop-desc {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  margin: 10px 0 0;
  color: var(--color-black-secondary);
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.5;
}

/* drop-aleart */
.block-drop-title {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin: 10px 0 0;
}

.block-drop-title a {
  max-width: calc(100% - 70px);
}

.block-drop-title .drop-title {
  margin: 0;
}

.block-drop-title .alert-button {
  display: none;
}

.app .block-drop-title .alert-button {
  display: block;
  position: relative;
  top: 2px;
}

/* ============= featured-content ============= */

.sec-featured-contents .block-view-more {
  margin: 40px 0 0;
}

/* ============= brand-news ============= */

.block-brand-news {
  margin: 15px 0 0;
}

.brand-news-list {
  margin: 30px 0 0;
}

.brand-news-list:first-child {
  margin: 0;
}

.brand-news-title {
  margin: 15px 15px 0;
  color: var(--color-black-primary);
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.4;
}

.brand-news-time {
  margin: 10px 0 0 15px;
  color: var(--color-black-primary);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
}

/* ============= features ============= */

.block-features {
  margin: 15px 0 0;
}

.features-list {
  margin: 30px 0 0;
}

.features-list:first-child {
  margin: 0;
}

.features-title {
  margin: 15px 15px 0;
  color: var(--color-black-primary);
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.4;
}

.features-time {
  margin: 10px 0 0 15px;
  color: var(--color-black-primary);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
}

/* ============= store-info ============= */
.store-image {
  margin: 15px 0 0;
}

.store-adress {
  margin: 15px 15px 0;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.4;
}

.store-adress-sub {
  margin: 5px 15px 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
}

/* ============= about ============= */
.sec-about {
  padding: 40px 0;
  background: var(--color-white-gray);
}

.sec-about .hypedrop-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.sec-about .hypedrop-logo img {
  width: 150px;
  height: auto;
}

.block-hypedrop-text {
  margin: 30px 40px 0;
}

.block-hypedrop-text .hypedrop-text {
  margin: 15px 0 0;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 2;
  text-align: center;
  white-space: nowrap;
}

.sec-about .block-sns {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 30px 0 0;
}

.sec-about .sns-instagram {
  width: 30px;
  height: 30px;
}

.sec-about .sns-instagram a {
  display: block;
}

/* ============= drop / drop-schedule ============= */
.hype-drop .drop {
  padding-bottom: 40px;
}

.hype-drop .drop .block-drop-schedule {
  margin: 20px 0 0;
}

.hype-drop .drop .drop-schedule-list-box {
  display: block;
  overflow: hidden;
}

.hype-drop .drop .drop-schedule-list {
  margin: 40px 0 0;
}

.hype-drop .drop .drop-schedule-list:first-child {
  margin: 0;
}

.hype-drop .drop .drop-schedule-list .block-item-list {
  padding: 0;
}

/* ============= drop / drop-history ============= */
.drop .drop-history .block-title {
  margin: 0;
  padding: 30px 15px 0;
  background: linear-gradient(180deg, #f5f5f5 0%, rgb(255 255 255 / 0%) 100%);
}

/* ============= search ============= */

.tabs {
  display: flex;
  flex-wrap: wrap;
}

.tab_label2 {
  color: var(--gray-primary, #666);
  position: relative;
  z-index: 1;
  cursor: pointer;
  flex: 1;
  padding: 5px 0;
  margin: 0 5px;
  font-size: 13px;
  font-weight: 400;
  text-align: center;
  line-height: 30px;
}

.tab_label2.side-l {
  margin: 15px 15px 15px 50px;
}

.tab_label2.side-r {
  margin: 15px 50px 15px 15px;
}

.tab_content2 {
  flex: 100%;
  display: none;
  overflow: hidden;
  position: relative;
  animation: fadeIn 1s ease;
}

input[name="tab_switch2"] {
  display: none;
}

.tabs input:checked + .tab_label2 {
  color: var(--black-primary, #000);
  background: #f3f3f3;
  border-radius: 25px;
  font-weight: bold;
}

#tab01:checked ~ #tab01_content2,
#tab02:checked ~ #tab02_content2 {
  display: block;
}

/* ============= search / category ============= */
.block-category-list__column {
  width: 100%;
}

.block-category-list__column .category-list-box {
  display: flex;
  flex-direction: column;
  padding: 0 15px;
  gap: 0;
}

.block-category-list__column .category-list {
  width: 100%;
  border-bottom: 1px solid var(--white-gray-primary, #e5e5e5);
}

.block-category-list__column .category-list a {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
  padding: 15px 0;
}

.block-category-list__column .category-list a::after {
  content: "";
  width: 12px;
  height: 12px;
  background: url("https://cdn.snkrdunk.com/uploads/media/20230706080818-0.png");
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  position: relative;
}

.block-category-list__column .category-list a .category-item {
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 15px;
}

.block-category-list__column .category-list a .category-img {
  width: 40px;
  height: 40px;
}

.block-category-list__column .category-list a span {
  color: var(--color-black-primary);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1;
  height: auto;
}

/* ============= search / brand ============= */
.hype-drop .search {
  padding-bottom: 40px;
}

.block-brand-initial-list .brand-initial-list-box {
  padding: 0 5px;
  display: flex;
  overflow-x: auto;
  gap: 0;
  flex-wrap: nowrap;
}

.block-brand-initial-list .brand-initial-list-box::-webkit-scrollbar {
  display: none;
}

.brand-initial-list a {
  display: block;
  padding: 10px;
  color: var(--color-black-primary);
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1;
}

.initial {
  margin: -30px 0 0;
  padding: 30px 0 0;
}

.block-brand-list__column {
  margin: 20px 0 0;
  padding: 0 15px;
}

.block-brand-list__column .initial {
  color: var(--color-gray-999999);
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1;
}

.block-brand-list__column .brand-list-box {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 5px 0 30px;
}

.block-brand-list__column .brand-list {
  width: 100%;
  border-bottom: 1px solid var(--white-gray-primary, #e5e5e5);
}

.block-brand-list__column .brand-list a {
  flex-direction: row;
  justify-content: space-between;
  height: 52px;
  display: flex;
  align-items: center;
}

.block-brand-list__column .brand-list a::after {
  content: "";
  width: 12px;
  height: 12px;
  background: url("https://cdn.snkrdunk.com/uploads/media/20230706080818-0.png");
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  position: relative;
}

.block-brand-list__column .brand-list a span {
  color: var(--black-primary, #000);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.4;
  height: auto;
}

/* =======================
ブランドページ
======================= */
.brands .hero .logo-img {
  width: 60px;
  height: 60px;
  border: 1px solid var(--color-gray-tertiary);
  margin: -30px 0 0 15px;
  position: relative;
  background: #fff;
}

.brands h1.brands-name {
  font-weight: bold;
  font-size: 2rem;
  justify-content: flex-start;
  height: auto;
}

.brands h1.brands-name.official {
  display: flex;
  gap: 5px;
  align-items: center;
  max-width: 100%;
  margin-top: 15px;
}

.brands h1.brands-name.official::after {
  flex: none;
  content: "";
  width: 15px;
  height: 15px;
  background-image: url("../../../img/common/icon-drop-official.png");
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  position: relative;
}

.brands .desc {
  margin-top: 15px;
  color: var(--color-gray-secondary);
  font-size: 1.1rem;
  line-height: 1.5;
}

/* ブランドページ内 旧 DROP SCHEDULE */
.drop-schedule-item .drop-card img {
  border-radius: 8px;
}

.drop-schedule-item .drop-ttl {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.drop-schedule-item .drop-brands-name {
  color: var(--color-gray-primary);
  font-weight: bold;
  font-size: 1.3rem;
}

.drop-schedule-item .drop-brands-name span {
  overflow: hidden;
  width: calc(100% - 16px);
  min-height: 13px;
  line-height: 13px;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.drop-schedule-item .drop-brands-name.official {
  display: flex;
  gap: 4px;
  align-items: center;
  max-width: calc(100% - 155px);
}

.drop-schedule-item .drop-brands-name.official::after {
  content: "";
  width: 12px;
  height: 12px;
  background-image: url("../../../img/common/icon-drop-official.png");
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  position: relative;
}

.drop-schedule-item .drop-time {
  color: var(--color-gray-primary);
  font-weight: bold;
  font-size: 1.3rem;
}

.drop-schedule-item .drop-desc {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  color: var(--color-gray-secondary);
  font-size: 1.2rem;
  line-height: 1.5;
}

.section-items {
  margin-bottom: 45px;
}

/* =======================
DROPページ
======================= */

.slide-wrapper {
  position: relative;
}

.overlay-brand-logo {
  position: absolute;
  z-index: 1;
  bottom: 30px;
  right: 15px;
  width: 60px;
  height: 60px;
}

.slide {
  width: 100%;
  display: grid;
}

.slide img {
  max-width: 100%;
  height: 800px;
  object-fit: cover;
  display: block;
}

.slide .slide-items {
  position: relative;
  grid-area: 1/1;
  overflow: hidden;
}

.slide .slide-nav {
  grid-area: 1/1;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto 1fr;
}

.slide .slide-nav button {
  appearance: none;
  -webkit-tap-highlight-color: rgb(0 0 0 / 0%);
  opacity: 0;
}

.slide .slide-items > * {
  position: absolute;
  top: 0;
  opacity: 0;
  pointer-events: none;
  transition: all 1s;
}

.slide .slide-items > .active {
  position: relative;
  opacity: 1;
  pointer-events: initial;
  transition: all 1s;
}

.slide .slide-thumb {
  display: flex;
  grid-column: 1 / 3;
  position: relative;
  top: 780px;
  left: 14px;
  width: calc(100% - 28px);
}

.slide .slide-thumb > span {
  flex: 1;
  display: block;
  height: 2px;
  background: rgb(0 0 0 / 40%);
  margin: 5px 1px;
  border-radius: 1px;
  overflow: hidden;
}

.slide .slide-thumb > span.active::after {
  content: "";
  display: block;
  height: inherit;
  background: rgb(255 255 255 / 90%);
  border-radius: 3px;
  transform: translateX(-100%);
  animation: thumb 5s forwards linear;
}

@keyframes thumb {
  to {
    transform: initial;
  }
}

.drop-page .drop-desc {
  margin-bottom: 20px;
  color: var(--color-gray-secondary);
  font-size: 1.1rem;
  line-height: 1.5;
  -webkit-line-clamp: initial;
}

.drop-page .menu-wrap ul {
  display: flex;
  gap: 8px;
  align-items: center;
  border-bottom: 1px solid var(--color-gray-tertiary);
}

.drop-page .menu-wrap li {
  margin-bottom: 5px;
}

.drop-page .menu-wrap li.delimiter {
  display: flex;
  gap: 8px;
  align-items: center;
}

.drop-page .menu-wrap li.delimiter::after {
  content: "";
  display: block;
  width: 1px;
  height: 10px;
  background-color: var(--color-gray-tertiary);
}

/* column */
.drop-page .menu-wrap.column ul {
  align-items: flex-start;
  flex-direction: column;
  margin-bottom: 15px;
  padding-bottom: 15px;
}

.drop-page .menu-wrap.column li {
  margin-bottom: 0;
}

.drop-page .menu-wrap.column li.delimiter {
  display: flex;
  gap: 6px;
  align-items: flex-start;
  flex-direction: column;
}

.drop-page .menu-wrap.column li.delimiter::after {
  content: "";
  display: block;
  width: 10px;
  position: relative;
  height: 1px;
  background-color: var(--color-gray-tertiary);
}

.drop-page .menu-wrap a {
  color: #999;
  font-weight: bold;
  font-size: 1.2rem;
  line-height: 11px;
  padding: 3px 0;
}

.drop-page section {
  margin-top: -30px;
  padding-top: 30px;
}

.drop-page .txt-area .sec-ttl {
  margin-bottom: 5px;
  color: var(--color-gray-primary);
  font-weight: bold;
  font-size: 1.8rem;
  line-height: 1.5;
}

.drop-page .txt-area .sub-ttl {
  margin-bottom: 3px;
  color: var(--color-gray-secondary);
  font-size: 1.2rem;
  line-height: 1.5;
}

.drop-page .contents .midashi {
  color: var(--color-gray-primary);
  font-weight: bold;
  font-size: 1.4rem;
  line-height: 1.4;
}

.drop-page .contents .txt {
  color: var(--color-gray-primary);
  font-size: 1.2rem;
  line-height: 1.7;
}

.drop-page .contents .note {
  color: var(--color-gray-secondary);
  font-size: 1.1rem;
  line-height: 1.5;
}

/* product-brand-wrapper */
.product-brand-wrapper {
  margin: 0 0 33px;
  padding: 0 15px;
}

.product-brand-wrapper .brand-logo {
  width: 80px;
  height: 80px;
  margin: 0 auto 10px;
  border: 1px solid var(--color-gray-tertiary);
}

.product-brand-wrapper .brand-name {
  font-weight: bold;
  font-size: 1.6rem;
  text-align: center;
}

.product-brand-wrapper .brand-name.official::after {
  content: " ";
  width: 13px;
  height: 13px;
  background-image: url("../../../img/common/icon-drop-official.png");
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  display: inline-block;
  position: relative;
  top: 1px;
  left: 3px;
  margin: 0 6px 0 0;
}

.product-brand-wrapper .button-outline-brandmore {
  color: #686868;
  border: 1px solid #ccc;
  font-weight: normal;
  height: 50px;
  line-height: 50px;
}

.drop-page .look-img-box {
  margin: 0 -15px 10px;
  display: flex;
  gap: 15px;
  flex-flow: column;
}

.drop-page .credit {
  color: var(--color-gray-secondary);
  font-size: 1.1rem;
  line-height: 1.5;
}

/* video & youtube */
.drop-page .vid_contents {
  width: 100%;
}

.drop-page video.vid_item {
  width: 100%;
}

.drop-page .youtube {
  width: 100%;
  aspect-ratio: 16 / 9;
}

.drop-page .youtube iframe {
  width: 100%;
  height: 100%;
}

/* 発売アラート */
.dropping-soon {
  position: relative;
  width: 100%;
  height: 100vh;
  background: rgb(0 0 0 / 30%);
}

.drop-page .alert-button-box {
  width: 100%;
  position: sticky;
  bottom: 20px;
  z-index: 100;
}

.drop-page .induction-text {
  text-align: center;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.6;
  color: #fff;
}

.drop-page .alert-button-box .is-inactive {
  width: calc(100% - 30px);
  height: 60px;
  margin: 20px 15px 0;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  border-radius: 30px;
  background: #000;
  color: #fff;
  box-shadow: 0 0 5px rgb(0 0 0 / 25%);
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 60px;
}

.drop-page .alert-button-box .is-active {
  width: calc(100% - 30px);
  height: 60px;
  margin: 20px 15px 0;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  border-radius: 30px;
  background: #fff;
  color: #afafaf;
  box-shadow: 0 0 5px rgb(0 0 0 / 25%);
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 60px;
}

.drop-page .induction-text a {
  color: #fff !important;
  text-decoration: underline;
}

.content .drop-page .alert-button-box {
  display: none;
}

.content.app .drop-page .alert-button-box {
  display: block;
}

.content .drop-page .container__app {
  display: none;
}

.content.app .drop-page .container__app {
  display: block;
  height: 100vh;
}

.content.app .drop-page .container__app .coming {
  padding: 15px;
  position: relative;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.content.app .drop-page .container__app .alert-box {
  position: absolute;
  bottom: 20px;
  z-index: 100;
  width: 100%;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.content .drop-page .container__webView {
  display: block;
  position: relative;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.content.app .drop-page .container__webView {
  display: none;
}

.content .drop-page .container__webView .btn__item.appStore {
  display: flex;
  gap: 10px;
  margin: 25px 10% 15px;
}
