.arrow__circle {
  position: relative;
  width: 3rem;
  height: 3rem;
  overflow: hidden;
}

.arrow__circle::after {
  content: "";
  background: url(../img/shared/arrow.svg) no-repeat center/100% auto;
  width: 0.6rem;
  height: 1rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: left 0.05s ease-in-out;
}

.arrow__circle svg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.arrow__circle .arrow__circle__front {
  transform: rotate(-90deg);
  transform-origin: center;
}

.arrow__circle .arrow__circle__front circle {
  stroke-dasharray: 313 313;
  stroke-dashoffset: 0;
  transition: stroke-dasharray 0.2s cubic-bezier(0.47, 0.16, 0.24, 1);
  stroke: rgba(255, 255, 255, 0.4);
  stroke-width: 2;
}

/*------- */
/*------- */
.insta__circle {
  position: relative;
  width: 4rem;
  height: 4rem;
  overflow: hidden;
}

.insta__circle::after {
  content: "";
  background: url(../img/shared/icon_insta.svg) no-repeat center/100% auto;
  width: 2rem;
  height: 2rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: left 0.15s ease-in-out;
}

.insta__circle svg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.insta__circle .insta__circle__front {
  transform: rotate(-90deg);
  transform-origin: center;
}

.insta__circle .insta__circle__front circle {
  stroke-dasharray: 313 313;
  stroke-dashoffset: 0;
  transition: stroke-dasharray 0.35s cubic-bezier(0.47, 0.16, 0.24, 1);
  stroke: rgba(255, 255, 255, 0.4);
  stroke-width: 2;
}

