﻿/* =======================================
   宮崎産直　EC-CUBE側 customize.css 再整理版
   ├ ヘッダー：header.css と同じレイアウトに揃える
   ├ フッター：共通デザイン
   └ ログインページ：フォームだけを整える
======================================= */

/* =============================
   共通（EC-CUBE全体）
============================= */

/* 背景色（トップと同じ系統に） */
body {
  background: #f5f3f0;
}

/* -----------------------------
   1) ヘッダー（header.css と同じ値をここにも書く）
   ※基本レイアウトだけ。変な上書きはしない。
----------------------------- */

.site-header {
  background: #ffffff;
  border-bottom: 1px solid #e5e5e5;
  margin-bottom: 30px;           /* カテゴリバーとの余白 */
}

/* EC-CUBEテンプレ側のラッパーに合わせる */
.site-header .layout-wrapper,
.header-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
}

/* 中身の横並び（ロゴ・検索・右側アイコン） */
.header-inner {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 8px 20px;
  gap: 32px;
}

/* ロゴ位置・サイズ */
.header-logo {
  margin-top: 0;
}

.header-logo img {
  height: 60px;
  width: auto;
  display: block;
}

/* 検索ボックス（真ん中） */
.header-search {
  width: 480px;
  max-width: 100%;
  margin: 0 auto;
}

.header-search input {
  width: 100%;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid #cccccc;
  font-size: 14px;
  box-sizing: border-box;
}

/* 右側（ログイン・お気に入り・カート・SNS） */
.header-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 28px;
  white-space: nowrap;
}

/* ログイン / お気に入り / カートの1セット */
.header-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
}

.header-item,
.header-item a {
  text-decoration: none !important;
  border-bottom: none !important;
  color: #333;
}

.header-item .icon {
  font-size: 20px;
  line-height: 1;
}

.header-item .text {
  font-size: 12px;
  margin-top: 2px;
}

/* SNS アイコン横並び */
.sns-icons {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  margin-left: 6px;
}

.sns-icons a {
  display: flex;
  text-decoration: none !important;
  border-bottom: none !important;
}

.sns-icons img {
  width: 20px;
  height: 20px;
}

/* ハンバーガーメニュー */
.hamburger {
  cursor: pointer;
}

/* header 内の layout-wrapper の高さ暴走防止 */
.site-header .layout-wrapper {
  min-height: 0 !important;
  display: flex;
  align-items: center;
}

/* -----------------------------
   2) フッター
----------------------------- */

.site-footer {
  width: 100%;
  background: #1e1e1e;
  color: #ffffff;
  padding: 28px 0 25px;
  margin-top: 80px;
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-sns-icon {
  width: 22px;
  height: 22px;
}

/* =============================
   3) ログインページ専用
============================= */

/* body の ID はスクショから確認済み */
body#page_mypage_login {
  font-size: 14px;
}

/* 見出し */
body#page_mypage_login .ec-pageHeader h1 {
  font-size: 26px;
  font-weight: 700;
  text-align: left;
  margin: 0 0 24px;
}

/* ログインボックス本体 */
body#page_mypage_login .ec-login {
  background: #f7f7f7;
  padding: 40px 50px 48px;
  max-width: 640px;
  margin: 0 auto 80px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

/* 入力欄 */
body#page_mypage_login input[type="text"],
body#page_mypage_login input[type="email"],
body#page_mypage_login input[type="password"] {
  font-size: 14px;
  padding: 10px 12px;
  box-sizing: border-box;
}

/* チェックボックスを少し大きく */
body#page_mypage_login input[type="checkbox"] {
  transform: scale(1.1);
  transform-origin: center;
}

/* ログインボタン */
body#page_mypage_login .ec-blockBtn--action,
body#page_mypage_login .ec-blockBtn--primary {
  font-size: 14px;
  padding: 14px 10px;
  text-align: center;
}

/* 「ログイン情報をお忘れですか？」など */
body#page_mypage_login .ec-login__actions {
  margin-top: 12px;
}

/* 変な余白を消す */
body.mypage .ec-layoutRole__contents {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

body.mypage .ec-pageHeader {
  margin-top: 10px !important;
  padding-top: 0 !important;
}

/* =============================
   4) レスポンシブ
============================= */

@media screen and (max-width: 768px) {

  .header-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 10px 12px;
  }

  .header-right {
    justify-content: space-between;
    margin-left: 0;
    margin-top: 6px;
  }

  .header-search {
    width: 100%;
    margin: 0;
  }

  .site-footer {
    margin-top: 40px;
  }
}


/************************************************
  【header.css と完全一致させるための補正】
************************************************/

/* ヘッダー背景は必ず白に固定 */
.site-header {
  background: #ffffff !important;
}

/* ロゴは 60px 固定（念のため再指定） */
.header-logo img {
  height: 60px !important;
}

/* 検索窓をオリジナルに完全合わせ */
.header-search input {
  padding: 10px 14px !important;
  font-size: 14px !important;
  border-radius: 8px !important;
  height: auto !important;
}

/* ヘッダー文字を 14px に戻す */
.header-item .text {
  font-size: 14px !important;
  margin-top: 3px !important;
}

/* SNS サイズを 22px に戻す */
.sns-icons img {
  width: 22px !important;
  height: 22px !important;
}

/* 全体の高さ感を original header に合わせる */
header {
  height: 90px !important;
}

/* header-inner の上下余白微調整 */
.header-inner {
  padding-top: 8px !important;
  padding-bottom: 8px !important;
}

/* 右側のズレを補正 */
.header-right {
  margin-left: auto !important;
  gap: 28px !important;
}

/* サイドバーとメインのラッパー */
.content-area {
  display: flex;
  align-items: stretch; /* 高さを揃える */
  background: #f5f2ed;  /* 全体の背景色 */
  min-height: calc(100vh - 180px); /* ヘッダー＋フッター分 */
}

/* メイン部分 */
.main-content {
  flex: 1;
  padding: 20px;
}



/* =========================
   カテゴリバー（黒帯）
========================= */

.category-bar {
  width: 100%;
  background: #111;
}

.category-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;

  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.category-main > li {
  position: relative;
}

.category-main > li > a {
  display: block;
  padding: 14px 10px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  white-space: nowrap;
}

.category-main > li > a:hover {
  text-decoration: underline;
}

/* ▼ ドロップダウン（サブメニュー） */
.category-sub {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 200px;
  padding: 10px 0;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  z-index: 999;
}

.category-sub li {
  list-style: none;
}

.category-sub a {
  display: block;
  padding: 8px 15px;
  font-size: 13px;
  color: #222;
  white-space: nowrap;
}

.category-sub a:hover {
  background: #f2f2f2;
}

/* ▼ ホバーでサブ開く */
.dropdown:hover .category-sub {
  display: block;
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.3);
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
  z-index: 9998;
}

.overlay.active {
  opacity: 1;
  pointer-events: auto;
}
