@font-face {
  font-family: "shimonita";
  src: url("/assets/ve/fonts/shimonita.eot?d1lo9g");
  src:
    url("/assets/ve/fonts/shimonita.eot?d1lo9g#iefix") format("embedded-opentype"),
    url("/assets/ve/fonts/shimonita.ttf?d1lo9g") format("truetype"),
    url("/assets/ve/fonts/shimonita.woff?d1lo9g") format("woff"),
    url("/assets/ve/fonts/shimonita.svg?d1lo9g#shimonita") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

[class^="ico-"],
[class*=" ico-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "shimonita" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.ico-negi:before {
  content: "\e92b";
}
.ico-prime:before {
  content: "\e92a";
}
.ico-train-prime:before {
  content: "\e900";
}
.ico-sq-up:before {
  content: "\e91c";
}
.ico-sq-down:before {
  content: "\e91d";
}
.ico-sq-left:before {
  content: "\e91e";
}
.ico-sq-right:before {
  content: "\e91f";
}
.ico-c-left:before {
  content: "\e920";
}
.ico-c-up:before {
  content: "\e921";
}
.ico-c-down:before {
  content: "\e922";
}
.ico-c-right:before {
  content: "\e923";
}
.ico-s-check:before {
  content: "\e924";
}
.ico-s-up:before {
  content: "\e90e";
}
.ico-s-down:before {
  content: "\e90f";
}
.ico-s-left:before {
  content: "\e90d";
}
.ico-s-right:before {
  content: "\e91b";
}
.ico-nav-menu:before {
  content: "\e915";
}
.ico-close:before {
  content: "\e914";
}
.ico-event:before {
  content: "\e911";
}
.ico-sightseeing:before {
  content: "\e909";
}
.ico-cuisine:before {
  content: "\e908";
}
.ico-accommo:before {
  content: "\e907";
}
.ico-lingal:before {
  content: "\e910";
}
.ico-car:before {
  content: "\e90a";
}
.ico-chikuma-bus:before {
  content: "\e90b";
}
.ico-highway:before {
  content: "\e912";
}
.ico-highwaybus:before {
  content: "\e913";
}
.ico-train:before {
  content: "\e916";
}
.ico-joushin-line:before {
  content: "\e90c";
}
.ico-cycling:before {
  content: "\e901";
}
.ico-speciality:before {
  content: "\e905";
}
.ico-localfood:before {
  content: "\e906";
}
.ico-michi-no-eki:before {
  content: "\e903";
}
.ico-mobility:before {
  content: "\e902";
}
.ico-myougi:before {
  content: "\e904";
}
.ico-facebook:before {
  content: "\e919";
}
.ico-twitter:before {
  content: "\e91a";
}
.ico-youtube:before {
  content: "\e918";
}
.ico-instagram:before {
  content: "\e917";
}
.ico-clip:before {
  content: "\e927";
}
.ico-pin:before {
  content: "\e926";
}
.ico-download:before {
  content: "\e925";
}
.ico-ar-down:before {
  content: "\e929";
}
.ico-handy:before {
  content: "\e928";
}
.ico-flower:before {
  content: "\e92c";
}
.ico-key:before {
  content: "\f084";
}
.ico-binoculars:before {
  content: "\f1e5";
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

body {
  background: #fff;
  font-size: 100%;
  color: #333;
  font-family:
    -apple-system, BlinkMacSystemFont, "Hiragino Sans",
    "Hiragino Kaku Gothic ProN", Meiryo, "Noto Sans JP", sans-serif;
  font-weight: 300;
}

a {
  color: #0c3a78;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}

.content-block a:hover {
  border-bottom-color: transparent;
}

a:focus-visible {
  outline: 2px solid #4e8ba8;
  outline-offset: 3px;
}

ul li,
ol li {
  list-style-type: none;
}
ul ol li,
ol ul li {
  font-size: inherit;
}
ul li a,
ol li a {
  text-decoration: none;
}

p {
  padding: 0;
  margin: 0 0 30px 0;
  font-weight: 400;
}

h1 {
  font-weight: 600;
  margin-bottom: 24px;
}
h2 {
  font-weight: 600;
  margin-bottom: 20px;
}
h3 {
  font-weight: 500;
  margin-bottom: 16px;
}
h4 {
  font-weight: 500;
  margin-bottom: 12px;
}
h5 {
  font-weight: 500;
  margin-bottom: 10px;
}
h6 {
  font-weight: 500;
  margin-bottom: 8px;
}

/* Prelaoder */

#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--surface-100);
}

#preloader::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  margin: -24px;
  border: 6px solid var(--neutral-075);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
container-break & container-narrow
--------------------------------------------------------------*/

.container-break {
  width: calc(100vw - 20px);
  margin-left: calc(50% - 50vw + 10px);
}

@media (min-width: 992px) {
  .container-break {
    width: 100vw;
    margin-left: calc(50% - 50vw);
  }
}
.container-narrow {
  width: calc(100% + 16px);
  margin-left: -8px;
}

@media (min-width: 992px) {
  .container-narrow {
    width: calc(100% + 80px);
    margin-left: -40px;
  }
}

/*--------------------------------------------------------------
.media
--------------------------------------------------------------*/
.media {
  width: 100%;
  padding-bottom: 56.25%;
  height: 0px;
  position: relative;
  margin-top: 30px;
  margin-bottom: 30px;
}
.media iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.wrap {
  display: -ms-flexbox; /* IE11互換用（念のため） */
  display: flex;
  flex-wrap: wrap;
}

/*--------------------------------------------------------------
size-post-thumbnail
--------------------------------------------------------------*/

.size-post-thumbnail,
.attachment-perform_thumbnail,
.attachment-tour_thumbnail {
  max-width: 100%;
  height: auto;
}

.thum-image {
  width: 768px;
  height: 450px;
  object-fit: cover;
}

/* coloring / new
--------------------------------------------------------------------------- */

span.label {
  margin-right: 5px;
  font-weight: normal;
  font-size: 85%;
}

span.label-new {
  background-color: none;
  color: #e01212;
  font-weight: bold;
}

#detail .caution {
  color: #d50410;
}

/* pagenavi
--------------------------------------------------------------------------- */

.wp-pagenavi {
  margin-left: 20px;
  padding-top: 10px;
  padding-bottom: 25px;
  clear: both;
}
.wp-pagenavi a,
span.pages {
  margin-right: 4px;
  padding: 1px 10px;
  border: 1px solid var(--primary-link);
  background: #fff;
  text-decoration: none;
  text-align: center;
  color: var(--primary-link);
  border-radius: 5px;
}
span.current {
  padding: 1px 20px;
  border: 1px solid var(--primary-link);
  background: #fff;
  text-decoration: none;
  text-align: center;
  color: var(--primary-link);
  border-radius: 5px;
}
.wp-pagenavi a:hover,
span.current {
  color: #fff;
  background: var(--primary-link);
}

.line {
  border: 1px solid #333;
}

/*--------------------------------------------------------------
width control
--------------------------------------------------------------*/

@media (max-width: 1199px) {
  #detail .container {
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
}
