@charset "UTF-8";
/*! sanitize.css v3.2.0 | CC0 1.0 Public Domain | github.com/10up/sanitize.css */
/*
 * Normalization
 */
audio:not([controls]) {
  display: none;
  /* Chrome 44-, iOS 8+, Safari 9+ */
}

button {
  -webkit-appearance: button;
  /* iOS 8+ */
  overflow: visible;
  /* Internet Explorer 11- */
}

details {
  display: block;
  /* Edge 12+, Firefox 40+, Internet Explorer 11-, Windows Phone 8.1+ */
}

html {
  -ms-overflow-style: -ms-autohiding-scrollbar;
  /* Edge 12+, Internet Explorer 11- */
  overflow-y: scroll;
  /* All browsers without overlaying scrollbars */
  -webkit-text-size-adjust: 100%;
  /* iOS 8+ */
}

input {
  -webkit-border-radius: 0;
}

input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* iOS 8+ */
}

input[type="number"] {
  width: auto;
  /* Firefox 36+ */
}

input[type="search"] {
  -webkit-appearance: textfield;
  /* Chrome 45+, Safari 9+ */
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
  /* Chrome 45+, Safari 9+ */
}

main {
  display: block;
  /* Android 4.3-, Internet Explorer 11-, Windows Phone 8.1+ */
}

pre {
  overflow: auto;
  /* Internet Explorer 11- */
}

progress {
  display: inline-block;
  /* Internet Explorer 11-, Windows Phone 8.1+ */
}

small {
  font-size: 75%;
  /* All browsers */
}

summary {
  display: block;
  /* Firefox 40+, Internet Explorer 11-, Windows Phone 8.1+ */
}

svg:not(:root) {
  overflow: hidden;
  /* Internet Explorer 11- */
}

template {
  display: none;
  /* Android 4.3-, Internet Explorer 11-, iOS 7-, Safari 7-, Windows Phone 8.1+ */
}

textarea {
  overflow: auto;
  /* Edge 12+, Internet Explorer 11- */
}

[hidden] {
  display: none;
  /* Internet Explorer 10- */
}

/*
 * Universal inheritance
 */
*,
:before,
:after {
  box-sizing: inherit;
}

* {
  font-size: inherit;
  line-height: inherit;
}

:before,
:after {
  text-decoration: inherit;
  vertical-align: inherit;
}

/*
 * Opinionated defaults
 */
/* specify the border style and width of all elements */
*,
:before,
:after {
  border-style: solid;
  border-width: 0;
}

/* specify the core styles of all elements */
* {
  background-repeat: no-repeat;
  margin: 0;
  padding: 0;
}

/* specify the root styles of the document */
:root {
  background-color: #ffffff;
  box-sizing: border-box;
  color: #000000;
  cursor: default;
  font: 100%/1.5 sans-serif;
}

/* specify the text decoration of anchors */
a {
  text-decoration: none;
}

/* specify the alignment of media elements */
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/* specify the background color of form elements */
button,
input,
select,
textarea {
  background-color: transparent;
}

/* specify the inherited color and font of form elements */
button,
input,
select,
textarea {
  color: inherit;
  font-family: inherit;
  font-style: inherit;
  font-weight: inherit;
}

/* specify the minimum height of form elements */
button,
[type="button"],
[type="date"],
[type="datetime"],
[type="datetime-local"],
[type="email"],
[type="month"],
[type="number"],
[type="password"],
[type="reset"],
[type="search"],
[type="submit"],
[type="tel"],
[type="text"],
[type="time"],
[type="url"],
[type="week"],
select,
textarea {
  min-height: 1.5em;
}

/* specify the font family of code elements */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
}

/* specify the list style of nav lists */
nav ol,
nav ul {
  list-style: none;
}

/* specify the standard appearance of selects */
select {
  -moz-appearance: none;
  /* Firefox 40+ */
  -webkit-appearance: none;
}

select::-ms-expand {
  display: none;
  /* Edge 12+, Internet Explorer 11- */
}

select::-ms-value {
  color: currentColor;
  /* Edge 12+, Internet Explorer 11- */
}

/* specify the border styling of tables */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* specify the resizability of textareas */
textarea {
  resize: vertical;
}

