@charset "utf-8";
/* CSS Document PTメンバーポスター */


/* ===== 表示まわり ===== */


#ptposter_stage{
  width:100%;
  overflow:visible;
  position:relative;
  margin:0 auto 24px;
}


#ptposter_scale{
  width:1200px;
  height:675px;
  transform-origin:top left;
}


/* ===== キャンバス ===== */


#ptposter_canvas{
  position:relative;
  width:1200px;
  height:675px;
  overflow:hidden;


  --pt-base-color:#2f2a45;
  --pt-base-rgb:47,42,69;
  --pt-text-color:#ffffff;
  --pt-footer-height:30px;
  --pt-credit-color:#ffffff;
  --pt-title-color:#ffffff;
}


#ptposter_canvas p:empty{
  display:none !important;
  margin:0 !important;
  padding:0 !important;
}


/* ===== 背景 ===== */


#ptposter_bg{
  position:absolute;
  inset:0;
  z-index:0;
  background:var(--pt-base-color);
}


/* ===== タイトル ===== */


#ptposter_canvas.has-top-title #ptposter_columns{
  top:60px;
}


.ptposter_title{
  width:100%;
  display:none;
  color:var(--pt-title-color);
  text-transform:uppercase;
  letter-spacing:0.18em;
  pointer-events:none;
}


/* 上表示 */


#ptposter_titleBar{
  display:none;
  position:absolute;
  top:0;
  left:20px;
  right:20px;
  z-index:5;
  box-sizing:border-box;
  padding:14px 0 12px 0;
}


#ptposter_canvas.has-top-title #ptposter_titleBar{
  display:block;
}


#ptposter_topTitle{
  position:static;
  white-space:nowrap;
  overflow:hidden;
  text-align:center;
  font-size:34px;
  line-height:1;
}


/* 中央表示 */


#ptposter_centerTitle{
  white-space:pre;
  position:absolute;
  max-width:100%;
  left:50%;
  top:50%;
  transform:translate(-50%, -50%);
  z-index:10;
  text-align:center;
  font-size:52px;
  line-height:1.15;
  padding:0 40px;
  box-sizing:border-box;
}


#ptposter_canvas.has-top-title #ptposter_topTitle{
  display:block;
}


#ptposter_canvas.has-center-title #ptposter_centerTitle{
  display:block;


  text-shadow:
    -1px -1px 0 var(--pt-base-color),
     1px -1px 0 var(--pt-base-color),
    -1px  1px 0 var(--pt-base-color),
     1px  1px 0 var(--pt-base-color),
     0 4px 12px rgba(var(--pt-base-rgb), 0.45);
}


/* ===== SS画像４枚 ===== */


#ptposter_columns{
  position:absolute;
  top:20px;
  left:20px;
  right:20px;
  bottom:var(--pt-footer-height);
  z-index:1;


  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:8px;
}


#ptposter_columns > p{
  display:none !important;
  margin:0 !important;
  padding:0 !important;
}


.ptposter_col{
  position:relative;
  overflow:hidden;
  margin:0;
  padding:14px;
  border:3px solid var(--pt-border-color, var(--pt-base-color));
  box-sizing:border-box;
}


.ptposter_col > p,
.ptposter_caption > p{
  display:none !important;
  margin:0 !important;
  padding:0 !important;
}


/* ===== 画像 ===== */


.ptposter_img{
  position:absolute;
  inset:0;
  z-index:1;


  background-image:url("https://ffxivfave.com/wp-content/uploads/2026/04/smple.png");
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;


  cursor:grab;
  touch-action:none;
}


/* ===== グラデ ===== */


.ptposter_grad{
  position:absolute;
  left:0;
  right:0;
  top:0;
  bottom:-24px;


  z-index:2;
  pointer-events:none;


  background:linear-gradient(
    to top,
    rgba(var(--pt-base-rgb), 1) 0%,
    rgba(var(--pt-base-rgb), 1) 5%,
    rgba(var(--pt-base-rgb), 0.9) 11%,
    rgba(var(--pt-base-rgb), 0.65) 17%,
    rgba(var(--pt-base-rgb), 0.35) 23%,
    rgba(var(--pt-base-rgb), 0.12) 30%,
    rgba(var(--pt-base-rgb), 0) 40%
  );
}


