@charset "UTF-8";

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.6;
  color: #333;
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

body a:hover {
  text-decoration: none;
  cursor: pointer;
}

body.is-loaded,
.is-loaded .up-d_header,
body[data-element-id] {
  opacity: 1 !important;
}

/* 田中追記 */
[data-element-id] .up-d_header {
  opacity: 1 !important;
}

/* 画面の最大幅・左右paddingは body ではなく .up-d_journal-inner 側で管理（_journal.scss） */
.inner {
  max-width: 1000px;
  margin-inline: auto;
  padding-inline: 20px;
}

/* Partials Import */
/* ============================================================
   ISHIDA JOURNAL ヘッダー
   ============================================================ */
.up-d_header {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    z-index: 1000;
    box-shadow: rgba(0, 0, 0, 0.06) 0px 2px 8px;
    background: rgb(255, 255, 255);
}

/* 3カラム grid: 左ダミー / 中央ロゴ / 右ユーティリティ → ロゴが常に中央 */
.up-d_header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  max-width: 1200px;
  margin-inline: auto;
  padding: 16px 20px;
}

/* ② ロゴ（中央配置。画像 1点のみ。サブテキストは持たない） */
.up-d_header-logo {
  grid-column: 2;
  justify-self: center;
}
.up-d_header-logo a {
  display: inline-block;
  text-decoration: none;
}
.up-d_header-logo img {
  display: block;
  width: 100px;
  height: auto;
}

/* ④ 利用メニュー（右側カラムに右寄せ） */
.up-d_header-util {
  grid-column: 3;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 18px;
}

/* テキスト(マイページ)とアイコン(お気に入り/カート/検索)を同じ flex 行で上下中央に揃える */
.up-d_header-util-item {
  display: flex;
  align-items: center;
}
.up-d_header-util-item a {
  display: inline-flex;
  align-items: center;
  color: #000;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 20px;
}
.up-d_header-util-item svg {
  display: block;
  color: #000;
}
.up-d_header-util-item a:hover {
  opacity: 0.7;
}

/* ⑤ グローバルナビ（上下罫線なし） */
.up-d_header-nav {
  position: relative; /* 全幅パネルの位置基準 */
}

.up-d_header-nav-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0 20px;
  max-width: 1200px;
  margin-inline: auto;
  /* 縦paddingは項目<a>側へ移し、当たり判定をパネルまで隙間なく連続させる */
  padding: 0 20px;
  list-style: none;
}

.up-d_header-nav-item {
  /* position は付けない → パネルは .up-d_header-nav 基準で全幅展開 */
}
.up-d_header-nav-item > a {
  position: relative; /* ::after の下線を絶対配置するため */
  display: block;
  color: #000;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.6;
  /* 縦paddingを十分に取り、<a>の当たり判定をナビ下端＝パネル上端まで届かせる */
  padding: 16px 0;
}
.up-d_header-nav-item {
  /* 下線: 起点を常に「左」にし、scaleX で伸縮 */
  /*   出現: 左→右に伸びる（左端固定で右へ広がる）                    */
  /*   消失: 右→左に縮む（左端固定で右端が左へ戻る＝戻る感じ）         */
}
.up-d_header-nav-item > a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: #ADA27D;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.up-d_header-nav-item {
  /* li:hover で発火 → パネル上にマウスがあっても下線維持 */
}
.up-d_header-nav-item:hover > a::after {
  transform: scaleX(1);
}

/* ホバー時に開く全幅メガパネル（わたしたちについて / お問い合わせ / SNS） */
.up-d_header-panel {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  border-top: 1px solid #eee;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
  /* 下のセクションとの余白を確保（下方向のpaddingを大きめに） */
  padding: 24px 20px 56px;
  /* 上からゆっくりフワッと降りてくる（display は遷移不可なので opacity/transform で） */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1), transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.45s;
}

.up-d_header-nav-item.up-d_has-panel:hover .up-d_header-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

/* パネルとナビの隙間でホバーが切れないようにする橋渡し */
.up-d_header-panel::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  height: 16px;
}

/* テキスト系パネル（わたしたちについて / お問い合わせ）= 4列グリッドのボックス */
.up-d_header-panel-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1200px;
  margin-inline: auto;
  list-style: none;
  /* 実サイト準拠: .menu_inquiry / .menu_company の li > a */
}
.up-d_header-panel-list a {
  display: inline-block;
  width: 100%;
  padding: 10px 0;
  background: #F6F5F1;
  color: #000;
  text-align: center;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.5;
}
.up-d_header-panel-list a:hover {
  background: #ECE9DD;
  color: #000;
}