.btn-link a {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.btn-link .text {
  font-size: 1.6rem;
  line-height: 1.5;
  overflow: hidden;
  position: relative;
}
.btn-link .text span {
  display: inline-block;
  transition: transform 0.25s ease-in-out;
}
.btn-link .text span:last-of-type {
  position: absolute;
  left: 0;
  right: 0;
  transform: translateY(100%);
}

.text-effect {
  line-height: 1.5;
  overflow: hidden;
  position: relative;
  display: block;
}
.text-effect span {
  display: inline-block;
  transition: transform 0.25s ease-in-out;
}
.text-effect span:last-of-type {
  position: absolute;
  left: 0;
  right: 0;
  transform: translateY(100%);
}
@media screen and (min-width: 800px) {
  .text-effect:hover span:first-child {
    animation: btn-text 0.25s forwards alternate;
  }
  .text-effect:hover span:last-child {
    animation: btn-text2 0.25s forwards alternate;
    animation-delay: 0.25s;
  }
}

.btn-effect .text {
  line-height: 1.5;
  overflow: hidden;
  position: relative;
  display: block;
  font-size: 1.6rem;
}
.btn-effect .text span {
  display: inline-block;
  transition: transform 0.25s ease-in-out;
}
.btn-effect .text span:last-of-type {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  transform: translateY(100%);
}

@media screen and (min-width: 800px) {
  .btn-effect:hover .text span:first-child {
    animation: btn-text 0.25s forwards alternate;
  }
  .btn-effect:hover .text span:last-child {
    animation: btn-text2 0.25s forwards alternate;
    animation-delay: 0.25s;
  }
  .btn-effect:hover .arrow__circle:after {
    animation: arrow 0.5s forwards alternate;
  }
  .btn-effect:hover .arrow__circle .arrow__circle__front circle {
    animation: strokeDasharray 0.5s forwards alternate;
  }
}
@media screen and (min-width: 800px) {
  .btn-insta-effect:hover {
    display: block;
    width: 4rem;
    height: 4rem;
    position: relative;
    border-radius: 50%;
    overflow: hidden;
  }
  .btn-insta-effect:hover .insta__circle:after {
    animation: insta-effect 0.5s forwards alternate;
  }
  .btn-insta-effect:hover .insta__circle .insta__circle__front circle {
    animation: strokeDasharray 0.5s forwards alternate;
  }
}
@keyframes strokeDasharray {
  0% {
    stroke-dashoffset: 313;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes arrow {
  0% {
    opacity: 0;
  }
  30% {
    left: -100%;
    opacity: 0;
  }
  100% {
    opacity: 1;
    left: 50%;
  }
}
@keyframes arrow2 {
  0% {
    opacity: 0;
  }
  30% {
    left: 100%;
    opacity: 0;
  }
  100% {
    opacity: 1;
    left: 50%;
  }
}
@keyframes arrow3 {
  0% {
    opacity: 0;
  }
  30% {
    top: -100%;
    opacity: 0;
  }
  100% {
    opacity: 1;
    top: 50%;
  }
}
@keyframes insta-effect {
  0% {
    opacity: 0;
  }
  30% {
    top: 100%;
    opacity: 0;
  }
  100% {
    opacity: 1;
    top: 50%;
  }
}
@keyframes btn-text {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-100%);
  }
}
@keyframes btn-text2 {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes zoomOut {
  0% {
    transform: scale(1.5);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes ttl-effect-vertical {
  0% {
    bottom: 100%;
  }
  70% {
    top: 0;
  }
  80% {
    top: 33%;
  }
  90% {
    bottom: 0;
  }
  95% {
    top: 66%;
  }
  100% {
    bottom: 0;
    top: 100%;
  }
}
@keyframes ttl-effect-vertical2 {
  0% {
    clip-path: polygon(0 0, 100% 0, 100% 0%, 0 0%);
  }
  80% {
    clip-path: polygon(0 0, 100% 0, 100% 33%, 0 33%);
  }
  95% {
    clip-path: polygon(0 0, 100% 0, 100% 66%, 0 66%);
  }
  100% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}
@keyframes ttl-effect {
  0% {
    right: 100%;
  }
  70% {
    left: 0;
  }
  80% {
    left: 33%;
  }
  90% {
    right: 0;
  }
  95% {
    left: 66%;
  }
  100% {
    right: 0;
    left: 100%;
  }
}
@keyframes ttl-effect2 {
  0% {
    clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
  }
  80% {
    clip-path: polygon(0 0, 33% 0, 33% 100%, 0 100%);
  }
  95% {
    clip-path: polygon(0 0, 66% 0, 66% 100%, 0 100%);
  }
  100% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}
.ttl-effect-vertical {
  position: relative;
}
.ttl-effect-vertical[style*="visibility: visible;"] img, .ttl-effect-vertical[style*="visibility: visible;"]:after {
  animation-play-state: running;
}
.ttl-effect-vertical img {
  clip-path: polygon(0 0, 100% 0, 100% 0%, 0 0%);
  animation: ttl-effect-vertical2 0.5s linear forwards alternate;
  animation-play-state: paused;
}
.ttl-effect-vertical:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 100%;
  z-index: 2;
  background: #fff;
  animation: ttl-effect-vertical 0.5s linear forwards alternate;
  animation-play-state: paused;
}

.ttl-effect {
  position: relative;
}
.ttl-effect[style*="visibility: visible;"]:after, .ttl-effect[style*="visibility: visible;"] img {
  animation-play-state: running;
}
.ttl-effect img {
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  animation: ttl-effect2 1s linear forwards alternate;
  animation-play-state: paused;
}
.ttl-effect:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 100%;
  bottom: 0;
  z-index: 2;
  background: #fff;
  animation: ttl-effect 1s linear forwards alternate;
  animation-play-state: paused;
}

.ttl-common {
  font-size: 3.8rem;
  line-height: 1.2;
}
@media screen and (max-width: 799px) {
  .ttl-common {
    font-size: 3.2rem;
  }
}

main {
  position: relative;
  z-index: 5;
  overflow: hidden;
  min-height: 2000px;
  background: #121110;
}

.logo {
  position: fixed;
  z-index: 99999;
  top: 4rem;
  left: 4rem;
  width: 9.6rem;
  transition: all 0.3s;
}
.logo.hide {
  opacity: 0;
  visibility: hidden;
}
@media screen and (max-width: 799px) {
  .logo {
    position: absolute;
    width: 5.9rem;
    top: 1.5rem;
    left: 2rem;
  }
}

#header {
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  background: #000;
}
#header.hide {
  z-index: 1;
}
#header #key .img {
  height: 100svh;
  overflow: hidden;
}
#header #key .key-ttl {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 4.627rem;
}
@media screen and (max-width: 799px) {
  #header #key .key-ttl {
    width: 3.47rem;
  }
}
#header #key .key-slide .slick-slide .img {
  filter: blur(32px);
  transition: all 0.8s;
  transition-delay: 0.2s;
}
#header #key .key-slide .slick-slide.slick-current.slick-active .img, #header #key .key-slide .slick-slide.slick-prev .img {
  filter: blur(0);
}
#header #key .key-slide .slick-slide.slick-current.slick-active .img img, #header #key .key-slide .slick-slide.slick-prev .img img {
  animation: zoomOut 20s linear infinite;
}

