@charset "UTF-8";

/*************************************************************
LINE-UP 商品一覧ページ PC
*************************************************************/

/* body背景 */
body {
  min-width: 1200px;
  background-image: url("../../images/lineup/lineup-page/bg-top.png");
  background-position: center top;
  background-size: 100%;
  background-repeat: no-repeat;
  /* background-color: white; */
}

/* ヒーローセクション */
.lineup-hero {
  position: relative;
  width: 100%;
  height: 320px;
  overflow: hidden;
}

.lineup-hero .sp { display: none; }

.lineup-hero-inner {
  width: 1200px;
  margin: 0 auto;
  padding-top: 200px;
}

.lineup-hero-heading {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.lineup-hero-right {
  padding-top: 10px;
}

.lineup-hero-title {
  width: 328px;
  height: 77px;
  background-image: url("../../images/lineup/lineup-page/title-bg.png");
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-shrink: 0;
}

.lineup-hero-title-text {
  color: white;
  white-space: nowrap;
  font-size: 64px;
  font-weight: 300;
  line-height: 1;
}

.lineup-hero-title-text.font-DIN-C {
  padding-top: 0.1em;
}

.lineup-hero-title .lineup-hero-title-text{
  transform: translateY(-4px);
}

.lineup-hero-catch {
  font-size: 36px;
  font-weight: 500;
  color: #000;
  line-height: 1.3;
  white-space: nowrap;
}

.lineup-hero-sub {
  font-size: 20px;
  font-weight: 500;
  color: #000;
  margin-top: 20px;
  line-height: 1;
}

/* ハッシュタグフィルター */
.lineup-hashtags {
  width: 1200px;
  margin: 0 auto;
  padding: 20px 0 0;
}

.lineup-hashtags-inner {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.lineup-hashtag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 16px;
  background: #fff;
  border: 1px solid #000;
  border-radius: 40px;
  font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #000;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
  line-height: 1;
}

.lineup-hashtag:hover,
.lineup-hashtag.active {
  background: #000;
  color: #fff;
}

/* main下部背景 */
main {
  position: relative;
}
main::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../../images/common/bg-footer-sp.jpg");
  background-position: center bottom;
  background-size: 100% auto;
  background-repeat: no-repeat;
  z-index: -1;
}

/* 商品カテゴリ一覧 */
.lineup-products {
  width: 1200px;
  margin: 0 auto;
  padding: 60px 0 80px;
}

/* カテゴリセクション */
.lineup-category {
  margin-top: 50px;
}

.lineup-category:first-child {
  margin-top: 0;
}

.lineup-category-title {
  border-bottom: 6px solid #000;
  padding-bottom: 18px;
}

.lineup-category-en {
  font-size: 70px;
  font-weight: 300;
  line-height: 1;
  color: #000;
}

.lineup-category-ja {
  font-size: 18px;
  font-weight: 300;
  color: #000;
  margin-top: 0;
  line-height: 1.2;
}

/* 商品グリッド */
.lineup-category-contents {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 50px;
}

/* 商品カード */
.lineup-product-card {
  display: block;
  width: 280px;
  padding: 16px 10px;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s;
  background: #fff;
  border: 1px solid #CCCCCC;
  border-radius: 6px;
  box-sizing: border-box;
  overflow: hidden;
}

.lineup-product-card:hover {
  opacity: 0.7;
}

.lineup-product-img {
  width: 260px;
  height: 236px;
  margin: 0 auto;
  padding: 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lineup-category--bonding-bleach .lineup-product-img {
  width: 110px;
}
.lineup-category--bonding-metallics .lineup-product-img {
  width: 110px;
}
.lineup-category--bonding-colormask .lineup-product-img {
  width: 80px;
}
.lineup-category--color-cream .lineup-product-img {
  width: 92px;
}
.lineup-category--toning-color-shampoo .lineup-product-img {
  width: 92px;
}
.lineup-category--bonding-color-shampoo .lineup-product-img {
  width: 92px;
}
.lineup-category--bonding-color-treatment .lineup-product-img {
  width: 96px;
}
.lineup-category--color-shampoo .lineup-product-img {
  width: 92px;
}
.lineup-category--bonding-oil .lineup-product-img {
  width: 86px;
}
.lineup-category--bonding-colormask-clear .lineup-product-img {
  width: 120px;
}

.lineup-product-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* 商品情報バー */
.lineup-product-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #000;
  padding: 10px 12px;
  margin-top: 8px;
  min-height: 73px;
  box-sizing: border-box;
  background: #fff;
}

.lineup-product-names {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  flex: 1;
}

.lineup-product-en {
  font-size: 24px;
  font-weight: 300;
  line-height: 1.2;
  color: #000;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lineup-product-ja {
  font-size: 14px;
  font-weight: 300;
  color: #000;
  line-height: 1.2;
}

/* 矢印ボタン */
.lineup-product-arrow {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-left: 8px;
  position: relative;
}

.lineup-product-arrow::after {
  content: '';
  display: block;
  width: 7px;
  height: 7px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  margin-left: -2px;
}

/*************************************************************
SEO用ハッシュタグテキスト（視覚的に非表示・sr-onlyパターン）
*************************************************************/

