/* ===== 白玉もち子 公式サイト ①ふんわりかわいい系 ===== */
:root {
  --bg: #FFFDFB;
  --bg-pink: #FDF3F5;
  --bg-cream: #FFF6E8;
  --pink-light: #F8D9E3;
  --pink: #F2A9C4;
  --pink-deep: #D4537E;
  --text-main: #5C4450;
  --text-deep: #8A3D58;
  --text-soft: #B96F8C;
  --cream: #FFF2D9;
  --radius-lg: 28px;
  --radius-md: 18px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: "Zen Maru Gothic", "Hiragino Maru Gothic ProN", "Yu Gothic", sans-serif;
  color: var(--text-main);
  background: var(--bg);
  line-height: 1.8;
}

img { max-width: 100%; display: block; }
img[hidden] { display: none; } /* ↑のdisplay:blockがhidden属性を打ち消すのを防ぐ（もち子のハート等） */

a { color: var(--pink-deep); text-decoration: none; }

.wrap { max-width: 960px; margin: 0 auto; padding: 0 20px; }

/* ---- ヘッダー ---- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 253, 251, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--pink-light);
}
.header-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.logo {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-deep);
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo .logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--pink-light);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.nav { display: flex; gap: 6px; flex-wrap: wrap; }
.nav a {
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.9rem;
  color: var(--text-deep);
  transition: background 0.2s;
}
.nav a:hover { background: var(--bg-pink); }

/* ---- ヒーロー（動画背景） ---- */
.hero {
  background: var(--bg-pink); /* 動画がない時のフォールバック */
  border-radius: 0 0 48px 48px;
  overflow: hidden;
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(70, 40, 55, 0.35); /* 文字を読みやすくする薄い紗 */
}
.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 72px 20px;
}

