.modelplan_slide_hero {
    padding-left:0!important
}

.countrymenu {
    display: inline-block;
    width: 100%;
    max-width: 350px; /* ボタン幅 */
    color: var(--gold); /* 文字色 */
    border: 2px solid var(--gold); /* 線幅・種類・色 */
    background: #fff; /* 背景色 */
    padding: 1em 2em;
    font-weight: bold; /* 文字の太さ */
    text-decoration: none;
    text-align: center;
    transition: 0.3s;
  }
  
  /* マウスオーバーした際のデザイン */
  .countrymenu:hover {
    color: #fff; /* 文字色 */
    background: var(--gold); /* 背景色 */
  }