@charset "UTF-8";
/* ボックスモデルをリセットし、ボーダーを設定 */
/* ============================================ */
*,
::before,
::after {
  box-sizing: border-box; /* パディングとボーダーを要素の合計幅と高さに含める */
  border-style: solid; /* ボーダーのスタイルを実線に設定 */
  border-width: 0; /* ボーダーの幅を0に設定 */
  min-width: 0; /* 最小幅を0に設定 */
}

/* ドキュメント */
/* ============================================ */
/**
 * 1. 全てのブラウザでline-heightを調整
 * 2. iOSでの方向変更後のフォントサイズ調整を抑制
 * 3. iOSでのリンクのグレーのハイライト表示を削除
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -moz-text-size-adjust: 100%;
       text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent; /* 3 */
  overflow-wrap: anywhere; /* 収まらない場合に折り返す */
  word-break: normal; /* 単語の分割はデフォルトに依存 */
  line-break: strict; /* 禁則処理を厳格に適用 */
}

/* セクション */
/* ============================================ */
/**
 * 全てのブラウザでmarginを削除
 */
body {
  margin: 0;
}

/**
 * IEでのmain要素の表示を一貫させる
 */
main {
  display: block;
}

/* 垂直方向の余白 */
/* ============================================ */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* 見出し */
/* ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit; /* フォントサイズを親から継承 */
  font-weight: inherit; /* フォントウェイトを親から継承 */
  margin: 0; /* マージンを削除 */
}

[tabindex="-1"]:focus-visible {
  outline: none !important; /* tabindex="-1"でフォーカス可能になった要素のアウトラインを削除 */
}

/* リスト（列挙） */
/* ============================================ */
ul,
ol {
  margin: 0; /* マージンを削除 */
  padding: 0; /* パディングを削除 */
  list-style: none; /* リストのスタイルを削除 */
}

/* リスト（定義） */
/* ============================================ */
dd {
  margin-left: 0; /* 左マージンを削除 */
}

/* グループ化されたコンテンツ */
/* ============================================ */
/**
 * 1. Firefoxで正しいボックスサイジングを追加
 * 2. EdgeとIEでoverflowを表示
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
  border-top-width: 1px; /* 上ボーダーの幅を設定 */
  margin: 0; /* マージンを削除 */
  clear: both; /* 両側のフロートをクリア */
  color: inherit; /* 色を親から継承 */
}

/**
 * 1. 全てのブラウザでフォントサイズの継承とスケーリングを調整
 * 2. 全てのブラウザで"em"フォントサイジングを調整
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

address {
  font-style: inherit; /* フォントスタイルを親から継承 */
}

/* テキストレベルの意味付け要素 */
/* ============================================ */
/**
 * IE 10以上でアクティブなリンクのグレーの背景を削除
 */
a {
  background-color: transparent; /* 背景色を透明に設定 */
  text-decoration: none; /* テキスト装飾を削除 */
  color: inherit; /* 色を親から継承 */
}

/**
 * 1. Chrome 57-で下ボーダーを削除
 * 2. Chrome, Edge, IE, Opera, Safariで正しいテキスト装飾を追加
 */
abbr[title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted; /* 2: 点線のアンダーラインを追加 */
}

/**
 * Chrome, Edge, Safariで正しいフォントウェイトを追加
 */
b,
strong {
  font-weight: 700; /* フォントウェイトを太字に設定 */
}

u {
  text-underline-offset: 0.2em;
}

em {
  font-style: italic;
}

/**
 * 1. 全てのブラウザでフォントサイズの継承とスケーリングを調整
 * 2. 全てのブラウザで"em"フォントサイジングを調整
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

/**
 * "small"のフォントサイズを追加
 * 取り消し線のために"del"を追加
 */
small {
  font-size: inherit;
}

del {
  text-decoration: line-through;
}

/**
 * "sub"と"sup"を垂直方向に揃える
 */
sub {
  vertical-align: bottom;
  font-size: 72%;
}

sup {
  vertical-align: top;
  font-size: 72%;
}

/* 置換コンテンツ */
/* ============================================ */
/**
 * 垂直方向の配置問題を防止
 */
svg,
img,
embed,
object,
iframe {
  vertical-align: middle; /* 垂直方向中央揃え */
}

/* フォーム */
/* ============================================ */
/**
 * フォームフィールドをスタイル可能にするためにリセット
 * 1. 特にiOSで、システム全体でフォーム要素をスタイル可能にする
 * 2. 親からtext-transformを継承する
 */
button,
input,
optgroup,
select,
textarea {
  vertical-align: middle; /* 垂直方向中央揃え */
  color: inherit; /* 色を親から継承 */
  font: inherit; /* フォントを親から継承 */
  background: none; /* 背景を削除 */
  border: none; /* ボーダーを削除 */
  padding: 0; /* パディングを削除 */
  margin: 0; /* マージンを削除 */
  border-radius: 0; /* ボーダーの角丸を削除 */
  text-align: inherit; /* テキストの配置を親から継承 */
  text-transform: inherit; /* 2 */
  white-space: normal; /* ホワイトスペースを標準に設定 */
}

button {
  outline: none; /* アウトラインを削除 */
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none; /* ネイティブの外観を削除 */
}

/**
 * クリック可能な要素のカーソルを調整
 */
button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer; /* カーソルをポインターに設定 */
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default; /* 無効な要素のカーソルをデフォルトに設定 */
}

/**
 * Firefoxのアウトラインを改善し、入力要素やボタンのスタイルと統一
 */
:-moz-focusring {
  outline: auto; /* Firefoxのフォーカスリングを自動に設定 */
}

select:disabled {
  opacity: inherit; /* 無効なselect要素の透明度を継承 */
}

/**
 * パディングを削除
 */
option {
  padding: 0;
}

/**
 * fieldsetを非表示にリセット
 */
fieldset {
  margin: 0; /* マージンを削除 */
  padding: 0; /* パディングを削除 */
  min-width: 0; /* 最小幅を0に設定 */
}

legend {
  padding: 0; /* パディングを削除 */
}

/**
 * Chrome, Firefox, Operaで正しい垂直方向の配置を追加
 */
progress {
  vertical-align: baseline; /* 垂直方向をベースラインに設定 */
}

/**
 * IE 10以上でデフォルトの垂直スクロールバーを削除
 */
textarea {
  overflow: auto; /* テキストエリアのオーバーフローを自動に設定 */
}

/**
 * Chromeでインクリメント/デクリメントボタンのカーソルスタイルを調整
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto; /* 高さ自動 */
}

/**
 * Safariでアウトラインスタイルを調整
 */
[type=search] {
  outline-offset: -2px; /* 1: アウトラインオフセットを調整 */
}

/**
 * macOSのChromeとSafariで内部パディングを削除
 */
[type=submit] {
  -webkit-appearance: none; /* ネイティブの外観を削除 */
  border-radius: 0; /* ボーダーの角丸を削除 */
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none; /* 検索フィールドの装飾を削除 */
}

/**
 * 1. iOSとSafariでクリック可能な型のスタイル設定不能を修正
 * 2. フォントの継承を修正
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/**
 * Firefoxの外観を修正
 */
[type=number] {
  -moz-appearance: textfield; /* Firefoxでナンバー入力フィールドの外観をテキストフィールドに設定 */
}

/**
 * クリック可能なラベル
 */
label[for] {
  cursor: pointer; /* for属性を持つラベルのカーソルをポインターに設定 */
}

/* インタラクティブ要素 */
/* ============================================ */
/*
 * Edge, IE 10+, Firefoxで正しいdisplayを追加
 */
details {
  display: block; /* details要素をブロックレベル要素として表示 */
}

/*
 * 全てのブラウザで正しいdisplayを追加
 */
summary {
  display: list-item; /* summary要素をリストアイテムとして表示 */
}

/*
 * 編集可能なコンテンツのアウトラインを削除
 */
[contenteditable]:focus {
  outline: auto; /* contenteditable要素のフォーカス時にアウトラインを自動表示 */
}

/* テーブル */
/* ============================================ */
/**
 * 1. ChromeとSafariでテーブルのボーダー色の継承を修正
 */
table {
  width: 100%;
  border-color: inherit; /* 1 */
  border-collapse: collapse; /* ボーダーを結合 */
}

caption {
  text-align: left; /* キャプションを左揃え */
}

td,
th {
  vertical-align: top; /* 垂直方向を上揃え */
  padding: 0; /* パディングを削除 */
}

th {
  text-align: left; /* テキストを左揃え */
  font-weight: 700; /* フォントウェイトを太字に設定 */
}

/* Firefox: ネストされた順序付きリストが親から番号付けを続ける問題を解決 */
ol {
  counter-reset: revert; /* カウンターをリセットして、リストの番号付けをデフォルトの動作に戻す */
}

/* 画像がコンテナを超えないように */
img {
  max-inline-size: 100%; /* インライン方向（幅）の最大サイズを100%に設定 */
  max-block-size: 100%; /* ブロック方向（高さ）の最大サイズを100%に設定 */
}

/* Safari: <body>に`user-select:none`が設定されている場合にテキスト入力が機能しない問題を解決 */
input, textarea {
  -webkit-user-select: auto; /* Safariでユーザー選択を自動に設定 */
}

/* Safariのtextarea要素の'white-space'プロパティを元に戻す */
textarea {
  white-space: revert; /* white-spaceプロパティをデフォルトの動作に戻す */
}

/* meter要素をスタイル可能にするための最小限のスタイル */
meter {
  -webkit-appearance: revert; /* Webkitブラウザでのネイティブの外観を元に戻す */
  -moz-appearance: revert;
       appearance: revert; /* ネイティブの外観を元に戻す */
}

/* inputplaceholderのデフォルトのテキスト不透明度をリセット */
::-moz-placeholder {
  color: unset; /* 色を未設定状態（継承またはデフォルト）にする */
}
::placeholder {
  color: unset; /* 色を未設定状態（継承またはデフォルト）にする */
}

/* 'hidden'属性の機能を修正。
  display:revert; は属性値ではなく要素のデフォルト表示に戻します。
  :where()は特異度を下げるためにここで使用されていますが、[hidden]のデフォルトはdisplay: none;です。 */
:where([hidden]) {
  display: none; /* hidden属性を持つ要素を非表示にする */
}

/* Chromiumブラウザのバグに対するリセット
  - contenteditable属性が正しく機能するように修正。
  - webkit-user-select: auto; は、ラッパー要素でuser-select:noneを使用している場合にSafari用に追加 */
:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write; /* Firefoxでコンテンツ編集を許可 */
  -webkit-user-modify: read-write; /* Webkitブラウザでコンテンツ編集を許可 */
  overflow-wrap: break-word; /* 長い単語を任意の場所で折り返す */
  -webkit-line-break: after-white-space; /* Safariでホワイトスペース後の改行を許可 */
  -webkit-user-select: auto; /* Webkitブラウザでユーザー選択を自動に設定 */
}

/* ドラッグ機能を再度適用 - ChromiumとSafariにのみ存在する */
:where([draggable=true]) {
  -webkit-user-drag: element; /* Webkitブラウザで要素のドラッグを許可 */
}

/* Modalのネイティブな挙動をリセット */
:where(dialog:modal) {
  all: revert; /* 全てのプロパティを元に戻す */
  box-sizing: border-box; /* ボックスサイジングをボーダーボックスに設定 */
}

/* Safariのdetails summaryの三角形アイコンを削除 */
::-webkit-details-marker {
  display: none;
}

/* color */
/* ============================================ */
/* font */
/* ============================================ */
/* font-size */
/* ============================================ */
/* 記載例）font-size: g.rem(16); */
/* 共通部分 */
/* ============================================ */
body {
  background: #fff;
  color: #000;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: clamp(0.875rem, 0.5066rem + 0.6579vw, 1rem);
  font-weight: 400;
  line-height: 1.5;
  min-height: 100vh;
}
body.--fixed {
  height: 100%;
  overflow: hidden;
}

