/* =======================================
   Checklist / Progress
   ======================================= */

/* wrap */
.jgp-wrap{margin:20px 0;}
.jgp-progress{margin-bottom:14px;}
.jgp-progress-bar{width:100%;height:14px;background:#eee;border-radius:999px;overflow:hidden;}
.jgp-progress-fill{height:100%;background:#3cb371;transition:width .25s;}
.jgp-progress-text{margin-top:6px;font-size:14px;text-align:right;color:#555;}

.jgp-list{list-style:none;margin:0;padding:0;border-top:1px dashed #ddd;}
.jgp-item{padding:16px 4px;border-bottom:1px dashed #ddd;}
.jgp-label{display:flex;gap:10px;align-items:center;font-size:20px;font-weight:700;color:#3a3a3a;}
.jgp-check,.jgp-task-checkbox{width:20px;height:20px;}
.jgp-desc{margin-left:30px;margin-top:6px;color:#666;font-size:15px;}
.jgp-link{margin-left:30px;margin-top:6px;font-size:14px;}

/* button */
.jgp-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:14px 22px;
  border-radius:14px;
  border:2px solid #3cb371;
  background:#fff;
  color:#2f7d52;
  font-weight:800;
  font-size:16px;
  cursor:pointer;
  transition:all .2s;
  min-width:240px;
  box-shadow:0 6px 18px rgba(0,0,0,.06);

  /* テーマ側の pointer-events 無効化対策 */
  pointer-events:auto !important;
  position:relative;
  z-index:9999;
}

.jgp-btn:hover{
  transform:translateY(-1px);
}

/* doneクラス（見た目用） */
.jgp-btn.done{
  background:#3cb371;
  color:#fff;
  border-color:#3cb371;

  /* doneでも絶対クリック可能にする */
  pointer-events:auto !important;
}

/* 読み込み中の見た目だけ */
.jgp-btn.is-loading{
  opacity:.7;
}

/* disabled時はクリック禁止を維持 */
.jgp-btn:disabled{
  opacity:.6;
  cursor:not-allowed;
  transform:none;
}

/* =======================================
   Guide Maps (全体 / 渡航前 / 渡航直後)
   PC: 横1列 / タブレット・スマホ: 3×2
   ======================================= */

.jgmap{
  margin:24px 0;
}

.jgmap-grid{
  display:flex;
  flex-wrap:nowrap;          /* PCでは横一列に並べる */
  justify-content:center;
  gap:16px;
}

.jgmap-item{
  display:block;
  max-width:180px;           /* 6枚並んだときのサイズ感 */
}

.jgmap-item img{
  display:block;
  width:100%;
  height:auto;
}

/* タブレット・スマホ: 3列×2行（5枚なら3+2） */
@media (max-width:1024px){
  .jgmap-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    justify-items:center;
    gap:16px;
  }

  .jgmap-item{
    max-width:200px;
  }
}