/* SNS パネル = 3列。並びは「縦線 → アイコン → テキスト」（縦罫は上下に余白を持たせる） */
.up-d_header-sns-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 40px;
  max-width: 1200px;
  margin-inline: auto;
  list-style: none;
}
.up-d_header-sns-list a {
  display: flex;
  align-items: center; /* セルの上下中央に配置 */
  padding: 14px 0; /* 縦罫の上下に余白を作る分の枠 */
  color: #000;
  text-decoration: none;
}
.up-d_header-sns-list .up-d_header-sns-icon {
  flex: 0 0 80px;
  align-self: stretch; /* icon コンテナだけ a の content 高さに合わせる→縦罫=icon高さ */
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 18px;
  border-left: 1px solid #ADA27D; /* 金色の縦罫（icon コンテナの左端 = 上下paddingで端に着かない） */
}
.up-d_header-sns-list .up-d_header-sns-icon img {
  display: block;
  width: 60px;
  height: auto;
}
.up-d_header-sns-list .up-d_header-sns-label {
  flex: 1;
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 400;
  color: #000;
  letter-spacing: 0.08em;
  line-height: 1.4;
}
.up-d_header-sns-list a:hover {
  opacity: 0.7;
}

/* ============================================================
   SP（max-width: 800px）
   ============================================================ */
@media (max-width: 800px) {
  .up-d_header-inner {
    padding: 12px 16px;
  }
  .up-d_header-logo img {
    width: 80px;
  }
  .up-d_header-util {
    gap: 12px;
  }
  .up-d_header-util-mypage a {
    font-size: 11px;
  }
  .up-d_header-nav-list {
    gap: 0 18px;
    padding: 10px 16px;
  }
  .up-d_header-nav-item > a {
    font-size: 12px;
    padding: 5px 0;
  }
  .up-d_header-panel {
    padding: 16px 16px 20px;
  }
  .up-d_header-panel-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .up-d_header-panel-list a {
    font-size: 13px;
  }
  .up-d_header-sns-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 0 24px;
  }
}
/* ============================================================
   ドロワーメニュー（1070px以下で表示・実サイト準拠）
   - 全画面オーバーレイ（白）
   - 出現: フェードイン
   - 消失: 下→上にスライドアウト（translateY(-100%)）
   - 開閉: CSS :checked のチェックボックスハック（JS不要）
   - アコーディオン: <details>/<summary>（ネイティブ・JS不要）
   ============================================================ */
/* デフォルト（PC > 1070px）はドロワー関連要素を全て非表示 */
.up-d_drawer-toggle,
.up-d_drawer-btn,
.up-d_drawer {
  display: none;
}

