:root{
  --mint-50:  #ECF8F6;
  --mint-100: #D8F0EC;
  --mint-500: #3BAA9C;
  --mint-600: #2F9488;

  --dark-700: #1F4B45;
  --dark-800: #173B36;

  --gray-50:  #F5F7FA;
  --gray-100: #EEF2F6;
  --gray-200: #E2E8F0;
  --gray-300: #CFD8DC;
  --gray-400: #98A2B3;
  --text:     #1F2937;

  --radius: 14px;
  --shadow: 0 10px 25px rgba(16,24,40,.08);

  --aside-w: 320px;
  --topbar-h: 56px;
}

*{
  box-sizing:border-box;
}

body{
  margin:0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Noto Sans JP",
               "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, var(--mint-50), var(--gray-50));
}

.wrap{
  max-width: 1040px;
  margin: 24px auto 56px;
  padding: 0 22px;
}

/* =========================
   ヘッダー
   ========================= */
.topbar{
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(245,247,250,.75);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-200);
}

.topbar-inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 16px;
  display:flex;
  align-items:center;
  gap:14px;
  min-height: var(--topbar-h);
  position: relative;
}

.brand{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-weight: 800;
  color: var(--dark-800);
  letter-spacing: .02em;
  white-space: nowrap;
  text-decoration: none;
}

.nav{
  margin-left:auto;
  display:flex;
  gap:10px;
  align-items:center;
  flex-wrap:wrap;
}

.nav a{
  text-decoration:none;
  color: var(--dark-700);
  font-size: 14px;
  padding: 8px 10px;
  border-radius: 10px;
}

.nav a:hover{
  background: rgba(59,170,156,.10);
}

.status{
  display:flex;
  align-items:center;
  gap:8px;
  padding: 8px 10px;
  border-radius: 999px;
  background:#fff;
  border:1px solid var(--gray-200);
  font-size: 13px;
  color: var(--dark-800);
  white-space:nowrap;
}

.dot{
  width:10px;
  height:10px;
  border-radius:50%;
  background: #22C55E;
  box-shadow: 0 0 0 3px rgba(34,197,94,.18);
}