.ptposter_mainInfo{
  position:relative;
  width:100%;
  margin:0;
  padding:0;
}


/* ===== キャプション全体 ===== */


.ptposter_caption{
  position:absolute;
  top:14px;
  right:14px;
  bottom:10px;
  left:12px;


  z-index:3;


  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  gap:6px;


  margin:0;
  padding:0;


  color:var(--pt-text-color);
  pointer-events:none;
}


/* ===== アイコン ===== */


.ptposter_icon{
  position:absolute;
  left:0;
  bottom:4px;


  z-index:4;


  width:58px;
  height:58px;


  margin:0;
  padding:0;


  color:var(--pt-text-color);
  pointer-events:none;
}


.ptposter_icon svg{
  display:block;
  width:100%;
  height:100%;
}


.ptposter_icon svg *{
  stroke:none !important;
}

.ptposter_col.has-job .ptposter_icon svg *{
  fill:var(--pt-text-color) !important;
}

.ptposter_col.has-god .ptposter_icon svg *{
  fill:var(--pt-job-icon-color, var(--pt-text-color)) !important;
}


.ptposter_icon.god-large{
  width:68px;
  height:68px;
  bottom:0;
}


.ptposter_col.design-theme .ptposter_icon svg{
  filter: drop-shadow(1px 1px 0 rgba(60,60,60,.5));
}


/* ===== infoブロック ===== */


.ptposter_info{
  min-width:0;
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  flex-shrink:0;
  justify-content:flex-end;
  margin:0 0 0 auto;
  padding:0;
  pointer-events:none;
  gap:4px;
}


.ptposter_nameGroup{
  width:100%;
  min-width:0;
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  gap:2px;
}


.ptposter_infoGroup{
  width:100%;
  min-width:0;
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  gap:2px;
}


.ptposter_nameGroup,
.ptposter_infoGroup{
  width:100%;
  min-width:0;
}


.ptposter_name1,
.ptposter_name2,
.ptposter_job,
.ptposter_race,
.ptposter_subText,
.ptposter_comment{
  width:100%;
  max-width:100%;
}


/* ===== テキスト幅 ===== */


.ptposter_col.layout-full .ptposter_info{
  width:100%;
}


.ptposter_col.layout-job .ptposter_info{
  width:calc(100% - 68px);
}


.ptposter_col.layout-god .ptposter_info{
  width:calc(100% - 78px);
}


/* ===== 個別テキスト ===== */


.ptposter_name1,
.ptposter_name2,
.ptposter_job,
.ptposter_race,
.ptposter_subText{
  display:block;


  margin:0;
  padding:0;


  max-width:100%;


  text-align:right;
  overflow:hidden;
  line-height:1;
}


.ptposter_name1,
.ptposter_name2{
  font-family:'Stack Sans Headline', 'Noto Sans JP', sans-serif;
  color:var(--pt-name-color);
  text-transform:uppercase;
  letter-spacing:0.04em;
  white-space:nowrap;


  text-shadow:
    0 0 6px rgba(var(--pt-base-rgb), 0.3),
    0 1px 2px rgba(var(--pt-base-rgb), 0.4);


  transform-origin:right center;
}


.ptposter_name1{
  font-size:54px;
}


.ptposter_name2{
  margin-left:auto;
  font-size:42px;
}


.ptposter_job,
.ptposter_race,
.ptposter_subText{
  font-family:'Noto Sans JP', sans-serif;
  font-size:11px;
  letter-spacing:0.05em;
  text-transform:uppercase;
}


.ptposter_comment{
  display:block;
  margin:0;
  text-align:right;
  font-size:12px;
  line-height:1;
  white-space:pre-line;
  pointer-events:none;
}


/* ===== クレジット ===== */


#ptposter_footer{
  position:absolute;
  left:20px;
  right:20px;
  bottom:0;


  height:var(--pt-footer-height);


  z-index:20;


  display:flex;
  align-items:center;
  justify-content:center;


  box-sizing:border-box;
}


#ptposter_credit{
  position:static;
  transform:none;


  font-size:11px;
  line-height:1;
  letter-spacing:0.08em;


  opacity:0.9;
  white-space:nowrap;


  color: var(--pt-credit-color);
}