/* ---- 昼桜：ヒーローに舞う花びら（会員ページ=夜桜との対） ---- */
.sakura {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}
.sakura .petal {
  position: absolute;
  top: -6%;
  width: 13px;
  height: 13px;
  border-radius: 76% 8% 76% 8%;
  background: linear-gradient(135deg, #ffffff, var(--pink));
  opacity: 0;
  filter: drop-shadow(0 1px 1px rgba(212, 83, 126, 0.15));
  animation: petal-fall linear infinite;
}
.sakura .petal.p1 { width: 10px; height: 10px; background: linear-gradient(135deg, #fff, var(--pink-light)); }
.sakura .petal.p2 { width: 16px; height: 16px; background: linear-gradient(135deg, #fff6f9, var(--pink)); }
@keyframes petal-fall {
  0%   { transform: translateY(0) translateX(0) rotate(0deg); opacity: 0; }
  12%  { opacity: 0.9; }
  100% { transform: translateY(88vh) translateX(-60px) rotate(340deg); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .sakura { display: none; } /* 動きを減らす設定の人には出さない */
}
.hero-text h1 {
  font-size: 2.4rem;
  color: #fff;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 16px;
  text-shadow: 0 2px 16px rgba(70, 40, 55, 0.5);
}
.hero-text p {
  color: #fff;
  margin-bottom: 28px;
  text-shadow: 0 1px 10px rgba(70, 40, 55, 0.5);
}
.btn-row { justify-content: center; }
.scroll-hint {
  margin-top: 48px;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  background: rgba(255, 255, 255, 0.16);
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  border-radius: 999px;
  font-family: inherit;
  cursor: pointer;
  padding: 10px 24px;
  backdrop-filter: blur(2px);
  animation: scroll-bob 2.2s ease-in-out infinite;
}
.scroll-hint::after { content: " ⌄"; }
.scroll-hint:hover { background: rgba(255, 255, 255, 0.28); }
body.edit-mode .scroll-hint { animation: none; }
body.edit-mode .scroll-hint [data-edit] { outline: 2px dashed rgba(255,255,255,0.8); outline-offset: 3px; }
@keyframes scroll-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}
@media (prefers-reduced-motion: reduce) {
  .scroll-hint { animation: none; }
}
.btn-row { display: flex; gap: 12px; flex-wrap: wrap; }
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.15s, opacity 0.2s;
}
.btn:hover { transform: translateY(-2px); opacity: 0.9; }
.btn-primary { background: var(--pink); color: #fff; }
.btn-ghost { background: #fff; color: var(--text-deep); border: 2px solid var(--pink-light); }

/* ふわふわの飾り */
.bubble {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
}
.bubble.b1 { width: 120px; height: 120px; top: 8%; left: 4%; }
.bubble.b2 { width: 60px; height: 60px; bottom: 14%; left: 12%; }
.bubble.b3 { width: 90px; height: 90px; top: 16%; right: 6%; }

/* ---- セクション共通 ---- */
.section { padding: 72px 0; }
.section-alt { background: var(--bg-cream); }
.section-head { text-align: center; margin-bottom: 40px; }
.section-head .en {
  color: var(--pink);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.section-head h2 {
  font-size: 1.7rem;
  color: var(--text-deep);
  font-weight: 700;
}

/* ---- もち子について ---- */
.profile-card {
  background: #fff;
  border: 2px solid var(--pink-light);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.profile-card .face {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--bg-pink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  flex-shrink: 0;
  overflow: hidden;
}
.profile-card .face img { width: 100%; height: 100%; object-fit: cover; }
.profile-card .body { max-width: 560px; }
.profile-card h3 { color: var(--text-deep); font-size: 1.2rem; margin-bottom: 8px; }
.tag-row { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 14px; }
.tag {
  background: var(--bg-pink);
  color: var(--text-deep);
  font-size: 0.8rem;
  padding: 4px 14px;
  border-radius: 999px;
}

/* ---- カードグリッド ---- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.card {
  background: #fff;
  border: 2px solid var(--pink-light);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.15s;
}
.card:hover { transform: translateY(-4px); }
.card .thumb {
  aspect-ratio: 16 / 10;
  border-radius: 12px;
  background: var(--bg-pink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  overflow: hidden;
}
.card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.card h3 { color: var(--text-deep); font-size: 1.05rem; }
.card p { font-size: 0.88rem; color: var(--text-main); flex-grow: 1; }
.card .btn { align-self: flex-start; padding: 8px 20px; font-size: 0.85rem; }
.card .card-btns { gap: 8px; justify-content: flex-start; }
.card .card-btns .btn { align-self: auto; padding: 8px 16px; white-space: nowrap; }

/* 写真集の表紙は縦長 */
.card.book .thumb { aspect-ratio: 3 / 4; }

.badge {
  display: inline-block;
  background: var(--cream);
  color: #8A6230;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 999px;
  align-self: flex-start;
}
.badge.pr {
  background: var(--pink-light);
  color: var(--text-deep);
  margin-left: 6px;
}

/* ---- お問い合わせ ---- */
.contact-box {
  background: var(--bg-pink);
  border-radius: var(--radius-lg);
  padding: 48px 32px;
  text-align: center;
}
.contact-box p { margin-bottom: 20px; }

/* ---- フッター ---- */
.footer {
  border-top: 1px solid var(--pink-light);
  padding: 32px 20px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-soft);
}
.footer .sns { margin-bottom: 10px; display: flex; gap: 16px; justify-content: center; }

/* ---- ギャラリー ---- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}
.gallery-grid .ph {
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  background: var(--bg-pink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--text-soft);
  overflow: hidden;
}
.gallery-grid .ph img { width: 100%; height: 100%; object-fit: cover; }

/* ---- お問い合わせチャット ---- */
.chat-box {
  max-width: 640px;
  margin: 0 auto;
  background: #fff;
  border: 2px solid var(--pink-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.chat-log { padding: 24px; display: flex; flex-direction: column; gap: 14px; min-height: 280px; }
.msg { display: flex; gap: 10px; align-items: flex-end; }
.msg .face {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--bg-pink);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.msg .balloon {
  background: var(--bg-pink);
  border-radius: 18px 18px 18px 4px;
  padding: 10px 16px;
  font-size: 0.92rem;
  max-width: 75%;
}
.msg.me { flex-direction: row-reverse; }
.msg.me .balloon {
  background: var(--cream);
  border-radius: 18px 18px 4px 18px;
}
.chat-input {
  display: flex;
  gap: 10px;
  padding: 14px;
  border-top: 1px solid var(--pink-light);
  background: var(--bg-pink);
}
.chat-input input {
  flex: 1;
  border: 2px solid var(--pink-light);
  border-radius: 999px;
  padding: 10px 18px;
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
}
.chat-input input:focus { border-color: var(--pink); }
.chat-input button {
  border: none;
  background: var(--pink);
  color: #fff;
  font-family: inherit;
  font-weight: 700;
  padding: 10px 24px;
  border-radius: 999px;
  cursor: pointer;
}
.chat-input button:hover { opacity: 0.9; }

/* ---- その場編集モード（管理者のみ） ---- */
#mochi-editbar {
  position: fixed;
  bottom: 18px;
  left: 18px; /* 右下はもち子マスコットの席 */
  z-index: 999;
  display: flex;
  gap: 8px;
  align-items: center;
  background: #fff;
  border: 2px solid var(--pink-light);
  border-radius: 999px;
  padding: 8px 12px;
  box-shadow: 0 4px 20px rgba(138, 61, 88, 0.18);
  font-size: 0.9rem;
}
#mochi-editbar button {
  border: none;
  border-radius: 999px;
  padding: 8px 16px;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  background: var(--bg-pink);
  color: var(--text-deep);
}
#mochi-editbar button:hover { opacity: 0.85; }
#mochi-editbar #edit-save { background: var(--pink); color: #fff; }
#mochi-editbar a#edit-admin {
  border-radius: 999px;
  padding: 8px 16px;
  font-weight: 700;
  font-size: 0.9rem;
  background: var(--cream);
  color: var(--text-deep);
  text-decoration: none;
}
#mochi-editbar a#edit-admin:hover { opacity: 0.85; }
#editbar-msg { color: var(--text-soft); padding-left: 4px; max-width: 220px; }

body.edit-mode [data-edit] {
  outline: 2px dashed var(--pink);
  outline-offset: 3px;
  border-radius: 4px;
  cursor: text;
}
body.edit-mode [data-edit]:hover,
body.edit-mode [data-edit]:focus {
  outline-style: solid;
  background: rgba(242, 169, 196, 0.12);
}
.card .thumb { position: relative; }
body.edit-mode [data-edit-img] { cursor: pointer; }
body.edit-mode [data-edit-img]::after {
  content: "📷 クリックで画像変更";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(138, 61, 88, 0.75);
  color: #fff;
  font-size: 0.75rem;
  text-align: center;
  padding: 4px;
}

.gallery-grid .ph { position: relative; }
.gdel {
  display: none;
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 2;
  border: none;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text-deep);
  border-radius: 999px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  font-weight: 700;
  font-size: 1rem;
}
body.edit-mode .gdel { display: block; }
#gallery-add {
  display: none;
  border: 2px dashed var(--pink);
  color: var(--pink-deep);
  font-size: 2.4rem;
  cursor: pointer;
  background: #fff;
}
body.edit-mode #gallery-add { display: flex; }

/* ---- もち子マスコット＋チャット ---- */
#mochiko-widget {
  position: fixed;
  bottom: 0;
  right: 12px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
#mochiko-mascot {
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
  position: relative;
  display: block;
}
#mochiko-mascot .m-stage {
  display: block;
  position: relative;
  width: 357px; /* PC: さらに1.4倍（ボス指定）。スマホは下のメディアクエリで130px */
  aspect-ratio: 775 / 780;
  filter: drop-shadow(0 4px 10px rgba(138, 61, 88, 0.25));
  transition: transform 0.2s;
}
#mochiko-mascot:hover .m-stage { transform: translateY(-6px); }
#mochiko-mascot .m-stage img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.m-hint {
  position: absolute;
  top: -8px;
  left: -30px;
  z-index: 2;
  background: #fff;
  border: 2px solid var(--pink-light);
  color: var(--text-deep);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px 999px 4px 999px;
  animation: m-bounce 2.4s ease-in-out infinite;
  white-space: nowrap;
}
@keyframes m-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
#mochiko-chat {
  width: min(340px, calc(100vw - 24px));
  background: #fff;
  border: 2px solid var(--pink-light);
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 8px;
  box-shadow: 0 8px 30px rgba(138, 61, 88, 0.2);
}
.mc-head {
  background: var(--bg-pink);
  padding: 10px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  color: var(--text-deep);
}
.mc-head button {
  border: none;
  background: none;
  font-size: 1.1rem;
  color: var(--text-soft);
  cursor: pointer;
  padding: 0 4px;
}
.mc-log {
  padding: 14px;
  height: 240px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mc-msg {
  background: var(--bg-pink);
  border-radius: 14px 14px 14px 4px;
  padding: 8px 12px;
  font-size: 0.88rem;
  max-width: 85%;
  align-self: flex-start;
  white-space: pre-wrap;
}
.mc-msg.me {
  background: var(--cream);
  border-radius: 14px 14px 4px 14px;
  align-self: flex-end;
}
.mc-action {
  align-self: flex-start;
  background: var(--pink);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 999px;
  text-decoration: none;
}
.mc-action:hover { opacity: 0.9; }
.mc-chips {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  padding: 0 14px 10px;
}
.mc-chip {
  border: 2px solid var(--pink-light);
  background: #fff;
  color: var(--text-deep);
  font-family: inherit;
  font-size: 0.78rem;
  padding: 4px 12px;
  border-radius: 999px;
  cursor: pointer;
}
.mc-chip:hover { background: var(--bg-pink); }
.mc-input {
  display: flex;
  gap: 8px;
  padding: 10px;
  border-top: 1px solid var(--pink-light);
}
.mc-input input {
  flex: 1;
  border: 2px solid var(--pink-light);
  border-radius: 999px;
  padding: 8px 14px;
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
}
.mc-input input:focus { border-color: var(--pink); }
.mc-input button {
  border: none;
  background: var(--pink);
  color: #fff;
  font-family: inherit;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 999px;
  cursor: pointer;
}
.mc-input button:disabled, .mc-input input:disabled { opacity: 0.5; }
.mc-note {
  text-align: center;
  font-size: 0.72rem;
  color: var(--text-soft);
  padding: 0 10px 10px;
}

/* ---- マスコットの吹き出し（もち子の頭の左上にふきだす・しっぽ付き） ---- */
.m-balloon {
  position: absolute;
  right: 250px;   /* もち子(357px)の頭のすぐ左（顔にはかぶらない） */
  bottom: 255px;
  width: max-content;
  max-width: 300px;   /* 長いセリフでも最大2行におさまる幅 */
  background: #fff;
  border: 2px solid var(--pink-light);
  color: var(--text-deep);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  padding: 12px 16px;
  border-radius: 16px 16px 16px 4px;
  box-shadow: 0 4px 14px rgba(138, 61, 88, 0.15);
  z-index: 3;
  animation: m-pop 0.25s ease-out;
}
.m-balloon::after { /* もち子を指すしっぽ */
  content: "";
  position: absolute;
  right: 14px;
  bottom: -9px;
  width: 14px;
  height: 14px;
  background: #fff;
  border-right: 2px solid var(--pink-light);
  border-bottom: 2px solid var(--pink-light);
  transform: rotate(45deg);
}
@keyframes m-pop {
  from { opacity: 0; transform: translateY(6px) scale(0.96); }
  to   { opacity: 1; transform: none; }
}

/* ---- ホバー/タップで出る💬👗メニュー ---- */
.m-menu {
  position: absolute;
  right: 322px; /* もち子(357px)の左側・体に寄せて配置 */
  bottom: 96px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 2;
  pointer-events: none;
}
.m-menu button {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--pink-light);
  background: #fff;
  font-size: 1.55rem;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(138, 61, 88, 0.18);
  opacity: 0;
  transform: translateX(8px) scale(0.8);
  transition: opacity 0.18s, transform 0.18s;
}
.m-menu button:hover { background: var(--bg-pink); }
#mochiko-widget.m-open .m-menu,
#mochiko-widget:focus-within .m-menu { pointer-events: auto; }
#mochiko-widget.m-open .m-menu button,
#mochiko-widget:focus-within .m-menu button { opacity: 1; transform: none; }
#mochiko-widget.m-open .m-menu button:nth-child(2) { transition-delay: 0.05s; }