/* ハンバーガーボタン */
.menu-toggle{
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span{
  display:block;
  width:20px;
  height:2px;
  background: var(--dark-700);
  border-radius:2px;
}

/* =========================
   レイアウト
   ========================= */
.grid{
  display:grid;
  grid-template-columns: 1fr var(--aside-w);
  gap: 18px;
  margin-top: 18px;
  align-items:start;
}

.dashboard-grid{
  display:grid;
  grid-template-columns: minmax(0, 1fr) var(--aside-w);
  gap:24px;
  align-items:start;
}

.main-card{
  min-width:0;
}

.side{
  display:flex;
  flex-direction:column;
  gap:12px;
  width:100%;
}

.side-panel{
  width:100%;
  min-width:0;
  display:flex;
  flex-direction:column;
  gap:16px;
}

@media (min-width: 921px){
  .side.is-sticky{
    position: sticky;
    top: calc(var(--topbar-h) + 10px);
  }
}

/* =========================
   カード
   ========================= */
.card{
  background:#fff;
  border:1px solid var(--gray-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow:hidden;
}

.card-h{
  padding: 18px 18px 12px;
  border-bottom:1px solid var(--gray-200);
  background: linear-gradient(180deg, rgba(59,170,156,.10), rgba(255,255,255,0));
}

.card-h h1,
.card-h h2{
  margin:0;
  color: var(--dark-800);
  font-weight: 800;
  letter-spacing: .01em;
}

.card-b{
  padding: 20px;
}

.inner-card{
  box-shadow:none;
  border-radius:12px;
  overflow:visible;
}

.inner-h{
  border-radius:12px 12px 0 0;
}

/* =========================
   ボタン
   ========================= */
.btn-primary{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  background: var(--mint-500);
  color:#fff;
  border:none;
  padding: 14px 16px;
  border-radius: 14px;
  font-weight: 800;
  text-decoration:none;
  cursor:pointer;
  box-shadow: 0 10px 18px rgba(59,170,156,.28);
}

.btn-primary:hover{
  background: var(--mint-600);
}

.btn-ghost{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  background:#fff;
  border:1px solid var(--gray-300);
  padding: 12px 14px;
  border-radius: 14px;
  text-decoration:none;
  color: var(--dark-800);
  font-weight: 700;
}

.btn-ghost:hover{
  border-color: rgba(59,170,156,.35);
  background: rgba(59,170,156,.06);
}

.btn-large{
  min-height:48px;
  padding:12px 20px;
  font-size:16px;
}

/* =========================
   汎用
   ========================= */
.muted{
  color: #6B7280;
  font-size: 14px;
  line-height: 1.6;
}

.divider{
  height:1px;
  background: var(--gray-200);
  margin: 14px 0;
}

.hero-title{
  text-align:center;
  font-size: clamp(22px, 3vw, 34px);
  margin: 6px 0 10px;
}

.center{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:10px;
  padding: 8px 0 4px;
}

/* =========================
   タイル
   ========================= */
.tiles{
  display:grid;
  gap:10px;
  margin-top:14px;
}

.tile{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:12px 14px;
  border:1px solid var(--gray-200);
  border-radius:14px;
  background:#fff;
  text-decoration:none;
  color: var(--dark-800);
  font-weight:750;
}

.tile:hover{
  border-color: rgba(59,170,156,.35);
  background: rgba(59,170,156,.06);
}

.tile .left{
  display:flex;
  gap:12px;
  align-items:center;
  min-width:0;
}

.ico{
  width:36px;
  height:36px;
  border-radius:12px;
  background: rgba(59,170,156,.12);
  display:grid;
  place-items:center;
  color: var(--dark-800);
  flex: 0 0 auto;
}

.chev{
  color: var(--gray-400);
  font-weight: 900;
}

/* =========================
   コールアウト
   ========================= */
.callout{
  border:1px solid rgba(59,170,156,.25);
  background: linear-gradient(180deg, rgba(59,170,156,.10), rgba(255,255,255,0));
  border-radius:16px;
  padding:14px;
}

.callout .label{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:900;
  color: var(--dark-800);
  margin-bottom:8px;
}

.phone{
  font-size:28px;
  font-weight:900;
  letter-spacing:.03em;
  color: var(--dark-800);
}

.callout-phone{
  display:block;
  text-decoration:none;
  color:inherit;
  cursor:pointer;
  transition:transform .15s ease, box-shadow .15s ease, background-color .15s ease;
  -webkit-tap-highlight-color: transparent;
}

.callout-phone:hover{
  transform:translateY(-1px);
}

.callout-phone:active{
  transform:translateY(0);
}

.callout-phone:focus-visible{
  outline:2px solid #3BAA9C;
  outline-offset:2px;
}

.callout-phone .phone{
  font-size:1.5rem;
  font-weight:700;
  line-height:1.2;
}

.callout-phone .muted{
  color:#667085;
}

.actions{
  display:grid;
  gap:10px;
  margin-top:8px;
}

/* =========================
   お知らせ
   ========================= */
.notice ul{
  margin:0;
  padding-left:18px;
  color: var(--dark-800);
}

.notice li{
  margin:0 0 10px;
  line-height:1.5;
}

.notice a{
  color: var(--dark-800);
  text-decoration:none;
}

.notice a:hover{
  text-decoration: underline;
}

.notice .date,
.date{
  color:#6B7280;
  font-size:12px;
  margin-left:8px;
  white-space:nowrap;
}

.notice .date{
  display:block;
  margin-top:4px;
  margin-left:0;
  color:#667085;
}

.news-list{
  margin:0;
  padding-left:18px;
}

.news-list li{
  margin:10px 0;
}

.news-list a{
  color: var(--dark-800);
  text-decoration:none;
}

.news-list a:hover{
  text-decoration: underline;
}

/* =========================
   アコーディオン
   ========================= */
.acc{
  border-radius: var(--radius);
  border:1px solid var(--gray-200);
  box-shadow: var(--shadow);
  background:#fff;
  overflow:hidden;
}

.acc summary{
  list-style:none;
  cursor:pointer;
  padding:18px 18px 12px;
  user-select:none;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  border-bottom:1px solid var(--gray-200);
  background: linear-gradient(180deg, rgba(59,170,156,.10), rgba(255,255,255,0));
}

.acc summary::-webkit-details-marker{
  display:none;
}

.acc summary h2{
  margin:0;
  color: var(--dark-800);
  font-weight:800;
  letter-spacing:.01em;
  font-size:20px;
}

.acc .caret{
  color: var(--gray-400);
  font-weight:900;
  transform: rotate(0deg);
  transition: transform .18s ease;
}

.acc[open] .caret{
  transform: rotate(90deg);
}

.acc .acc-b{
  padding:18px;
}

.acc-b{
  padding-top:10px;
}

/* =========================
   ユーザー行
   ========================= */
.userline{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:10px 12px;
  border:1px solid var(--gray-200);
  border-radius:12px;
  background:#fff;
  margin-bottom:14px;
  font-weight:800;
  color: var(--dark-800);
}

/* =========================
   フォーム
   ========================= */
.form{
  width:100%;
}

.label{
  display:block;
  font-weight:800;
  color:var(--dark-800);
  margin-bottom:6px;
}

.input,
.textarea{
  width:100%;
  border:1px solid var(--gray-200);
  border-radius:12px;
  padding:12px;
  font-size:15px;
  outline:none;
  background:#fff;
}

.input:focus,
.textarea:focus{
  border-color: rgba(59,170,156,.55);
  box-shadow: 0 0 0 4px rgba(59,170,156,.12);
}

.form-help{
  margin-top:6px;
  font-size:13px;
}

/* =========================
   フラッシュ
   ========================= */
.flash-wrap{
  margin:14px 0 0;
  display:grid;
  gap:10px;
}

.flash{
  border:1px solid var(--gray-200);
  border-radius:12px;
  padding:12px;
  background:#fff;
  box-shadow: var(--shadow);
}

.flash-ok{
  border-color: rgba(34,197,94,.35);
  background: rgba(34,197,94,.06);
}

.flash-ng{
  border-color: rgba(239,68,68,.35);
  background: rgba(239,68,68,.06);
}

/* =========================
   配合報告書依頼
   ========================= */
.mobile-form{
  display:grid;
  gap:0;
}

.stepper{
  display:grid;
  grid-template-columns:56px 1fr 56px;
  gap:8px;
  align-items:center;
  margin-top:8px;
}

.stepper-btn{
  height:48px;
  border:1px solid var(--gray-200);
  border-radius:12px;
  background:#fff;
  font-size:24px;
  font-weight:700;
  color:var(--dark-700);
  cursor:pointer;
  box-shadow: var(--shadow);
}

.stepper-btn:active{
  transform:translateY(1px);
}

.stepper-input{
  height:48px;
  border:1px solid var(--gray-200);
  border-radius:12px;
  background:#fff;
  text-align:center;
  font-size:18px;
  font-weight:700;
  color:var(--dark-700);
  width:100%;
  padding:0 12px;
}

/* =========================
   価格表ボタン
   ========================= */
@media (max-width: 768px){
  #strengthButtons,
  #slumpButtons{
    display:flex;
    flex-wrap:nowrap;
    gap:6px;
  }

  #strengthButtons button,
  #slumpButtons button{
    min-width:0;
    flex:1 1 0;
    padding:10px 0;
    font-size:0.9rem;
  }
}