.lineup-hashtag-seo {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/*************************************************************
ハッシュタグ検索結果パネル PC
*************************************************************/

.lineup-hashtag-result {
  width: 1200px;
  margin: 0 auto;
  padding: 50px 0 80px;
}

.lineup-hashtag-result-inner {
  width: 100%;
}

/* タイトルバー */
.lineup-hashtag-result-title {
  background: #000;
  padding: 16px 40px 22px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.lineup-hashtag-result-title-en {
  font-size: 70px;
  font-weight: 300;
  line-height: 1;
  color: #fff;
}

.lineup-hashtag-result-title-ja {
  font-size: 24px;
  font-weight: 100;
  line-height: 1.2;
  color: #fff;
}

/* 説明文 */
.lineup-hashtag-result-description {
  background: #EEE;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.6;
  color: #000;
  padding: 20px 40px;
  margin: 30px 0 30px;
}

/* キャッチコピー */
.lineup-hashtag-result-catch {
  font-size: 24px;
  font-weight: 400;
  color: #000;
  text-align: center;
  margin: 0 0 45px;
}

/* 商品カードグリッド */
.lineup-hashtag-result-products {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
  max-width: 1156px;
  margin: 0 auto;
}

/* 商品カード */
.hashtag-product-card {
  width: 274px;
  background: #fff;
  border-radius: 6px;
  box-sizing: border-box;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 18px 24px;
}

.hashtag-product-img {
  width: 100%;
  height: 236px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hashtag-product-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.hashtag-product-img[data-category="bonding-bleach"],
.hashtag-product-img[data-category="bonding-point-bleach"] { width: 110px; }
.hashtag-product-img[data-category="bonding-metallics"] { width: 110px; }
.hashtag-product-img[data-category="bonding-colormask"] { width: 80px; }
.hashtag-product-img[data-category="color-cream"] { width: 92px; }
.hashtag-product-img[data-category="toning-color-shampoo"],
.hashtag-product-img[data-category="bonding-color-shampoo"] { width: 92px; }
.hashtag-product-img[data-category="bonding-color-treatment"] { width: 96px; }
.hashtag-product-img[data-category="color-shampoo"] { width: 92px; }
.hashtag-product-img[data-category="bonding-oil"] { width: 86px; }
.hashtag-product-img[data-category="bonding-colormask-clear"] { width: 120px; }

.hashtag-product-name {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 50px;
  font-size: 16px;
  font-weight: 300;
  color: #000;
  text-align: left;
  margin: 12px 0 12px;
  line-height: 1.2;
}

/* ボタン群 */
.hashtag-product-buttons {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  align-items: center;
}

.hashtag-product-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 238px;
  height: 42px;
  border-radius: 21px;
  font-size: 18px;
  font-weight: 400;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s;
  box-sizing: border-box;
}

.hashtag-product-btn:hover {
  opacity: 0.7;
}

.hashtag-product-btn-spacer {
  width: 238px;
  height: 42px;
}

.hashtag-product-btn--buy {
  background: rgb(232, 47, 138);
  color: #fff;
  border: none;
  gap: 6px;
}

.hashtag-product-btn-icon {
  width: 24px;
  height: auto;
}

.hashtag-product-btn--detail {
  background: #fff;
  color: #000;
  border: 1px solid #000;
  position: relative;
}

.hashtag-product-btn-arrow {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* 戻るボタン */
.lineup-hashtag-result-back-wrap {
  display: flex;
  justify-content: center;
  margin-top: 25px;
}

.lineup-hashtag-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  height: 59px;
  background-image: url("../../images/common/btn-bg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-color: transparent;
  color: #fff;
  border: none;
  padding: 15px 24px;
  font-size: 18px;
  font-weight: 400;
  cursor: pointer;
  transition: opacity 0.2s;
}

.lineup-hashtag-back:hover {
  opacity: 0.7;
}

.lineup-hashtag-back-icon {
  display: inline-block;
  transform: translateY(1px);
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.lineup-hashtag-back-text {
  line-height: 1;
}

/*************************************************************
ストアポップアップ PC
*************************************************************/

.hashtag-store-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  opacity: 0;
  transition: 0.5s;
}

.hashtag-store-popup.active {
  visibility: visible;
  opacity: 1;
}

.hashtag-store-popup-inner {
  background: #fff;
  width: 860px;
  max-width: 90%;
  padding: 40px;
  position: relative;
  box-sizing: border-box;
}

.hashtag-store-close {
  position: absolute;
  top: -40px;
  right: 0;
  cursor: pointer;
  width: 40px;
  height: 40px;
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hashtag-store-close img {
  width: 20px;
}

.hashtag-store-heading {
  font-size: 16px;
  text-align: center;
  font-weight: 500;
  margin: 0 0 24px;
}

.hashtag-store-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.hashtag-store-btn {
  width: 246px;
  height: 97px;
  border: 1px solid #ccc;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  position: relative;
  transition: opacity 0.2s;
}

.hashtag-store-btn:hover {
  opacity: 0.7;
}

.hashtag-store-logo {
  width: 158px;
}

.hashtag-store-logo img {
  width: 100%;
  height: auto;
}

.hashtag-store-icon {
  position: absolute;
  right: 5px;
  bottom: 5px;
}

.hashtag-store-icon img {
  width: 21px;
}

.hashtag-store-note {
  font-size: 14px;
  text-align: center;
  color: #333;
  margin: 24px 0 0;
  line-height: 1.8;
}

.hashtag-store-note small {
  font-size: 12px;
  color: #666;
}

.hashtag-store-note .sp {
  display: none;
}

.lineup-hashtag-result-description small {
  font-size: 0.75em;
  margin: 0 0.5em;
}