.block {
  position: relative;
  z-index: 3;
  background: #121110;
}

.nav-fixed {
  position: fixed;
  z-index: 99;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  box-sizing: border-box;
  padding: 3rem 4rem 0 0;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2.5rem;
}
.nav-fixed.hide {
  opacity: 0;
  visibility: hidden;
}
.nav-fixed .nav {
  display: flex;
  justify-content: flex-end;
  gap: 2.5rem;
  font-weight: 700;
  line-height: 3.5rem;
  font-size: 1.5rem;
}
.nav-fixed .nav > li {
  padding: 1rem 0;
}
.nav-fixed .nav > li a, .nav-fixed .nav > li > span {
  display: block;
  position: relative;
  cursor: pointer;
  line-height: inherit;
}
.nav-fixed .nav > li a i, .nav-fixed .nav > li > span i {
  display: inline-block;
  margin-left: 0.5rem;
  width: 1.2rem;
}
.nav-fixed .nav > li a.active::before, .nav-fixed .nav > li > span.active::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: #BC2704;
  bottom: 0.2rem;
}
.nav-fixed .nav > li.has-sub {
  position: relative;
  gap: 0.5rem;
  display: flex;
  align-items: center;
}
.nav-fixed .nav > li.has-sub:after {
  content: "";
  background: url("../img/shared/menu_arrow.svg") no-repeat center/100% auto;
  width: 1rem;
  height: 1.4rem;
  transition: all 0.5s;
}
.nav-fixed .nav > li.has-sub .sub-nav {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: -moz-max-content;
  min-width: max-content;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
  background: #000;
}
.nav-fixed .nav > li.has-sub .sub-nav li a {
  display: block;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1;
  padding: 1.5rem;
  transition: all 0.5s;
}
.nav-fixed .nav > li.has-sub:hover:after, .nav-fixed .nav > li.has-sub.hover:after {
  transform: rotate(-180deg);
}
.nav-fixed .nav > li.has-sub:hover .sub-nav, .nav-fixed .nav > li.has-sub.hover .sub-nav {
  opacity: 1;
  visibility: visible;
}
.nav-fixed .nav > li.has-sub:hover .sub-nav li a:hover, .nav-fixed .nav > li.has-sub.hover .sub-nav li a:hover {
  background: #222;
}
.nav-fixed .btn-web {
  font-size: 1.5rem;
  line-height: 1.6;
  padding: 0.65rem 1.5rem;
  color: #fff;
  cursor: pointer;
  font-weight: 700;
  position: relative;
}
.nav-fixed .btn-web::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, #9C1E00 0%, #BC2704 100%);
}
.nav-fixed .btn-web::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, #BE2805 0%, #E52F04 100%);
  opacity: 0;
  transition: all 0.5s;
}
.nav-fixed .btn-web span {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  position: relative;
  z-index: 2;
}
.nav-fixed .btn-web span:after {
  content: "";
  background: url("../img/shared/btn_arrow.svg") no-repeat center/100% auto;
  width: 0.6rem;
  height: 1.5rem;
}
@media (hover: hover) {
  .nav-fixed .btn-web:hover:after {
    opacity: 1;
  }
}

.hamburger {
  width: 3.8rem;
  height: 8px;
  top: 2.6rem;
  right: 1rem;
  transition: all 0.3s;
}
.hamburger:after {
  display: none;
}
.hamburger.hide {
  opacity: 0;
  visibility: hidden;
}