/* =========================
   フッター
   ========================= */
footer{
  margin-top:20px;
  color:#6B7280;
  font-size:12px;
  text-align:center;
}

/* =========================
   タブレット・スマホ
   ========================= */
@media (max-width: 960px){
  .dashboard-grid{
    grid-template-columns:1fr;
  }
}

@media (max-width: 920px){
  .grid{
    grid-template-columns:1fr;
  }
}

@media (max-width: 768px){
  .wrap{
    max-width:none;
    margin:18px auto 32px;
    padding:0 16px;
  }

  .topbar-inner{
    padding:12px 16px;
  }

  .brand{
    min-width:0;
    max-width:calc(100% - 60px);
    overflow:hidden;
    text-overflow:ellipsis;
  }

  .menu-toggle{
    display:inline-flex;
  }

  .nav{
    display:none;
    position:absolute;
    top:calc(100% + 8px);
    left:0;
    right:0;
    margin-left:0;
    padding:12px;
    background:#fff;
    border:1px solid var(--gray-200);
    border-radius:16px;
    box-shadow: var(--shadow);
    flex-direction:column;
    align-items:stretch;
    gap:6px;
    flex-wrap:nowrap;
  }

  .nav.open{
    display:flex;
  }

  .nav a{
    display:block;
    padding:12px;
    border-radius:12px;
  }

  .status{
    justify-content:center;
    margin-top:4px;
  }

  .card-b{
    padding:16px !important;
  }

  .input,
  .textarea,
  .btn-primary,
  .btn-ghost{
    width:100%;
  }

  .mobile-actions{
    display:grid;
    grid-template-columns:1fr;
  }

  .stepper{
    grid-template-columns:52px 1fr 52px;
  }

  .stepper-btn,
  .stepper-input{
    height:50px;
  }
}