a {
  color: currentColor;
  transition: all 0.3s ease-out;
}
@media (hover: hover) {
  a:hover {
    opacity: 0.7;
  }
}
@media (hover: hover) {
  a[href^="tel:"] {
    pointer-events: none;
    opacity: 1;
  }
}

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

.reading {
  display: block;
  overflow: hidden;
  height: 0;
  width: 0;
  margin: 0;
  padding: 0;
}

@media all and (max-width: 896px) {
  .pconly {
    display: none;
  }
}

.sponly {
  display: none;
}
@media all and (max-width: 896px) {
  .sponly {
    display: block;
  }
}

.tabonly {
  display: none;
}
@media all and (max-width: 1025px) {
  .tabonly {
    display: block;
  }
}

@media all and (max-width: 1025px) {
  .tabnone {
    display: none;
  }
}

.mdonly {
  display: none;
}
@media all and (max-width: 600px) {
  .mdonly {
    display: block;
  }
}

@media all and (max-width: 600px) {
  .mdnone {
    display: none;
  }
}

.portraitonly {
  display: none;
}
@media all and (max-width: 480px) {
  .portraitonly {
    display: block;
  }
}

@media all and (max-width: 480px) {
  .portraitnone {
    display: none;
  }
}

.span_br {
  display: inline-block;
}

.mt0 {
  margin-top: 0 !important;
}

