@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;
  overflow: auto;
  padding: 5px;
}

.tt_follow__list {
  background-color: #fff;
  display: flex;
  margin: auto;
  white-space: nowrap;
  align-items: center;
  height: 100%;
  max-width: 100%;
}

.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__listitem:not(:last-child)::before {
  content: none;
}

.tt_follow__link {
  font-size: 1.3rem;
  line-height: 1;
  color: #000;
  display: block;
  text-align: center;
  letter-spacing: 0.1em;
  text-transform: capitalize;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;

  height: 60px;
  padding: 0 2px;
}

.tt_follow__link.-active {
  color: #007cb6;
}

.tt_follow__link > img {
  max-width: fit-content;
  max-height: 100%;
}

/* 右下追従ボタン */
.tt_fixed_nav {
  position: fixed;
  bottom: 30px;
  right: 15px;
  z-index: 100;
}

.tt_fixed__link {
  display: block;
}
.tt_fixed__img {
  width: 125px;
}
/* .tt_fixed_nav を揺らす */
.tt_fixed__img.-ani {
  animation: yureru-j 4s infinite;
}
@keyframes yureru-j {
  0% {transform: translate(0px, 2px);}
  5% {transform: translate(0px, -2px);}
  10% {transform: translate(0px, 2px);}
  15% {transform: translate(0px, -2px);}
  20% {transform: translate(0px, 2px);}
  25% {transform: translate(0px, -2px);}
  30% {transform: translate(0px, 0px);}
}

@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;
    min-width: 108px;
    padding: 0;
    max-width: 140px;
  }

  .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;
  }
}
@media (min-width: 1460px) {
  .tt_follow__list {
    display: grid;
    gap: 5px;
    padding: 5px;
  }
  .tt_follow__listitem {
    display: flex;
  }
  .tt_follow__listitem:not(:last-child)::before {
    content: none;
  }
  .tt_follow__link {
    padding: 0;
  }
  .tt_follow__link > img {
    max-width: 100%;
  }
}

@media (max-width: 1024px) {
  .tt_fixed_nav {
    bottom: 70px;
    right: 15px;
  }
  .tt_fixed__img {
    width: 90px;
    height: 90px;
  }
}