@media (max-width: 1070px) {
  /* PCナビ・利用メニューを非表示 */
  .up-d_header-nav {
    display: none;
  }
  .up-d_header-util {
    display: none;
  }
  /* topbar: ロゴ中央、ハンバーガー右上 */
  .up-d_header-inner {
    position: relative;
    grid-template-columns: 1fr;
  }
  .up-d_header-logo {
    grid-column: 1;
    justify-self: center;
  }
  /* ハンバーガーボタン（実サイト準拠: <div><span></span></div> 構造） */
  .up-d_drawer-btn {
    display: flex; /* 中の span を上下中央に */
    align-items: center;
    justify-content: center;
    position: fixed; /* ドロワー上でも固定で右上に居続ける */
    top: 21px; /* 中心y=36px。ページヘッダー/ドロワーヘッダーのロゴ中心と一致 */
    right: 16px;
    width: 40px; /* ≤1070px: 規定サイズ */
    height: 30px;
    cursor: pointer;
    z-index: 120; /* ドロワー(100)より前面 */
  }
  .up-d_drawer-btn span {
    display: block;
    position: relative;
    width: 100%;
    height: 10px; /* 上下中央配置：1(上線) + 8(間隔) + 1(下線) */
  }
  .up-d_drawer-btn span::before,
  .up-d_drawer-btn span::after {
    content: "";
    position: absolute;
    left: 0;
    background: #000;
    height: 1px;
    transition: top 0.3s ease, left 0.3s ease, width 0.3s ease, transform 0.3s ease;
  }
  .up-d_drawer-btn span::before {
    top: 0;
    width: 100%; /* 上の線（フル幅） */
  }
  .up-d_drawer-btn span::after {
    top: calc(100% - 1px); /* 下の線（spanの下端） */
    width: 80%; /* 下の線は上の線の80% */
  }
  /* ドロワー開いている時: 2本線を × に変形（中央に集約してフル幅で交差） */
  .up-d_drawer-toggle:checked ~ .up-d_header-inner .up-d_drawer-btn span::before {
    top: 50%;
    left: 50%;
    width: 100%;
    transform: translate(-50%, -50%) rotate(45deg);
  }
  .up-d_drawer-toggle:checked ~ .up-d_header-inner .up-d_drawer-btn span::after {
    top: 50%;
    left: 50%;
    width: 100%;
    transform: translate(-50%, -50%) rotate(-45deg);
  }
  /* チェックボックス本体（state管理。非表示） */
  .up-d_drawer-toggle {
    position: absolute;
    opacity: 0;
    pointer-events: none;
  }
  /* ドロワー: 全画面オーバーレイ */
  /* 非checked時のtransition = 閉じる時に使われる(open→closed)。下→上スライド + フェード */
  .up-d_drawer {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 100;
    background: #fff;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-100%); /* 上に消えた状態 */
    transition: opacity 0.35s ease, transform 0.45s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.45s;
  }
  /* checked時のtransition = 開く時に使われる(closed→open)。フェードのみ・位置は即時 */
  .up-d_drawer-toggle:checked ~ .up-d_drawer {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity 0.4s ease, transform 0s, visibility 0s;
  }
  /* ドロワー内側 */
  .up-d_drawer-inner {
    max-width: 720px;
    margin-inline: auto;
    /* 上paddingは drawer-head 側(16px)に任せる → ページヘッダーのロゴ位置と一致 */
    padding: 0 16px 100px;
  }
  /* ドロワー上部: ロゴ＋Xクローズ */
  .up-d_drawer-head {
    position: relative;
    padding: 16px 0 24px;
  }
  .up-d_drawer-head-logo {
    text-align: center;
  }
  .up-d_drawer-head-logo img {
    display: inline-block;
    width: 100px;
    height: auto;
  }
  /* ドロワー内の×は不要（ハンバーガーが×に変形するため） */
  /* タブレット(≤1070): account 3列 + icons 3列 を1本の横並び 6セルに統合 */
  .up-d_drawer-toprow {
    display: flex;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
  }
  .up-d_drawer-account,
  .up-d_drawer-icons {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    list-style: none;
  }
  .up-d_drawer-account li + li,
  .up-d_drawer-icons li + li {
    border-left: 1px solid #eee;
  }
  /* account と icons の境界にも縦罫 */
  .up-d_drawer-icons {
    border-left: 1px solid #eee;
  }
  .up-d_drawer-account a {
    display: block;
    padding: 16px 4px;
    text-align: center;
    color: #000;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0.04em;
  }
  .up-d_drawer-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 4px;
  }
  .up-d_drawer-icons img {
    width: 28px;
    height: auto;
    display: block;
  }
  /* ナビリスト（フラット項目） */
  .up-d_drawer-list,
  .up-d_drawer-sublist,
  .up-d_drawer-utillist {
    list-style: none;
  }
  .up-d_drawer-list > li > a,
  .up-d_drawer-utillist > li > a {
    display: block;
    padding: 20px 8px;
    color: #000;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0.04em;
    border-bottom: 1px solid #eee;
  }
  /* アコーディオン（<details>/<summary>） */
  .up-d_drawer-accordion {
    border-bottom: 1px solid #eee;
  }
  .up-d_drawer-accordion > summary {
    list-style: none; /* デフォルトの三角を消す */
    position: relative;
    padding: 20px 40px 20px 8px;
    color: #000;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0.04em;
    cursor: pointer;
  }
  .up-d_drawer-accordion > summary::-webkit-details-marker {
    display: none; /* Safari の三角を消す */
  }
  /* + アイコン（閉じている時） */
  .up-d_drawer-accordion > summary::before,
  .up-d_drawer-accordion > summary::after {
    content: "";
    position: absolute;
    right: 12px;
    top: 50%;
    width: 14px;
    height: 1px;
    background: #000;
    transition: transform 0.3s;
  }
  .up-d_drawer-accordion > summary::after {
    transform: translateY(-50%) rotate(90deg);
  }
  .up-d_drawer-accordion > summary::before {
    transform: translateY(-50%);
  }
  /* 開いている時: + → -（縦線を回転で消す） */
  .up-d_drawer-accordion[open] > summary::after {
    transform: translateY(-50%) rotate(0deg);
  }
  .up-d_drawer-accordion > .up-d_drawer-sublist,
  .up-d_drawer-accordion > .up-d_drawer-sns {
    padding: 4px 8px 16px;
  }
  .up-d_drawer-accordion .up-d_drawer-sublist li a {
    display: block;
    padding: 12px 0;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0.04em;
  }
  /* SNS（ドロワー内・アコーディオン展開後） */
  .up-d_drawer-sns {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
  }
  .up-d_drawer-sns img {
    width: 32px;
    height: auto;
    display: block;
  }
  /* 区切りタイトル（アカウント等のセクション見出し） */
  .up-d_drawer-section {
    margin-top: 32px;
  }
  .up-d_drawer-section-title {
    font-size: 11px;
    font-weight: 500;
    color: #999;
    letter-spacing: 0.12em;
    line-height: 1.4;
    margin-bottom: 4px;
    padding-left: 8px;
  }
  /* 「閉じる」ボタン（金ボックス） */
  .up-d_drawer-closebtn {
    display: block;
    text-align: center;
    margin: 40px auto 0;
    padding: 18px 24px;
    max-width: 360px;
    background: #ADA27D;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.1em;
    line-height: 1.4;
    cursor: pointer;
  }
  .up-d_drawer-closebtn:hover {
    opacity: 0.85;
  }
}
/* SP（≤800px）でもハンバーガーは ≤1070px と同じサイズ・位置を維持 */
/* SP（≤800px）: ログイン/会員登録/マイページは縦並び、アイコンは横並び */
@media (max-width: 800px) {
  .up-d_drawer-toprow {
    display: block;
  }
  .up-d_drawer-account {
    display: block;
  }
  .up-d_drawer-account li + li {
    border-left: 0;
    border-top: 1px solid #eee;
  }
  /* icons は3列横並びを維持。account との境目に上罫線 */
  .up-d_drawer-icons {
    border-left: 0;
    border-top: 1px solid #eee;
  }
}
/* ============================================================
   ISHIDA JOURNAL フッター
   実サイト ishida-watch.com の style.css から footer 関連だけを抽出して
   内製化し、外部依存をなくしたうえで、全クラスを `up-d_` プレフィックスに統一。
   元クラスとの対応:
     .footer            → .up-d_footer
     .wide_width        → .up-d_footer-inner
     .footer_sitemap    → .up-d_footer-sitemap
     .menu_list         → .up-d_footer-menus
     .menu              → .up-d_footer-menu
     .menu_l / _l2      → .up-d_footer-menu--l / --l2
     .menu_brand        → .up-d_footer-menu--brand
     .label             → .up-d_footer-menu-label
     .sns               → .up-d_footer-sns-list
     .mm_btn_wrp        → .up-d_footer-mm-wrap
     .mm_btn            → .up-d_footer-mm-btn
       _register/_term  → .up-d_footer-mm-btn--register / --termination
     .etc_link_wrp      → .up-d_footer-etc-links
     .footer_bottom     → .up-d_footer-bottom
     .logo_block        → .up-d_footer-logo-block
     .logo              → .up-d_footer-logo
     .txt               → .up-d_footer-txt
     .copyright         → .up-d_footer-copyright
     .is_regular/.is_vintage → .up-d_footer-list--regular / --vintage
   ============================================================ */