/* specify the background color, font color, and drop shadow of text selections */
::-moz-selection {
  background-color: #b3d4fc;
  /* required when declaring ::selection */
  color: #ffffff;
  text-shadow: none;
}

::selection {
  background-color: #b3d4fc;
  /* required when declaring ::selection */
  color: #ffffff;
  text-shadow: none;
}

/* specify the progress cursor of updating elements */
[aria-busy="true"] {
  cursor: progress;
}

/* specify the pointer cursor of trigger elements */
[aria-controls] {
  cursor: pointer;
}

/* specify the unstyled cursor of disabled, not-editable, or otherwise inoperable elements */
[aria-disabled] {
  cursor: default;
}

/* specify the style of visually hidden yet accessible elements */
[hidden][aria-hidden="false"] {
  clip: rect(0 0 0 0);
  display: inherit;
  position: absolute;
}

[hidden][aria-hidden="false"]:focus {
  clip: auto;
}

/* remove delay from tapping on clickable elements */
a,
area,
button,
input,
label,
select,
textarea,
[tabindex] {
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}

/*# sourceMappingURL=sanitize.css.map */
:root, html, body {
  background-color: #fff;
  color: #151515;
  width: 100%;
}

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", 'Hiragino Kaku Gothic ProN', '游ゴシック Medium', meiryo, sans-serif;
  -webkit-font-smoothing: antialiased;
}

li {
  list-style-type: none;
}

a {
  color: #151515;
  transition: all 0.3s ease-in-out;
}

a:hover {
  text-decoration: none;
}
@media only screen and (min-width: 768px) {
  a:hover {
    opacity: 0.7;
  }
}