.notify-dot{
  display:inline-block;
  width:10px;
  height:10px;
  border-radius:50%;
  flex-shrink:0;
}

.notify-dot.red{
  background:#ea665c;
}

.notify-dot.green{
  background:#5bf563;
}

/* ===== スマホで日付入力がはみ出る対策 ===== */
.input,
.stepper-input,
input[type="date"],
input[type="number"]{
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 日付入力のカレンダーアイコン対策 */
input[type="date"]{
  padding-right: 44px;
}

.report-request-wrap{
  max-width: 760px;
  margin: 0 auto;
}

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

.photo-actions{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 10px;
}

.btn-file-action{
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid #cfd8e3;
  border-radius: 14px;
  background: #fff;
  color: var(--dark-700);
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 1px 2px rgba(16,24,40,.04);
  transition: .2s ease;
}

.btn-file-action:hover{
  background: var(--gray-50);
}

.btn-file-sub{
  background: #f8fafc;
}

.file-name-box{
  display: flex;
  align-items: center;
  min-height: 52px;
}

/* 日付欄の右端切れ対策 */
.date-wrap{
  width: 100%;
}

.date-input-fix{
  width: 100%;
  min-width: 0;
  padding-right: 44px;
  overflow: hidden;
}

input[type="date"]{
  appearance: none;
  -webkit-appearance: none;
  min-height: 52px;
  line-height: 1.2;
}

/* =========================
   配合ボタン
   ========================= */
.mix-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 8px;
}

.mix-chip{
  position: relative;
  display: block;
  cursor: pointer;
}

