*{box-sizing:border-box;margin:0;padding:0;-webkit-tap-highlight-color:transparent}

:root{
  --grn:#6c6d71;      /* main accent — forest green */
  --grn2:#8a8b90;     /* lighter */
  --grn-s:rgba(108,109,113,.1);
  --grn-m:rgba(108,109,113,.18);
  --text:#111;
  --sub:#555;
  --muted:#999;
  --border:rgba(0,0,0,.07);
}

body{
  background:#c9c9cc;
  display:flex;justify-content:center;align-items:flex-start;
  min-height:100vh;padding:24px 12px;
  font-family:-apple-system,'Hiragino Sans','Hiragino Kaku Gothic ProN',sans-serif;
}

/* PHONE */
.phone{
  width:390px;height:844px;
  border-radius:50px;overflow:hidden;
  box-shadow:0 0 0 10px #111,0 0 0 11px #2a2a2a,0 40px 80px rgba(0,0,0,.55);
  display:flex;flex-direction:column;position:relative;
  /* white background with very soft green blobs so glass has something to show */
  background:#ffffff;
}
/* subtle blobs behind everything */
.phone::before{
  content:'';position:absolute;top:-60px;right:-60px;
  width:300px;height:300px;border-radius:50%;
  background:radial-gradient(circle,rgba(120,122,126,.13) 0%,transparent 65%);
  pointer-events:none;z-index:0;
}
.phone::after{
  content:'';position:absolute;bottom:-40px;left:-40px;
  width:240px;height:240px;border-radius:50%;
  background:radial-gradient(circle,rgba(120,122,126,.1) 0%,transparent 65%);
  pointer-events:none;z-index:0;
}
.notch{position:absolute;top:0;left:50%;transform:translateX(-50%);width:126px;height:34px;background:#111;border-radius:0 0 20px 20px;z-index:999;}

/* STATUS BAR */
.sb{
  height:54px;
  background:rgba(255,255,255,.75);
  backdrop-filter:blur(20px);-webkit-backdrop-filter:blur(20px);
  border-bottom:1px solid rgba(0,0,0,.06);
  display:flex;align-items:flex-end;justify-content:space-between;
  padding:0 28px 10px;font-size:13px;font-weight:600;color:#111;
  position:relative;z-index:100;flex-shrink:0;
}

/* SCREENS */
.scr{display:none;flex:1;flex-direction:column;overflow:hidden;min-height:0;position:relative;z-index:1;}
.scr.on{display:flex;animation:fi .2s ease;}
@keyframes fi{from{opacity:0;transform:translateY(6px)}to{opacity:1;transform:none}}

/* NAV */
.nav{
  height:50px;
  background:rgba(255,255,255,.7);
  backdrop-filter:blur(24px);-webkit-backdrop-filter:blur(24px);
  border-bottom:1px solid rgba(0,0,0,.07);
  display:flex;align-items:center;justify-content:space-between;
  padding:0 14px;flex-shrink:0;position:relative;
}
.nav-back{
  width:34px;height:34px;border-radius:50%;
  background:rgba(108,109,113,.1);border:1px solid rgba(108,109,113,.25);
  color:var(--grn);font-size:20px;cursor:pointer;
  display:flex;align-items:center;justify-content:center;transition:all .12s;
}
.nav-back:active{transform:scale(.9);}
.nav-t{font-size:16px;font-weight:600;color:#111;position:absolute;left:50%;transform:translateX(-50%);}
.nav-r{width:34px;}

/* SCROLL */
.sc{overflow-y:auto;flex:1;padding:12px;min-height:0;background:rgba(245,248,246,.6);}
.sc::-webkit-scrollbar{display:none;}

/* MENU TABS */
.mtabs{
  display:flex;gap:3px;padding:10px 10px 0;
  background:rgba(255,255,255,.65);
  backdrop-filter:blur(20px);-webkit-backdrop-filter:blur(20px);
  border-bottom:1px solid rgba(0,0,0,.07);flex-shrink:0;
}
.mtab{
  flex:1;padding:8px 3px;border-radius:8px 8px 0 0;
  font-size:10px;font-weight:600;color:#888;text-align:center;
  cursor:pointer;border:1px solid rgba(0,0,0,.09);border-bottom:none;
  background:rgba(255,255,255,.5);line-height:1.4;transition:all .12s;
}
.mtab.on{background:rgba(108,109,113,.12);color:var(--grn);border-color:rgba(108,109,113,.25);}

/* FILTER ROW */
.frow{
  display:flex;align-items:center;justify-content:space-between;
  padding:9px 14px;
  background:rgba(255,255,255,.65);
  backdrop-filter:blur(16px);-webkit-backdrop-filter:blur(16px);
  border-bottom:1px solid rgba(0,0,0,.06);flex-shrink:0;
  font-size:11px;color:#888;
}
.frow-r{color:var(--grn);font-weight:600;}

/* COUNT ROW */
.crow{
  padding:8px 14px;
  background:rgba(255,255,255,.6);
  border-bottom:2px solid var(--grn);flex-shrink:0;
  display:flex;align-items:center;justify-content:space-between;
  font-size:11px;color:#888;
}
.crow b{color:var(--grn);font-weight:700;}

/* MENU CARD — glass on white */
.mcard{
  background:rgba(255,255,255,.85);
  backdrop-filter:blur(20px) saturate(150%);
  -webkit-backdrop-filter:blur(20px) saturate(150%);
  border:1px solid rgba(0,0,0,.08);
  border-radius:12px;margin-bottom:12px;overflow:hidden;
  box-shadow:0 2px 16px rgba(0,0,0,.07);
  cursor:pointer;transition:transform .12s;
  display:flex;flex-direction:column;
}
.mcard:active{transform:scale(.99);}
/* バッジ＋タイトルエリア（横並び）*/
.mcard-head{display:flex;flex-direction:row;}
.mcard-badge{
  width:44px;flex-shrink:0;align-self:stretch;
  background:#55565b;color:#fff;
  font-size:15px;font-weight:800;
  letter-spacing:2px;
  writing-mode:vertical-lr;
  display:flex;align-items:center;justify-content:center;
  overflow:hidden;
}
.mcard-badge.all{background:#6c6d71;}
.mcard-badge.aki{background:#8b5e3c;}
.mcard-badge.tar{background:#3c5e8b;}
.mcard-top{padding:12px 12px 10px;flex:1;min-width:0;}
/* スタッフ専用タグ — 既存 .mtag と同系統 */
.mtag.aki{background:rgba(139,94,60,.1);color:#7a4e28;border-color:rgba(139,94,60,.25);}
.mtag.tar{background:rgba(52,80,148,.1);color:#2e4fa0;border-color:rgba(52,80,148,.25);}
.staff-inline{
  display:inline-block;
  border-radius:10px;padding:2px 8px;font-size:10px;font-weight:700;
  vertical-align:middle;margin-left:6px;border:1px solid;
}
.staff-inline.aki{background:rgba(139,94,60,.1);color:#7a4e28;border-color:rgba(139,94,60,.25);}
.staff-inline.tar{background:rgba(52,80,148,.1);color:#2e4fa0;border-color:rgba(52,80,148,.25);}
.mtags{display:flex;gap:6px;flex-wrap:wrap;margin-bottom:8px;}
.mtag{
  font-size:10px;font-weight:600;padding:3px 9px;border-radius:20px;
  background:rgba(108,109,113,.1);color:var(--grn);
  border:1px solid rgba(108,109,113,.2);
}
.mcard-title{font-size:14px;font-weight:600;color:#111;line-height:1.5;}
.mcard-price{font-size:22px;font-weight:700;color:var(--grn);margin-top:4px;}
.mcard-body{display:flex;gap:10px;padding:10px 12px 12px;}
.mcard-img{
  width:130px;height:140px;border-radius:8px;flex-shrink:0;
  background:rgba(108,109,113,.08);border:1px solid rgba(108,109,113,.15);
  display:flex;align-items:center;justify-content:center;font-size:40px;
}
.mcard-desc{font-size:11px;color:#666;line-height:1.7;flex:1;}
.mcard-divider{height:1px;background:rgba(0,0,0,.06);margin:0 12px;}
.mcard-btns{display:flex;gap:8px;padding:10px 12px;}
.btn-outline{
  flex:1;padding:10px;border-radius:6px;
  border:1.5px solid rgba(108,109,113,.4);
  background:rgba(108,109,113,.06);
  color:var(--grn);font-size:12px;font-weight:600;cursor:pointer;
}
.btn-green{
  flex:1;padding:10px;border-radius:6px;border:none;
  background:linear-gradient(135deg,#6c6d71,#8a8b90);
  color:#fff;font-size:12px;font-weight:700;cursor:pointer;
  box-shadow:0 3px 10px rgba(108,109,113,.3);
}

/* STAFF+DATE */
.sdhead{
  background:rgba(255,255,255,.7);
  backdrop-filter:blur(20px);-webkit-backdrop-filter:blur(20px);
  border-bottom:1px solid rgba(0,0,0,.07);padding:12px 14px;flex-shrink:0;
}
.sdhead-shop{font-size:13px;font-weight:700;color:#111;margin-bottom:6px;}
.sdhead-menu{
  background:rgba(108,109,113,.07);border:1px solid rgba(108,109,113,.18);
  border-radius:8px;padding:10px 12px;
}
.sdhead-mn{font-size:11px;color:#999;margin-bottom:4px;}
.sdhead-mv{font-size:13px;font-weight:600;color:#111;}
.sdhead-dur{font-size:11px;color:#999;margin-top:4px;}

.stsec{
  background:rgba(255,255,255,.65);
  backdrop-filter:blur(16px);-webkit-backdrop-filter:blur(16px);
  border-bottom:1px solid rgba(0,0,0,.06);padding:12px 14px;flex-shrink:0;
}
.stsec-t{font-size:13px;font-weight:700;color:#111;margin-bottom:10px;}
.stpills{display:flex;gap:8px;flex-wrap:wrap;}
.stpill{
  padding:8px 16px;border-radius:20px;
  border:1.5px solid rgba(0,0,0,.14);
  background:rgba(255,255,255,.6);
  backdrop-filter:blur(10px);
  font-size:12px;color:#555;cursor:pointer;transition:all .12s;
}
.stpill.on{border-color:var(--grn);color:var(--grn);background:rgba(108,109,113,.08);}

.dtsec-h{
  background:rgba(255,255,255,.6);
  backdrop-filter:blur(14px);-webkit-backdrop-filter:blur(14px);
  padding:12px 14px 0;flex-shrink:0;
}
.dtsec-t{font-size:13px;font-weight:700;color:#111;margin-bottom:3px;}
.dtsec-cond{font-size:11px;color:#999;margin-bottom:10px;}

.wknav{
  display:flex;align-items:center;justify-content:space-between;
  padding:8px 14px;
  background:rgba(255,255,255,.6);
  backdrop-filter:blur(14px);-webkit-backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(0,0,0,.07);flex-shrink:0;
}
.wkbtn{
  font-size:12px;font-weight:600;color:#aaa;
  background:rgba(255,255,255,.7);border:1px solid rgba(0,0,0,.1);
  border-radius:8px;padding:7px 12px;cursor:pointer;transition:all .12s;
}
.wkbtn:disabled{opacity:.4;pointer-events:none;}
.wkbtn.r{color:var(--grn);border-color:rgba(108,109,113,.25);background:rgba(108,109,113,.07);}
.wkmonth{font-size:13px;font-weight:700;color:#111;}

/* GRID */
.gscroll{overflow:auto;flex:1;min-height:0;background:rgba(248,250,249,.7);}
.gscroll::-webkit-scrollbar{display:none;}
.gtable{min-width:max-content;}

.gheader{display:flex;border-bottom:1px solid rgba(0,0,0,.08);position:sticky;top:0;z-index:10;}
.g-tcol{
  width:54px;flex-shrink:0;
  background:rgba(255,255,255,.8);
  backdrop-filter:blur(14px);-webkit-backdrop-filter:blur(14px);
  border-right:1px solid rgba(0,0,0,.07);
}
.g-dh{
  width:50px;flex-shrink:0;
  display:flex;flex-direction:column;align-items:center;padding:8px 4px;
  border-right:1px solid rgba(0,0,0,.06);
  background:rgba(255,255,255,.75);
  backdrop-filter:blur(14px);-webkit-backdrop-filter:blur(14px);
}
.g-dh.today-col{background:rgba(108,109,113,.1);}
.g-dh.closed-col{opacity:.35;}
.g-dn{font-size:18px;font-weight:700;color:#111;line-height:1;}
.g-dow{font-size:9px;font-weight:600;color:#aaa;margin-top:3px;}
.g-dh.sun .g-dn,.g-dh.sun .g-dow{color:#e05555;}
.g-dh.sat .g-dn,.g-dh.sat .g-dow{color:#4080c0;}

.grow{display:flex;border-bottom:1px solid rgba(0,0,0,.04);}
.g-tc{
  width:54px;flex-shrink:0;height:44px;
  display:flex;align-items:center;padding-left:8px;
  border-right:1px solid rgba(0,0,0,.07);
  font-size:11px;font-weight:500;color:#bbb;
  background:rgba(255,255,255,.7);
}
.g-cell{
  width:50px;flex-shrink:0;height:44px;
  display:flex;align-items:center;justify-content:center;
  border-right:1px solid rgba(0,0,0,.04);
  cursor:pointer;transition:background .1s;
  background:rgba(255,255,255,.55);
  backdrop-filter:blur(8px);-webkit-backdrop-filter:blur(8px);
}
.g-cell.na{cursor:default;background:rgba(248,248,248,.6);}
.g-cell.closed{cursor:default;background:rgba(242,242,242,.5);}
.g-cell:not(.na):not(.closed):hover{background:rgba(108,109,113,.1);}
.g-cell.sel{background:rgba(108,109,113,.15);}

.gcircle{
  width:28px;height:28px;border-radius:50%;
  border:1.5px solid rgba(108,109,113,.6);
  display:flex;align-items:center;justify-content:center;
  font-size:13px;font-weight:700;color:var(--grn);transition:all .12s;
}
.g-cell:not(.na):not(.closed):hover .gcircle,.g-cell.sel .gcircle{
  background:linear-gradient(135deg,#6c6d71,#8a8b90);color:#fff;border-color:transparent;
  box-shadow:0 2px 8px rgba(108,109,113,.35);
}
.gx{font-size:18px;color:#ccc;}
.gdash{font-size:14px;color:#ddd;}

/* BOTTOM */
.bot{
  padding:12px 14px calc(10px + env(safe-area-inset-bottom,0));
  background:rgba(255,255,255,.75);
  backdrop-filter:blur(24px);-webkit-backdrop-filter:blur(24px);
  border-top:1px solid rgba(0,0,0,.07);flex-shrink:0;
}
.btn-book{
  width:100%;padding:15px;border-radius:10px;border:none;
  background:linear-gradient(135deg,#6c6d71,#8a8b90);
  color:#fff;font-size:16px;font-weight:700;cursor:pointer;
  box-shadow:0 5px 20px rgba(108,109,113,.35),inset 0 1px 0 rgba(255,255,255,.2);
}
.btn-book:active{opacity:.87;}
.btn-sub{
  width:100%;padding:13px;border-radius:10px;
  background:rgba(255,255,255,.7);backdrop-filter:blur(10px);
  border:1px solid rgba(0,0,0,.1);color:#555;
  font-size:14px;font-weight:600;cursor:pointer;margin-top:8px;
}

/* ADD MENU MODAL */
.modal-overlay{
  display:none;position:absolute;inset:0;z-index:200;
  background:rgba(0,0,0,.45);
  backdrop-filter:blur(4px);-webkit-backdrop-filter:blur(4px);
  align-items:flex-end;
}
.modal-overlay.on{display:flex;animation:fadeOv .2s ease;}
@keyframes fadeOv{from{opacity:0}to{opacity:1}}
.modal-sheet{
  width:100%;max-height:88%;
  background:#fff;border-radius:22px 22px 0 0;
  display:flex;flex-direction:column;overflow:hidden;
  animation:slideUp .25s ease;
}
@keyframes slideUp{from{transform:translateY(100%)}to{transform:translateY(0)}}
.modal-head{
  padding:16px 16px 10px;
  border-bottom:1px solid #eee;flex-shrink:0;
  display:flex;align-items:center;gap:10px;
}
.modal-close{
  width:32px;height:32px;border-radius:50%;
  background:#f0f0f0;border:none;font-size:16px;
  cursor:pointer;display:flex;align-items:center;justify-content:center;
  color:#555;flex-shrink:0;
}
.modal-title{font-size:15px;font-weight:700;color:#111;}
.modal-count{font-size:12px;color:var(--grn);font-weight:600;}
.modal-cats{
  display:flex;gap:8px;overflow-x:auto;
  padding:10px 12px;border-bottom:1px solid #eee;flex-shrink:0;
}
.modal-cats::-webkit-scrollbar{display:none;}
.mct{
  flex-shrink:0;padding:6px 16px;border-radius:20px;
  border:1.5px solid #ddd;background:#fff;
  font-size:12px;font-weight:600;color:#666;cursor:pointer;
}
.mct.on{border-color:var(--grn);color:var(--grn);background:rgba(108,109,113,.08);}
.modal-list{overflow-y:auto;flex:1;}
.modal-list::-webkit-scrollbar{display:none;}
.modal-sec{
  padding:8px 14px 4px;font-size:12px;font-weight:700;color:#888;
  background:#f5f5f5;border-bottom:1px solid #eee;border-top:1px solid #eee;
}
.modal-row{
  display:flex;align-items:center;gap:12px;
  padding:13px 14px;border-bottom:1px solid #f0f0f0;
  cursor:pointer;transition:background .1s;
}
.modal-row:active{background:#f9f9f9;}
.modal-cb{
  width:22px;height:22px;border-radius:5px;
  border:2px solid #ccc;flex-shrink:0;
  display:flex;align-items:center;justify-content:center;
  font-size:13px;color:#fff;transition:all .12s;
}
.modal-cb.on{background:var(--grn);border-color:var(--grn);}
.modal-info{flex:1;}
.modal-name{font-size:13px;font-weight:600;color:#111;margin-bottom:2px;}
.modal-price{font-size:13px;font-weight:700;color:var(--grn);}
.modal-dur{font-size:12px;color:#aaa;margin-left:auto;flex-shrink:0;}
.modal-bot{
  padding:12px 14px;border-top:1px solid #eee;flex-shrink:0;
  background:#fff;
}
.modal-sel-info{font-size:11px;color:#666;margin-bottom:8px;line-height:1.5;}
.modal-sel-info b{color:#111;font-weight:600;}
.btn-modal-skip{
  width:100%;padding:15px;border-radius:8px;border:none;
  background:linear-gradient(135deg,#6c6d71,#8a8b90);
  color:#fff;font-size:15px;font-weight:700;cursor:pointer;
  box-shadow:0 4px 16px rgba(108,109,113,.3);
}
.btn-modal-add{
  width:100%;padding:15px;border-radius:8px;border:none;
  background:linear-gradient(135deg,#6c6d71,#8a8b90);
  color:#fff;font-size:15px;font-weight:700;cursor:pointer;
  box-shadow:0 4px 16px rgba(108,109,113,.3);margin-top:8px;
}

/* SIMPLE MENU LIST */
.mlist-sec{padding:10px 12px 4px;font-size:12px;font-weight:700;color:#888;}
.mlist-item{
  background:rgba(255,255,255,.72);
  backdrop-filter:blur(16px);-webkit-backdrop-filter:blur(16px);
  border:1px solid rgba(0,0,0,.07);border-radius:10px;
  margin:0 12px 8px;padding:13px 14px;
  display:flex;align-items:flex-start;cursor:pointer;
  box-shadow:0 2px 10px rgba(0,0,0,.05);
  transition:all .12s;
}
.mlist-item:active{transform:scale(.99);}
.mlist-info{flex:1;}
.mlist-name{font-size:14px;font-weight:600;color:#111;margin-bottom:3px;}
.mlist-price{font-size:15px;font-weight:700;color:var(--grn);margin-bottom:4px;}
.mlist-desc{font-size:11px;color:#888;line-height:1.6;}
.mlist-arr{color:#ccc;font-size:16px;margin-left:8px;align-self:center;}

/* POLICY */
.pol-sc{overflow-y:auto;flex:1;padding:12px;min-height:0;background:rgba(245,248,246,.7);}
.pol-sc::-webkit-scrollbar{display:none;}
.pol-card{
  background:rgba(255,255,255,.72);backdrop-filter:blur(18px);-webkit-backdrop-filter:blur(18px);
  border:1px solid rgba(0,0,0,.07);border-radius:12px;padding:14px;margin-bottom:10px;
  box-shadow:0 2px 12px rgba(0,0,0,.05);
}
.pol-title{font-size:13px;font-weight:700;color:#111;margin-bottom:6px;}
.pol-body{font-size:12px;color:#666;line-height:1.8;}

/* CUSTOMER INFO */
.info-sec{padding:8px 14px;background:#f5f5f5;font-size:12px;font-weight:700;color:#555;border-bottom:1px solid #e8e8e8;flex-shrink:0;}
.info-row{background:#fff;border-bottom:1px solid #eee;padding:14px;}
.info-row-inner{display:flex;gap:12px;}
.info-label{min-width:90px;font-size:12px;font-weight:700;color:#333;line-height:1.5;flex-shrink:0;}
.info-req{display:inline-block;font-size:10px;font-weight:700;color:#e8334a;border:1px solid #e8334a;padding:1px 5px;border-radius:2px;margin-top:4px;}
.info-right{flex:1;}
.radio-opt{display:flex;align-items:center;gap:10px;padding:6px 0;cursor:pointer;}
.radio-circle{width:20px;height:20px;border-radius:50%;border:2px solid #ccc;flex-shrink:0;display:flex;align-items:center;justify-content:center;transition:all .12s;}
.radio-circle.on{border-color:var(--grn);}
.radio-dot{width:10px;height:10px;border-radius:50%;background:var(--grn);display:none;}
.radio-circle.on .radio-dot{display:block;}
.radio-label{font-size:14px;color:#111;}
.info-note{font-size:11px;color:#999;margin-top:6px;line-height:1.6;}
.info-textarea{
  width:100%;border:1px solid #ddd;border-radius:6px;
  padding:10px 12px;font-size:13px;color:#333;
  resize:none;height:80px;margin-top:8px;
  font-family:-apple-system,'Hiragino Sans',sans-serif;
  outline:none;
}
.info-textarea:focus{border-color:var(--grn);}
.info-hint{font-size:11px;color:#999;margin-bottom:6px;}
.info-field-wrap{display:flex;flex-direction:column;gap:3px;flex:1;}
.info-field-label{font-size:11px;color:#888;font-weight:600;}
.info-input{
  width:100%;border:1px solid #ddd;border-radius:7px;padding:10px 12px;
  font-size:14px;font-family:inherit;color:#111;background:#fafafa;
  outline:none;transition:border-color .15s,background .15s;
}
.info-input:focus{border-color:var(--grn);background:#fff;}
.info-edit-badge{
  display:inline-flex;align-items:center;gap:3px;font-size:11px;
  color:var(--grn);font-weight:600;cursor:pointer;padding:3px 0;white-space:nowrap;
  flex-shrink:0;
}
.tel-wrap{display:flex;gap:8px;align-items:center;}
.tel-cc{
  display:flex;align-items:center;gap:5px;
  border:1px solid #ddd;border-radius:7px;padding:10px 10px;
  font-size:13px;color:#111;background:#fafafa;cursor:pointer;
  white-space:nowrap;flex-shrink:0;
}
.tel-cc-arrow{font-size:10px;color:#aaa;}
.tel-num{flex:1;}
.info-profile-note{font-size:11px;color:#aaa;padding:8px 14px 12px;background:#f5f5f5;line-height:1.6;}
/* COIN CARD */
.coin-card{
  margin:12px 14px;
  background:linear-gradient(135deg,#6c6d71,#8a8b90);
  border-radius:12px;padding:14px 16px;
  box-shadow:0 4px 16px rgba(108,109,113,.25);
}
.coin-card-title{font-size:11px;font-weight:700;color:rgba(255,255,255,.75);letter-spacing:.5px;margin-bottom:10px;}
.coin-rows{display:flex;flex-direction:column;gap:6px;}
.coin-row{display:flex;justify-content:space-between;align-items:center;}
.coin-row-l{font-size:12px;color:rgba(255,255,255,.8);}
.coin-row-r{font-size:14px;font-weight:700;color:#fff;}
.coin-earn{font-size:18px;font-weight:800;color:#ffe066;}
.coin-divider{height:1px;background:rgba(255,255,255,.2);margin:8px 0;}
.coin-after{font-size:16px;font-weight:800;color:#fff;}
.info-cb-row{display:flex;align-items:center;gap:10px;padding:8px 0;cursor:pointer;}
.info-cb{width:20px;height:20px;border-radius:4px;border:2px solid #ccc;flex-shrink:0;display:flex;align-items:center;justify-content:center;font-size:12px;color:#fff;transition:all .12s;}
.info-cb.on{background:var(--grn);border-color:var(--grn);}

/* CONFIRM */
.conf-steps{display:flex;background:#fff;border-bottom:1px solid #e8e8e8;flex-shrink:0;overflow:hidden;}
.conf-step{
  flex:1;padding:10px 4px;text-align:center;font-size:12px;font-weight:500;color:#aaa;
  position:relative;background:#eef2ef;
}
.conf-step.now{font-weight:700;color:#fff;background:linear-gradient(135deg,#6c6d71,#8a8b90);}
.conf-step.done{color:#888;background:#dde8e1;}
.conf-step-arrow{
  position:absolute;right:-9px;top:0;bottom:0;width:18px;z-index:2;
  clip-path:polygon(0 0,55% 0,100% 50%,55% 100%,0 100%,45% 50%);
}
.conf-step.now .conf-step-arrow{background:linear-gradient(135deg,#6c6d71,#8a8b90);}
.conf-step.done .conf-step-arrow{background:#dde8e1;}
.conf-step:last-child .conf-step-arrow{display:none;}
.conf-warn{margin:12px;padding:13px 16px;border:1.5px solid rgba(232,51,74,.35);border-radius:8px;background:#fff9f9;text-align:center;}
.conf-warn-t{font-size:13px;font-weight:700;color:#333;margin-bottom:3px;}
.conf-warn-s{font-size:11px;color:#888;}
.conf-sec2{padding:8px 14px;background:#f5f5f5;font-size:12px;font-weight:700;color:#555;border-bottom:1px solid #e8e8e8;border-top:1px solid #e8e8e8;}
.conf-row2{display:flex;gap:14px;padding:13px 14px;border-bottom:1px solid #f0f0f0;background:#fff;align-items:flex-start;}
.conf-l2{font-size:12px;color:#555;min-width:80px;font-weight:500;flex-shrink:0;line-height:1.6;}
.conf-r2{font-size:13px;color:#111;flex:1;line-height:1.6;}
.conf-coupon{background:rgba(108,109,113,.05);border:1.5px solid rgba(108,109,113,.2);border-radius:8px;padding:10px 12px;margin-top:4px;}
.conf-coupon-tags{display:flex;gap:5px;flex-wrap:wrap;margin-bottom:6px;}
.conf-coupon-tag{font-size:10px;padding:2px 8px;border-radius:3px;background:rgba(108,109,113,.12);color:var(--grn);font-weight:600;}
.conf-coupon-badge{display:inline-block;background:rgba(108,109,113,.12);color:var(--grn);font-size:9px;font-weight:700;padding:3px 6px;border-radius:3px;margin-right:6px;vertical-align:middle;}
.conf-coupon-name{font-size:13px;font-weight:600;color:#111;margin-bottom:4px;line-height:1.5;}
.conf-coupon-price{font-size:18px;font-weight:700;color:var(--grn);}
.conf-privacy{text-align:center;padding:10px 14px;font-size:12px;color:var(--grn);text-decoration:underline;cursor:pointer;}
.conf-sc{overflow-y:auto;flex:1;min-height:0;background:#f5f5f5;}
.conf-sc::-webkit-scrollbar{display:none;}

/* NOTICE CHECK */
.notice-sc{overflow-y:auto;flex:1;min-height:0;background:#f2f2f3;}
.notice-sc::-webkit-scrollbar{display:none;}
.notice-hero{
  background:linear-gradient(145deg,#162e22,#1f4532);
  padding:20px 18px 28px;position:relative;overflow:hidden;
}
.notice-hero::after{
  content:'';position:absolute;bottom:-40px;right:-30px;width:140px;height:140px;border-radius:50%;
  background:radial-gradient(circle,rgba(100,200,140,.1) 0%,transparent 65%);
}
.notice-hero-t{font-size:16px;font-weight:800;color:#fff;margin-bottom:4px;}
.notice-hero-s{font-size:12px;color:rgba(255,255,255,.55);line-height:1.6;}
.notice-timeline{padding:20px 16px 8px;}
.notice-item{
  display:flex;gap:14px;
  opacity:0;animation:fadeUp .4s ease both;
}
.notice-item:nth-child(1){animation-delay:.05s;}
.notice-item:nth-child(2){animation-delay:.15s;}
.notice-item:nth-child(3){animation-delay:.25s;}
.notice-num-col{display:flex;flex-direction:column;align-items:center;width:32px;flex-shrink:0;}
.notice-num{
  width:32px;height:32px;border-radius:50%;
  background:linear-gradient(135deg,#6c6d71,#52a077);
  color:#fff;font-size:13px;font-weight:800;
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 3px 10px rgba(108,109,113,.35);flex-shrink:0;
}
.notice-vline{width:2px;flex:1;background:linear-gradient(to bottom,rgba(108,109,113,.25),transparent);margin-top:8px;min-height:24px;}
.notice-content{flex:1;padding-bottom:22px;}
.notice-item-title{font-size:14px;font-weight:800;color:#111;margin-bottom:7px;padding-top:5px;}
.notice-item-body{font-size:12px;color:#555;line-height:1.9;}
.notice-item-body strong{color:#111;}
.notice-cb-row{
  display:flex;align-items:center;gap:14px;
  margin:4px 16px 16px;
  background:#fff;
  border-radius:14px;border:2px solid #e0e8e4;
  padding:16px;cursor:pointer;
  transition:border-color .2s,background .2s,box-shadow .2s;
  box-shadow:0 2px 12px rgba(0,0,0,.06);
  animation:fadeUp .4s .35s ease both;opacity:0;
}
.notice-cb-row.on{
  border-color:var(--grn);
  background:rgba(108,109,113,.04);
  box-shadow:0 2px 16px rgba(108,109,113,.18);
}
.notice-cb2{
  width:26px;height:26px;border-radius:7px;border:2px solid #ccc;flex-shrink:0;
  display:flex;align-items:center;justify-content:center;
  font-size:15px;color:#fff;
  transition:background .15s,border-color .15s;
  background:#f5f5f5;
}
.notice-cb2.on{background:var(--grn);border-color:var(--grn);animation:checkPop .25s ease both;}
.notice-cb-label{font-size:13px;font-weight:700;color:#333;line-height:1.4;}
.btn-disabled{background:#d0d8d4 !important;box-shadow:none !important;cursor:default !important;color:#aaa !important;}

/* SUCCESS */
.suc-wrap{flex:1;display:flex;flex-direction:column;align-items:center;justify-content:center;padding:24px 20px;text-align:center;background:rgba(245,248,246,.7);}
.suc-icon{width:72px;height:72px;border-radius:50%;background:linear-gradient(135deg,#6c6d71,#8a8b90);display:flex;align-items:center;justify-content:center;font-size:30px;color:#fff;margin:0 auto 16px;box-shadow:0 6px 24px rgba(108,109,113,.4);}
.suc-t{font-size:20px;font-weight:700;color:#111;margin-bottom:8px;}
.suc-s{font-size:13px;color:#888;line-height:1.7;margin-bottom:24px;}
.suc-card{width:100%;background:rgba(255,255,255,.75);backdrop-filter:blur(18px);-webkit-backdrop-filter:blur(18px);border:1px solid rgba(0,0,0,.07);border-radius:12px;overflow:hidden;margin-bottom:16px;text-align:left;box-shadow:0 2px 14px rgba(0,0,0,.06);}
.suc-row{display:flex;justify-content:space-between;padding:12px 14px;border-bottom:1px solid rgba(0,0,0,.05);font-size:12px;}
.suc-row:last-child{border-bottom:none;background:rgba(108,109,113,.07);}
.suc-l{color:#aaa;}
.suc-r{font-weight:600;color:#111;}
.suc-rp{font-weight:700;color:var(--grn);}

/* ANIMATIONS */
@keyframes fadeUp{from{opacity:0;transform:translateY(20px);}to{opacity:1;transform:translateY(0);}}
@keyframes slideInR{from{opacity:0;transform:translateX(48px);}to{opacity:1;transform:translateX(0);}}
@keyframes slideInL{from{opacity:0;transform:translateX(-48px);}to{opacity:1;transform:translateX(0);}}
@keyframes popIn{0%{opacity:0;transform:scale(.88);}60%{transform:scale(1.04);}100%{opacity:1;transform:scale(1);}}
@keyframes coinBounce{0%,100%{transform:translateY(0);}40%{transform:translateY(-5px);}70%{transform:translateY(-2px);}}
@keyframes glowPulse{0%,100%{box-shadow:0 6px 22px rgba(108,109,113,.38);}50%{box-shadow:0 6px 32px rgba(108,109,113,.65);}}
@keyframes checkPop{0%{transform:scale(0);}70%{transform:scale(1.2);}100%{transform:scale(1);}}
@keyframes stagger1{from{opacity:0;transform:translateY(16px);}to{opacity:1;transform:translateY(0);}}

.scr.anim-r{animation:slideInR .3s cubic-bezier(.25,.46,.45,.94) both;}
.scr.anim-l{animation:slideInL .3s cubic-bezier(.25,.46,.45,.94) both;}

/* HOME */
.home-sc{overflow-y:auto;flex:1;min-height:0;background:#f2f2f3;}
.home-sc::-webkit-scrollbar{display:none;}
.home-banner{
  background:linear-gradient(145deg,#162e22 0%,#1f4532 45%,#55565b 100%);
  padding:28px 20px 36px;position:relative;overflow:hidden;
}
.home-banner::before{
  content:'';position:absolute;top:-40px;right:-50px;width:220px;height:220px;border-radius:50%;
  background:radial-gradient(circle,rgba(255,255,255,.06) 0%,transparent 65%);pointer-events:none;
}
.home-banner::after{
  content:'';position:absolute;bottom:-60px;left:-30px;width:180px;height:180px;border-radius:50%;
  background:radial-gradient(circle,rgba(100,200,150,.08) 0%,transparent 65%);pointer-events:none;
}
.home-brand{font-size:9px;letter-spacing:3.5px;color:rgba(255,255,255,.5);font-weight:700;margin-bottom:8px;}
.home-tagline{font-size:24px;font-weight:800;color:#fff;letter-spacing:-.3px;line-height:1.2;margin-bottom:16px;}
.home-tagline span{color:#7ed4a8;}
.home-coin-chip{
  display:inline-flex;align-items:center;gap:7px;
  background:rgba(255,255,255,.12);border:1px solid rgba(255,255,255,.2);
  border-radius:24px;padding:7px 14px;backdrop-filter:blur(8px);
}
.home-coin-chip-label{font-size:11px;color:rgba(255,255,255,.7);}
.home-coin-chip-val{font-size:14px;font-weight:800;color:#ffe066;}
.home-book-area{padding:16px 14px 0;}
.btn-book-lg{
  width:100%;padding:17px;border-radius:14px;border:none;
  background:linear-gradient(135deg,#6c6d71,#52a077);
  color:#fff;font-size:16px;font-weight:800;cursor:pointer;letter-spacing:.2px;
  animation:glowPulse 2.4s ease-in-out infinite;
  position:relative;overflow:hidden;
}
.btn-book-lg::after{
  content:'';position:absolute;top:0;left:-100%;width:60%;height:100%;
  background:linear-gradient(90deg,transparent,rgba(255,255,255,.18),transparent);
  animation:shimmerSlide 2.8s ease-in-out infinite;
}
@keyframes shimmerSlide{0%{left:-100%;}60%,100%{left:150%;}}
.home-sh{font-size:11px;font-weight:700;color:#8aab9a;letter-spacing:.5px;margin:20px 14px 8px;}
.home-empty{
  margin:0 14px 14px;
  background:rgba(255,255,255,.7);backdrop-filter:blur(14px);-webkit-backdrop-filter:blur(14px);
  border:1.5px dashed rgba(108,109,113,.2);border-radius:14px;padding:36px 16px;text-align:center;
}
.home-empty-e{font-size:40px;margin-bottom:10px;animation:coinBounce 3s ease-in-out infinite;}
.home-empty-t{font-size:12px;color:#aaa;}
.home-logo{display:none;}

/* TAB BAR */
.tabbar{
  display:flex;
  background:rgba(255,255,255,.78);
  backdrop-filter:blur(28px) saturate(160%);
  -webkit-backdrop-filter:blur(28px) saturate(160%);
  border-top:1px solid rgba(0,0,0,.08);
  padding-bottom:env(safe-area-inset-bottom,0);flex-shrink:0;
  box-shadow:0 -2px 12px rgba(0,0,0,.05);
}
.ti{flex:1;display:flex;flex-direction:column;align-items:center;padding:9px 0;font-size:9px;font-weight:500;color:#bbb;gap:3px;cursor:pointer;}
.ti.on{color:var(--grn);}
.ti-i{font-size:21px;}
/* HOME BOOKING CARDS */
.hbk-card{
  background:rgba(255,255,255,.9);border:1px solid rgba(0,0,0,.08);
  border-radius:12px;padding:14px;margin-bottom:10px;
  box-shadow:0 2px 12px rgba(0,0,0,.06);
}
.hbk-date{font-size:15px;font-weight:700;color:#111;margin-bottom:4px;}
.hbk-menu{font-size:12px;color:#555;line-height:1.5;}
.hbk-meta{font-size:11px;color:#999;margin-top:4px;}
.hbk-foot{display:flex;align-items:center;justify-content:space-between;margin-top:10px;}
.hbk-price{font-size:16px;font-weight:700;color:var(--grn);}
.hbk-cancel{
  padding:7px 14px;border-radius:6px;border:1.5px solid rgba(200,60,60,.35);
  background:rgba(200,60,60,.05);color:#c04040;font-size:11px;font-weight:600;cursor:pointer;
}
.hbk-st{display:inline-block;font-size:10px;font-weight:700;padding:2px 8px;border-radius:10px;margin-left:6px;vertical-align:middle;}
.hbk-st.active{background:rgba(108,109,113,.12);color:var(--grn);}
.hbk-st.cancelled{background:rgba(0,0,0,.06);color:#999;}

/* ═══ 本番表示：iPhoneモック枠は使わない ═══ */
/* 偽ステータスバー・ノッチは常に非表示 */
.notch{display:none;}
.sb{display:none;}
/* スマホ：全画面 */
@media (max-width:520px){
  body{padding:0;display:block;min-height:100dvh;}
  .phone{width:100%;height:100dvh;border-radius:0;box-shadow:none;border:none;
    background:
      radial-gradient(500px 350px at 90% -5%,rgba(120,122,126,.22),transparent 60%),
      radial-gradient(450px 350px at 0% 100%,rgba(120,122,126,.16),transparent 60%),
      linear-gradient(165deg,rgba(255,255,255,.72),rgba(240,248,243,.66));
    backdrop-filter:blur(24px) saturate(150%);
    -webkit-backdrop-filter:blur(24px) saturate(150%);
  }
}
/* ═══ ガラスデザイン共通 ═══ */
.mcard,.pol-card,.suc-card,.info-card,.conf-card,.notice-cb-row,.modal-sheet,.combo-row,
.stpill,.wkbtn,.btn-outline,.info-input,.tel-cc,.g-cell,.mtab,.conf-warn{
  background:rgba(255,255,255,.5)!important;
  backdrop-filter:blur(16px) saturate(160%);
  -webkit-backdrop-filter:blur(16px) saturate(160%);
  border-color:rgba(255,255,255,.65)!important;
}
.mcard-img{background:rgba(255,255,255,.4)!important;border-color:rgba(255,255,255,.6)!important;}
.gtable .g-cell.closed,.gtable .g-cell.na{background:rgba(255,255,255,.25)!important;}

body{
  background:
    radial-gradient(1000px 600px at 85% -10%,rgba(120,122,126,.25),transparent 60%),
    radial-gradient(800px 500px at -10% 100%,rgba(120,122,126,.18),transparent 60%),
    linear-gradient(160deg,#f2f2f3,#e7e7e9);
}
.phone{
  background:
    radial-gradient(600px 400px at 90% 0%,rgba(120,122,126,.16),transparent 60%),
    radial-gradient(500px 400px at 0% 100%,rgba(120,122,126,.12),transparent 60%),
    rgba(255,255,255,.62);
  backdrop-filter:blur(30px) saturate(160%);
  -webkit-backdrop-filter:blur(30px) saturate(160%);
}
.nav{background:rgba(255,255,255,.6)!important;backdrop-filter:blur(18px) saturate(160%);-webkit-backdrop-filter:blur(18px) saturate(160%);border-bottom:1px solid rgba(255,255,255,.5);}
.bot{background:rgba(255,255,255,.6)!important;backdrop-filter:blur(18px) saturate(160%);-webkit-backdrop-filter:blur(18px) saturate(160%);border-top:1px solid rgba(255,255,255,.5)!important;}
.hbk-card,.mlist-item{background:rgba(255,255,255,.55)!important;backdrop-filter:blur(16px) saturate(160%);-webkit-backdrop-filter:blur(16px) saturate(160%);border:1px solid rgba(255,255,255,.6)!important;}
.sdhead,.stsec,.dtsec-h,.wknav,.frow,.mtabs,.crow{background:transparent!important;}
.gtable,.gscroll{background:rgba(255,255,255,.4);}

/* パソコン・タブレット：中央のきれいなカード表示（黒ベゼルなし） */
@media (min-width:521px){
  body{
    background:
      radial-gradient(900px 500px at 80% -10%,rgba(120,122,126,.10),transparent 60%),
      #f2f2f3;
    padding:32px 12px;
  }
  .phone{
    width:min(760px,94vw);height:calc(100vh - 56px);min-height:640px;
    border-radius:24px;
    box-shadow:0 1px 2px rgba(16,42,29,.05),0 30px 70px rgba(16,42,29,.14);
    border:1px solid rgba(255,255,255,.55);
  }
}
/* アプリ内表示（?src=app）：アプリ誘導バナーを出さない */
html.in-app .app-banner{display:none!important;}


/* ═══ 本物のWebサイト表示（サイトヘッダー・フッター・ページスクロール） ═══ */
.site-head{
  position:sticky;top:0;z-index:1200;
  display:flex;align-items:center;justify-content:space-between;gap:12px;
  padding:10px clamp(14px,4vw,40px);
  background:rgba(255,255,255,.82);backdrop-filter:blur(18px) saturate(160%);-webkit-backdrop-filter:blur(18px) saturate(160%);
  border-bottom:1px solid rgba(0,0,0,.06);
}
.sh-brand{display:flex;align-items:center;gap:10px;text-decoration:none;color:#6c6d71;}
.sh-brand img{border-radius:8px;}
.sh-name{font-weight:800;font-size:14.5px;letter-spacing:.12em;display:flex;flex-direction:column;line-height:1.25;}
.sh-name small{font-weight:600;font-size:9.5px;letter-spacing:.18em;color:#6c6d71;}
.sh-nav{display:flex;align-items:center;gap:14px;}
.sh-tel{font-size:12.5px;font-weight:700;color:#3d3e41;text-decoration:none;}
.sh-langs button{border:none;background:transparent;font-size:11.5px;font-weight:700;color:#6c6d71;cursor:pointer;padding:4px 5px;font-family:inherit;}
.sh-langs button:hover{color:#6c6d71;}
.sh-cta{border:none;cursor:pointer;font-family:inherit;font-weight:800;font-size:13px;color:#fff;
  background:linear-gradient(135deg,#8a8b90,#6c6d71);border-radius:999px;padding:10px 20px;
  box-shadow:0 4px 14px rgba(108,109,113,.35);}
.sh-cta:hover{filter:brightness(1.06);}
.site-foot{background:#3d3e41;color:#cfcfd2;font-size:12.5px;line-height:2;}
.sf-inner{max-width:1020px;margin:0 auto;display:grid;grid-template-columns:repeat(auto-fit,minmax(230px,1fr));gap:26px;padding:34px clamp(16px,4vw,40px) 20px;}
.sf-brand{display:flex;align-items:center;gap:9px;font-weight:800;font-size:14px;color:#fff;margin-bottom:6px;}
.sf-brand img{border-radius:7px;}
.sf-h{font-weight:800;color:#fff;margin-bottom:4px;letter-spacing:.06em;}
.site-foot a{color:#e7e7e9;text-decoration:none;}
.site-foot a:hover{text-decoration:underline;}
.sf-copy{text-align:center;padding:12px;border-top:1px solid rgba(255,255,255,.1);font-size:11px;color:#9b9ca0;}

/* スマホ：ヘッダーは簡易表示（電話番号は隠す）・フッターあり */
@media (max-width:520px){
  .sh-tel{display:none;}
  .sh-cta{font-size:11.5px;padding:8px 13px;}
  .sh-name small{display:none;}
  body{padding:0;}
  .phone{height:auto;min-height:calc(100dvh - 55px);}
  .scr{overflow:visible;}
  .sc{overflow:visible;}
  .bot{position:sticky;bottom:0;}
  .nav{position:sticky;top:55px;z-index:900;}
}

/* PC・タブレット：スマホ枠をやめて通常のWebページに */
@media (min-width:521px){
  body{display:block;padding:0;background:
    radial-gradient(900px 500px at 80% -10%,rgba(120,122,126,.08),transparent 60%),#f2f2f3;}
  .phone{
    width:100%;height:auto;min-height:calc(100vh - 260px);
    border-radius:0;box-shadow:none;border:none;overflow:visible;
    background:transparent;backdrop-filter:none;-webkit-backdrop-filter:none;
  }
  .phone::before,.phone::after{display:none;}
  .scr{overflow:visible;}
  .scr.on{display:flex;}
  .sc{overflow:visible;max-width:820px;width:100%;margin:0 auto;}
  /* .scラッパーが無いステップ画面（スタイリスト日時・入力・確認・注意・完了・マイページ）も中央820pxに */
  #s-date>*,#s-info>*,#s-confirm>*,#s-notice>*,#s-ok>*,#s-home>*,#s-policy>*{max-width:820px;width:100%;margin-left:auto;margin-right:auto;box-sizing:border-box;}
  .gtable{margin:0 auto;}
  .gscroll{display:flex;justify-content:center;}
  /* メニュー画面の絞り込みタブ・件数バーも中央820pxに */
  .mtabs,.crow,.frow{max-width:820px;width:100%;margin-left:auto;margin-right:auto;box-sizing:border-box;}
  .nav{position:sticky;top:58px;z-index:900;max-width:820px;width:100%;margin:0 auto;border-radius:0 0 14px 14px;}
  .bot{position:sticky;bottom:0;max-width:820px;width:100%;margin:0 auto;}
  .modal-overlay{position:fixed;}
  #cc-picker{position:fixed!important;}
}
/* アプリ内（?src=app）は従来どおり：サイトヘッダー・フッターなし */
html.in-app .site-head,html.in-app .site-foot{display:none!important;}
html.in-app .nav{top:0!important;}
html.in-app .phone{min-height:100dvh;}

.modal-overlay{position:fixed!important;inset:0;}
#cc-picker{position:fixed!important;}

/* PCではショップ画面の下部固定CTAを出さない（ヘッダー・本文にCTAあり） */
@media (min-width:521px){ #s-shop .bot{display:none;} }
