```css
body{
  overflow-x:hidden;
}

/* =========================
   FV
========================= */
.jt-howto-hero{
  position:relative;
  min-height:760px;
  background-image:url("https://files.bcart.jp/japan-trade/uploads/banner/howto_lp/howto_main_pc.png");
  background-size:cover;
  background-position:center center;
  overflow:hidden;
}

.jt-howto-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    90deg,
    rgba(255,255,255,.98) 0%,
    rgba(255,255,255,.92) 34%,
    rgba(255,255,255,.48) 56%,
    rgba(255,255,255,0) 76%
  );
}

.jt-howto-inner{
  position:relative;
  z-index:2;
  max-width:1280px;
  margin:0 auto;
  padding:105px 60px 90px;
}

.jt-howto-copy{
  max-width:520px;
}

.jt-howto-label{
  color:#c8a55a;
  font-size:13px;
  letter-spacing:.1em;
  font-weight:700;
  margin-bottom:24px;
}

.jt-howto-copy h1{
  font-size:48px;
  line-height:1.45;
  font-weight:700;
  color:#222;
  margin:0 0 30px;
}

.jt-howto-copy p{
  font-size:14px;
  line-height:2;
  color:#444;
  margin:0 0 34px;
}

.jt-points{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
  margin-bottom:30px;
}

.jt-point{
  text-align:center;
}

.jt-point-icon{
  color:#c8a55a;
  font-size:26px;
  margin-bottom:8px;
}

.jt-point-text{
  font-size:12px;
  line-height:1.65;
  font-weight:700;
  color:#222;
}

.jt-links{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.jt-links a{
  color:#ef6666;
  text-decoration:none;
  font-size:14px;
  font-weight:700;
}

/* =========================
   Flow
========================= */
.jt-flow{
  max-width:1200px;
  margin:0 auto;
  padding:70px 20px 50px;
  text-align:center;
}

.jt-flow h2{
  font-size:26px;
  margin:0 0 38px;
  color:#222;
  font-weight:700;
}

.jt-flow-list{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:18px;
}

.jt-flow-list div{
  background:#fff;
  border:1px solid #eee;
  border-radius:14px;
  padding:28px 18px;
  box-sizing:border-box;
}

.jt-flow-list span{
  display:inline-block;
  width:28px;
  height:28px;
  line-height:28px;
  border-radius:50%;
  background:#c8a55a;
  color:#fff;
  font-weight:700;
  margin-bottom:14px;
}

.jt-flow-list h3{
  font-size:15px;
  margin:0 0 10px;
  color:#222;
}

.jt-flow-list p{
  font-size:12px;
  line-height:1.8;
  color:#555;
  margin:0;
}

/* =========================
   Guide boxes
========================= */
.jt-guide-boxes{
  max-width:1200px;
  margin:0 auto;
  padding:20px 20px 70px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  border-top:1px solid #eee;
}

.jt-guide-boxes div{
  padding:34px 26px;
  border-left:1px solid #eee;
  box-sizing:border-box;
}

.jt-guide-boxes div:first-child{
  border-left:none;
}

.jt-guide-boxes h3{
  font-size:17px;
  margin:0 0 16px;
  color:#222;
}

.jt-guide-boxes p{
  font-size:13px;
  line-height:2;
  color:#555;
  margin:0;
}

/* =========================
   Contact
========================= */
.jt-contact{
  background:#f7f7f7;
  padding:70px 20px;
}

.jt-contact div{
  max-width:900px;
  margin:0 auto;
  text-align:center;
}

.jt-contact h2{
  font-size:26px;
  margin:0 0 18px;
  color:#222;
}

.jt-contact p{
  font-size:14px;
  line-height:2;
  margin:0 0 24px;
  color:#555;
}

.jt-contact a{
  display:inline-block;
  background:#c8a55a;
  color:#fff;
  text-decoration:none;
  padding:14px 42px;
  border-radius:999px;
  font-weight:700;
}

/* =========================
   重複ブロック非表示
========================= */
.jt-flow:nth-of-type(n+3),
.jt-guide-boxes:nth-of-type(n+4),
.jt-contact:nth-of-type(n+5){
  display:none !important;
}

/* Instagramは不要なら非表示 */
.es-widget,
.es-main-widget,
.embedsocial-hashtag,
iframe[src*="embedsocial"]{
  display:none !important;
}

/* =========================
   SP
========================= */
@media screen and (max-width:767px){

  .jt-howto-hero{
    min-height:auto;
    background-position:center top;
    background-size:170% auto;
  }

  .jt-howto-overlay{
    background:linear-gradient(
      180deg,
      rgba(255,255,255,.08) 0%,
      rgba(255,255,255,.94) 46%,
      rgba(255,255,255,1) 100%
    );
  }

  .jt-howto-inner{
    padding:300px 18px 42px;
  }

  .jt-howto-copy{
    max-width:none;
  }

  .jt-howto-label{
    font-size:11px;
    margin-bottom:12px;
  }

  .jt-howto-copy h1{
    font-size:28px;
    line-height:1.55;
    margin-bottom:18px;
  }

  .jt-howto-copy p{
    font-size:12px;
    line-height:1.9;
    margin-bottom:24px;
  }

  .jt-points{
    grid-template-columns:repeat(2,1fr);
    gap:18px 10px;
  }

  .jt-links a{
    display:block;
    background:#c8a55a;
    color:#fff;
    border-radius:999px;
    padding:12px 14px;
    text-align:center;
    font-size:12px;
  }

  .jt-flow{
    padding:44px 16px 30px;
  }

  .jt-flow h2{
    font-size:22px;
  }

  .jt-flow-list{
    grid-template-columns:1fr;
    gap:14px;
  }

  .jt-guide-boxes{
    grid-template-columns:1fr;
    padding:10px 18px 44px;
  }

  .jt-guide-boxes div{
    border-left:none;
    border-bottom:1px solid #eee;
    padding:24px 0;
  }

  .jt-contact{
    padding:44px 18px;
  }

  .jt-contact h2{
    font-size:22px;
  }
}
/* ========================================
   ご利用案内ページ 完成版 最終追加
======================================== */

/* FV文字を少し強く */
.jt-howto-copy h1{
  font-size:58px !important;
  line-height:1.42 !important;
}

/* FV説明文を読みやすく */
.jt-howto-copy p{
  font-size:15px !important;
  line-height:2.1 !important;
}

/* お問い合わせブロックを少し詰める */
.jt-contact{
  padding:38px 20px !important;
}

/* 不要なアレルギー対応ブロックを非表示 */
a[href*="allergy"],
a[href*="about_allergy"],
img[src*="allergy"],
[href*="アレルギー"]{
  display:none !important;
}

/* SP調整 */
@media screen and (max-width:767px){

  .jt-howto-copy h1{
    font-size:28px !important;
    line-height:1.55 !important;
  }

  .jt-howto-copy p{
    font-size:12px !important;
  }

  .jt-contact{
    padding:34px 18px !important;
  }

}