.l-row, .l-row--nowrap {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.l-row--nowrap {
  flex-wrap: nowrap;
}

@media only screen and (min-width: 768px) {
  .l-tb-pc-row-between, .l-tb-pc-row-between--reverse {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
  .l-tb-pc-row-between--reverse {
    flex-direction: row-reverse;
  }
}

.linkBtnFlame {
  border: 1px solid #151515;
  border-radius: 5px;
  display: inline-block;
  font-size: 18px;
  height: 60px;
  line-height: 60px;
  margin: 0 auto;
  max-width: 326px;
  padding: 0 1em;
}
@media only screen and (max-width: 767px) {
  .linkBtnFlame {
    font-size: 16px;
    height: 44px;
    line-height: 44px;
  }
}
@media only screen and (min-width: 768px) {
  .linkBtnFlame {
    transition: all 0.3s ease-in-out;
  }
  .linkBtnFlame:hover {
    color: #151515;
    box-shadow: inset 0 0 5px 0 rgba(0, 0, 0, 0.7);
  }
}

.IF18hiking__txt20 {
  font-family: "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "游明朝", YuMincho, "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "serif";
  font-size: 20px;
}
@media only screen and (max-width: 767px) {
  .IF18hiking__txt20 {
    font-size: 14px;
  }
}
.IF18hiking__txt30 {
  font-family: "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "游明朝", YuMincho, "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "serif";
  font-size: 28px;
}
@media only screen and (max-width: 767px) {
  .IF18hiking__txt30 {
    font-size: 20px;
  }
}
.IF18hiking__column1000 {
  margin: 0 auto;
  max-width: 1000px;
  width: 100%;
}
.IF18hiking__heading {
  border-bottom: 2px solid #666;
  color: #666;
  font-family: "Times New Roman", Times, "serif";
  font-size: 50px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 25px;
  text-align: center;
  text-transform: uppercase;
}

.IF18hiking_scrollLink {
  height: 32px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .IF18hiking_scrollLink {
    height: 4.16667vw;
  }
}
.IF18hiking_scrollLink__btn {
  border-bottom: 2px solid #00688a;
  border-right: 2px solid #00688a;
  bottom: 9px;
  display: block;
  height: 45px;
  left: 50%;
  position: absolute;
  -webkit-transform: translateX(-50%) rotate(45deg);
  transform: translateX(-50%) rotate(45deg);
  width: 45px;
}
@media only screen and (max-width: 767px) {
  .IF18hiking_scrollLink__btn {
    bottom: 1.17188vw;
    height: 5.85938vw;
    width: 5.85938vw;
  }
}

.IF18hiking_header__ttl {
  -webkit-transform: translate(-50%, -73.8%);
  transform: translate(-50%, -73.8%);
}
@media only screen and (min-width: 641px) and (max-width: 1199px) {
  .IF18hiking_header__ttl {
    max-width: 38.33333%;
  }
}
@media only screen and (max-width: 767px) {
  .IF18hiking_header__ttl {
    max-width: 59.89583%;
  }
}

.IF18hiking_lead {
  margin-bottom: 10.08333vw;
}
@media only screen and (min-width: 1200px) {
  .IF18hiking_lead {
    margin-bottom: 121px;
  }
}
.IF18hiking_lead__head {
  font-family: "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "游明朝", YuMincho, "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "serif";
  font-size: 40px;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 64px;
  margin-top: 101px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .IF18hiking_lead__head {
    font-size: 20px;
    margin-bottom: 20px;
    margin-top: 40px;
  }
}
.IF18hiking_lead__body {
  font-family: "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "游明朝", YuMincho, "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "serif";
  font-size: 24px;
  line-height: 2;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .IF18hiking_lead__body {
    font-size: 16px;
    line-height: 1.8;
  }
}
@media only screen and (min-width: 568px) {
  .IF18hiking_lead__body--inlineBlock {
    display: inline-block;
  }
}

@media only screen and (min-width: 768px) {
  .IF18hiking_summary {
    margin-bottom: 195px;
  }
}
@media only screen and (max-width: 767px) {
  .IF18hiking_summary {
    margin-bottom: 90px;
  }
}
.IF18hiking_summary__item, .IF18hiking_summary__item--1, .IF18hiking_summary__item--2 {
  margin-bottom: 25px;
  padding: 44px 0 14px;
}
.IF18hiking_summary__item--1 {
  background: #88c0e9;
}
.IF18hiking_summary__item--2 {
  background: #82c7de;
}
@media only screen and (min-width: 768px) {
  .IF18hiking_summary__itemInner {
    display: flex;
    justify-content: space-between;
  }
}
@media only screen and (max-width: 767px) {
  .IF18hiking_summary__itemInner {
    max-width: 500px;
  }
}
@media only screen and (min-width: 1001px) {
  .IF18hiking_summary__img {
    flex: 0 0 auto;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1000px) {
  .IF18hiking_summary__img {
    flex: 0 1 auto;
    width: 47.3vw;
  }
}
@media only screen and (min-width: 1001px) {
  .IF18hiking_summary__main {
    flex: 0 0 auto;
    padding-top: 32px;
    width: 505px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1000px) {
  .IF18hiking_summary__main {
    flex: 0 1 auto;
    padding-top: 2.66667vw;
    width: 50.5vw;
  }
}
@media only screen and (max-width: 767px) {
  .IF18hiking_summary__main {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.IF18hiking_summary__body {
  color: #fff;
  font-weight: 600;
  margin-bottom: 29px;
}
@media only screen and (max-width: 1024px) {
  .IF18hiking_summary__body {
    margin-bottom: 20px;
  }
}
.IF18hiking_summary__head {
  font-family: "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "游明朝", YuMincho, "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "serif";
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 49px;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .IF18hiking_summary__head {
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .IF18hiking_summary__head {
    font-size: 18px;
    line-height: 1.2;
    margin-bottom: 30px;
    text-align: center;
  }
}
.IF18hiking_summary__head--main {
  margin-right: .5em;
}
.IF18hiking_summary__head--sub {
  font-size: 18px;
}
.IF18hiking_summary__foot {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
@media only screen and (max-width: 767px) {
  .IF18hiking_summary__foot {
    justify-content: center;
  }
}
.IF18hiking_summary__link {
  margin: 0 12px 20px 0;
  text-align: center;
  width: 230px;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .IF18hiking_summary__link {
    font-size: 14px;
    height: 44px;
    line-height: 44px;
    width: 180px;
  }
}
@media only screen and (max-width: 767px) {
  .IF18hiking_summary__link {
    font-size: 16px;
    margin-left: 6px;
    margin-right: 6px;
    width: 200px;
  }
}

.IF18hiking_content {
  margin-bottom: 200px;
}
@media only screen and (max-width: 767px) {
  .IF18hiking_content {
    margin-bottom: 100px;
  }
}
.IF18hiking_content__heading--1 {
  border-color: #246dab;
  padding-bottom: 5px;
}
.IF18hiking_content__heading--2 {
  border-color: #32748d;
  padding-bottom: 5px;
}
.IF18hiking_content__subHeading {
  font-family: "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "游明朝", YuMincho, "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "serif";
  font-size: 28px;
  font-weight: bold;
  line-height: 1.6;
  margin-bottom: 15px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .IF18hiking_content__subHeading {
    font-size: 24px;
  }
}
@media only screen and (max-width: 639px) {
  .IF18hiking_content__subHeading {
    font-size: 22px;
  }
}
@media only screen and (max-width: 640px) {
  .IF18hiking_content__subHeading--inlineBlock {
    display: inline-block;
  }
}
@media only screen and (min-width: 1000px) {
  .IF18hiking_content__icons--hydrogen {
    margin-right: 46px;
  }
  .IF18hiking_content__icons--kailash {
    margin-left: 3px;
  }
}
.IF18hiking_content__listBox {
  display: flex;
  justify-content: center;
  margin: 15px 0 25px;
}
@media only screen and (max-width: 767px) {
  .IF18hiking_content__listBox {
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 3.90625vw;
  }
}
.IF18hiking_content__list {
  font-family: "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "游明朝", YuMincho, "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "serif";
  font-size: 25px;
  line-height: 1.6;
}
@media only screen and (max-width: 767px) {
  .IF18hiking_content__list {
    font-size: 18px;
  }
}
.IF18hiking_content__arrow {
  margin-bottom: 90px;
}

.IF18hiking_feature {
  margin: 0 auto 93px;
  max-width: 768px;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .IF18hiking_feature {
    max-width: 640px;
    margin-bottom: 50px;
  }
}
.IF18hiking_feature__head {
  font-weight: 300;
  margin-bottom: 13px;
}
@media only screen and (min-width: 768px) {
  .IF18hiking_feature__txt, .IF18hiking_feature__txt--1col {
    flex: 0 0 auto;
    line-height: 1.5;
    width: 270px;
    margin-top: -4px;
  }
}
@media only screen and (max-width: 767px) {
  .IF18hiking_feature__txt, .IF18hiking_feature__txt--1col {
    line-height: 1.8;
    margin-bottom: 20px;
    padding-left: 10px;
    padding-right: 10px;
  }
}
.IF18hiking_feature__txt--small {
  font-size: 14px;
}
.IF18hiking_feature__txt--1col {
  width: auto;
  margin-bottom: 20px;
}
.IF18hiking_feature__fig {
  flex: 0 0 auto;
}

.IF18hiking_diagram {
  position: relative;
}
@media only screen and (min-width: 481px) and (max-width: 767px) {
  .IF18hiking_diagram {
    margin: 0 auto;
    width: 480px;
  }
}
.IF18hiking_diagram__featureIcon, .IF18hiking_diagram__featureIcon--ac, .IF18hiking_diagram__featureIcon--ht, .IF18hiking_diagram__featureIcon--ap, .IF18hiking_diagram__featureIcon--fp {
  position: absolute;
}
.IF18hiking_diagram__featureIcon:hover::after, .IF18hiking_diagram__featureIcon--ac:hover::after, .IF18hiking_diagram__featureIcon--ht:hover::after, .IF18hiking_diagram__featureIcon--ap:hover::after, .IF18hiking_diagram__featureIcon--fp:hover::after {
  display: none;
}
.IF18hiking_diagram__featureIcon::before, .IF18hiking_diagram__featureIcon--ac::before, .IF18hiking_diagram__featureIcon--ht::before, .IF18hiking_diagram__featureIcon--ap::before, .IF18hiking_diagram__featureIcon--fp::before {
  background-image: linear-gradient(to top right, rgba(255, 255, 255, 0) 47%, #fff 48%, #fff 52%, rgba(255, 255, 255, 0) 53%);
  content: "";
  display: block;
  height: 30%;
  left: 91.11111%;
  position: absolute;
  top: 91.11111%;
  width: 50%;
}
.IF18hiking_diagram__featureIcon::after, .IF18hiking_diagram__featureIcon--ac::after, .IF18hiking_diagram__featureIcon--ht::after, .IF18hiking_diagram__featureIcon--ap::after, .IF18hiking_diagram__featureIcon--fp::after {
  border-bottom: 8px solid rgba(245, 139, 8, 0);
  border-left: 8px solid rgba(245, 139, 8, 0);
  border-right: 8px solid rgba(245, 139, 8, 0);
  border-top: 8px solid rgba(245, 139, 8, 0.82);
  bottom: -3.33333%;
  content: '';
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  transition: all 0.3s ease-in-out;
}
@media only screen and (max-width: 480px) {
  .IF18hiking_diagram__featureIcon::after, .IF18hiking_diagram__featureIcon--ac::after, .IF18hiking_diagram__featureIcon--ht::after, .IF18hiking_diagram__featureIcon--ap::after, .IF18hiking_diagram__featureIcon--fp::after {
    border-width: 1.66667vw;
  }
}
@media only screen and (max-width: 480px) {
  .IF18hiking_diagram__featureIcon, .IF18hiking_diagram__featureIcon--ac, .IF18hiking_diagram__featureIcon--ht, .IF18hiking_diagram__featureIcon--ap, .IF18hiking_diagram__featureIcon--fp {
    height: 18.75vw;
    width: 18.75vw;
  }
}
.IF18hiking_diagram__featureIcon--ac {
  left: 5.625%;
  top: 4.70588%;
}
.IF18hiking_diagram__featureIcon--ht {
  left: 2.08333%;
  top: 37.64706%;
}
.IF18hiking_diagram__featureIcon--ap {
  left: 75.41667%;
  top: 20.29412%;
}
.IF18hiking_diagram__featureIcon--ap::before {
  background-image: linear-gradient(to top left, transparent 47%, #fff 48%, #fff 52%, transparent 53%);
  content: "";
  left: -45.55556%;
  top: 91.11111%;
}
.IF18hiking_diagram__featureIcon--fp {
  left: 25.20833%;
  top: 7.05882%;
}
.IF18hiking_diagram__tooltip, .IF18hiking_diagram__tooltip--ac, .IF18hiking_diagram__tooltip--ht, .IF18hiking_diagram__tooltip--ap, .IF18hiking_diagram__tooltip--fp {
  text-align: left;
  background: #00688a;
  color: #fff;
  opacity: 0;
  padding: 17px 22px;
  position: absolute;
  visibility: hidden;
  z-index: 1;
  transition: all 0.3s ease-in-out;
}
.IF18hiking_diagram__tooltip::before, .IF18hiking_diagram__tooltip--ac::before, .IF18hiking_diagram__tooltip--ht::before, .IF18hiking_diagram__tooltip--ap::before, .IF18hiking_diagram__tooltip--fp::before {
  bottom: 100%;
  border-bottom: 12px solid #00688a;
  border-left: 12px solid #00688a;
  border-right: 12px solid rgba(0, 104, 138, 0);
  border-top: 12px solid rgba(0, 104, 138, 0);
  content: "";
  left: 0;
  position: absolute;
}
@media only screen and (max-width: 480px) {
  .IF18hiking_diagram__tooltip::before, .IF18hiking_diagram__tooltip--ac::before, .IF18hiking_diagram__tooltip--ht::before, .IF18hiking_diagram__tooltip--ap::before, .IF18hiking_diagram__tooltip--fp::before {
    border-width: 2.5vw;
  }
}
@media only screen and (max-width: 480px) {
  .IF18hiking_diagram__tooltip, .IF18hiking_diagram__tooltip--ac, .IF18hiking_diagram__tooltip--ht, .IF18hiking_diagram__tooltip--ap, .IF18hiking_diagram__tooltip--fp {
    padding: 8px 11px;
  }
}
.IF18hiking_diagram__tooltip--ac {
  left: 15%;
  top: 40.58824%;
  width: 281px;
}
@media only screen and (max-width: 480px) {
  .IF18hiking_diagram__tooltip--ac {
    width: 58.54167vw;
  }
}
.IF18hiking_diagram__featureIcon--ac:hover + .IF18hiking_diagram__tooltip--ac {
  opacity: .8;
  visibility: visible;
}
.IF18hiking_diagram__tooltip--ht {
  left: 11.45833%;
  top: 73.52941%;
  width: 265px;
}
@media only screen and (max-width: 480px) {
  .IF18hiking_diagram__tooltip--ht {
    width: 55.20833vw;
  }
}
.IF18hiking_diagram__featureIcon--ht:hover + .IF18hiking_diagram__tooltip--ht {
  opacity: .8;
  visibility: visible;
}
.IF18hiking_diagram__tooltip--ap {
  right: 15.20833%;
  top: 56.17647%;
  width: 330px;
}
@media only screen and (max-width: 480px) {
  .IF18hiking_diagram__tooltip--ap {
    width: 68.75vw;
  }
}
.IF18hiking_diagram__tooltip--ap::before {
  border-left: 12px solid rgba(0, 104, 138, 0);
  border-right: 12px solid #00688a;
  bottom: 100%;
  left: auto;
  right: 0;
}
.IF18hiking_diagram__featureIcon--ap:hover + .IF18hiking_diagram__tooltip--ap {
  opacity: .8;
  visibility: visible;
}
.IF18hiking_diagram__tooltip--fp {
  left: 34.58333%;
  top: 42.94118%;
  width: 300px;
}
@media only screen and (max-width: 480px) {
  .IF18hiking_diagram__tooltip--fp {
    width: 62.5vw;
  }
}
.IF18hiking_diagram__featureIcon--fp:hover + .IF18hiking_diagram__tooltip--fp {
  opacity: .8;
  visibility: visible;
}
.IF18hiking_diagram__txtHead {
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 12px;
}
@media only screen and (max-width: 480px) {
  .IF18hiking_diagram__txtHead {
    font-size: 4.16667vw;
    margin-bottom: 2.5vw;
  }
}
.IF18hiking_diagram__txtBody {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.2;
}
@media only screen and (max-width: 480px) {
  .IF18hiking_diagram__txtBody {
    font-size: 3.75vw;
  }
}

.IF18hiking_lineup {
  margin-bottom: 80px;
}
@media only screen and (max-width: 767px) {
  .IF18hiking_lineup {
    margin-bottom: 40px;
  }
}
.IF18hiking_lineup__heading {
  text-align: center;
  padding-bottom: 6px;
}
.IF18hiking_lineup__items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.IF18hiking_lineup__item {
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .IF18hiking_lineup__item {
    flex: 0 0 auto;
    width: 25%;
  }
}
@media only screen and (max-width: 767px) {
  .IF18hiking_lineup__item:first-child, .IF18hiking_lineup__item:nth-child(2) {
    margin-bottom: 30px;
  }
}
@media only screen and (min-width: 601px) and (max-width: 767px) {
  .IF18hiking_lineup__item {
    flex: 0 0 auto;
    width: 300px;
  }
}
@media only screen and (max-width: 600px) {
  .IF18hiking_lineup__item {
    flex: 0 1 auto;
    min-width: 150px;
    width: 50%;
  }
}
.IF18hiking_lineup__link {
  display: block;
}
.IF18hiking_lineup__thumbnail {
  margin-bottom: 9px;
}
.IF18hiking_lineup__txt, .IF18hiking_lineup__txt--linkTxt {
  color: #969696;
  font-size: 18px;
  line-height: 1.2;
  margin-bottom: 4px;
  padding-left: 5px;
  padding-right: 5px;
}
@media only screen and (max-width: 600px) {
  .IF18hiking_lineup__txt, .IF18hiking_lineup__txt--linkTxt {
    font-size: 16px;
  }
}
.IF18hiking_lineup__txt--linkTxt {
  margin-top: 16px;
}

.js-inviewFx {
  opacity: 0;
  visibility: hidden;
  transition: all .5s ease-out;
}
.js-inviewFx.isFadeIn {
  opacity: 1;
  visibility: visible;
}

/*# sourceMappingURL=IF2018_SC_Hiking.css.map */