.mt5 {
  margin-top: 5px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mb0 {
  margin-bottom: 0 !important;
}

.mb5 {
  margin-bottom: 5px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mt16 {
  margin-top: 16px !important;
}

.mb16 {
  margin-bottom: 16px !important;
}

.mt24 {
  margin-top: 24px !important;
}

.mb24 {
  margin-bottom: 24px !important;
}

.mt32 {
  margin-top: 32px !important;
}

.mb32 {
  margin-bottom: 32px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.mt48 {
  margin-top: 48px !important;
}

.mb48 {
  margin-bottom: 48px !important;
}

.mt56 {
  margin-top: 56px !important;
}

.mb56 {
  margin-bottom: 56px !important;
}

.mt64 {
  margin-top: 64px !important;
}

.mb64 {
  margin-bottom: 64px !important;
}

.mt72 {
  margin-top: 72px !important;
}

.mb72 {
  margin-bottom: 72px !important;
}

.mt80 {
  margin-top: 80px !important;
}

.mb80 {
  margin-bottom: 80px !important;
}

.mt88 {
  margin-top: 88px !important;
}

.mb88 {
  margin-bottom: 88px !important;
}

.mt96 {
  margin-top: 96px !important;
}

.mb96 {
  margin-bottom: 96px !important;
}

.mt104 {
  margin-top: 104px !important;
}

.mb104 {
  margin-bottom: 104px !important;
}

.mt112 {
  margin-top: 112px !important;
}

.mb112 {
  margin-bottom: 112px !important;
}

.mt120 {
  margin-top: 120px !important;
}

.mb120 {
  margin-bottom: 120px !important;
}

@media all and (max-width: 896px) {
  .mt0-s {
    margin-top: 0 !important;
  }
  .mt5-s {
    margin-top: 5px !important;
  }
  .mt10-s {
    margin-top: 10px !important;
  }
  .mb0-s {
    margin-bottom: 0 !important;
  }
  .mb5-s {
    margin-bottom: 5px !important;
  }
  .mb10-s {
    margin-bottom: 10px !important;
  }
  .mt16-s {
    margin-top: 16px !important;
  }
  .mb16-s {
    margin-bottom: 16px !important;
  }
  .mt24-s {
    margin-top: 24px !important;
  }
  .mb24-s {
    margin-bottom: 24px !important;
  }
  .mt32-s {
    margin-top: 32px !important;
  }
  .mb32-s {
    margin-bottom: 32px !important;
  }
  .mt40-s {
    margin-top: 40px !important;
  }
  .mb40-s {
    margin-bottom: 40px !important;
  }
  .mt48-s {
    margin-top: 48px !important;
  }
  .mb48-s {
    margin-bottom: 48px !important;
  }
  .mt56-s {
    margin-top: 56px !important;
  }
  .mb56-s {
    margin-bottom: 56px !important;
  }
  .mt64-s {
    margin-top: 64px !important;
  }
  .mb64-s {
    margin-bottom: 64px !important;
  }
  .mt72-s {
    margin-top: 72px !important;
  }
  .mb72-s {
    margin-bottom: 72px !important;
  }
  .mt80-s {
    margin-top: 80px !important;
  }
  .mb80-s {
    margin-bottom: 80px !important;
  }
  .mt88-s {
    margin-top: 88px !important;
  }
  .mb88-s {
    margin-bottom: 88px !important;
  }
  .mt96-s {
    margin-top: 96px !important;
  }
  .mb96-s {
    margin-bottom: 96px !important;
  }
  .mt104-s {
    margin-top: 104px !important;
  }
  .mb104-s {
    margin-bottom: 104px !important;
  }
  .mt112-s {
    margin-top: 112px !important;
  }
  .mb112-s {
    margin-bottom: 112px !important;
  }
  .mt120-s {
    margin-top: 120px !important;
  }
  .mb120-s {
    margin-bottom: 120px !important;
  }
}
.width {
  container-type: inline-size;
  max-width: 1200px;
  width: calc(100% - 40px);
  margin: 0 auto;
}
@media all and (max-width: 480px) {
  .width {
    width: calc(100% - 30px);
  }
}

.outer {
  overflow: clip;
}

@-webkit-keyframes accOpen {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes accOpen {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* 共通パーツ */
/* ============================================ */
.common-links {
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 40px;
}
@media all and (max-width: 896px) {
  .common-links {
    gap: 24px;
  }
}
.common-links__item {
  width: 380px;
}
@media all and (max-width: 896px) {
  .common-links__item {
    width: 300px;
  }
}
@media all and (max-width: 600px) {
  .common-links__item {
    width: 170px;
  }
}
.common-links__item.--filter .common-links__link::before {
  background-image: url("../images/common/icon_filter.svg");
}
.common-links__link {
  word-break: keep-all;
  padding: 0.58em;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5em;
  background: #E32349;
  color: #fff;
  height: 100%;
  font-size: clamp(1rem, -0.4737rem + 2.6316vw, 1.5rem);
  font-weight: 700;
}
@media all and (max-width: 600px) {
  .common-links__link {
    flex-direction: column;
    gap: 8px;
  }
}
.common-links__link::before {
  flex-shrink: 0;
  content: "";
  display: block;
  width: 2.17em;
  height: 2.17em;
  background: url("../images/common/icon_bottle.svg") center center/100% auto no-repeat;
}
@media all and (max-width: 600px) {
  .common-links__link::before {
    width: 3.25em;
    height: 3.25em;
  }
}

.common-featured {
  padding: 60px 0;
}
@media all and (max-width: 896px) {
  .common-featured {
    padding: 50px 0;
  }
}
@media all and (max-width: 480px) {
  .common-featured {
    padding-bottom: 32px;
  }
}
.common-featured__ttl {
  text-align: center;
  word-break: keep-all;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.625em;
  font-size: clamp(1.25rem, -0.9605rem + 3.9474vw, 2rem);
  font-weight: 700;
}
.common-featured__ttl::before, .common-featured__ttl::after {
  flex-shrink: 0;
  content: "";
  display: block;
  width: 1.75em;
  height: 0.75em;
  background: url("../images/common/mark_arrow.svg") center center/100% auto no-repeat;
}
.common-featured__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px 40px;
  margin-top: 40px;
}
@media all and (max-width: 896px) {
  .common-featured__list {
    gap: 24px;
    margin-top: 24px;
  }
}
@media all and (max-width: 480px) {
  .common-featured__list {
    flex-direction: column;
    gap: 0;
    margin-top: 10px;
  }
}
.common-featured__item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 0 0 calc(25% - 30px);
}
@media all and (max-width: 896px) {
  .common-featured__item {
    flex: 0 0 calc(50% - 12px);
  }
}
@media all and (max-width: 480px) {
  .common-featured__item {
    flex: none;
    padding: 16px 0;
    flex-direction: row;
    flex-wrap: wrap;
    position: relative;
  }
  .common-featured__item:first-of-type::before {
    content: none;
  }
  .common-featured__item::before {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: #CDE6EA;
    position: absolute;
    top: 0;
    left: 0;
  }
}
.common-featured__img {
  display: block;
}
@media all and (max-width: 480px) {
  .common-featured__img {
    flex-shrink: 0;
    width: 42.62%;
  }
}
.common-featured__img img {
  width: 100%;
  max-width: none;
}
@media all and (max-width: 480px) {
  .common-featured__block {
    flex: 1 1 calc(57.38% - 8px);
  }
}
.common-featured__brand {
  display: flex;
  align-items: flex-start;
  gap: 4px;
}
.common-featured__brand dt {
  flex-shrink: 0;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
  color: #E32349;
  background: #FAE8E8;
  padding: 0.33em;
  border-radius: 4px;
}
.common-featured__brand dd {
  font-size: clamp(0.75rem, 0.3816rem + 0.6579vw, 0.875rem);
  font-weight: 700;
}
.common-featured__name {
  font-weight: 700;
  margin-top: 4px;
}
.common-featured__name > a {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
@media all and (max-width: 480px) {
  .common-featured__txt {
    flex: 1;
  }
}
.common-featured__btn {
  margin-top: 4px;
}
@media all and (max-width: 896px) {
  .common-featured__btn {
    margin-top: 0;
    flex-shrink: 0;
  }
}
@media all and (max-width: 480px) {
  .common-featured__btn {
    flex-shrink: 0;
    margin-top: 0;
    align-self: center;
  }
}
.common-featured__btn a {
  text-align: center;
  display: block;
  padding: 0.63em;
  background: #E32349;
  border-radius: 4px;
  color: #fff;
  font-weight: 700;
}

.common-ranking {
  padding: 60px 0;
  background: url("../images/common/ranking_bg.webp") center center/cover no-repeat;
}
@media all and (max-width: 896px) {
  .common-ranking {
    padding: 32px 0 50px;
  }
}
.common-ranking__wrap {
  max-width: 1520px;
  width: calc(100% - 100px);
}
@media all and (max-width: 480px) {
  .common-ranking__wrap {
    width: calc(100% - 30px);
  }
}
.common-ranking__container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px 6%;
}
@media all and (max-width: 1367px) {
  .common-ranking__container {
    gap: 50px 32px;
  }
}
@media all and (max-width: 896px) {
  .common-ranking__container {
    grid-template-columns: repeat(1, 1fr);
  }
}
.common-ranking__group {
  margin-top: 20px;
  background: #fff;
}
.common-ranking__tab {
  text-align: center;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(50%, 1fr));
}
.common-ranking__tab__item {
  font-size: 1rem;
  font-weight: 700;
  padding: 0.625em;
  background: #F0F0F0;
  position: relative;
}
.common-ranking__tab__item.--active {
  background: #fff;
  border-bottom: 4px solid #E32349;
}
.common-ranking__tab__item.--active::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
  border-top: 12px solid #E32349;
  border-bottom: 0;
  position: absolute;
  bottom: -12px;
  left: 50%;
  translate: -50% 0;
}
.common-ranking__ttl {
  word-break: keep-all;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 1.67em;
  font-size: clamp(1.25rem, 0.5132rem + 1.3158vw, 1.5rem);
  font-weight: 700;
  color: #F8D386;
}
@media all and (max-width: 896px) {
  .common-ranking__ttl {
    gap: 1.2em;
  }
}
.common-ranking__ttl::before, .common-ranking__ttl::after {
  flex-shrink: 0;
  content: "";
  display: block;
  width: 1.5em;
  height: 3em;
  background: url("../images/common/crown_left.png") center center/100% auto no-repeat;
}
.common-ranking__ttl::after {
  background-image: url("../images/common/crown_right.png");
}
.common-ranking__ttl__jp {
  margin-bottom: 0.58em;
}
.common-ranking__ttl__jp::before {
  content: "";
  display: block;
  width: 3.33em;
  height: 1.33em;
  background: url("../images/common/star.png") center center/100% auto no-repeat;
  margin-inline: auto;
  margin-bottom: 8px;
}
.common-ranking__contents {
  padding: 24px;
  display: none;
}
@media all and (max-width: 896px) {
  .common-ranking__contents {
    padding: 12px 12px 20px;
  }
}
.common-ranking__contents.--active {
  display: block;
  -webkit-animation: accOpen 0.3s ease-out;
          animation: accOpen 0.3s ease-out;
}
.common-ranking__list {
  padding-left: 20px;
}
@media all and (max-width: 896px) {
  .common-ranking__list {
    padding-left: 16px;
  }
}
.common-ranking__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 24px 0 16px;
  border-bottom: 1px solid #CDE6EA;
}
@media all and (max-width: 896px) {
  .common-ranking__item {
    padding: 16px 0 14px;
  }
}
.common-ranking__item:nth-of-type(2) .common-ranking__thumb::before {
  background-image: url("../images/common/ranking_number_02.png");
}
.common-ranking__item:nth-of-type(3) .common-ranking__thumb::before {
  background-image: url("../images/common/ranking_number_03.png");
}
.common-ranking__thumb {
  flex-shrink: 0;
  width: min(154px, 24%);
  position: relative;
}
@media all and (max-width: 600px) {
  .common-ranking__thumb {
    width: min(120px, 40%);
  }
}
.common-ranking__thumb img {
  width: 100%;
  max-width: none;
}
.common-ranking__thumb::before {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  background: url("../images/common/ranking_number_01.png") center center/100% auto no-repeat;
  position: absolute;
  top: -12px;
  left: -20px;
}
@media all and (max-width: 896px) {
  .common-ranking__thumb::before {
    width: 32px;
    height: 32px;
    top: -10px;
    left: -16px;
  }
}
.common-ranking__block {
  flex-grow: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
@media all and (max-width: 600px) {
  .common-ranking__block {
    flex-direction: column;
    align-items: flex-start;
  }
}
.common-ranking__name {
  flex-grow: 1;
  font-weight: 700;
}
.common-ranking__name > a {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
.common-ranking__btn {
  flex-shrink: 0;
  width: 8.125em;
}
.common-ranking__btn > a {
  text-align: center;
  display: block;
  font-weight: 700;
  color: #fff;
  padding: 0.5em;
  border-radius: 4px;
  background: #E32349;
}
.common-ranking__note {
  font-size: clamp(0.75rem, 0.3816rem + 0.6579vw, 0.875rem);
  color: #fff;
  margin-top: 12px;
}
.common-ranking__note > li {
  padding-left: 1.2em;
  position: relative;
}
.common-ranking__note > li::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}

.common-about {
  padding: 60px 0;
  background-color: #ffffff;
  background-image: linear-gradient(90deg, #b9e1f0 2px, transparent 2px), linear-gradient(#b9e1f0 2px, transparent 2px);
  background-position: 10px 10px;
  background-size: 32px 32px;
}
.common-about__wrap {
  width: 100%;
  max-width: 1000px;
}
.common-about__container {
  border-top: 12px solid #086581;
  padding: 62px 24px;
  background: #fff;
}
@media all and (max-width: 896px) {
  .common-about__container {
    padding: 36px 20px 40px;
  }
}
.common-about__container + .common-about__container {
  margin-top: 70px;
}
.common-about__inner {
  max-width: 800px;
  margin-inline: auto;
}
.common-about__ttl {
  word-break: keep-all;
  text-align: center;
  font-size: clamp(1.5rem, 0.0263rem + 2.6316vw, 2rem);
  font-weight: 700;
}
.common-about__catch {
  margin-top: 32px;
}
@media all and (max-width: 896px) {
  .common-about__catch {
    margin-top: 24px;
  }
}
.common-about .common-links {
  margin-top: 60px;
}
@media all and (max-width: 896px) {
  .common-about .common-links {
    margin-top: 32px;
  }
}
.common-about__merit {
  margin-top: 32px;
}
.common-about__merit + .common-about__merit {
  margin-top: 50px;
}
.common-about__merit.--demerit .common-about__merit__ttl::before {
  background-image: url("../images/common/demerit_point.svg");
}
.common-about__merit.--demerit .common-about__merit__subttl {
  color: #086581;
}
.common-about__merit__ttl {
  display: flex;
  align-items: flex-start;
  gap: 0.5em;
  font-size: clamp(1.25rem, 0.5132rem + 1.3158vw, 1.5rem);
  font-weight: 700;
}
.common-about__merit__ttl::before {
  content: "";
  display: block;
  width: 1.67em;
  height: 1.08em;
  background: url("../images/common/merit_point.svg") center center/100% auto no-repeat;
  margin-top: 0.18em;
}
.common-about__merit__ttl + .common-about__merit__subttl {
  margin-top: 20px;
}
@media all and (max-width: 896px) {
  .common-about__merit__ttl + .common-about__merit__subttl {
    margin-top: 16px;
  }
}
.common-about__merit__subttl {
  font-size: 1rem;
  font-weight: 700;
  color: #E32349;
  margin-top: 32px;
  margin-bottom: 8px;
}
@media all and (max-width: 896px) {
  .common-about__merit__subttl {
    margin-top: 24px;
  }
}
.common-about__merit__txt + .common-about__merit__txt {
  margin-top: 24px;
}
@media all and (max-width: 896px) {
  .common-about__merit__txt + .common-about__merit__txt {
    margin-top: 16px;
  }
}
.common-about__merit__flex {
  display: flex;
  gap: 32px;
  margin-top: 40px;
}
@media all and (max-width: 896px) {
  .common-about__merit__flex {
    flex-direction: column;
    gap: 24px;
    margin-top: 24px;
  }
}
.common-about__merit__flex__contents {
  flex-grow: 1;
}
@media all and (max-width: 896px) {
  .common-about__merit__flex__contents {
    width: 100%;
  }
}
.common-about__merit__flex__contents > *:first-child {
  margin-top: 0;
}
.common-about__merit__flex__img {
  flex-shrink: 0;
  width: 43.75%;
}
@media all and (max-width: 896px) {
  .common-about__merit__flex__img {
    width: 100%;
  }
}
.common-about__merit__flex__img img {
  width: 100%;
  max-width: none;
}
.common-about__contents {
  margin-top: 32px;
}
.common-about__contents + .common-about__contents {
  margin-top: 50px;
}
.common-about__contents__ttl {
  padding-left: calc(0.67em + 8px);
  margin-bottom: 24px;
  font-size: clamp(1.25rem, 0.5132rem + 1.3158vw, 1.5rem);
  font-weight: 700;
  position: relative;
}
@media all and (max-width: 896px) {
  .common-about__contents__ttl {
    margin-bottom: 16px;
  }
}
.common-about__contents__ttl::before {
  content: "";
  display: block;
  width: 8px;
  height: 100%;
  background: #23C3E3;
  position: absolute;
  top: 0;
  left: 0;
}
.common-about__contents__ttl + .common-about__contents__subttl {
  margin-top: 20px;
}
@media all and (max-width: 896px) {
  .common-about__contents__ttl + .common-about__contents__subttl {
    margin-top: 16px;
  }
}
.common-about__contents__subttl {
  font-size: clamp(1.125rem, 0.7566rem + 0.6579vw, 1.25rem);
  font-weight: 700;
  margin: 32px 0 16px;
}
@media all and (max-width: 896px) {
  .common-about__contents__subttl {
    margin: 24px 0 12px;
  }
}
.common-about__contents__txt + .common-about__contents__txt {
  margin-top: 24px;
}
@media all and (max-width: 896px) {
  .common-about__contents__txt + .common-about__contents__txt {
    margin-top: 16px;
  }
}
.common-about__contents__table {
  max-width: 500px;
  margin-inline: auto;
  margin-top: 24px;
}
.common-about__contents__table table {
  width: 100%;
  border-collapse: collapse;
}
.common-about__contents__table th, .common-about__contents__table td {
  padding: 0.5em 0.75em;
  border: 1px solid #DADADA;
}
.common-about__contents__table th {
  font-weight: 700;
  background: #FEF6EA;
}
.common-about__contents__table td {
  background: #fff;
}
.common-about__kind {
  margin-top: 32px;
}
@media all and (max-width: 600px) {
  .common-about__kind {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
}
.common-about__kind + .common-about__kind {
  margin-top: 50px;
}
.common-about__kind__ttl {
  padding-left: calc(0.67em + 8px);
  margin-bottom: 24px;
  font-size: clamp(1.25rem, 0.5132rem + 1.3158vw, 1.5rem);
  font-weight: 700;
  position: relative;
}
@media all and (max-width: 896px) {
  .common-about__kind__ttl {
    margin-bottom: 16px;
  }
}
@media all and (max-width: 600px) {
  .common-about__kind__ttl {
    margin-bottom: 0;
  }
}
.common-about__kind__ttl::before {
  content: "";
  display: block;
  width: 8px;
  height: 100%;
  background: #23C3E3;
  position: absolute;
  top: 0;
  left: 0;
}
@media all and (max-width: 600px) {
  .common-about__kind__txt {
    order: 2;
  }
}
.common-about__kind__txt + .common-about__kind__txt {
  margin-top: 24px;
}
@media all and (max-width: 896px) {
  .common-about__kind__txt + .common-about__kind__txt {
    margin-top: 16px;
  }
}
.common-about__kind__flex {
  display: flex;
  gap: 20px;
  margin-top: 24px;
}
@media all and (max-width: 600px) {
  .common-about__kind__flex {
    display: contents;
  }
}
.common-about__kind__flex__img {
  flex-shrink: 0;
  width: 43.75%;
}
@media all and (max-width: 600px) {
  .common-about__kind__flex__img {
    width: 100%;
    order: 1;
  }
}
.common-about__kind__flex__contents {
  flex-grow: 1;
}
@media all and (max-width: 600px) {
  .common-about__kind__flex__contents {
    width: 100%;
    order: 3;
    margin-top: 4px;
  }
}
.common-about__kind__flex__contents > *:first-child {
  margin-top: 0;
}
.common-about__kind__btn {
  margin-top: 28px;
  max-width: 300px;
}
@media all and (max-width: 600px) {
  .common-about__kind__btn {
    margin-inline: auto;
  }
}
.common-about__kind__btn.--filter .common-about__kind__btn__link {
  background: #41B6B9;
}
.common-about__kind__btn.--filter .common-about__kind__btn__link::before {
  background-image: url("../images/common/icon_filter.svg");
}
.common-about__kind__btn__link {
  padding: 0.7em;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75em;
  background: #177FC4;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  border-radius: 8px;
}
.common-about__kind__btn__link::before {
  content: "";
  display: block;
  width: 2em;
  height: 2em;
  background: url("../images/common/icon_bottle.svg") center center/100% auto no-repeat;
}
.common-about__recommend {
  padding: 16px 24px;
  border-radius: 8px;
  background: #FEF6EA;
}
.common-about__recommend dt {
  font-weight: 700;
  padding-bottom: 0.75em;
  margin-bottom: 0.75em;
  position: relative;
}
.common-about__recommend dt::before {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-position: left bottom;
  background-size: auto auto;
  background-color: transparent;
  background-image: repeating-linear-gradient(90deg, #DCC54F, #DCC54F 8px, transparent 8px, transparent 16px);
  position: absolute;
  bottom: 0;
  left: 0;
}
.common-about__recommend dd > *:first-child {
  margin-top: 0;
}
.common-about__recommend__list > li {
  padding-left: 1.2em;
  position: relative;
}
.common-about__recommend__list > li::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}
.common-about__btn {
  margin-top: 60px;
}
@media all and (max-width: 896px) {
  .common-about__btn {
    margin-top: 40px;
  }
}
.common-about__btn__link {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1em;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
.common-about__btn__link::after {
  flex-shrink: 0;
  content: "";
  display: block;
  width: 2em;
  height: 2em;
  background: url("../images/common/circle_arrow_right.svg") center center/100% auto no-repeat;
}

.common-column {
  padding: 100px 0 90px;
  background: #fff;
}
@media all and (max-width: 896px) {
  .common-column {
    padding: 50px 0 72px;
  }
}
.common-column__wrap {
  max-width: 800px;
}
.common-column__ttl {
  text-align: center;
  font-size: clamp(1.5rem, 0.0263rem + 2.6316vw, 2rem);
  font-weight: 700;
}
.common-column__list {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media all and (max-width: 896px) {
  .common-column__list {
    margin-top: 24px;
    gap: 10px;
  }
}
.common-column__link {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.6em;
  padding: 1.125em 4.5em 1.125em 1.5em;
  background: #F9EDE1;
  border-radius: 8px;
  position: relative;
}
@media all and (max-width: 896px) {
  .common-column__link {
    padding: 1.43em 2.29em 1.43em 0.71em;
  }
}
.common-column__link::after {
  content: "";
  display: block;
  width: 1.5em;
  height: 1.5em;
  background: url("../images/common/circle_arrow_right.svg") center center/100% auto no-repeat;
  position: absolute;
  top: 50%;
  right: 1.5em;
  translate: 0 -50%;
}
@media all and (max-width: 896px) {
  .common-column__link::after {
    width: 1.14em;
    height: 1.14em;
    right: 0.57em;
  }
}
.common-column__txt {
  flex: 1;
  font-weight: 700;
}
@media all and (max-width: 600px) {
  .common-column__txt {
    flex-basis: 100%;
  }
}
.common-column__tag {
  display: inline-block;
  padding: 0.2em 0.8em;
  background: #fff;
  border-radius: 2px;
  font-size: clamp(0.75rem, 0.3816rem + 0.6579vw, 0.875rem);
  font-weight: 700;
}
.common-column .common-links {
  margin-top: 60px;
}
@media all and (max-width: 896px) {
  .common-column .common-links {
    margin-top: 50px;
  }
}

.common-pagetop {
  text-align: center;
  margin-top: 120px;
}
@media all and (max-width: 896px) {
  .common-pagetop {
    margin-top: 100px;
  }
}
.common-pagetop__contents {
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 0.5em;
  width: 104px;
  height: 104px;
  background: #000;
  color: #fff;
  border-radius: 50%;
  font-size: 1rem;
  font-weight: 700;
}
@media all and (max-width: 896px) {
  .common-pagetop__contents {
    width: 90px;
    height: 90px;
  }
}
.common-pagetop__contents::before {
  content: "";
  display: block;
  width: 1.5em;
  height: 1.5em;
  background: url("../images/common/pagetop_arrow.svg") center center/100% auto no-repeat;
}

/* header */
/* ============================================ */
.header {
  width: 100%;
  height: 80px;
  background: #fff;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 600;
}
@media all and (max-width: 896px) {
  .header {
    height: 72px;
  }
}
.header-wrapper {
  padding: 0 min(40px, 2.08vw) 0 min(32px, 1.67vw);
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
@media all and (max-width: 896px) {
  .header-wrapper {
    padding: 0 0 0 12px;
    gap: 8px;
  }
}
@media all and (max-width: 896px) {
  .header-logo img {
    width: 379.2px;
  }
}
.header-contents {
  flex-shrink: 0;
}
.header-menu {
  font-size: clamp(0.875rem, 0.7656rem + 0.1953vw, 1rem);
  display: flex;
  align-items: center;
}
@media all and (max-width: 896px) {
  .header-menu {
    display: none;
  }
}
.header-menu__item {
  position: relative;
}
.header-menu__link {
  display: block;
  font-weight: 700;
  padding: 0.75em 1.25em;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header-menu__trigger {
  cursor: pointer;
  font-weight: 700;
  padding: 0.75em 1.25em;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75em;
}
.header-menu__trigger.--active::after {
  rotate: 180deg;
}
.header-menu__trigger::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
  border-top: 6px solid #000;
  border-bottom: 0;
  transition: rotate 0.1s ease-out;
}
.header-menu__contents {
  display: none;
  white-space: nowrap;
  padding: 0 0.5em;
  background: #086581;
  font-weight: 700;
  color: #fff;
  position: absolute;
  left: 50%;
  translate: -50% 0;
}
.header-menu__contents.--open {
  display: block;
  -webkit-animation: accOpen 0.3s ease-out;
          animation: accOpen 0.3s ease-out;
}
.header-menu__contents__item {
  border-top: 2px solid #fff;
}
.header-menu__contents__item:first-of-type {
  border-top: none;
}
.header-menu__contents__link {
  display: block;
  padding: 1.5em 0.75em;
}
.header-hamburger {
  display: none;
}
@media all and (max-width: 896px) {
  .header-hamburger {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 3px;
    width: 72px;
    height: 72px;
    background: #fff;
    cursor: pointer;
    position: relative;
    z-index: 600;
  }
}
.header-hamburger.--active .header-hamburger__line {
  width: 28px;
}
.header-hamburger.--active .header-hamburger__line:nth-of-type(1) {
  translate: 0 0;
  rotate: -35deg;
}
.header-hamburger.--active .header-hamburger__line:nth-of-type(2) {
  opacity: 0;
}
.header-hamburger.--active .header-hamburger__line:nth-of-type(3) {
  translate: 0 0;
  rotate: 35deg;
}
.header-hamburger__block {
  width: 28px;
  height: 16px;
  position: relative;
}
.header-hamburger__line {
  display: block;
  width: 24px;
  height: 2px;
  background: #086581;
  transition: rotate 0.3s ease-out, opacity 0.1s ease-out;
  position: absolute;
  inset: 0;
  margin: auto;
}
.header-hamburger__line:nth-of-type(1) {
  translate: 0 -7px;
}
.header-hamburger__line:nth-of-type(3) {
  translate: 0 7px;
}
.header-hamburger__txt {
  font-size: 0.75rem;
  font-weight: 700;
  color: #086581;
}
.header-nav {
  display: none;
}
@media all and (max-width: 896px) {
  .header-nav {
    display: block;
    width: 100%;
    max-width: 350px;
    height: 100vh;
    padding: 100px 40px 80px;
    background: #fff;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 400;
    translate: 100% 0;
    transition: all 0.3s linear;
    overflow: auto;
  }
}
.header-nav.--open {
  translate: 0 0;
}
.header-nav__list {
  font-size: 1rem;
}
.header-nav__link {
  display: block;
  padding: 0.63em 0;
  font-weight: 700;
}
.header-nav__item {
  margin-top: 24px;
}
.header-nav__item:first-of-type {
  margin-top: 0;
}
.header-nav__acc__trigger {
  color: #707070;
  font-weight: 700;
  padding: 0.63em 0;
}
.header-nav__acc__list {
  margin-bottom: 1em;
}
.header-nav__acc__link {
  display: block;
  padding: 0.63em 0 0.63em 1.2em;
  position: relative;
  font-weight: 700;
}
.header-nav__acc__link::before {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1px;
  background: #000;
  position: absolute;
  top: calc(1.45em - 0.5px);
  left: 0;
}
.header .overlay {
  display: none;
}
@media all and (max-width: 896px) {
  .header .overlay {
    display: block;
    width: 0;
    height: 0;
    background: rgba(0, 0, 0, 0.5);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 200;
    opacity: 0;
    transition: opacity 0.3s ease-out;
  }
}
.header .overlay.--open {
  width: 100%;
  height: 100%;
  opacity: 1;
}

/* footer */
/* ============================================ */
.footer {
  background: #FAF8F6;
}
.footer-top {
  padding: 40px 0 72px;
}
@media all and (max-width: 896px) {
  .footer-top {
    padding-bottom: 40px;
  }
}
.footer-top__wrap {
  width: calc(100% - 40px);
}
.footer-top__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px;
}
@media all and (max-width: 896px) {
  .footer-top__inner {
    gap: 64px;
  }
}
@media all and (max-width: 480px) {
  .footer-top__inner {
    grid-template-columns: repeat(1, 1fr);
  }
}
.footer-top__container {
  padding-bottom: 32px;
  position: relative;
}
@media all and (max-width: 896px) {
  .footer-top__container {
    padding-bottom: 24px;
  }
}
@media all and (max-width: 480px) {
  .footer-top__container {
    padding-bottom: 0;
  }
}
.footer-top__container:nth-of-type(odd)::before {
  content: none;
}
.footer-top__container::before {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  background: #000;
  position: absolute;
  top: 0;
  left: -40px;
}
@media all and (max-width: 896px) {
  .footer-top__container::before {
    left: -32px;
  }
}
@media all and (max-width: 480px) {
  .footer-top__container::before {
    width: 100%;
    height: 1px;
    top: -32px;
    left: 0;
  }
}
.footer-top__ttl {
  font-size: clamp(1rem, 0.2632rem + 1.3158vw, 1.25rem);
  font-weight: 700;
}
.footer-top__contents {
  font-size: 1rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(140px, 100%), 1fr));
  gap: 20px;
  margin-top: 20px;
}
@media all and (max-width: 896px) {
  .footer-top__contents {
    gap: 12px;
    margin-top: 16px;
  }
}
@media all and (max-width: 480px) {
  .footer-top__contents {
    grid-template-columns: repeat(1, 1fr);
  }
}
.footer-top__list__item a {
  display: block;
  padding: 0.5em 0;
}
.footer-top__detail dt {
  font-weight: 700;
  padding: 0.5em 0;
}
.footer-top__detail__list__item > a {
  display: block;
  padding: 0.5em 0 0.5em 1.2em;
  position: relative;
}
.footer-top__detail__list__item > a::before {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1px;
  background: #000;
  position: absolute;
  top: calc(1.3em - 0.5px);
  left: 0;
}
.footer-nextone__ttl {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 0.75em;
  font-size: 1rem;
  font-weight: 700;
}
.footer-nextone__contents {
  font-size: 1rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
  gap: 0 20px;
  margin-top: 20px;
}
@media all and (max-width: 896px) {
  .footer-nextone__contents {
    grid-template-columns: repeat(1, 1fr);
    gap: 0 12px;
    margin-top: 16px;
  }
}
.footer-bottom {
  padding: 18px 0;
  background: #086581;
  color: #fff;
}
@media all and (max-width: 896px) {
  .footer-bottom {
    padding: 24px 0 44px;
  }
}
.footer-bottom__wrap {
  width: calc(100% - 40px);
}
.footer-bottom__list {
  text-align: center;
  font-size: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5em 2.5em;
}
@media all and (max-width: 896px) {
  .footer-bottom__list {
    flex-direction: column;
  }
}
.footer-bottom__list__item.--copyright {
  font-family: "BIZ UDPGothic", sans-serif;
  font-style: normal;
}

/* top */
/* ============================================ */
.top-mainvisual__img img {
  width: 100%;
  max-width: none;
}
.top-mainvisual__container {
  padding-top: 40px;
}
@media all and (max-width: 896px) {
  .top-mainvisual__container {
    padding-top: 32px;
  }
}
.top-mainvisual__what {
  margin-top: 24px;
}
.top-mainvisual__what > a {
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5em;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
.top-mainvisual__what > a::before {
  flex-shrink: 0;
  content: "";
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  background: url("../images/common/icon_question.svg") center center/100% auto no-repeat;
}

/* top */
/* ============================================ */
.second-mainvisual__container {
  width: 100%;
}
.second-mainvisual__img img {
  width: 100%;
  max-width: none;
}
.second-mainvisual .common-links {
  margin-top: 50px;
}
@media all and (max-width: 896px) {
  .second-mainvisual .common-links {
    margin-top: 32px;
  }
}
.second-mainvisual__inner {
  padding-inline: 15px;
}

.second-breadclumb {
  padding-block: 20px;
}
@media all and (max-width: 896px) {
  .second-breadclumb {
    padding-block: 16px;
  }
}
.second-breadclumb__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 28px;
  font-size: clamp(0.75rem, 0.3816rem + 0.6579vw, 0.875rem);
  line-height: 1.4;
}
@media all and (max-width: 896px) {
  .second-breadclumb__list {
    gap: 6px 30px;
  }
}
.second-breadclumb__item {
  position: relative;
}
.second-breadclumb__item::after {
  content: "";
  width: 5px;
  height: 5px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  position: absolute;
  top: 50%;
  right: -16px;
  rotate: 45deg;
  translate: 0 -50%;
}
@media all and (max-width: 896px) {
  .second-breadclumb__item::after {
    right: -17px;
  }
}
.second-breadclumb__item:last-of-type::after {
  content: none;
}
.second-breadclumb__item a {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

/* list page */
/* ============================================ */
.list-page {
  padding: 40px 0 80px;
}
@media all and (max-width: 896px) {
  .list-page {
    padding: 32px 0 40px;
  }
}
.list-page__inner {
  max-width: 1800px;
  width: calc(100% - 40px);
  margin-inline: auto;
}
@media all and (max-width: 480px) {
  .list-page__inner {
    width: calc(100% - 30px);
  }
}
.list-page__ttl {
  word-break: keep-all;
  text-align: center;
  font-size: clamp(1.5rem, 0.0263rem + 2.6316vw, 2rem);
  font-weight: 700;
}
.list-page__header {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}
@media all and (max-width: 896px) {
  .list-page__header {
    margin-top: 20px;
  }
}
.list-page__cta {
  margin-top: 80px;
}
@media all and (max-width: 896px) {
  .list-page__cta {
    margin-top: 50px;
  }
}
@media all and (max-width: 600px) {
  .list-page__cta .common-links__item {
    width: 300px;
  }
}
.list-page__cta .common-links__link {
  background: linear-gradient(90deg, #34D1EF 0%, #15B6D5 100%);
}
@media all and (max-width: 600px) {
  .list-page__cta .common-links__link {
    flex-direction: row;
    gap: 0.5em;
  }
}
@media all and (max-width: 600px) {
  .list-page__cta .common-links__link::before {
    width: 2.17em;
    height: 2.17em;
  }
}

/* 絞り込みボタン */
/* ============================================ */
.list-filter__btn {
  width: 300px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.63em;
  padding: 0.63em 1em;
  background: #393939;
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.3s ease-out;
}
@media (hover: hover) {
  .list-filter__btn:hover {
    opacity: 0.7;
  }
}
.list-filter__btn__icon {
  flex-shrink: 0;
  display: inline-block;
  width: 1.75em;
  height: 1.75em;
  background: url("../images/common/icon_narrow.svg") center center/100% auto no-repeat;
}
.list-filter__btn__count__wrap {
  display: none;
}
.list-filter__btn__count__wrap.--show {
  position: relative;
  display: inline-block;
}
.list-filter__btn__dot {
  position: absolute;
  top: -0.3em;
  right: -1em;
  width: 12px;
  height: 12px;
  background: #E32349;
  border: 1px solid #fff;
  border-radius: 50%;
  display: none;
}
.list-filter__btn__dot.--show {
  display: block;
}

/* テーブル本体 */
/* ============================================ */
.list-table {
  margin-top: 24px;
  margin-inline: -20px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  /* ヘッダー行 */
  /* 固定ヘッダークローン（JSで生成） */
  /* 列幅指定 */
  /* 料金・チャイルドロック・規格のグループヘッダー */
  /* ソートボタン */
  /* ソートアイコン（上下矢印） */
  /* ソート状態 */
}
@media all and (max-width: 480px) {
  .list-table {
    margin-inline: -15px;
  }
}
.list-table table {
  width: 100%;
  min-width: 1370px;
  border-collapse: collapse;
  font-size: clamp(0.625rem, -0.1118rem + 1.3158vw, 0.875rem);
}
@media all and (max-width: 896px) {
  .list-table table {
    min-width: 958px;
  }
}
.list-table th, .list-table td {
  padding: 10px 12px;
  border-right: 1px solid #CDE6EA;
  border-left: 1px solid #CDE6EA;
  vertical-align: middle;
  text-align: center;
}
@media all and (max-width: 896px) {
  .list-table th, .list-table td {
    padding: 8px 10px;
  }
}
.list-table thead th {
  text-align: center;
  background: #EBF3F1;
  font-weight: 700;
  white-space: nowrap;
  line-height: 1.4;
  border-top: 1px solid #CDE6EA;
}
.list-table.js-list-table-sticky {
  display: none;
  position: fixed;
  overflow: hidden;
  z-index: 3;
  margin: 0;
}
.list-table.js-list-table-sticky table {
  min-width: 0;
  table-layout: fixed;
}
.list-table.js-list-table-sticky th {
  min-width: 0;
}
.list-table tbody tr {
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}
.list-table .--name {
  min-width: 280px;
  text-align: left;
}
@media all and (max-width: 896px) {
  .list-table .--name {
    min-width: 160px;
  }
}
.list-table .--point {
  min-width: 160px;
  text-align: left;
}
@media all and (max-width: 896px) {
  .list-table .--point {
    min-width: 120px;
  }
}
.list-table .--monthly {
  min-width: 90px;
}
@media all and (max-width: 896px) {
  .list-table .--monthly {
    min-width: 70px;
  }
}
.list-table .--bottle-fee {
  min-width: 90px;
}
@media all and (max-width: 896px) {
  .list-table .--bottle-fee {
    min-width: 70px;
  }
}
.list-table .--bottle-type {
  min-width: 120px;
}
@media all and (max-width: 896px) {
  .list-table .--bottle-type {
    min-width: 80px;
  }
}
.list-table .--hot,
.list-table .--cold {
  min-width: 50px;
}
@media all and (max-width: 896px) {
  .list-table .--hot,
.list-table .--cold {
    min-width: 34px;
  }
}
.list-table .--width,
.list-table .--depth,
.list-table .--height {
  min-width: 90px;
  white-space: nowrap;
}
@media all and (max-width: 896px) {
  .list-table .--width,
.list-table .--depth,
.list-table .--height {
    min-width: 70px;
  }
}
.list-table .--filter-period {
  min-width: 100px;
  white-space: nowrap;
}
@media all and (max-width: 896px) {
  .list-table .--filter-period {
    min-width: 70px;
  }
}
.list-table .--contract {
  min-width: 100px;
  text-align: left;
}
@media all and (max-width: 896px) {
  .list-table .--contract {
    min-width: 70px;
  }
}
.list-table .--delivery {
  min-width: 120px;
  text-align: left;
}
@media all and (max-width: 896px) {
  .list-table .--delivery {
    min-width: 80px;
  }
}
.list-table .--campaign {
  min-width: 140px;
}
@media all and (max-width: 896px) {
  .list-table .--campaign {
    min-width: 100px;
  }
}
.list-table .--price,
.list-table .--childlock,
.list-table .--size {
  border-bottom-width: 0;
}
.list-table__sort__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: inherit;
  font-weight: 700;
  color: inherit;
  padding: 0;
  line-height: 1.4;
  white-space: nowrap;
}
@media (hover: hover) {
  .list-table__sort__btn:hover {
    opacity: 0.7;
  }
}
.list-table__sort__icon {
  flex-shrink: 0;
  display: inline-flex;
  flex-direction: column;
  gap: 1px;
}
.list-table__sort__icon .sort-up,
.list-table__sort__icon .sort-down {
  display: block;
  width: 10px;
  height: 10px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.list-table__sort__icon .sort-up {
  background-image: url("../images/common/arrow_top.svg");
  transform: translateX(-2px);
}
.list-table__sort__icon .sort-down {
  background-image: url("../images/common/arrow_bottom.svg");
  transform: translateX(2px);
}
.list-table__th.--asc .sort-up {
  opacity: 1;
}
.list-table__th.--asc .sort-down {
  opacity: 0.7;
}
.list-table__th.--desc .sort-up {
  opacity: 0.7;
}
.list-table__th.--desc .sort-down {
  opacity: 1;
}

/* テーブル セルコンテンツ */
/* ============================================ */
/* 商品情報（第1列） */
.list-table__product {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.list-table__product__img {
  flex-shrink: 0;
  width: 90px;
}
@media all and (max-width: 896px) {
  .list-table__product__img {
    display: none;
  }
}
.list-table__product__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1/1;
}
.list-table__product__info {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media all and (max-width: 896px) {
  .list-table__product__info {
    gap: 10px;
  }
}
.list-table__product__name {
  font-weight: 700;
}
.list-table__product__name > a {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
.list-table__product__btn > a {
  display: block;
  width: 100%;
  padding: 0.5em 1em;
  background: #E32349;
  color: #fff;
  border-radius: 4px;
  font-weight: 700;
  text-align: center;
}

/* ○インジケーター */
.list-table__circle {
  color: #000;
  line-height: 1;
}

/* 配送・契約リスト */
.list-table__delivery {
  text-align: left;
}
.list-table__delivery > li {
  padding-left: 1em;
  position: relative;
  line-height: 1.6;
}
.list-table__delivery > li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}

/* キャンペーン */
.list-table__campaign {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.list-table__campaign__txt {
  text-align: left;
  width: 100%;
}
.list-table__campaign__btn > a {
  display: inline-block;
  padding: 0.43em 1.43em;
  background: #E32349;
  color: #fff;
  border-radius: 4px;
  font-size: clamp(0.5rem, -0.2368rem + 1.3158vw, 0.75rem);
  font-weight: 700;
  text-align: center;
}

/* フィルターモーダル */
/* ============================================ */
.list-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
}
.list-modal.--open {
  display: block;
}
.list-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}
.list-modal__container {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: min(800px, 100% - 32px);
  max-height: 88vh;
  overflow-y: auto;
  background: #fff;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
}
@media all and (max-width: 480px) {
  .list-modal__container {
    width: 100%;
    height: 90vh;
    max-height: 90vh;
    overflow-y: hidden;
    border-radius: 16px 16px 0 0;
    top: auto;
    bottom: 0;
    left: 0;
    translate: 0;
  }
}
.list-modal__header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  border-bottom: 1px solid #E8E8E8;
  background: #fff;
}
.list-modal__ttl {
  font-size: 0.875rem;
  font-weight: 700;
  color: #707070;
  text-align: center;
}
.list-modal__close {
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.875rem;
  padding: 4px 8px;
  transition: opacity 0.3s ease-out;
}
@media all and (max-width: 896px) {
  .list-modal__close {
    right: 12px;
  }
}
@media (hover: hover) {
  .list-modal__close:hover {
    opacity: 0.7;
  }
}
.list-modal__body {
  padding-inline: 24px;
}
@media all and (max-width: 896px) {
  .list-modal__body {
    padding-inline: 16px;
  }
}
@media all and (max-width: 480px) {
  .list-modal__body {
    flex: 1 1 0;
    min-height: 0;
    overflow-y: auto;
  }
}
.list-modal__group {
  padding-block: 12px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px 1em;
}
@media all and (max-width: 480px) {
  .list-modal__group {
    flex-direction: column;
  }
}
.list-modal__group + .list-modal__group {
  border-top: 1px solid #DADADA;
}
.list-modal__group:last-of-type {
  border-bottom: 1px solid #DADADA;
}
.list-modal__group__ttl {
  flex-shrink: 0;
  width: 12em;
  font-weight: 700;
}
@media all and (max-width: 480px) {
  .list-modal__group__ttl {
    width: 100%;
  }
}
.list-modal__options {
  width: calc(100% - 13em);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 1em;
}
@media all and (max-width: 480px) {
  .list-modal__options {
    width: 100%;
  }
}
.list-modal__label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  line-height: 1.4;
}
@media (hover: hover) {
  .list-modal__label:hover {
    opacity: 0.75;
  }
}
.list-modal__checkbox {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: #E32349;
  cursor: pointer;
}
.list-modal__note__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin: 4px 0 0 auto;
  text-decoration: underline;
  text-underline-offset: 0.2em;
  font-weight: 700;
}
.list-modal__footer {
  padding: 24px 24px 32px;
}
@media all and (max-width: 480px) {
  .list-modal__footer {
    flex-shrink: 0;
    padding: 0;
  }
}
.list-modal__submit {
  text-align: center;
  display: block;
  width: 100%;
  max-width: 240px;
  margin-inline: auto;
  padding: 0.8em 1em;
  background: #E32349;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.3s ease-out;
}
@media all and (max-width: 480px) {
  .list-modal__submit {
    max-width: inherit;
    border-radius: 0;
  }
}
@media (hover: hover) {
  .list-modal__submit:hover {
    opacity: 0.8;
  }
}

/* detail page */
/* ============================================ */
.detail-page {
  padding: 32px 0 80px;
}
@media all and (max-width: 896px) {
  .detail-page {
    padding: 16px 0 50px;
  }
}

/* ヒーローエリア（2カラムレイアウト） */
/* ============================================ */
.detail-layout {
  display: flex;
  align-items: flex-start;
  gap: 0 40px;
  padding-top: 20px;
}
@media all and (max-width: 896px) {
  .detail-layout {
    flex-direction: column;
    padding-top: 16px;
  }
}
.detail-layout__left {
  flex-shrink: 0;
  width: 35%;
  padding-bottom: 80px;
  position: -webkit-sticky;
  position: sticky;
  top: 88px;
}
@media all and (max-width: 896px) {
  .detail-layout__left {
    width: 100%;
    padding-bottom: 24px;
    position: static;
  }
}
.detail-layout__right {
  flex: 1 1 0;
  min-width: 0;
}

@media all and (max-width: 896px) {
  .detail-hero__media {
    margin-top: 16px;
  }
}

/* 戻るリンク */
/* ============================================ */
.detail-back__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-weight: 700;
}
.detail-back__link::before {
  flex-shrink: 0;
  content: "";
  display: block;
  width: 1.43em;
  height: 1.43em;
  background: url("../images/common/circle_arrow_left_w.svg") center center/100% auto no-repeat;
}

/* ランキングバッジ */
/* ============================================ */
.detail-rank {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
}
@media all and (max-width: 896px) {
  .detail-rank {
    gap: 8px 16px;
  }
}
.detail-rank__item {
  display: flex;
  align-items: center;
  gap: 0.5em;
  font-weight: 700;
}
.detail-rank__item::before {
  flex-shrink: 0;
  content: "";
  display: inline-block;
  width: 2.375em;
  height: 2em;
  background: url("../images/common/icon_ranking_01.png") center center/contain no-repeat;
}
.detail-rank__item.--gold {
  color: #D4B243;
}
.detail-rank__item.--silver {
  color: #9A9A9A;
}
.detail-rank__item.--silver::before {
  background-image: url("../images/common/icon_ranking_02.png");
}
.detail-rank__item.--bronze {
  color: #AD886F;
}
.detail-rank__item.--bronze::before {
  background-image: url("../images/common/icon_ranking_03.png");
}

/* カテゴリタグ + タイトル */
/* ============================================ */
.detail-head__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
  margin-top: 40px;
}
@media all and (max-width: 896px) {
  .detail-head__tags {
    margin-top: 24px;
  }
}
.detail-head__tag {
  display: inline-block;
  padding: 0.125em 1.25em;
  border-radius: 9999px;
  font-weight: 700;
  color: #086581;
  background: #F0F0F0;
  line-height: 1.4;
}
.detail-head__ttl {
  font-size: clamp(1.25rem, 0.5132rem + 1.3158vw, 1.5rem);
  font-weight: 700;
  margin-top: 12px;
}
@media all and (max-width: 896px) {
  .detail-head__ttl {
    margin-top: 10px;
  }
}
.detail-head__txt {
  font-weight: 700;
  margin-top: 10px;
}
@media all and (max-width: 896px) {
  .detail-head__txt {
    margin-top: 8px;
  }
}
.detail-head__txt a {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

/* 商品メディアエリア（左カラム） */
/* ============================================ */
.detail-media {
  margin-top: 16px;
}
@media all and (max-width: 480px) {
  .detail-media__img {
    margin-inline: calc(50% - 50vw);
  }
}
.detail-media__img img {
  width: 100%;
  max-width: none;
}
.detail-media__txt {
  margin-top: 32px;
  line-height: 1.8;
}
@media all and (max-width: 896px) {
  .detail-media__txt {
    margin-top: 12px;
  }
}
.detail-media__btn {
  margin-top: 24px;
}
@media all and (max-width: 896px) {
  .detail-media__btn {
    margin-top: 20px;
  }
}
.detail-media__btn a {
  text-align: center;
  display: block;
  padding: 0.75em 1em;
  font-size: clamp(1.25rem, 0.5132rem + 1.3158vw, 1.5rem);
  font-weight: 700;
  color: #fff;
  background: #E32349;
  border-radius: 8px;
}

/* 月額費用ボックス */
/* ============================================ */
.detail-fee__container {
  padding: 24px 15px;
  background: #F9EDE1;
}
@media all and (max-width: 480px) {
  .detail-fee__container {
    margin-inline: calc(50% - 50vw);
  }
}
.detail-fee__head {
  padding-inline: 12px;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 4px 16px;
}
.detail-fee__ttl {
  font-weight: 700;
}
.detail-fee__price {
  font-weight: 700;
}
.detail-fee__price .txt_large {
  font-size: 2em;
}
.detail-fee__body {
  margin-top: 12px;
  padding-top: 12px;
  padding-inline: 12px;
  border-top: 1px solid #000;
}
.detail-fee__label {
  font-weight: 700;
}
.detail-fee__list {
  margin-top: 8px;
}
.detail-fee__list > div {
  display: flex;
  gap: 1em;
  margin-top: 8px;
}
.detail-fee__list > div:first-of-type {
  margin-top: 0;
}
.detail-fee__list dt {
  flex-shrink: 0;
  font-weight: 700;
  width: 7em;
}
.detail-fee__list dd {
  flex-grow: 1;
}
.detail-fee__txt {
  margin-top: 16px;
  font-size: clamp(0.75rem, 0.3816rem + 0.6579vw, 0.875rem);
}
.detail-fee__note {
  margin-top: 12px;
  font-size: clamp(0.75rem, 0.3816rem + 0.6579vw, 0.875rem);
}
@media all and (max-width: 896px) {
  .detail-fee__note {
    margin-top: 10px;
  }
}

/* 詳細内容 */
/* ============================================ */
.detail-contents {
  margin-top: 64px;
}
@media all and (max-width: 896px) {
  .detail-contents {
    margin-top: 32px;
  }
}
.detail-contents__ttl {
  font-size: 1rem;
  font-weight: 700;
  padding-bottom: 0.5em;
  margin-bottom: 28px;
  border-bottom: 1px solid #23C3E3;
}
@media all and (max-width: 896px) {
  .detail-contents__ttl {
    margin-bottom: 16px;
  }
}
.detail-contents__wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: flex-start;
  gap: 16px 32px;
}
@media all and (max-width: 896px) {
  .detail-contents__wrap {
    gap: 12px 24px;
  }
}
@media all and (max-width: 600px) {
  .detail-contents__wrap {
    grid-template-columns: repeat(1, 1fr);
  }
}
.detail-contents__table {
  width: 100%;
  max-width: 400px;
  border-collapse: collapse;
}
.detail-contents__table th, .detail-contents__table td {
  border: 1px solid #DADADA;
  padding: 0.5em 0.75em;
}
.detail-contents__table th {
  width: 10em;
  background: #EBF3F1;
  font-weight: 700;
}
.detail-contents__inner {
  margin-top: 24px;
}
@media all and (max-width: 896px) {
  .detail-contents__inner {
    margin-top: 20px;
  }
}
.detail-contents__inner > * {
  margin-top: 12px;
}
@media all and (max-width: 896px) {
  .detail-contents__inner > * {
    margin-top: 8px;
  }
}
.detail-contents__inner > *:first-child {
  margin-top: 0;
}
.detail-contents__inner h4 {
  font-size: 1rem;
  font-weight: 700;
  padding-left: 1.2em;
  position: relative;
  margin-top: 24px;
}
@media all and (max-width: 896px) {
  .detail-contents__inner h4 {
    margin-top: 20px;
  }
}
.detail-contents__inner h4::before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 0.5em solid transparent;
  border-bottom: 0.5em solid transparent;
  border-left: 0.75em solid #CDE6EA;
  border-right: 0;
  position: absolute;
  top: 0.25em;
  left: 0;
}
.detail-contents__links {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 32px;
}
@media all and (max-width: 896px) {
  .detail-contents__links {
    margin-top: 20px;
  }
}
.detail-contents__link > a {
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5em;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
.detail-contents__link > a::before {
  flex-shrink: 0;
  content: "";
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  background: url("../images/common/icon_question.svg") center center/100% auto no-repeat;
}

/* CTAボタン */
/* ============================================ */
.detail-cta {
  margin-top: 56px;
}
@media all and (max-width: 896px) {
  .detail-cta {
    margin-top: 40px;
  }
}
.detail-cta__btn {
  width: 100%;
  max-width: 400px;
  margin-inline: auto;
}
.detail-cta__btn a {
  display: block;
  padding: 0.75em 1em;
  background: #E32349;
  color: #fff;
  text-align: center;
  font-size: clamp(1.25rem, 0.5132rem + 1.3158vw, 1.5rem);
  font-weight: 700;
  border-radius: 8px;
}

/* キャンペーンセクション */
/* ============================================ */
.detail-campaign {
  padding: 24px;
  background: #FEF6EA;
  margin-top: 80px;
}
@media all and (max-width: 896px) {
  .detail-campaign {
    padding: 24px 15px;
    margin-top: 64px;
  }
}
@media all and (max-width: 480px) {
  .detail-campaign {
    margin-inline: calc(50% - 50vw);
  }
}
.detail-campaign.--brand {
  max-width: 800px;
  margin-inline: auto;
}
@media all and (max-width: 480px) {
  .detail-campaign.--brand {
    margin-inline: calc(50% - 50vw);
  }
}
.detail-campaign__ttl {
  word-break: keep-all;
  text-align: center;
  font-size: clamp(1.25rem, 0.5132rem + 1.3158vw, 1.5rem);
  font-weight: 700;
  padding-bottom: 12px;
  border-bottom: 1px solid #000;
  position: relative;
}
.detail-campaign__ttl::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #000;
  position: absolute;
  left: 0;
  bottom: 3px;
}
.detail-campaign__bnr {
  margin-top: 16px;
}
@media all and (max-width: 896px) {
  .detail-campaign__bnr {
    margin-top: 12px;
  }
}
.detail-campaign__bnr img {
  width: 100%;
  max-width: none;
}
.detail-campaign__inner {
  margin-top: 32px;
}
@media all and (max-width: 896px) {
  .detail-campaign__inner {
    margin-top: 24px;
  }
}
.detail-campaign__inner > * {
  margin-top: 12px;
}
@media all and (max-width: 896px) {
  .detail-campaign__inner > * {
    margin-top: 8px;
  }
}
.detail-campaign__inner > *:first-child {
  margin-top: 0;
}
.detail-campaign__inner h4 {
  font-size: clamp(1rem, 0.2632rem + 1.3158vw, 1.25rem);
  font-weight: 700;
  margin-top: 32px;
}
@media all and (max-width: 896px) {
  .detail-campaign__inner h4 {
    margin-top: 20px;
  }
}