#menu-web {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  width: 100% !important;
  top: 0px;
  bottom: 0;
  right: -100%;
  overflow-y: auto;
  height: 100%;
  color: #fff;
  z-index: -10;
  background: rgba(18, 17, 16, 0.4);
  box-sizing: border-box;
  transition: all ease-in-out 0.3s;
  -webkit-overflow-scrolling: touch;
}
#menu-web .inner {
  margin: 0 0 0 auto;
  width: 30rem;
  box-sizing: border-box;
  background: #000;
  padding: 5.3rem 4rem 150px;
  min-height: 100vh;
}
#menu-web .inner .web-close {
  width: 1.5rem;
  margin: 0 0 4.9rem auto;
  cursor: pointer;
  line-height: 0;
}
@media (hover: hover) {
  #menu-web .inner .web-close:hover {
    opacity: 0.8;
  }
}
#menu-web .inner .title {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  line-height: 1.2;
  margin: 0 0 3rem;
}
#menu-web .inner .btn-link2 a {
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}
#menu-web .inner .btn-link2 a .text2 {
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.5;
}
#menu-web .inner .btn-link2 a .text2 small {
  display: block;
  font-weight: 400;
  font-size: 1.2rem;
  margin: 0.5rem 0 0;
}
#menu-web .inner .btn-link2 + .btn-link2 {
  margin-top: 1.5rem;
}

.webOpen #menu-web {
  opacity: 1;
  visibility: visible;
  pointer-events: visible;
  z-index: 999;
  right: 0;
}

.menu-toggle {
  background: url("../img/shared/menu_bg_sp.webp") no-repeat center/cover;
}
.menu-toggle .nav {
  font-size: 1.8rem;
  text-align: center;
  color: #fff;
}
.menu-toggle .nav li + li {
  margin-top: 3.5rem;
}
.menu-toggle .nav li a {
  text-decoration: none;
  display: inline-block;
  padding: 0 0 4px;
}
.menu-toggle .nav li a i {
  margin-left: 1rem;
  width: 1.4rem;
  display: inline-block;
  vertical-align: text-bottom;
}
.menu-toggle .nav li a.active {
  border-bottom: 2px solid #BC2704;
}
.menu-toggle .group-web {
  margin: 5rem auto 0;
  width: 33rem;
  border: 1px solid #BC2704;
  max-width: calc(100% - 40px);
  box-sizing: border-box;
  padding: 2rem;
  color: #fff;
}
.menu-toggle .group-web .title {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  line-height: 1.2;
  margin: 0 0 1.5rem;
}
.menu-toggle .group-web .btn-link2 a {
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}
.menu-toggle .group-web .btn-link2 a .text2 {
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.5;
}
.menu-toggle .group-web .btn-link2 a .text2 small {
  display: block;
  font-weight: 400;
  font-size: 1.2rem;
  margin: 0.5rem 0 0;
}
.menu-toggle .group-web .btn-link2 + .btn-link2 {
  margin-top: 1.5rem;
}

body {
  padding-top: 100vh;
  padding-bottom: 100vh;
}

#footer {
  background: url("../img/shared/f_bg.webp") no-repeat center/cover;
  position: fixed;
  z-index: 1;
  left: 0;
  right: 0;
  top: 0;
  height: 100vh;
}
#footer .f-ttl {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  width: 14.7rem;
  height: 81.375vh;
  text-align: right;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}