.mix-chip input{
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.mix-chip span{
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 52px;
  padding: 12px 10px;
  border: 1px solid #cfd8e3;
  border-radius: 14px;
  background: #fff;
  color: var(--dark-700);
  font-weight: 700;
  transition: .2s ease;
}

.mix-chip input:checked + span{
  background: var(--mint-100);
  border-color: var(--mint-500);
  color: var(--dark-800);
  box-shadow: inset 0 0 0 1px var(--mint-500);
}

@media (max-width: 767px){
  .photo-actions{
    grid-template-columns: 1fr 1fr;
  }

  .mix-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .mix-chip span{
    min-height: 50px;
    padding: 10px 8px;
    font-size: 0.96rem;
  }

  .date-input-fix{
    font-size: 16px;
    padding-right: 40px;
  }
}

/* =========================
   公開トップ専用
   ========================= */
.public-top-btn{
  display: block;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
}

/* =========================
   公開トップ専用
   ========================= */
.public-sections{
  display: grid;
  gap: 20px;
}

.public-section{
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  padding: 20px;
  background: #fff;
}

.public-section-title{
  margin: 0 0 16px;
  color: var(--dark-800);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: .01em;
}

.public-login{
  text-align: center;
}

.public-top-btn{
  display: block;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  box-sizing: border-box;
  text-align: center;
}

.public-btn-wrap{
  margin-top: 16px;
}

.public-note{
  margin-top: 12px;
  text-align: center;
}

@media (max-width: 768px){
  .public-sections{
    gap: 16px;
  }

  .public-section{
    padding: 16px;
  }

  .public-section-title{
    margin-bottom: 14px;
    font-size: 18px;
  }

  .public-btn-wrap{
    margin-top: 12px;
  }
}
/* 左カラムの中のカード幅を統一 */
.grid > .card .inner-card{
  margin-left: 0;
  margin-right: 0;
}

/* ボタンの最大幅を制御（業務メニューと揃える） */
.public-top-btn{
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
/* サイドバーのボタンを統一 */
.side .btn-ghost{
  width: 100%;
  max-width: 260px;
  margin: 0 auto;
}
textarea {
  width: 100%;
  min-height: 160px;
  padding: 14px 16px;
  border: 1.5px solid #cfd8dc;
  border-radius: 12px;
  font-size: 16px;
  line-height: 1.6;
  background: #fff;
  resize: vertical;
}

/* フォーカス時に強調 */
textarea:focus {
  outline: none;
  border-color: #3BAA9C;
  box-shadow: 0 0 0 3px rgba(59,170,156,0.15);
}
/* 割増だけ1行固定、サイズは他ボタンに合わせる */
#extraButtons{
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
}

#extraButtons button{
  flex: 0 0 auto;
  min-width: 72px;   /* 他のボタンに近い幅に調整 */
  padding: 10px 14px;
  white-space: nowrap;
}
@media (max-width: 480px){

  /* 全体カードの余白を圧縮 */
  .card-b{
    padding: 16px 14px;
  }

  .card-h{
    padding: 14px 16px;
  }

  /* タイトルまわり */
  .hero-title,
  .card-h h1{
    font-size: 1.9rem;
    margin: 0;
  }

  /* 配合検索ブロック内の区切り余白 */
  .field-label{
    margin-bottom: 8px !important;
    font-size: 0.98rem;
    font-weight: 700;
  }

  /* 各項目のまとまりの下余白を減らす */
  #priceSearch > div[style*="margin-bottom:18px"]{
    margin-bottom: 14px !important;
  }

  /* ボタングループの間隔を少し詰める */
  .btn-group{
    gap: 8px !important;
  }

  /* ボタン自体を少しだけ低くする */
  .btn-group button,
  #extraButtons button{
    min-height: 48px;
    padding: 10px 12px;
    font-size: 0.95rem;
    border-radius: 14px;
  }
}
@media (max-width: 480px){

  /* 外側カード */
  .card-h{
    padding: 10px 12px !important;
  }

  .card-b{
    padding: 10px 12px !important;
  }

  /* 内側カード */
  .card .card{
    margin-bottom: 10px !important;
  }

  .card .card .card-h{
    padding: 10px 12px !important;
  }

  .card .card .card-b{
    padding: 10px 12px !important;
  }

  /* タイトル */
  .hero-title,
  .card-h h1{
    font-size: 1.55rem !important;
    line-height: 1.2 !important;
    margin: 0 !important;
  }

  /* 各項目ブロックの余白 */
  #priceSearch > div[style*="margin-bottom:18px"]{
    margin-bottom: 8px !important;
  }

  /* ラベル */
  .field-label{
    margin-bottom: 4px !important;
    font-size: 0.92rem !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
  }

  /* 通常ボタングループ */
  .btn-group{
    gap: 6px !important;
    margin-bottom: 0 !important;
  }

  .btn-group button{
    min-height: 40px !important;
    height: 40px !important;
    padding: 6px 10px !important;
    font-size: 0.95rem !important;
    border-radius: 12px !important;
    line-height: 1 !important;
  }

  /* 割増だけ1行固定 */
  #extraButtons{
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 6px !important;
  }

  #extraButtons button{
    flex: 1 1 0 !important;
    min-width: 0 !important;
    min-height: 40px !important;
    height: 40px !important;
    padding: 6px 4px !important;
    font-size: 0.9rem !important;
    border-radius: 12px !important;
    line-height: 1 !important;
  }

  /* 注意書き */
  .muted{
    margin-top: 4px !important;
    font-size: 0.78rem !important;
    line-height: 1.35 !important;
  }

  /* 検索結果 */
  #priceResult{
    margin-top: 8px !important;
    padding: 10px 12px !important;
    scroll-margin-top: 80px;
  }

  #priceResult .label{
    margin-bottom: 4px !important;
    font-size: 0.95rem !important;
  }
}
/* ブランド全体 */
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