/* ============================================================
   .up-d_footer 全体
   ============================================================ */
.up-d_footer {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
}

.up-d_footer a {
  color: #000;
  text-decoration: none;
  transition: all 0.3s;
}

.up-d_footer img {
  width: 100%;
  height: auto;
}

/* 最大幅コンテナ（旧 .wide_width） */
.up-d_footer-inner {
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto;
  transition: all 0.3s;
}

@media screen and (max-width: 1600px) {
  .up-d_footer-inner {
    padding: 0 50px;
  }
}
@media screen and (max-width: 1170px) {
  .up-d_footer-inner {
    padding: 0 30px;
  }
}
@media screen and (max-width: 800px) {
  .up-d_footer-inner {
    padding-left: 0;
    padding-right: 0;
  }
}
/* 旧 .is_regular / .is_vintage 相当（menu_brand 内の表示切替用） */
.up-d_footer-list--regular {
  display: block;
}

.up-d_footer-list--vintage {
  display: none;
}

/* ============================================================
   .up-d_footer-sitemap（サイトマップ大ブロック）
   ============================================================ */
.up-d_footer-sitemap {
  background-color: #F7F7F7;
  padding: 50px 0 100px 0;
}

.up-d_footer-menus {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}

/* menu 共通 */
.up-d_footer-menu {
  width: 16.66%;
  margin-top: 40px;
  padding-right: 10px;
  display: flex;
  flex-direction: column;
  border-left: solid 1px #ddd;
}