/* 詳細その他 */
/* ============================================ */
.detail-brand {
  text-align: center;
  margin-top: 80px;
}
@media all and (max-width: 896px) {
  .detail-brand {
    margin-top: 64px;
  }
}
.detail-brand__link {
  word-break: keep-all;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75em 2em;
  background: linear-gradient(90deg, #34D1EF 0%, #15B6D5 100%);
  color: #fff;
  font-weight: 700;
  border-radius: 8px;
}

.detail-end {
  margin-top: 80px;
  display: flex;
  justify-content: center;
}
@media all and (max-width: 896px) {
  .detail-end {
    margin-top: 64px;
  }
}
.detail-end__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-weight: 700;
}
.detail-end__link::before {
  flex-shrink: 0;
  content: "";
  display: block;
  width: 1.43em;
  height: 1.43em;
  background: url("../images/common/circle_arrow_left_w.svg") center center/100% auto no-repeat;
}

/* brands page */
/* ============================================ */
.brands-hero {
  padding: 40px 0;
}
@media all and (max-width: 896px) {
  .brands-hero {
    padding: 24px 0 32px;
  }
}
.brands-hero__ttl {
  text-align: center;
  font-size: clamp(1.5rem, 0.0263rem + 2.6316vw, 2rem);
  font-weight: 700;
}

