@charset "UTF-8";

/* =========================
   Base / Variables
========================= */
:root{
  --line:#e5e7eb;
  --text:#0b0f14;
  --sub:#6b7280;

  /* pog design tokens */
  --pog-line: var(--line);
  --pog-line-strong: rgba(0,0,0,.14);
  --pog-shadow-soft: 0 6px 18px rgba(0,0,0,.06);
}

/* =========================
   Layout
========================= */
.pog-wrap{
  max-width:430px;
  margin:24px auto;
  padding:0 14px;
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI","Noto Sans JP",sans-serif;
  color:var(--text);
}

.pog-card{
  border:1px solid var(--line);
  border-radius:18px;
  background:#fff;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
  overflow:hidden;
}

/* =========================
   Header
========================= */
.pog-head{
  display:grid;
  grid-template-columns:60px 1fr;
  gap:14px;
  padding:16px;
  border-bottom:1px solid var(--line);
}

.pog-avatar{
  width:56px;
  height:56px;
  border-radius:12px;
  overflow:hidden;
}

.pog-avatarImg{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.pog-name{
  margin:0;
  font-size:22px;
  font-weight:700;
}

.pog-meta{
  margin:4px 0 10px;
  color:var(--sub);
  font-size:13px;
}

/* =========================
   SNS Icons
========================= */
.pog-social{
  display:flex;
  gap:10px;
}

.pog-socialLink{
  width:30px;
  height:30px;
  border-radius:50%;
  border:1px solid var(--line);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#555;
  text-decoration:none;
  transition:.15s;
}

.pog-socialLink:hover{
  transform:translateY(-1px);
  box-shadow:0 4px 10px rgba(0,0,0,.08);
}

.pog-icon{
  width:16px !important;
  height:16px !important;
  display:block !important;
  fill:currentColor !important;
}

/* =========================
   Tabs
========================= */
.pog-tabs{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:8px;
  padding:10px;
  border-bottom:1px solid var(--line);
}

.pog-tab{
  padding:10px;
  border-radius:999px;
  border:1px solid var(--line);
  background:#f9fafb;
  font-weight:600;
  cursor:pointer;
}

.pog-tab.is-active{
  background:#111;
  color:#fff;
}

/* =========================
   Body / Panels
========================= */
.pog-body{
  padding:16px;
}

.pog-panel{
  display:none;
}

.pog-panel.is-active{
  display:block;
}

/* =========================
   Banner Buttons (ABOUT / Review)
========================= */
.pog-banners{
  display:flex;
  flex-direction:column;
  gap:12px;
  margin:6px 0 14px;
}

.pog-bannerLink{
  display:block;
  width:94%;
  text-decoration:none;
}

.pog-banner{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;

  padding:12px;
  border-radius:14px;
  border:1px solid var(--pog-line);
  background:rgba(15,23,42,.02);

  font-size:13px;
  letter-spacing:.12em;
  font-weight:700;
  color:#000;

  transition:
    transform .15s ease,
    box-shadow .15s ease,
    background .15s ease,
    border-color .15s ease;
}

.pog-banner:hover{
  transform:translateY(-1px);
  background:rgba(15,23,42,.04);
  box-shadow:var(--pog-shadow-soft);
  border-color:var(--pog-line-strong);
}

.pog-banner:active{
  transform:translateY(0) scale(.99);
}

/* Banner icon */
.pog-bannerIcon{
  width:18px;
  height:18px;
  display:inline-flex !important;
  align-items:center;
  justify-content:center;
  color:rgba(15,23,42,.7);
  flex:0 0 auto;
}

.pog-bannerSvg{
  width:14px !important;
  height:14px !important;
  display:block !important;
  fill:currentColor !important;
}

.pog-bannerText{
  line-height:1;
}

/* =========================
   Slider (ARTICLES ONLY)
========================= */
.pog-slider{
  position: relative;
  overflow: hidden; /* Fade must be fixed (not scrolling) */
}

/* Scroll body */
.pog-sliderTrack{
  display: flex;
  gap: 12px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-right: 60px; /* Prevent last card hiding under fade */
}

/* Right fade (fixed) */
.pog-slider::after{
  content:"";
  position:absolute;
  right:0;
  top:0;
  width:60px;
  height:100%;
  pointer-events:none;
  background:linear-gradient(to left,#fff,rgba(255,255,255,0));
}

/* Optional: left fade */
.pog-slider::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  width:24px;
  height:100%;
  pointer-events:none;
  background:linear-gradient(to right,#fff,rgba(255,255,255,0));
}

/* =========================
   Slide Card
========================= */
.pog-slideLink{
  display:block;
  min-width:75%;
  color: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

.pog-slide{
  border:1px solid var(--line);
  border-radius:16px;
  padding:14px;
  display:flex;
  flex-direction:column;
  background:#fff;
}

.pog-slideTitle {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 700;
}

.pog-slideText{
  margin:0 0 10px;
  font-size:12px;
	line-height: 1em;
  color:#777;
}

.pog-slideMore{
  margin-top:auto;
  align-self:flex-end;
  font-size:13px;
  color:#9d9d9d;
}

/* Safe wrapping */
.pog-slideTitle,
.pog-slideText{
  white-space:normal;
  word-break:break-word;
  overflow-wrap:break-word;
}

/* =========================
   LINE Share
========================= */
.pog-lineWrap{
  width:90%;
  margin:20px auto 6px;
}

.pog-lineShare{
  display:block;
  text-align:center;
  padding:14px;
  border-radius:999px;
  background:#06c755;
  color:#fff;
  font-weight:700;
  text-decoration:none;
}

/* =========================
   Footer
========================= */
.copyright{
  font-size:11px;
  text-align:center;
}
