@charset "UTF-8";
/* 追従メニュー */
.tt_follow {
  background-color: #fff;
  position: fixed;
  left: 0;
  width: 100%;
  z-index: 10;
  opacity: 0;
  top: -55px;
  -webkit-transition: top 0.25s ease, opacity 0.25s ease;
  transition: top 0.25s ease, opacity 0.25s ease;
}

.tt_follow.-fixed {
  opacity: 1;
  top: 0;
  border-bottom: 1px solid #b2b2b2;
}

.tt_follow_i {
  display: flex;
  pointer-events: auto;
  padding: 12px;
  overflow: auto;
}

.tt_follow__list {
  background-color: #fff;
  display: flex;
  margin: auto;
  white-space: nowrap;
  /* min-width: 750px; */
  max-width: 750px;
  align-items: center;
  height: 100%;
}

.tt_follow__listitem {}

.tt_follow__listitem:not(:last-child)::before {
  position: absolute;
  content: "";
  background-image: linear-gradient(to bottom, #c3c3c3, #c3c3c3 2px, transparent 2px, transparent 4px);
  background-size: 2px 4px;
  width: 1px;
  background-repeat: repeat-y;
  height: 42px;
  top: -2px;
  right: 0;
}

.tt_follow__listitem:not(:last-child) {
  position: relative;
}

.tt_follow__link {
  font-size: 1.3rem;
  line-height: 1;
  color: #000;
  display: block;
  text-align: center;
  padding: 4px 9px;
  letter-spacing: 0.1em;
  text-transform: capitalize;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  height: 38px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.tt_follow__link.-active {
  color: #007cb6;
}

@media (min-width:1025px) and (max-width:1459px) {
  .tt_follow.-fixed {
    top: 50px;
  }
}

@media (min-width:1460px) {
  .tt_follow {
    width: auto;
    left: inherit;
    display: block;
    -webkit-transition: right 0.25s ease, opacity 0.25s ease;
    transition: right 0.25s ease, opacity 0.25s ease;
    right: -72px;
    background-color: transparent;
  }

  .tt_follow.-fixed {
    top: 64px;
    right: 0;
    border-bottom: none;
  }

  .tt_follow_i {
    display: block;
    max-height: 770px;
    min-height: 770px;
    max-width: 108px;
    min-width: 108px;
    padding: 0;
  }

  .tt_follow__list {
    display: block;
    min-width: inherit;
    max-width: inherit;
    height: auto;
    white-space: normal;
  }

  .tt_follow__listitem {
    width: inherit;
  }

  .tt_follow__listitem:not(:last-child)::before {
    position: absolute;
    content: "";
    background-image: linear-gradient(to right, #c3c3c3, #c3c3c3 2px, transparent 2px, transparent 4px);
    background-size: 4px 2px;
    width: 97px;
    height: 1px;
    background-repeat: repeat-x;
    top: inherit;
    left: 0;
    bottom: 0;
    margin: auto;
  }

  .tt_follow__link {
    letter-spacing: 0.04em;
    justify-content: center;
    padding: 2.3438vh 0;
    font-size: 1.3rem;
    line-height: 1.3846;
    transition: color 0.3s ease;
    width: 100%;
    display: inline-flex;
    align-items: center;
    height: auto;
  }
}

/* // 追従メニュー */