@charset "UTF-8";

/* 商品一覧 */
a.subkan_display_hidden {
    text-decoration: underline;                     /* アンカーの下線を表示 */
}


/* 利用ガイド */
a.beginner {
    background: url(/image/beginner) 5px 50% no-repeat;
    padding: 15px 23px 15px 35px; 
    text-decoration: none;
}

a.myfoot {
    color: #FFFFFF;
    font-weight: bold;
    text-decoration: none;
}
a.myfoot:hover {
    text-decoration: underline;
}


/* リスト表示  ツアーガイドの約款用に追加 2022/05/31*/
.list_0014-wrap {
    list-style:  none;          /* デフォルトのアイコンを消す */
    margin:  0;                 /* デフォルト指定上書き */
    padding: 0;                 /* デフォルト指定上書き */
    counter-reset: li_count;    /* カウンタをセット */
}
 
.list_0014-decimal:before  {
  counter-increment: li_count;  /* カウンタの値を計算していく */
  content: counter(li_count)"."; /* 数字出力 */
  margin-right: 5px;            /* 余白指定 */
}

.list_0014-disc:before {
    content:  "";     /* 空の要素作成 */
    width:    5px;              /* 幅指定 */
    height:   5px;              /* 高さ指定 */
    display:  inline-block;     /* インラインブロックにする */
    background-color: #000000;  /* 背景色指定 */
    border-radius:  50%;        /* 要素を丸くする */
    position:  relative;        /* 位置調整 */
    top: -1px;                  /* 位置調整 */
    margin-right: 5px;          /* 余白指定 */
}