.up-d_footer-menu--l {
  width: 21.6%;
}

.up-d_footer-menu--l2 {
  width: 28.42%;
}

.up-d_footer-menu--brand {
  width: 100%;
}

.up-d_footer-menu-label {
  padding: 10px 0 10px 15px;
  font-size: 18px;
  line-height: 1.4;
  font-weight: bold;
  border-left: solid 1px #ADA27D;
  margin-left: -1px;
}

.up-d_footer-menu-label a {
  color: #000;
}

.up-d_footer-menu ul {
  list-style: none;
  padding: 15px 0 15px 15px;
  margin-top: -10px;
}

.up-d_footer-menu li {
  font-size: 14px;
  line-height: 1.4;
  margin-top: 10px;
}

.up-d_footer-menu li a {
  color: #000;
  position: relative;
}

.up-d_footer-menu li a:hover {
  color: #ADA27D;
}

/* menu--brand: ブランド名「／」区切り */
.up-d_footer-menu--brand ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.up-d_footer-menu--brand li {
  font-size: 14px;
  line-height: 1.4;
  padding-right: 5px;
}

.up-d_footer-menu--brand li::after {
  content: "／";
}

@media screen and (max-width: 1500px) {
  .up-d_footer-menu-label {
    font-size: 16px;
    min-height: 3em;
  }
  .up-d_footer-menu li {
    font-size: 13px;
  }
}
@media screen and (max-width: 1070px) {
  .up-d_footer-menu,
  .up-d_footer-menu--l,
  .up-d_footer-menu--l2 {
    width: 33.3%;
    padding-right: 0;
  }
  .up-d_footer-menu--brand {
    width: 100%;
  }
  .up-d_footer-menu {
    margin-top: 3.74vw;
  }
  .up-d_footer-menu-label {
    font-size: 1.68vw;
  }
  .up-d_footer-menu ul {
    padding: 1.4vw 0 1.4vw 1.4vw;
    margin-top: -0.93vw;
  }
  .up-d_footer-menu li {
    font-size: 1.31vw;
    margin-top: 0.93vw;
  }
  .up-d_footer-menu--brand li {
    font-size: 1.31vw;
    padding-right: 0.47vw;
  }
}
@media screen and (max-width: 800px) {
  .up-d_footer-sitemap {
    padding: 5vw;
  }
  .up-d_footer-menus {
    margin-top: -2vw;
  }
  .up-d_footer-menu,
  .up-d_footer-menu--l,
  .up-d_footer-menu--l2 {
    width: 100%;
  }
  .up-d_footer-menu--brand {
    width: auto;
  }
  .up-d_footer-menu {
    margin-top: 4vw;
    border: 0;
  }
  .up-d_footer-menu-label {
    font-size: 3.8vw;
    min-height: inherit;
    padding: 5vw 0 2vw 0;
    border-left: 0;
    border-top: solid 1px #ADA27D;
  }
  .up-d_footer-menu ul {
    padding: 3vw 0;
    margin-top: -2.5vw;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .up-d_footer-menu li {
    width: auto;
    font-size: 3vw;
    margin-top: 2.5vw;
    margin-right: 20px;
  }
  .up-d_footer-menu--brand li {
    font-size: 3vw;
    line-height: 1.3;
    padding-right: 3vw;
  }
  .up-d_footer-menu--brand ul {
    display: inline-block;
  }
  .up-d_footer-menu--brand ul li {
    display: inline-block;
    padding-right: 0;
  }
}
/* ============================================================
   SNS（円アイコン）/ mm_btn（メルマガ）
   ============================================================ */
.up-d_footer-sns-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: -20px;
  list-style: none;
}

.up-d_footer-sns-list li {
  width: 60px;
  margin-top: 20px;
}

.up-d_footer-sns-list li a {
  display: block;
  width: 60px;
  height: 60px;
  background: #fff;
  overflow: hidden;
  border-radius: 60px;
}

.up-d_footer-sns-list li a:hover {
  opacity: 0.7;
}