/* 検索フォーム */
/* ============================================ */
.brands-search {
  margin-top: 24px;
}
@media all and (max-width: 896px) {
  .brands-search {
    margin-top: 16px;
  }
}
.brands-search__form {
  max-width: 400px;
  margin-inline: auto;
  position: relative;
  display: flex;
  align-items: center;
}
.brands-search__icon {
  flex-shrink: 0;
  position: absolute;
  left: 12px;
  top: 50%;
  translate: 0 -50%;
  width: 24px;
  height: 24px;
  background: url("../images/common/icon_search.svg") center center/100% auto no-repeat;
  background-color: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: opacity 0.3s ease-out;
}
@media (hover: hover) {
  .brands-search__icon:hover {
    opacity: 0.7;
  }
}
.brands-search__input {
  width: 100%;
  padding: 8px 16px 8px 48px;
  border: 2px solid #DADADA;
  border-radius: 9999px;
  font-size: 1rem;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  color: #000;
  background: #FAF8F6;
  outline: none;
}
.brands-search__input:focus {
  border-color: #E32349;
}
.brands-search__input::-moz-placeholder {
  color: #DADADA;
}
.brands-search__input::placeholder {
  color: #DADADA;
}

/* ブランドリストセクション */
/* ============================================ */
.brands-list {
  padding: 48px 0 52px;
  background: linear-gradient(90deg, #34D1EF 0%, #15B6D5 100%);
}
@media all and (max-width: 896px) {
  .brands-list {
    padding: 32px 0 52px;
  }
}
.brands-list__container {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
@media all and (max-width: 896px) {
  .brands-list__container {
    gap: 24px;
  }
}
.brands-list .common-pagetop {
  margin-top: 72px;
}
@media all and (max-width: 896px) {
  .brands-list .common-pagetop {
    margin-top: 48px;
  }
}

/* ブランドカード */
/* ============================================ */
.brand-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
}
.brand-card__inner {
  width: calc(100% - 64px);
  max-width: 1000px;
  margin-inline: auto;
  padding-bottom: 32px;
}
@media all and (max-width: 896px) {
  .brand-card__inner {
    width: calc(100% - 30px);
    padding-bottom: 24px;
  }
}
.brand-card__head {
  max-width: 800px;
  margin-inline: auto;
  padding: 32px 0 24px;
  text-align: center;
}
@media all and (max-width: 896px) {
  .brand-card__head {
    padding: 24px 0 20px;
  }
}
.brand-card__name {
  font-size: clamp(1.25rem, 0.5132rem + 1.3158vw, 1.5rem);
  font-weight: 700;
}
.brand-card__name > a {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
.brand-card__company {
  margin-top: 12px;
  font-size: 1rem;
  font-weight: 700;
}
@media all and (max-width: 896px) {
  .brand-card__company {
    margin-top: 10px;
  }
}
.brand-card__desc {
  margin-top: 16px;
  text-align: left;
}
@media all and (max-width: 896px) {
  .brand-card__desc {
    margin-top: 12px;
  }
}
.brand-card__cta {
  margin-top: 20px;
  margin-inline: auto;
  max-width: 220px;
}
@media all and (max-width: 896px) {
  .brand-card__cta {
    margin-top: 16px;
  }
}
.brand-card__cta a {
  display: block;
  padding: 0.75em 1em;
  background: #E32349;
  color: #fff;
  font-weight: 700;
  border-radius: 4px;
  text-align: center;
  font-size: 1rem;
}
.brand-card__more {
  text-align: center;
  display: block;
  width: 100%;
  padding: 1em;
  background: #393939;
  color: #fff;
  border: none;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.3s ease-out;
  position: relative;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}
.brand-card__more.--open .brand-card__more__icon::before {
  opacity: 0;
}
.brand-card__more__icon {
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  right: 2.8125vw;
  translate: 0 -50%;
}
@media all and (max-width: 896px) {
  .brand-card__more__icon {
    right: 12px;
  }
}
.brand-card__more__icon::before {
  content: "";
  display: inline-block;
  width: 2px;
  height: 20px;
  background: #fff;
  position: absolute;
  top: 0;
  left: 9px;
}
.brand-card__more__icon::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 2px;
  background: #fff;
  position: absolute;
  top: 9px;
  left: 0;
}

/* ブランド内商品リスト */
/* ============================================ */
.brand-product {
  display: flex;
  gap: 24px;
  padding-block: 16px;
  border-bottom: 1px solid #707070;
}
@media all and (max-width: 896px) {
  .brand-product {
    gap: 16px;
  }
}
@media all and (max-width: 480px) {
  .brand-product {
    flex-direction: column;
  }
}
.brand-product:first-of-type {
  border-top: 1px solid #707070;
}
.brand-product__media {
  flex-shrink: 0;
  width: 30%;
  max-width: 200px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media all and (max-width: 896px) {
  .brand-product__media {
    width: 28%;
    max-width: 150px;
  }
}
@media all and (max-width: 480px) {
  .brand-product__media {
    width: 100%;
    max-width: 268px;
    margin-inline: auto;
  }
}
.brand-product__media__img img {
  width: 100%;
  aspect-ratio: 268/178;
  -o-object-fit: cover;
     object-fit: cover;
}
.brand-product__media__btn > a {
  display: block;
  padding: 0.75em 1em;
  background: #E32349;
  color: #fff;
  font-weight: 700;
  border-radius: 4px;
  text-align: center;
  font-size: 1rem;
}
.brand-product__info {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media all and (max-width: 896px) {
  .brand-product__info {
    gap: 12px;
  }
}
@media all and (max-width: 480px) {
  .brand-product__info {
    width: 100%;
  }
}
.brand-product__name {
  font-size: clamp(1.125rem, 0.7566rem + 0.6579vw, 1.25rem);
  font-weight: 700;
}
.brand-product__name a {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
.brand-product__rank {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
}
@media all and (max-width: 896px) {
  .brand-product__rank {
    gap: 8px 16px;
  }
}
.brand-product__rank__item {
  display: flex;
  align-items: center;
  gap: 0.5em;
  font-weight: 700;
}
.brand-product__rank__item::before {
  flex-shrink: 0;
  content: "";
  display: inline-block;
  width: 2.375em;
  height: 2em;
  background: url("../images/common/icon_ranking_01.png") center center/contain no-repeat;
}
.brand-product__rank__item.--gold {
  color: #D4B243;
}
.brand-product__rank__item.--silver {
  color: #9A9A9A;
}
.brand-product__rank__item.--silver::before {
  background-image: url("../images/common/icon_ranking_02.png");
}
.brand-product__rank__item.--bronze {
  color: #AD886F;
}
.brand-product__rank__item.--bronze::before {
  background-image: url("../images/common/icon_ranking_03.png");
}
.brand-product__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
}
.brand-product__tag {
  display: inline-block;
  padding: 0.125em 1.25em;
  border-radius: 9999px;
  font-weight: 700;
  color: #086581;
  background: #F0F0F0;
  line-height: 1.4;
}
.brand-product__table {
  width: 100%;
  max-width: 400px;
  border-collapse: collapse;
}
.brand-product__table th, .brand-product__table td {
  border: 1px solid #DADADA;
  padding: 0.5em 0.75em;
}
.brand-product__table th {
  width: 10em;
  background: #EBF3F1;
  font-weight: 700;
}

/* column article detail page */
/* ============================================ */
.column-page {
  padding-top: 40px;
}
@media all and (max-width: 896px) {
  .column-page {
    padding-top: 24px;
  }
}
.column-page__wrap {
  max-width: 800px;
}

.column-article__ttl {
  word-break: keep-all;
  text-align: center;
  font-size: clamp(1.5rem, 0.0263rem + 2.6316vw, 2rem);
  font-weight: 700;
}
.column-article__date {
  text-align: right;
  margin-top: 32px;
  font-size: clamp(0.75rem, 0.3816rem + 0.6579vw, 0.875rem);
  color: #707070;
}
@media all and (max-width: 896px) {
  .column-article__date {
    margin-top: 20px;
  }
}
.column-article__eyecatch {
  margin-top: 40px;
}
@media all and (max-width: 896px) {
  .column-article__eyecatch {
    margin-top: 24px;
  }
}
@media all and (max-width: 480px) {
  .column-article__eyecatch {
    margin-inline: calc(50% - 50vw);
  }
}
.column-article__eyecatch img {
  width: 100%;
  max-width: none;
}

.column-toc {
  margin-top: 40px;
  padding: 16px 24px 32px;
  background: #FAF8F6;
  border-radius: 8px;
}
@media all and (max-width: 896px) {
  .column-toc {
    margin-top: 24px;
  }
}
.column-toc__ttl {
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
}
.column-toc__list {
  margin-top: 16px;
  margin-inline: auto;
  max-width: 600px;
  counter-reset: toc-counter;
}
@media all and (max-width: 896px) {
  .column-toc__list {
    margin-top: 12px;
  }
}
.column-toc__item {
  border-bottom: 1px solid #000;
  counter-increment: toc-counter;
}
.column-toc__link {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0.6em;
  padding: 0.5em 0;
  font-weight: 700;
}
.column-toc__link::before {
  content: counter(toc-counter) ".";
  flex-shrink: 0;
}
.column-toc__link::after {
  flex-shrink: 0;
  content: "";
  display: block;
  width: 1.5em;
  height: 1.5em;
  background: url("../images/common/circle_arrow_right.svg") center center/100% auto no-repeat;
  margin-left: auto;
}

.column-body {
  margin-top: 40px;
}
@media all and (max-width: 896px) {
  .column-body {
    margin-top: 32px;
  }
}
.column-body > * {
  margin-top: 12px;
}
@media all and (max-width: 896px) {
  .column-body > * {
    margin-top: 10px;
  }
}
.column-body > *:first-child {
  margin-top: 0;
}
.column-body h3 {
  padding-left: calc(0.67em + 8px);
  position: relative;
  font-size: clamp(1.25rem, 0.5132rem + 1.3158vw, 1.5rem);
  font-weight: 700;
  margin-top: 60px;
  margin-bottom: 24px;
}
@media all and (max-width: 896px) {
  .column-body h3 {
    margin-top: 40px;
    margin-bottom: 16px;
  }
}
.column-body h3::before {
  content: "";
  display: block;
  width: 8px;
  height: 100%;
  background: #23C3E3;
  position: absolute;
  top: 0;
  left: 0;
}
.column-body h4 {
  font-size: clamp(1.125rem, 0.7566rem + 0.6579vw, 1.25rem);
  font-weight: 700;
  margin-top: 24px;
  margin-bottom: 12px;
}
@media all and (max-width: 896px) {
  .column-body h4 {
    margin-top: 20px;
    margin-bottom: 10px;
  }
}
.column-body p {
  margin-top: 12px;
}
@media all and (max-width: 896px) {
  .column-body p {
    margin-top: 10px;
  }
}
.column-body__box {
  background: #FEF6EA;
  border-radius: 8px;
  padding: 16px 24px;
  margin-top: 24px;
}
@media all and (max-width: 896px) {
  .column-body__box {
    padding: 16px;
    margin-top: 20px;
  }
}
.column-body__box > *:first-child {
  margin-top: 0;
}
.column-body__box__ttl {
  font-size: 1rem;
  font-weight: 700;
  padding-bottom: 0.75em;
  margin-bottom: 12px;
  position: relative;
}
.column-body__box__ttl::before {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-position: left bottom;
  background-size: auto auto;
  background-color: transparent;
  background-image: repeating-linear-gradient(90deg, #DCC54F, #DCC54F 8px, transparent 8px, transparent 16px);
  position: absolute;
  bottom: 0;
  left: 0;
}
.column-body__btn {
  width: 100%;
  max-width: 300px;
  margin-inline: auto;
  margin-block: 64px;
}
@media all and (max-width: 896px) {
  .column-body__btn {
    max-width: 240px;
    margin-block: 40px;
  }
}
.column-body__btn.--filter > a::before {
  background-image: url("../images/common/icon_filter.svg");
}
.column-body__btn > a {
  word-break: keep-all;
  padding: 0.58em;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5em;
  background: #E32349;
  color: #fff;
  font-weight: 700;
}
.column-body__btn > a::before {
  flex-shrink: 0;
  content: "";
  display: block;
  width: 2.17em;
  height: 2.17em;
  background: url("../images/common/icon_bottle.svg") center center/100% auto no-repeat;
}
.column-body__table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 40px;
}
@media all and (max-width: 896px) {
  .column-body__table {
    margin-top: 24px;
  }
}
.column-body__table th, .column-body__table td {
  border: 1px solid #CDE6EA;
  padding: 0.5em 0.75em;
}
.column-body__table th {
  background: #EBF3F1;
  font-weight: 700;
}
.column-body__flex {
  display: flex;
  gap: 22px;
  margin-top: 40px;
}
@media all and (max-width: 896px) {
  .column-body__flex {
    gap: 16px;
    margin-top: 24px;
  }
}
@media all and (max-width: 480px) {
  .column-body__flex {
    flex-direction: column;
  }
}
.column-body__flex__img {
  flex-shrink: 0;
  width: 44%;
}
@media all and (max-width: 480px) {
  .column-body__flex__img {
    width: 100%;
  }
}
.column-body__flex__img img {
  width: 100%;
  max-width: none;
}
.column-body__flex__txt {
  flex: 1 1 0;
}
@media all and (max-width: 480px) {
  .column-body__flex__txt {
    width: 100%;
  }
}
.column-body__flex__txt > *:first-child {
  margin-top: 0;
}
.column-body .common-links {
  margin-top: 60px;
}
@media all and (max-width: 896px) {
  .column-body .common-links {
    margin-top: 40px;
  }
}

/* brand detail page */
/* ============================================ */
.brand-detail__page {
  padding: 32px 0 60px;
}
@media all and (max-width: 896px) {
  .brand-detail__page {
    padding: 24px 0 50px;
  }
}

.brand-detail__hero {
  margin-top: 32px;
}
@media all and (max-width: 896px) {
  .brand-detail__hero {
    margin-top: 24px;
  }
}
.brand-detail__hero__name {
  font-size: clamp(1.25rem, 0.5132rem + 1.3158vw, 1.5rem);
  font-weight: 700;
}
.brand-detail__hero__company {
  font-size: 1rem;
  font-weight: 700;
  margin-top: 8px;
}
.brand-detail__hero__body {
  display: flex;
  gap: 32px;
  margin-top: 24px;
}
@media all and (max-width: 896px) {
  .brand-detail__hero__body {
    flex-direction: column;
    gap: 20px;
    margin-top: 16px;
  }
}
.brand-detail__hero__block {
  flex-shrink: 0;
  width: 35%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media all and (max-width: 896px) {
  .brand-detail__hero__block {
    display: contents;
    width: 100%;
  }
}
@media all and (max-width: 480px) {
  .brand-detail__hero__img {
    margin-inline: calc(50% - 50vw);
  }
}
.brand-detail__hero__img img {
  width: 100%;
  max-width: none;
}
@media all and (max-width: 896px) {
  .brand-detail__hero__btn {
    order: 2;
  }
}
.brand-detail__hero__btn a {
  display: block;
  text-align: center;
  padding: 0.5em 1em;
  font-size: clamp(1.25rem, 0.5132rem + 1.3158vw, 1.5rem);
  font-weight: 700;
  color: #fff;
  background: #E32349;
  border-radius: 8px;
}
.brand-detail__hero__info {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media all and (max-width: 896px) {
  .brand-detail__hero__info {
    gap: 16px;
  }
}
.brand-detail__hero__desc {
  font-weight: 600;
}
.brand-detail__hero__contents {
  padding: 24px;
  background: #FAF8F6;
}
@media all and (max-width: 896px) {
  .brand-detail__hero__contents {
    padding: 15px;
  }
}
.brand-detail__hero__contents__item {
  margin-top: 24px;
}
@media all and (max-width: 896px) {
  .brand-detail__hero__contents__item {
    margin-top: 20px;
  }
}
.brand-detail__hero__contents__item:first-of-type {
  margin-top: 0;
}
.brand-detail__hero__contents dt {
  font-weight: 700;
  padding-left: 1.2em;
  position: relative;
}
.brand-detail__hero__contents dt::before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 0.5em solid transparent;
  border-bottom: 0.5em solid transparent;
  border-left: 0.75em solid #CDE6EA;
  border-right: 0;
  position: absolute;
  top: 0.25em;
  left: 0;
}
.brand-detail__hero__contents dd {
  margin-top: 8px;
}
@media all and (max-width: 896px) {
  .brand-detail__hero__contents dd {
    margin-top: 5px;
  }
}

.brand-detail__products {
  margin-top: 48px;
}
@media all and (max-width: 896px) {
  .brand-detail__products {
    margin-top: 40px;
  }
}
.brand-detail__products__ttl {
  text-align: center;
  font-size: clamp(1.5rem, 0.0263rem + 2.6316vw, 2rem);
  font-weight: 700;
}

/* brand vertical (transposed) table */
/* ============================================ */
.brand-vtable {
  margin-top: 24px;
  margin-inline: -20px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
@media all and (max-width: 480px) {
  .brand-vtable {
    margin-inline: -15px;
  }
}
.brand-vtable table {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  min-width: 100%;
  border-collapse: collapse;
  font-size: clamp(0.625rem, -0.1118rem + 1.3158vw, 0.875rem);
}
.brand-vtable th, .brand-vtable td {
  padding: 10px 12px;
  vertical-align: middle;
}
@media all and (max-width: 896px) {
  .brand-vtable th, .brand-vtable td {
    padding: 8px 10px;
  }
}
.brand-vtable th {
  border: none;
  box-shadow: inset 1px 0 0 #CDE6EA, inset 0 -1px 0 #CDE6EA;
  background: #EBF3F1;
  font-weight: 700;
  text-align: left;
  white-space: nowrap;
  position: -webkit-sticky;
  position: sticky;
  left: 0;
  z-index: 1;
}
.brand-vtable thead th {
  box-shadow: inset 1px 0 0 #CDE6EA, inset 0 1px 0 #CDE6EA, inset 0 -1px 0 #CDE6EA;
}
.brand-vtable td {
  border: 1px solid #DADADA;
  text-align: center;
  max-width: 500px;
  overflow-wrap: break-word;
}
@media all and (max-width: 896px) {
  .brand-vtable td {
    max-width: 300px;
  }
}
@media all and (max-width: 480px) {
  .brand-vtable td {
    max-width: 160px;
  }
}
.brand-vtable__product {
  background: #EBF3F1;
  min-width: 180px;
}
@media all and (max-width: 896px) {
  .brand-vtable__product {
    min-width: 140px;
  }
}
.brand-vtable__product__name {
  font-weight: 700;
}
.brand-vtable__product__name a {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
.brand-vtable__product__btn {
  margin-top: 8px;
}
.brand-vtable__product__btn > a {
  display: inline-block;
  padding: 0.5em 1em;
  background: #E32349;
  color: #fff;
  border-radius: 4px;
  font-weight: 700;
}
.brand-vtable__tax {
  font-size: 0.85em;
}
.brand-vtable__img {
  width: 100%;
  max-width: 220px;
  margin-inline: auto;
}
.brand-vtable__img img {
  width: 100%;
  aspect-ratio: 220/128;
  -o-object-fit: cover;
     object-fit: cover;
}
.brand-vtable .list-table__delivery {
  inline-size: -webkit-fit-content;
  inline-size: -moz-fit-content;
  inline-size: fit-content;
  margin-inline: auto;
}
.brand-vtable__sort__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  font-size: inherit;
  font-weight: 700;
  color: inherit;
  padding: 0;
  text-align: left;
  white-space: nowrap;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  transition: opacity 0.3s ease-out;
}
@media (hover: hover) {
  .brand-vtable__sort__btn:hover {
    opacity: 0.7;
  }
}
.brand-vtable__h-sort__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  font-size: inherit;
  font-weight: 700;
  color: inherit;
  padding: 0;
  text-align: left;
  white-space: nowrap;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  transition: opacity 0.3s ease-out;
}
@media (hover: hover) {
  .brand-vtable__h-sort__btn:hover {
    opacity: 0.7;
  }
}
.brand-vtable__h-sort__icon {
  flex-shrink: 0;
  display: inline-flex;
  flex-direction: row;
  gap: 1px;
}
.brand-vtable__h-sort__icon .h-sort-left,
.brand-vtable__h-sort__icon .h-sort-right {
  display: block;
  width: 10px;
  height: 10px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.brand-vtable__h-sort__icon .h-sort-left {
  background-image: url("../images/common/arrow_left.svg");
  transform: translateY(2px);
}
.brand-vtable__h-sort__icon .h-sort-right {
  background-image: url("../images/common/arrow_right.svg");
  transform: translateY(-2px);
}
.brand-vtable__th.--asc .sort-up {
  opacity: 1;
}
.brand-vtable__th.--asc .sort-down {
  opacity: 0.7;
}
.brand-vtable__th.--asc .h-sort-right {
  opacity: 1;
}
.brand-vtable__th.--desc .sort-up {
  opacity: 0.7;
}
.brand-vtable__th.--desc .sort-down {
  opacity: 1;
}
.brand-vtable__th.--desc .h-sort-left {
  opacity: 1;
}

/* privacy page */
/* ============================================ */
.privacy-page {
  padding: 40px 0 80px;
}
@media all and (max-width: 896px) {
  .privacy-page {
    padding: 32px 0 64px;
  }
}
.privacy-page__wrap {
  max-width: 800px;
}
.privacy-page__ttl {
  word-break: keep-all;
  text-align: center;
  font-size: clamp(1.5rem, 0.0263rem + 2.6316vw, 2rem);
  font-weight: 700;
}
.privacy-page__lead {
  margin-top: 56px;
}
@media all and (max-width: 896px) {
  .privacy-page__lead {
    margin-top: 32px;
  }
}
.privacy-page__section {
  margin-top: 60px;
}
@media all and (max-width: 896px) {
  .privacy-page__section {
    margin-top: 40px;
  }
}
.privacy-page__section__ttl {
  font-size: clamp(1.125rem, 0.7566rem + 0.6579vw, 1.25rem);
  font-weight: 700;
  margin-bottom: 16px;
}
@media all and (max-width: 896px) {
  .privacy-page__section__ttl {
    margin-bottom: 12px;
  }
}
.privacy-page__section__body {
  position: relative;
}
.privacy-page__section__body p + p {
  margin-top: 12px;
}
@media all and (max-width: 896px) {
  .privacy-page__section__body p + p {
    margin-top: 8px;
  }
}
.privacy-page__section__body a {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
.privacy-page__list > li {
  padding-left: 1em;
  position: relative;
}
.privacy-page__list > li + li {
  margin-top: 8px;
}
@media all and (max-width: 896px) {
  .privacy-page__list > li + li {
    margin-top: 5px;
  }
}
.privacy-page__list > li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}
.privacy-page__footer {
  margin-top: 60px;
  text-align: right;
}
@media all and (max-width: 896px) {
  .privacy-page__footer {
    margin-top: 40px;
  }
}