/* ===== デザイン ===== */


.ptposter_col.design-theme .ptposter_grad{
  top:auto;
  bottom:0;
  height:90px;


  background:var(--pt-theme-color);
}


.ptposter_col.design-theme .ptposter_icon svg *{
  fill:var(--pt-theme-icon-color, var(--pt-text-color)) !important;
  stroke:none !important;
}


.ptposter_col.design-theme .ptposter_name1,
.ptposter_col.design-theme .ptposter_name2{


  -webkit-text-stroke:1px var(--pt-theme-color);


  text-shadow:
    3px 3px 0 var(--pt-theme-color),
    0 0 4px rgba(0,0,0,0.18);


  paint-order:stroke fill;
}


.ptposter_col.design-theme.has-job .ptposter_icon svg *{
  fill:#d1a93b !important;
}


.ptposter_col.design-theme.has-job .ptposter_icon svg{
  filter:
    drop-shadow(1px 1px 0 rgba(70,50,20,.9))
    drop-shadow(0 0 2px rgba(234,202,114,.4));
}


/* ===== 装飾デザイン ===== */

.ptposter_classicFrame{
  display:none;
  position:absolute;
  inset:0;
  z-index:5;
  pointer-events:none;
}

.ptposter_classicLine{
  position:absolute;
  top:24px;
  bottom:24px;
  left:0;
  right:0;
  border-left:3px solid #D8BD62;
  border-right:3px solid #D8BD62;
}

.ptposter_col.design-classic .ptposter_classicFrame{
  display:block;
}

.ptposter_classicTop,
.ptposter_classicBottom{
  position:absolute;
  left:0;
  right:0;
  height:26px;
  background-repeat:no-repeat;
  background-size:100% 100%;
}

.ptposter_classicTop{
  top:0;
  background-image:url("https://ffxivfave.com/wp-content/uploads/2026/06/bar_top.png");
}

.ptposter_classicBottom{
  bottom:0;
  background-image:url("https://ffxivfave.com/wp-content/uploads/2026/06/bar_botom.png");
}

.ptposter_col.design-classic .ptposter_img{
  inset:12px;
}

.ptposter_col.design-classic .ptposter_grad{
  display:none;
}

.ptposter_col.design-classic .ptposter_caption{
  left:12px;
  right:12px;
  bottom:26px;
  top:auto;
  align-items:center;
  justify-content:flex-end;
  text-align:center;
}

.ptposter_col.design-classic .ptposter_mainInfo{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:flex-end;
  gap:6px;
}

.ptposter_col.design-classic .ptposter_icon{
  position:static;
  margin-bottom:4px;
  width:50px;
  height:50px;
}

.ptposter_col.design-classic .ptposter_icon.god-large{
  width:56px;
  height:56px;
}

.ptposter_col.design-classic .ptposter_info{
  width:100%;
  margin:0;
  align-items:center;
  gap:4px;
}

.ptposter_col.design-classic .ptposter_nameGroup,
.ptposter_col.design-classic .ptposter_infoGroup{
  align-items:center;
}

.ptposter_col.design-classic .ptposter_name1,
.ptposter_col.design-classic .ptposter_name2,
.ptposter_col.design-classic .ptposter_job,
.ptposter_col.design-classic .ptposter_race,
.ptposter_col.design-classic .ptposter_subText,
.ptposter_col.design-classic .ptposter_comment{
  text-align:center;
}

.ptposter_col.design-classic.layout-job .ptposter_info,
.ptposter_col.design-classic.layout-god .ptposter_info,
.ptposter_col.design-classic.layout-full .ptposter_info{
  width:100%;
}

.ptposter_col.design-classic .ptposter_infoGroup{
  width:calc(100% + 16px);
  margin-inline:-8px;
  background:none;
  gap:0 !important;
}

.ptposter_col.design-classic .ptposter_infoGroup.has-info{
  background:rgba(35,24,10,.62);
  padding:4px 0 4px;
  margin-top:4px;
  margin-bottom:-2px;
}

.ptposter_col.design-classic .ptposter_race,
.ptposter_col.design-classic .ptposter_subText,
.ptposter_col.design-classic .ptposter_comment{
  color:#F3E2A8;
}

.ptposter_col.design-classic{
  --pt-classic-gold:#D8BD62;
}

