@charset "UTF-8";
/* Minimal style.css for tour campaign template: reset + breadcrumb */
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}
body { line-height: 1; }
article, aside, section, div, p, main, header, footer { box-sizing: border-box; }
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { display: block; }
ul { list-style: none; }
blockquote, q { quotes: none; }
blockquote:before, blockquote:after, q:before, q:after { content: ''; content: none; }
a { margin: 0; padding: 0; font-size: 100%; vertical-align: baseline; background: transparent; }
ins { background-color: #ff9; color: #000; text-decoration: none; }
mark { background-color: #ff9; color: #000; font-style: italic; font-weight: bold; }
del { text-decoration: line-through; }
abbr[title], dfn[title] { border-bottom: 1px dotted; cursor: help; }
table { border-collapse: collapse; border-spacing: 0; }
hr { display: block; height: 1px; border: 0; border-top: 1px solid #cccccc; margin: 1em 0; padding: 0; }
input, select { vertical-align: middle; }

body {
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "游ゴシック", YuGothic, sans-serif;
  color: #333;
  font-size: 16px;
  line-height: 1.4;
  -webkit-text-size-adjust: none;
}

/* パンくず設定 */
.breadclumb {
  background-color: #FAFAFA;
  padding: .5rem;
  font-size: .825em;
  overflow-x: scroll;
}
.breadclumb ul {
  width: 100%;
  margin: 0 auto;
  white-space: nowrap;
}
.breadclumb ul li {
  display: inline;
  position: relative;
  padding-right: 1em;
}
.breadclumb ul li:after {
  position: absolute;
  right: -.4em;
  top: 0;
  content: "";
  display: block;
  width: 1rem;
  height: 1rem;
  transform: rotate(-90deg);
  margin: 0 0.3rem;
  background: url(https://img2.tour.l-tike.com/image/common/pc/icon_arrow_gray.svg) no-repeat center transparent;
  background-size: contain;
}
.breadclumb ul li.last { padding-right: 0; }
.breadclumb ul li.last:after { content: none; }