/* ---- お着替えパネル ---- */
#mochiko-closet {
  width: min(340px, calc(100vw - 24px));
  background: #fff;
  border: 2px solid var(--pink-light);
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 8px;
  box-shadow: 0 8px 30px rgba(138, 61, 88, 0.2);
}
.m-outfits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 14px;
}
.m-outfit {
  border: 2px solid var(--pink-light);
  background: #fff;
  border-radius: 14px;
  padding: 6px 2px;
  cursor: pointer;
  font-family: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.m-outfit img { width: 52px; height: 52px; object-fit: contain; }
.m-outfit span { font-size: 0.68rem; font-weight: 700; color: var(--text-deep); }
.m-outfit:hover { background: var(--bg-pink); }
.m-outfit.selected { border-color: var(--pink); background: var(--bg-pink); }

/* ---- 居眠り ---- */
#mochiko-widget.m-sleep .m-stage::after {
  content: "💤";
  position: absolute;
  top: -4px;
  right: 8px;
  font-size: 1.3rem;
  animation: m-zzz 2.6s ease-in-out infinite;
}
@keyframes m-zzz {
  0%, 100% { transform: translateY(0); opacity: 0.7; }
  50% { transform: translateY(-8px); opacity: 1; }
}

/* ---- プライバシーポリシー・免責事項 ---- */
.policy { max-width: 720px; }
.policy h3 {
  color: var(--text-deep);
  font-size: 1.05rem;
  margin: 28px 0 8px;
  padding-left: 12px;
  border-left: 4px solid var(--pink-light);
}
.policy p { margin: 0 0 12px; line-height: 1.9; font-size: 0.92rem; }
.policy a { color: var(--pink); text-decoration: underline; }
.policy .policy-date { margin-top: 28px; color: var(--text-soft); font-size: 0.85rem; }
.footer-links { margin-bottom: 8px; }
.footer-links a { color: inherit; font-size: 0.82rem; text-decoration: underline; opacity: 0.85; }
.footer-links a:hover { opacity: 1; }

/* ---- 動きを減らす設定の人には静かに ---- */
@media (prefers-reduced-motion: reduce) {
  .m-hint { animation: none; }
  .m-balloon { animation: none; }
  #mochiko-widget.m-sleep .m-stage::after { animation: none; }
  #mochiko-mascot .m-stage { transition: none; }
  .m-menu button { transition: none; }
}

@media (max-width: 640px) {
  .hero-inner { padding: 48px 20px 64px; }
  .hero-text h1 { font-size: 1.6rem; }
  .hero-avatar { width: 160px; height: 160px; }
  .section { padding: 48px 0; }
  #mochiko-mascot .m-stage { width: 130px; }
  .mc-log { height: 200px; }
  .m-menu { right: 128px; bottom: 24px; } /* スマホは従来どおり左横 */
  .m-balloon { max-width: 170px; font-size: 0.8rem; right: 96px; bottom: 96px; }
  .m-outfits { grid-template-columns: repeat(4, 1fr); gap: 6px; }
  .m-outfit img { width: 44px; height: 44px; }
}
