@charset "utf-8";

.key_visual {
  background: url(../images/vc_main_visual.png)
    no-repeat center top / contain fixed;
  height: 420px;
}

.key_visual h1 {
  background: url(../images/voice.png) no-repeat
    center;
}

.year {
  display: flex;
  justify-content: flex-start;
}

.year li {
  width: 160px;
  line-height: 50px;
  text-align: center;
  margin-right: 20px;
  border: 1px solid #bd6d1e;
  font-size: 22px;
  color: #bd6d1e;
  transition: all 0.3s ease-in-out;
}

.year li:hover {
  background: #f5b678;
  color: #fff;
}

.year li a {
  width: 100%;
  height: 100%;
  display: block;
}

.year .current {
  background: #f08c2a;
  color: #fff;
  border-color: #f08c2a;
  position: relative;
  transition: all 0.3s ease-in-out;
}

.year .current:hover {
  background: #f08c2a;
  opacity: 0.7;
}

.year .current a::after {
  content: "";
  display: block;
  height: 0;
  width: 0;
  border-style: solid;
  border-width: 10px 10px 0 10px;
  border-color: #f08c2a transparent transparent transparent;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.voices-box .new {
  position: relative;
}

.voices-box .new::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 70px 70px 0 0;
  border-color: #f46771 transparent transparent transparent;
  position: absolute;
}

.voices-box .new::after {
  content: "New";
  position: absolute;
  top: 0;
  left: 0;
  color: #fff;
  transform: rotate(-45deg) translate(-20%, 80%);
  font-weight: bold;
}

.page-menu {
  display: flex;
  width: 480px;
  margin: auto;
  justify-content: space-between;
}

.page-menu .pages {
  display: flex;
  justify-content: space-around;
  width: 100%;
}

.page-menu .pages .current a {
  background: #f08c2a;
  color: #fff;
  padding: 4px 8px;
}

.page-menu .controls {
  text-indent: 100%;
  overflow: hidden;
  white-space: nowrap;
  height: 15px;
  width: 15px;
  border-bottom: 1px solid #333;
}

.page-menu .controls a {
  width: 100%;
  height: 100%;
  display: block;
}
.page-menu .control-left {
  border-left: 1px solid #333;
  transform: rotate(45deg);
}

.page-menu .control-right {
  border-right: 1px solid #333;
  transform: rotate(-45deg);
}

.page-menu .disabled {
  border-color: #bbb;
  pointer-events: none;
}
