:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-f387984 */:root{
  /* Cute / Mens-Esthe palette */
  --bg1:#fff3f7;          /* ミルキーピンク */
  --bg2:#f7f6ff;          /* ほんのりラベンダー */
  --card:rgba(255,255,255,.72);
  --line:rgba(255, 140, 177, .25);
  --text:rgba(45, 23, 34, .92);    /* 濃いブラウン寄りで可読性 */
  --muted:rgba(45, 23, 34, .62);
  --shadow: 0 24px 70px rgba(61, 18, 38, .18);
  --radius: 22px;

  --accent1:#ff7fb7;      /* ピンク */
  --accent2:#ffb4d3;      /* 淡ピンク */
  --accent3:#c9b7ff;      /* ラベンダー */
}

*{box-sizing:border-box}
html,body{height:100%}

body{
  margin:0;
  color:var(--text);
  font-family: system-ui, -apple-system, "Hiragino Kaku Gothic ProN", "Noto Sans JP", "Yu Gothic", sans-serif;

  /* ふわっと可愛い背景 */
  background:
    radial-gradient(900px 520px at 18% 18%, rgba(255,127,183,.35), transparent 60%),
    radial-gradient(900px 520px at 82% 70%, rgba(201,183,255,.35), transparent 60%),
    linear-gradient(180deg, var(--bg1), var(--bg2));
  overflow-x:hidden;
}

.wrap{
  min-height:100%;
  display:grid;
  place-items:center;
  padding: clamp(18px, 3.2vw, 34px);
}

.card{
  width:min(920px, 100%);
  background: linear-gradient(180deg, rgba(255,255,255,.86), rgba(255,255,255,.70));
  border:1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  overflow:hidden;
  position:relative;
}

/* うっすらキラ感 */
.card::before{
  content:"";
  position:absolute;
  inset:-2px;
  background:
    radial-gradient(520px 320px at 18% 10%, rgba(255,127,183,.22), transparent 60%),
    radial-gradient(520px 320px at 86% 80%, rgba(201,183,255,.20), transparent 62%);
  pointer-events:none;
}

header{
  padding: clamp(20px, 3.2vw, 34px);
  border-bottom:1px solid rgba(255, 140, 177, .22);
  display:flex;
  gap:16px;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
}

.brand{
  display:flex;
  align-items:center;
  gap:14px;
  min-width:260px;
}

.mark{
  width:44px;height:44px;
  border-radius:14px;
  border:1px solid rgba(255, 140, 177, .28);
  background: linear-gradient(145deg, rgba(255,127,183,.22), rgba(201,183,255,.18));
  display:grid; place-items:center;
  box-shadow: 0 12px 30px rgba(255,127,183,.14);
  font-weight:900;
  letter-spacing:.08em;
  color:#3a1a28;
}

.brand h1{
  margin:0;
  font-size: clamp(16px, 2.2vw, 18px);
  letter-spacing:.06em;
  line-height:1.2;
}

.brand p{
  margin:4px 0 0;
  color:var(--muted);
  font-size: 13px;
  line-height:1.4;
}

/* ステータスバッジ */
.badge{
  display:inline-flex;
  gap:8px;
  align-items:center;
  padding:10px 14px;
  border-radius: 999px;
  border:1px solid rgba(255, 140, 177, .26);
  background: rgba(255, 255, 255, .55);
  color: rgba(58, 26, 40, .70);
  font-size: 13px;
  white-space:nowrap;
}

.dot{
  width:8px;height:8px;border-radius:50%;
  background: var(--accent1);
  box-shadow: 0 0 0 6px rgba(255,127,183,.18);
}

.content{
  padding: clamp(22px, 3.4vw, 42px);
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(16px, 3vw, 26px);
  align-items:stretch;
}

.hero{
  padding: clamp(18px, 3vw, 26px);
  border:1px solid rgba(255, 140, 177, .20);
  border-radius: 18px;
  background: rgba(255,255,255,.55);
}

.title{
  margin:0;
  font-size: clamp(26px, 4vw, 40px);
  letter-spacing:.06em;
  line-height:1.15;
  color:#3a1a28;
}

.subtitle{
  margin: 10px 0 0;
  color: rgba(58, 26, 40, .70);
  font-size: clamp(14px, 1.8vw, 16px);
  line-height:1.9;
}

.note{
  margin: 16px 0 0;
  padding: 12px 14px;
  border-radius: 14px;
  border:1px dashed rgba(255, 140, 177, .30);
  color: rgba(58, 26, 40, .72);
  background: rgba(255,255,255,.55);
  font-size: 13px;
  line-height:1.8;
}

.actions{
  padding: clamp(18px, 3vw, 26px);
  border:1px solid rgba(255, 140, 177, .20);
  border-radius: 18px;
  background: rgba(255,255,255,.55);
  display:flex;
  flex-direction:column;
  gap:12px;
  justify-content:center;
}

.actions h2{
  margin:0 0 6px;
  font-size: 16px;
  letter-spacing:.04em;
  color:#3a1a28;
}

/* ボタン：ピンクグラデで可愛く、でも上品に */
.btn{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  width:100%;
  padding: 14px 16px;
  border-radius: 16px;
  text-decoration:none;
  border:1px solid rgba(255, 140, 177, .28);
  background: linear-gradient(180deg, rgba(255,127,183,.28), rgba(201,183,255,.18));
  color:#3a1a28;
  font-weight:800;
  letter-spacing:.03em;
  box-shadow: 0 16px 44px rgba(255,127,183,.18);
  transition: transform .12s ease, filter .12s ease, border-color .12s ease;
}

.btn:hover{
  transform: translateY(-1px);
  filter: brightness(1.03);
  border-color: rgba(255, 140, 177, .40);
}

.btn:active{ transform: translateY(0); }

.btn small{
  display:block;
  font-weight:700;
  color: rgba(58, 26, 40, .64);
  letter-spacing:0;
  margin-top:2px;
  font-size: 12px;
}

.icon{
  width:42px;height:42px;
  border-radius: 14px;
  display:grid; place-items:center;
  border:1px solid rgba(255, 140, 177, .25);
  background: rgba(255,255,255,.55);
  flex: 0 0 auto;
  color:#3a1a28;
}

.arrow{
  margin-left:auto;
  opacity:.75;
  font-weight:900;
  color:#3a1a28;
}

footer{
  padding: 14px 18px;
  border-top:1px solid rgba(255, 140, 177, .22);
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:10px;
  color: rgba(58, 26, 40, .55);
  font-size: 12px;
}

/* mobile */
@media (max-width: 780px){
  .content{ grid-template-columns: 1fr; }
  header{ justify-content:flex-start; }
  .badge{ order:3; width:100%; justify-content:center; }
}/* End custom CSS */