#footer .f-ttl img {
  max-height: 100%;
  width: auto;
  max-width: 100%;
}
#footer .group {
  position: absolute;
  left: 5rem;
  right: 5rem;
  bottom: 4rem;
  text-align: center;
}
#footer .group .flex {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  margin: 0 0 1.225rem;
}
#footer .group .nav {
  display: flex;
  justify-content: center;
  font-size: 1.5rem;
  gap: 1.5rem 2.5rem;
  flex-wrap: wrap;
}
#footer .group .nav > li {
  padding: 1rem 0;
}
#footer .group .nav > li a, #footer .group .nav > li > span {
  display: block;
  position: relative;
  cursor: pointer;
  line-height: inherit;
}
#footer .group .nav > li a i, #footer .group .nav > li > span i {
  display: inline-block;
  margin-left: 0.5rem;
  width: 1.2rem;
}
#footer .group .nav > li a.active::before, #footer .group .nav > li > span.active::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: #BC2704;
  bottom: 0.2rem;
}
#footer .group .nav > li.has-sub {
  position: relative;
  gap: 0.5rem;
  display: flex;
  align-items: center;
}
#footer .group .nav > li.has-sub:after {
  content: "";
  background: url("../img/shared/menu_arrow.svg") no-repeat center/100% auto;
  width: 1rem;
  height: 1.4rem;
  transition: all 0.5s;
}
#footer .group .nav > li.has-sub .sub-nav {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: -moz-max-content;
  min-width: max-content;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
  background: #000;
}
#footer .group .nav > li.has-sub .sub-nav li a {
  display: block;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1;
  padding: 1.5rem;
  transition: all 0.5s;
  text-align: left;
}
@media screen and (min-width: 800px) {
  #footer .group .nav > li.has-sub:hover:after {
    transform: rotate(-180deg);
  }
  #footer .group .nav > li.has-sub:hover .sub-nav {
    opacity: 1;
    visibility: visible;
  }
  #footer .group .nav > li.has-sub:hover .sub-nav li a:hover {
    background: #222;
  }
}
#footer .group .btn-web {
  font-size: 1.5rem;
  line-height: 1.6;
  padding: 0.65rem 1.5rem;
  color: #fff;
  cursor: pointer;
  font-weight: 700;
  position: relative;
}
#footer .group .btn-web::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, #9C1E00 0%, #BC2704 100%);
}
#footer .group .btn-web::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, #BE2805 0%, #E52F04 100%);
  opacity: 0;
  transition: all 0.5s;
}
#footer .group .btn-web span {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  position: relative;
  z-index: 2;
}
#footer .group .btn-web span:after {
  content: "";
  background: url("../img/shared/btn_arrow.svg") no-repeat center/100% auto;
  width: 0.6rem;
  height: 1.5rem;
}
@media (hover: hover) {
  #footer .group .btn-web:hover:after {
    opacity: 1;
  }
}
#footer .group address {
  font-size: 1rem;
}
@media screen and (max-width: 799px) {
  #footer {
    background: url("../img/shared/f_bg_sp.webp") no-repeat center/cover;
    opacity: 0;
    visibility: hidden;
  }
  #footer .f-ttl {
    align-items: flex-start;
    bottom: auto;
    width: 6.615rem;
    height: auto;
  }
  #footer .f-ttl img {
    width: 100%;
    height: auto;
  }
  #footer .group {
    left: 3rem;
    right: 3rem;
    bottom: 8rem;
  }
  #footer .group .flex {
    margin: 0 0 4rem;
  }
  #footer .group .nav {
    gap: 1.5rem 2.5rem;
    font-size: 1.5rem;
  }
  #footer .group .nav > li {
    padding: 0;
  }
  #footer .group .nav > li.has-sub .sub-nav {
    bottom: calc(100% + 1rem);
  }
  #footer .group .nav > li.hover:after {
    transform: rotate(-180deg);
  }
  #footer .group .nav > li.hover .sub-nav {
    opacity: 1;
    visibility: visible;
  }
  #footer .group .nav > li.hover .sub-nav li a:hover {
    background: #222;
  }
}

@media screen and (max-width: 799px) {
  .has-nav #footer {
    opacity: 1;
    visibility: visible;
  }
}
.slick-dots {
  bottom: 2rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  left: 0;
  right: 0;
}
.slick-dots li {
  background: transparent;
  position: relative;
  width: 1.2rem;
  height: 1.2rem;
  border: 0;
  margin: 0;
}
.slick-dots li::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 50%;
  background: #fff;
  width: 0.6rem;
  height: 0.6rem;
  box-sizing: border-box;
  border: 1px solid;
  transition: all 0.3s ease-in-out;
  border-radius: 50%;
}
.slick-dots li.slick-active {
  background: transparent;
}
.slick-dots li.slick-active::before {
  width: 100%;
  height: 100%;
  background: transparent;
}
@media screen and (min-width: 800px) {
  .slick-dots li:hover {
    background: transparent;
  }
}

@media screen and (max-width: 799px) {
  #ft-fixed {
    opacity: 0;
    visibility: hidden;
    padding: 0;
    background: transparent;
    display: flex;
    transition: all 0.5s;
  }
  #ft-fixed .btn-link2 {
    width: 50%;
  }
  #ft-fixed .btn-link2 a {
    display: block;
    text-decoration: none;
    color: #fff;
    font-size: 1.5rem;
    line-height: 1.3;
    background: #9E1E01;
    text-align: center;
    padding: 0.8rem 0;
    font-weight: 700;
  }
  #ft-fixed .btn-link2 + .btn-link2 a {
    background: #BB2704;
  }
  .has-nav2 #ft-fixed {
    opacity: 1;
    visibility: visible;
  }
}