/* テキスト部分 */
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  border-left: 3px solid #3BAA9C;
  padding-left: 10px;
}

/* 会社名（控えめ） */
.company {
  font-size: 0.8rem;
  font-weight: 500;
  opacity: 0.7;
  letter-spacing: 0.05em;
}

/* サービス名（主役） */
.service {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #000504;
}
/* お問い合わせ（控えめ版） */
.btn-sub {
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px;
  border-radius: 12px;

  background: #EAF4F2; /* うっすらミント系 */
  color: #2F9488;

  border: 1px solid #025e2b;     /* 枠線なし */
  text-decoration: none; /* 下線なし */

  font-weight: 500;    /* 少し軽く */
}

/* =========================
   作業ツール型ハンバーガーメニュー（統一カラー版）
   ========================= */

.tool-menu{
  margin-left: auto;
}

/* セクション構造 */
.menu-section{
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.menu-heading{
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  color: #667085;
  padding: 2px 4px 6px;
}

.menu-divider{
  height: 1px;
  background: var(--gray-200);
  margin: 8px 0;
}

/* ボタン・リンク共通 */
.menu-btn,
.menu-link{
  text-decoration: none;
  transition: .2s ease;
}

/* ■ ボタン（完全統一カラー） */
.menu-btn{
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 14px;
  border-radius: 14px;

  background: #EAF4F2;
  color: #2F9488;
  border: none;

  font-weight: 700;
  box-shadow: none;
}

.menu-btn:hover{
  background: #dff0ec;
}

/* ■ 情報リンク */
.menu-link{
  display: block;
  padding: 10px 6px;
  color: var(--dark-700);
  font-size: 15px;
  font-weight: 700;
  border-radius: 10px;
}

.menu-link:hover{
  background: rgba(59,170,156,.08);
  padding-left: 10px;
}

/* ログアウト */
.logout-link{
  color: #b42318;
}

/* 営業状況 */
.menu-status{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--gray-200);
  font-size: 12px;
  color: #667085;
}

/* =========================
   ハンバーガーボタン
   ========================= */

.menu-toggle{
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  padding: 0;

  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;

  box-shadow: 0 1px 2px rgba(16,24,40,.04);
  transition: background-color .2s ease, border-color .2s ease, transform .15s ease;
  -webkit-tap-highlight-color: transparent;
}

.menu-toggle:hover{
  background: var(--gray-50);
  border-color: var(--gray-300);
}

.menu-toggle:active{
  transform: scale(0.98);
}

.menu-toggle:focus-visible{
  outline: 2px solid var(--mint-500);
  outline-offset: 2px;
}

.menu-toggle span{
  display: block;
  width: 20px;
  height: 2px;
  background: var(--dark-700);
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1){
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2){
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3){
  transform: translateY(-7px) rotate(-45deg);
}

/* =========================
   PC表示
   ========================= */

@media (min-width: 769px){
  .tool-menu{
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
  }

  .tool-menu .menu-section{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
  }

  .tool-menu .menu-heading,
  .tool-menu .menu-divider{
    display: none;
  }

  .tool-menu .menu-btn{
    min-height: 40px;
    padding: 8px 12px;
    font-size: 14px;
    border-radius: 12px;
    white-space: nowrap;
  }

  .tool-menu .menu-link{
    padding: 8px 10px;
    font-size: 14px;
    white-space: nowrap;
  }

  .tool-menu .menu-status{
    margin-top: 0;
    margin-left: 6px;
    padding-top: 0;
    border-top: none;
    white-space: nowrap;
  }
}

/* =========================
   スマホ表示
   ========================= */

@media (max-width: 768px){
  .menu-toggle{
    display: inline-flex;
    flex: 0 0 auto;
  }

  .tool-menu{
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 16px;
    right: 16px;
    margin-left: 0;
    padding: 14px;

    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: 18px;
    box-shadow: var(--shadow);

    flex-direction: column;
    align-items: stretch;
    gap: 0;
    z-index: 1200;
  }

  .tool-menu.open{
    display: flex;
  }

  .menu-btn,
  .menu-link{
    width: 100%;
  }
}