.ptposter_col.design-classic .ptposter_icon,
.ptposter_col.design-classic .ptposter_name1,
.ptposter_col.design-classic .ptposter_name2{
  color:var(--pt-classic-gold);
}

.ptposter_col.design-classic .ptposter_name1,
.ptposter_col.design-classic .ptposter_name2{
  -webkit-text-stroke:1px rgba(70, 45, 5, .95);
  paint-order:stroke fill;
}

.ptposter_col.design-classic .ptposter_icon svg *,
.ptposter_col.design-classic.has-job .ptposter_icon svg *,
.ptposter_col.design-classic.has-god .ptposter_icon svg *{
  fill:#D8BD62 !important;
  stroke:none !important;
}

.ptposter_col.design-classic .ptposter_icon svg{
  filter:
    drop-shadow(1px 1px 0 rgba(30,22,8,.95))
    drop-shadow(-1px -1px 0 rgba(255,245,190,.35))
    drop-shadow(0 0 5px rgba(255,245,190,.45));
}

/* ===== フォントテーマ ===== */


/* ポップ */
.font-pop .ptposter_name1,
.font-pop .ptposter_name2,
.font-pop .ptposter_title{
  font-family:'Cherry Bomb One', cursive;
}

.font-pop .ptposter_name1,
.font-pop .ptposter_name2{
  line-height:1.1;
}

.font-pop .ptposter_job,
.font-pop .ptposter_race,
.font-pop .ptposter_subText,
.font-pop .ptposter_comment{
  font-family:'Hachi Maru Pop', sans-serif;
}

/* フューチャー */
.font-future .ptposter_name1,
.font-future .ptposter_name2,
.font-future .ptposter_title{
  font-family:'Audiowide', sans-serif;
}

.font-future .ptposter_job,
.font-future .ptposter_race,
.font-future .ptposter_subText,
.font-future .ptposter_comment{
  font-family:'M PLUS U', sans-serif;
}


/* クラシック */
.font-classic .ptposter_name1,
.font-classic .ptposter_name2,
.font-classic .ptposter_title{
  font-family:'Playfair Display SC', serif;
}

.font-classic .ptposter_job,
.font-classic .ptposter_race,
.font-classic .ptposter_subText,
.font-classic .ptposter_comment{
  font-family:'Kaisei Decol', serif;
}


/* レトロ */
.font-retro .ptposter_name1,
.font-retro .ptposter_name2,
.font-retro .ptposter_title{
  font-family:'Limelight', cursive;
}

.font-retro .ptposter_job,
.font-retro .ptposter_race,
.font-retro .ptposter_subText,
.font-retro .ptposter_comment{
  font-family:'Kaisei Decol', serif;
}


/* カジュアル */
.font-casual .ptposter_name1,
.font-casual .ptposter_name2,
.font-casual .ptposter_title{
  font-family:'Luckiest Guy', cursive;
}

.font-casual .ptposter_job,
.font-casual .ptposter_race,
.font-casual .ptposter_subText,
.font-casual .ptposter_comment{
  font-family:'Noto Sans JP', sans-serif;
}


/* ソリッド */
.font-solid .ptposter_name1,
.font-solid .ptposter_name2,
.font-solid .ptposter_title{
  font-family:'Gasoek One', sans-serif;
}

.font-solid .ptposter_job,
.font-solid .ptposter_race,
.font-solid .ptposter_subText,
.font-solid .ptposter_comment{
  font-family:'M PLUS U', sans-serif;
}

/* アールデコ */
.font-artdeco .ptposter_name1,
.font-artdeco .ptposter_name2,
.font-artdeco .ptposter_title{
  font-family:'Poiret One', sans-serif;
}

.font-artdeco .ptposter_job,
.font-artdeco .ptposter_race,
.font-artdeco .ptposter_subText,
.font-artdeco .ptposter_comment{
  font-family:'Noto Sans JP', sans-serif;
}



/* ===== 操作UI ===== */


.ptposter_controls p:empty{
  display:none !important;
}

.ptposter_controls .generator-tab-panel > p{
  display:contents !important;
  margin:0 !important;
  padding:0 !important;
}

.ptposter_controls .generator-tab-panel > p:empty{
  display:none !important;
}