.up-d_footer-mm-wrap {
  margin-top: -20px;
  list-style: none;
}

.up-d_footer-mm-btn {
  margin-top: 20px;
}

.up-d_footer-mm-btn a {
  display: block;
  text-align: center;
  padding: 10px;
  font-size: 14px;
  line-height: 1.2;
  background: #000;
  color: #fff;
}

.up-d_footer-mm-btn.up-d_footer-mm-btn--register a {
  color: #fff;
}

.up-d_footer-mm-btn a:hover {
  opacity: 0.7;
}

.up-d_footer-mm-btn--termination a {
  background: #fff;
  color: #000;
  border: 1px solid #000;
}

@media screen and (max-width: 1500px) {
  .up-d_footer-sns-list li,
  .up-d_footer-sns-list li a {
    width: 4vw;
    height: 4vw;
    border-radius: 4vw;
  }
  .up-d_footer-mm-btn a {
    padding: 10px;
    font-size: 13px;
  }
}
@media screen and (max-width: 1070px) {
  .up-d_footer-sns-list li,
  .up-d_footer-sns-list li a {
    width: 8vw;
    height: 8vw;
    border-radius: 8vw;
  }
  .up-d_footer-mm-wrap {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .up-d_footer-mm-btn {
    width: 49%;
  }
}
@media screen and (max-width: 800px) {
  .up-d_footer-sns-list {
    margin-top: -2.5vw;
    justify-content: flex-start;
  }
  .up-d_footer-sns-list li {
    width: 16.6666666667%;
    text-align: center;
    margin-top: 2.5vw;
  }
  .up-d_footer-sns-list li a {
    width: 13vw;
    height: 13vw;
    border-radius: 15vw;
    margin: 0 auto;
  }
  .up-d_footer-mm-wrap {
    flex-direction: column;
    margin-top: -2vw;
  }
  .up-d_footer-mm-btn {
    width: 100%;
  }
  .up-d_footer-mm-btn a {
    padding: 3vw;
    font-size: 3.5vw;
  }
}
/* ============================================================
   etc_link_wrp（特商法/プライバシー/サイトマップ）
   ============================================================ */
.up-d_footer-etc-links {
  margin-top: 40px;
}

.up-d_footer-etc-links ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  list-style: none;
}

.up-d_footer-etc-links li {
  font-size: 14px;
  margin-right: 30px;
}

.up-d_footer-etc-links li a {
  color: #000;
}

.up-d_footer-etc-links li a:hover {
  color: #ADA27D;
}

@media screen and (max-width: 1500px) {
  .up-d_footer-etc-links li {
    font-size: 13px;
  }
}
@media screen and (max-width: 1070px) {
  .up-d_footer-etc-links li {
    font-size: 1.31vw;
  }
}
@media screen and (max-width: 800px) {
  .up-d_footer-etc-links {
    margin-top: 4vw;
  }
  .up-d_footer-etc-links li {
    font-size: 3vw;
    margin-top: 2.5vw;
    margin-right: 2vw;
  }
}
/* ============================================================
   .up-d_footer-bottom（ロゴ + 会社情報 + コピーライト）
   ============================================================ */
.up-d_footer-bottom {
  padding: 30px 0;
}

.up-d_footer-bottom .up-d_footer-inner {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.up-d_footer-logo-block {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
}

.up-d_footer-logo {
  width: 90px;
}

.up-d_footer-logo a {
  display: block;
}

.up-d_footer-txt {
  font-size: 14px;
  line-height: 1.4;
  padding-left: 30px;
}

.up-d_footer-copyright {
  font-size: 12px;
  margin-left: auto;
  margin-right: 0;
}

.up-d_footer-copyright a {
  color: #000;
}

@media screen and (max-width: 900px) {
  .up-d_footer-copyright {
    width: 100%;
    margin-top: 10px;
    text-align: center;
  }
}
@media screen and (max-width: 800px) {
  .up-d_footer-bottom {
    padding: 5vw 5vw;
  }
  .up-d_footer-bottom .up-d_footer-inner {
    flex-direction: column;
  }
  .up-d_footer-logo-block {
    flex-direction: column;
  }
  .up-d_footer-logo {
    width: 20vw;
  }
  .up-d_footer-txt {
    font-size: 2.8vw;
    line-height: 1.4;
    padding-left: 0;
    text-align: center;
    margin-top: 3vw;
  }
  .up-d_footer-copyright {
    font-size: 2.8vw;
    margin-top: 3vw;
  }
}
