/* ==============================
共通
============================== */
* { box-sizing: border-box; }
body {
margin: 0;
font-family: "Hiragino Sans", "Helvetica Neue", Arial, sans-serif;
}
.fadeIn { animation: fadeIn .6s ease; }
.fadeInUp { animation: fadeInUp .6s ease; }
@keyframes fadeIn { from {opacity:0;} to {opacity:1;} }
@keyframes fadeInUp { from {opacity:0; transform:translateY(20px);} to {opacity:1; transform:translateY(0);} }
/* ==============================
index.html
============================== */
body.index-page {
background: linear-gradient(135deg, #9be2ff, #c7f5d9);
min-height: 100vh;
display: flex;
justify-content: center;
align-items: center;
padding: 20px;
}
.index-container {
width: 92%;
max-width: 420px;
padding: 30px 20px;
background: white;
border-radius: 24px;
box-shadow: 0 12px 30px rgba(0,0,0,0.15);
text-align: center;
}
.index-container input[type="text"] {
width: 100%;
padding: 13px;
margin-top: 14px;
border: 2px solid #ddd;
font-size: 17px;
border-radius: 12px;
}
.start-btn {
width: 100%;
padding: 12px;
margin-top: 20px;
font-size: 18px;
border-radius: 12px;
border: none;
color: white;
background: #4ba3ff;
box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
/* ==============================
map4.html
============================== */
body.map-page {
background: linear-gradient(135deg, #d7efff, #e8ffef);
padding: 20px;
}
.card {
background: white;
padding: 18px;
border-radius: 18px;
box-shadow: 0 6px 20px rgba(0,0,0,0.15);
margin-bottom: 20px;
}
/* 横並び */
.map-body {
display: flex;
flex-direction: column;
gap: 20px;
}
@media (min-width: 900px) {
.map-body { flex-direction: row; }
.member-area { width: 30%; }
.map-area { width: 70%; }
}
/* 地図 */
#map {
width: 100%;
height: 500px;
border-radius: 14px;
box-shadow: 0 4px 20px rgba(0,0,0,0.20);
}
/* メンバー一覧 */
#memberList {
list-style: none;
padding: 0;
margin: 0;
}
#memberList li {
background: #f2f6ff;
padding: 12px;
margin: 10px 0;
display: flex;
align-items: center;
justify-content: space-between;
gap: 12px;
border-left: 5px solid #4ba3ff;
border-radius: 14px;
}
/* 左の丸アイコン */
.member-icon {
width: 26px;
height: 26px;
border-radius: 50%;
background: #4ba3ff;
position: relative;
}
.member-icon::after {
content: "";
position: absolute;
width: 12px;
height: 12px;
border-radius: 50%;
bottom: -3px;
right: -3px;
border: 2px solid white;
}
.online .member-icon::after { background: #22dd77; }
.offline .member-icon::after { background: #ff5d5d; }
.status-text {
font-size: 14px;
opacity: 0.8;
}
/* ピン上のラベル */
.marker-label {
background: white;
padding: 3px 8px;
border-radius: 6px;
border: 1px solid #ccc;
font-size: 13px;
white-space: nowrap;
}
/* 退出ボタン */
.exit-btn.cute {
padding: 10px 16px;
border-radius: 30px;
background: linear-gradient(135deg, #ff9bb5, #ff6b8c);
color: white;
border: none;
cursor: pointer;
font-size: 15px;
font-weight: bold;
box-shadow: 0 4px 12px rgba(255, 100, 140, 0.4);
transition: 0.25s;
}
.exit-btn.cute:hover {
transform: scale(1.08);
background: linear-gradient(135deg, #ff6b8c, #ff3b6f);
}
/* ピンデザイン統一 */
.custom-pin {
transform: scale(var(--pin-scale, 1));
transition: transform 0.1s linear;
}
.pin-wrapper {
text-align: center;
transform: translate(-20px, -50px);
}
.pin-dot {
width: 26px;
height: 26px;
border-radius: 50%;
box-shadow: 0 3px 10px rgba(0,0,0,0.3);
}
.pin-label {
background: white;
padding: 3px 8px;
margin-top: 4px;
display: inline-block;
font-size: 13px;
border: 1px solid #ccc;
border-radius: 6px;
white-space: nowrap;
}
/* 小型ピン全体スケール調整 */
.custom-pin {
transform: scale(var(--pin-scale, 1));
transition: transform 0.1s linear;
}
/* ピン構造 */
.pin-wrapper {
text-align: center;
transform: translate(-16px, -40px);
}
.pin-img {
width: 32px;
height: 32px;
}
.pin-label {
background: white;
padding: 2px 6px;
margin-top: 3px;
display: inline-block;
font-size: 12px;
border: 1px solid #ccc;
border-radius: 6px;
white-space: nowrap;
}
/* === ピンずれ防止 === */
.custom-pin {
transform-origin: center bottom;
}
.pin-wrapper {
position: relative;
transform: translate(-16px, -32px); /* ←ここ重要:ズレ防止 */
}
.pin-img {
width: 32px;
height: 32px;
display: block;
}
.pin-label {
background: white;
padding: 2px 6px;
margin-top: 2px;
display: inline-block;
font-size: 12px;
border: 1px solid #ccc;
border-radius: 6px;
white-space: nowrap;
position: relative;
top: -3px;
}