.slider-wrap {
  position: relative;
}
@media screen and (max-width: 767px) {
  .slider-wrap {
    width: 100%;
    height: auto;
    margin-top: 60px;
  }
}
.image-slider {
  width: 100%;
  height: 700px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .image-slider {
    height: 550px;
  }
}
.img-wrap {
  height: 100%;
  position: relative;
  overflow: hidden;
}
.slick-track {
  height: 700px;
}
@media screen and (max-width: 767px) {
  .slick-track {
    height: 550px;
  }
}
.img-wrap img {
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  width: auto;
  height: 100%;
  min-width: 100%;
  max-width: none;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  object-fit: cover;
}
.slick-slide {
  margin-right: 0px;
}
.main-container {
  max-width: 1100px;
  width: 100%;
  height: 700px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .main-container {
    width: 100%;
    height: 550px;
    padding: 5vw 5% 5vw;
    top: 0;
    left: 0;
    transform: translate(0, 0);
  }
}
.main-container a {
  display: block;
  width: 400px;
  background-color: #ffffff;
  border-radius: 32px;
  padding: 15px 80px;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  margin: 0 auto;
  margin-top: 610px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .main-container a {
    width: 100%;
    height: 13vw;
    border-radius: 13vw;
    font-size: 4vw;
    margin-top: 5vw;
    padding: 0;
    justify-content: space-between;
  }
}
.main-container a::before {
  content: url("../common/img/header/icon_about.png");
  transform: scale(0.26);
  position: absolute;
  top: -64px;
  left: -60px;
}
@media screen and (max-width: 767px) {
  .main-container a::before {
    content: "";
    background: url("../common/img/header/icon_about.png") no-repeat center center;
    background-size: contain;
    display: inline-block;
    width: 11vw;
    height: 11vw;
    transform: none;
    position: static;
    margin-left: 1vw;
  }
}
.main-container a::after {
  content: url("../img/icon_arrow_r_o.png");
  transform: scale(0.26);
  position: absolute;
  top: -10px;
  right: -5px;
}
@media screen and (max-width: 767px) {
  .main-container a::after {
    position: static;
  }
}
.main-container a:hover,
.main-container a:focus {
  transform: scale(1.1);
  -webkit-transition: 0.25s ease;
  transition: 0.25s ease;
  background-color: #99d5f3;
}
.denki-logo {
  width: 550px;
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .denki-logo {
    width: 75vw;
    position: static;
    transform: translate(0, 0);
    margin: 0 auto;
    margin-top: 5vw;
  }
}
.denki-logo img {
  display: block;
  width: 100%;
  height: auto;
}
.animate-logo {
  animation: denkilogo 1.5s 1s 1 backwards;
}
@keyframes denkilogo {
  0% {
    transform: scale(1, 1) translate(0%, 0%);
    opacity: 0;
  }
  15% {
    transform: scale(0.9, 0.9) translate(0%, 5%);
  }
  30% {
    transform: scale(1.3, 0.8) translate(0%, 10%);
  }
  50% {
    transform: scale(0.8, 1.3) translate(0%, -10%);
    opacity: 1;
  }
  70% {
    transform: scale(1.1, 0.9) translate(0%, 5%);
  }
  100% {
    transform: scale(1, 1) translate(0%, 0%);
  }
}
.main-chara {
  width: 440px;
  position: absolute;
  top: 40%;
  left: 10%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  filter: drop-shadow(2px 2px 10px #000);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
@media screen and (max-width: 767px) {
  .main-chara {
    width: 50vw;
    position: static;
    transform: translate(0, 0);
    margin: 0 auto;
    margin-top: -5vw;
  }
}
.main-chara img {
  display: block;
  width: 100%;
  height: auto;
}
.animate-mchara {
  animation:
    mainchara1 2s 2s 1 backwards,
    mainchara2 3s 2s infinite;
}
@media screen and (max-width: 767px) {
  .animate-mchara {
    animation:
      mainchara1 2s 2s 1 backwards,
      mainchara_sp 3s 2s infinite;
  }
}
@keyframes mainchara1 {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes mainchara2 {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(50px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes mainchara_sp {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(20px);
  }
  100% {
    transform: translateY(0px);
  }
}
.main-copy {
  width: 520px;
  position: absolute;
  bottom: 8%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .main-copy {
    width: 100%;
    position: static;
    transform: translate(0, 0);
    margin: 0 auto;
    margin-top: 5vw;
  }
}
.main-copy img {
  display: block;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .main-copy img {
    animation: none;
  }
}
.animate-mcopy {
  animation: mainccopy 2s 3s 1 backwards;
}
@keyframes mainccopy {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.index-wrapper {
  max-width: 1500px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  margin-top: -1px;
}
@media screen and (max-width: 767px) {
  .index-wrapper {
    width: 100%;
  }
}
h2.special {
  width: 100%;
  text-align: center;
  background: url("../img/img_index_pattern.png") no-repeat center center #ffc63a;
}
@media screen and (max-width: 767px) {
  h2.special {
    background: url("../img/img_index_pattern.png") no-repeat center center #ffc63a;
    background-size: 120%;
  }
}
h2.special img {
  display: block;
  width: 250px;
  height: auto;
  margin: 0 auto;
  padding: 17px 0;
}
@media screen and (max-width: 767px) {
  h2.special img {
    width: 30%;
    padding: 3vw 0;
  }
}
.index-container {
  max-width: 1500px;
  width: 100%;
  height: auto;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 767px) {
  .index-container {
    width: 100%;
    height: auto;
  }
}
.special-container {
  width: 100%;
  background: url(../img/img_special_main.png) no-repeat center bottom;
}
@media screen and (max-width: 767px) {
  .special-container {
    height: auto;
    position: static;
    background: none;
    background-color: #fff9b9;
  }
}
.special-inner {
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
  padding: 20px 0 150px 0;
  height: 740px;
}
@media screen and (max-width: 767px) {
  .special-inner {
    height: auto;
  }
}
@media screen and (max-width: 767px) {
  .special-inner {
    width: 100%;
    padding: 4vw 5%;
  }
}
.special-inner .number {
  background-color: #006db9;
  display: inline-block;
  border-radius: 10px;
  color: #ffffff;
  font-size: 18px;
  font-weight: bold;
  padding: 5px 15px 3px 15px;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .special-inner .number {
    width: 100%;
    text-align: center;
    font-size: 4vw;
  }
}
.special-inner h3.special-title {
  width: 55%;
  margin-left: -15px;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .special-inner h3.special-title {
    width: 80%;
    margin: 0 auto;
  }
}
.special-inner h3.special-title img {
  display: block;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .special-inner h3.special-title img {
    margin-left: 0;
  }
}
.special-inner p {
  width: 50%;
  font-size: 18px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .special-inner p {
    width: auto;
    font-size: 3.2vw;
    margin-left: 0;
    margin-top: 3vw;
    margin-bottom: 20px;
  }
}
.special-inner img.main-image {
  display: none;
}
@media screen and (max-width: 767px) {
  .special-inner img.main-image {
    display: block;
    width: 100%;
    height: auto;
    margin: 0 auto;
  }
}
.special-inner a {
  display: block;
  width: 370px;
  background-color: #ffffff;
  border-radius: 32px;
  padding: 15px 80px;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  position: relative;
  margin-top: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .special-inner a {
    width: 100%;
    height: 13vw;
    border-radius: 13vw;
    font-size: 4vw;
    margin-top: 5vw;
    padding: 0;
    justify-content: space-between;
    margin-left: 0;
  }
}
.special-inner a::before {
  content: url("../common/img/header/icon_special.png");
  transform: scale(0.26);
  position: absolute;
  top: -64px;
  left: -60px;
}
@media screen and (max-width: 767px) {
  .special-inner a::before {
    content: "";
    background: url("../common/img/header/icon_special.png") no-repeat center center;
    background-size: contain;
    display: inline-block;
    width: 11vw;
    height: 11vw;
    transform: none;
    position: static;
    margin-left: 1vw;
  }
}
.special-inner a::after {
  content: url("../img/icon_arrow_r_o.png");
  transform: scale(0.26);
  position: absolute;
  top: -10px;
  right: -5px;
}
@media screen and (max-width: 767px) {
  .special-inner a::after {
    position: static;
  }
}
.special-inner a:hover,
.special-inner a:focus {
  transform: scale(1.1);
  -webkit-transition: 0.25s ease;
  transition: 0.25s ease;
  background-color: #ffe8b0;
}
.quiz-letter-container {
  width: 100%;
  height: auto;
  position: relative;
  display: flex;
  flex-direction: row-reverse;
  margin-top: -300px;
  position: relative;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .quiz-letter-container {
    margin-top: 0;
    height: auto;
    flex-wrap: wrap;
  }
}
.quiz-letter-container::before {
  content: "";
  background: url("../img/img_index_quiz_letter_back.png") repeat-y center center;
  background-size: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -5;
}
@media screen and (max-width: 767px) {
  .quiz-letter-container::before {
    display: none;
  }
}
.quiz-container {
  width: 49.5%;
  min-height: 561px;
  position: relative;
  margin-top: 50px;
  pointer-events: auto;
}
@media screen and (max-width: 767px) {
  .quiz-container {
    width: 100%;
    height: auto;
    position: static;
    background: url("../img/sp_img_quiz_back.png") no-repeat 0 0;
    background-size: cover;
    margin-top: 0;
    min-height: 0;
  }
}
.quiz-inner {
  width: 50%;
  margin-left: 5%;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .quiz-inner {
    width: 90%;
    padding: 4vw 0;
    text-align: left;
    position: relative;
    margin: 0 auto;
  }
}
.quiz-inner h3.quiz-title {
  display: inline-block;
  width: 80%;
  margin-top: 150px;
}
@media screen and (max-width: 767px) {
  .quiz-inner h3.quiz-title {
    width: 40vw;
    margin-top: 4vw;
  }
}
.quiz-inner h3.quiz-title img {
  display: block;
  width: 100%;
  height: auto;
}
.quiz-inner p {
  font-size: 18px;
  margin-top: 20px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .quiz-inner p {
    font-size: 3.2vw;
    margin-left: 0;
    margin-top: 0;
  }
}
.quiz-inner a {
  display: block;
  width: 300px;
  background-color: #ffffff;
  border-radius: 32px;
  padding: 15px 80px;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  position: relative;
  margin: 0 auto;
  margin-top: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .quiz-inner a {
    width: 100%;
    height: 13vw;
    border-radius: 13vw;
    font-size: 4vw;
    margin-top: 5vw;
    padding: 0;
    justify-content: space-between;
  }
}
.quiz-inner a::before {
  content: url("../common/img/header/icon_quiz.png");
  transform: scale(0.26);
  position: absolute;
  top: -64px;
  left: -60px;
}
@media screen and (max-width: 767px) {
  .quiz-inner a::before {
    content: "";
    background: url("../common/img/header/icon_quiz.png") no-repeat center center;
    background-size: contain;
    display: inline-block;
    width: 11vw;
    height: 11vw;
    transform: none;
    position: static;
    margin-left: 1vw;
  }
}
.quiz-inner a::after {
  content: url("../img/icon_arrow_r_o.png");
  transform: scale(0.26);
  position: absolute;
  top: -10px;
  right: -5px;
}
@media screen and (max-width: 767px) {
  .quiz-inner a::after {
    position: static;
  }
}
.quiz-inner a:hover,
.quiz-inner a:focus {
  transform: scale(1.1);
  -webkit-transition: 0.25s ease;
  transition: 0.25s ease;
  background-color: #f7f7ba;
}
.quiz-inner .quiz-chara {
  width: 38%;
  position: absolute;
  top: 50px;
  right: 10%;
  filter: drop-shadow(2px 2px 3px #6a6a28);
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .quiz-inner .quiz-chara {
    width: 30vw;
    right: 5vw;
    top: 0;
  }
}
.quiz-inner .quiz-chara img {
  display: block;
  width: 100%;
  height: auto;
}
.animate-quiz {
  animation: mainchara2 3s 2s infinite;
}
@media screen and (max-width: 767px) {
  .animate-quiz {
    animation: mainchara_sp 3s 2s infinite;
  }
}
.letter-container {
  width: 49.5%;
  min-height: 561px;
  position: relative;
  margin-top: 150px;
  pointer-events: auto;
}
@media screen and (max-width: 767px) {
  .letter-container {
    width: 100%;
    height: auto;
    position: static;
    background: url("../img/sp_img_letter_back.png") no-repeat 0 0;
    background-size: cover;
    margin-top: 0;
    min-height: 0;
  }
}
.letter-inner {
  width: 55%;
  margin-left: 40%;
  margin-right: 5%;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .letter-inner {
    width: 90%;
    padding: 4vw 0;
    text-align: left;
    position: relative;
    margin: 0 auto;
  }
}
.letter-inner h3.letter-title {
  display: inline-block;
  width: 86%;
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  .letter-inner h3.letter-title {
    width: 60vw;
    margin-top: 4vw;
  }
}
.letter-inner h3.letter-title img {
  display: block;
  width: 100%;
  height: auto;
}
.letter-inner p {
  font-size: 18px;
  margin-top: 20px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .letter-inner p {
    font-size: 3.2vw;
    margin-left: 0;
    margin-top: 0;
  }
}
.letter-inner a {
  display: block;
  width: 300px;
  background-color: #ffffff;
  border-radius: 32px;
  padding: 15px 80px;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  position: relative;
  margin: 0 auto;
  margin-top: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .letter-inner a {
    width: 100%;
    height: 13vw;
    border-radius: 13vw;
    font-size: 4vw;
    margin-top: 5vw;
    padding: 0;
    justify-content: space-between;
  }
}
.letter-inner a::before {
  content: url("../common/img/header/icon_letter.png");
  transform: scale(0.26);
  position: absolute;
  top: -64px;
  left: -60px;
}
@media screen and (max-width: 767px) {
  .letter-inner a::before {
    content: "";
    background: url("../common/img/header/icon_letter.png") no-repeat center center;
    background-size: contain;
    display: inline-block;
    width: 11vw;
    height: 11vw;
    transform: none;
    position: static;
    margin-left: 1vw;
  }
}
.letter-inner a::after {
  content: url("../img/icon_arrow_r_o.png");
  transform: scale(0.26);
  position: absolute;
  top: -10px;
  right: -5px;
}
@media screen and (max-width: 767px) {
  .letter-inner a::after {
    position: static;
  }
}
.letter-inner a:hover,
.letter-inner a:focus {
  transform: scale(1.1);
  -webkit-transition: 0.25s ease;
  transition: 0.25s ease;
  background-color: #fdc8dd;
}
.letter-inner .letter-chara {
  width: 40%;
  position: absolute;
  top: 80px;
  left: 5%;
  filter: drop-shadow(2px 2px 3px #6c4253);
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .letter-inner .letter-chara {
    width: 35vw;
    top: 0;
    left: 65%;
  }
}
.letter-inner .letter-chara img {
  display: block;
  width: 100%;
  height: auto;
}
.animate-letter {
  animation: mainchara2 3s 2s infinite;
}
@media screen and (max-width: 767px) {
  .animate-letter {
    animation: mainchara_sp 3s 2s infinite;
  }
}
.archive-container {
  max-width: 1500px;
  width: 100%;
  background: url("../img/img_archive_back.png") no-repeat 0 0;
  margin-top: -250px;
  position: relative;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .archive-container {
    width: 100%;
    height: auto;
    position: static;
    background: url("../img/sp_img_archive_back.png") no-repeat 0 0 #edf8f8;
    background-size: contain;
    margin-top: 0;
  }
}
.archive-container::before {
  content: "";
  background-color: #edf8f8;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -10;
}
.archive-inner {
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
  padding-top: 200px;
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .archive-inner {
    width: 90%;
    padding: 4vw 0;
    position: relative;
    margin-top: 0;
    padding-bottom: 10vw;
  }
}
.archive-inner h3.archive-title {
  display: block;
  width: 30%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .archive-inner h3.archive-title {
    width: 55vw;
    margin: 0;
  }
}
.archive-inner h3.archive-title img {
  display: block;
  width: 100%;
  height: auto;
}
.archive-inner p {
  font-size: 18px;
  margin-top: 20px;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .archive-inner p {
    font-size: 3.2vw;
    margin-left: 0;
    margin-top: 0;
    text-align: left;
  }
}
.archive-inner .archive-chara {
  width: 18%;
  position: absolute;
  top: 50px;
  right: 10%;
  filter: drop-shadow(2px 2px 3px #285353);
}
@media screen and (max-width: 767px) {
  .archive-inner .archive-chara {
    width: 30vw;
    top: 3vw;
    right: 0;
  }
}
.archive-inner .archive-chara img {
  display: block;
  width: 100%;
  height: auto;
}
.animate-archive {
  animation: mainchara2 3s 2s infinite;
}
@media screen and (max-width: 767px) {
  .animate-archive {
    animation: mainchara_sp 3s 2s infinite;
  }
}
.archive-list {
  width: 100%;
  margin-top: 130px;
  pointer-events: auto;
}
@media screen and (max-width: 767px) {
  .archive-list {
    margin-top: 20vw;
  }
}
.archive-list ul {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.archive-list ul li {
  width: 28%;
}
@media screen and (max-width: 767px) {
  .archive-list ul li {
    width: 43vw;
  }
}
.archive-list ul li a {
  display: block;
}
.archive-list ul li img {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 15px;
}
.archive-list ul li:nth-child(n + 4) {
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .archive-list ul li:nth-child(n + 4) {
    margin-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .archive-list ul li:nth-child(n + 3) {
    margin-top: 5vw;
  }
}
.archive-list ul li h4 {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .archive-list ul li h4 {
    font-size: 4vw;
  }
}
.archive-list ul li h4 + p {
  font-size: 16px;
  text-align: center;
  height: 3em;
  font-weight: normal;
}
@media screen and (max-width: 767px) {
  .archive-list ul li h4 + p {
    font-size: 3.2vw;
    min-height: 8vw;
  }
}
.archive-list ul li h4 + p {
  margin-top: 0;
}
.archive-list ul li p.archive-btn {
  display: block;
  width: 100%;
  background-color: #ffffff;
  border-radius: 32px;
  padding: 15px 80px;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  position: relative;
  margin: 0 auto;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .archive-list ul li p.archive-btn {
    width: 100%;
    height: 10vw;
    border-radius: 10vw;
    font-size: 3.2vw;
    margin-top: 0;
    margin-bottom: 2vw;
    padding: 0;
    justify-content: flex-end;
  }
}
.archive-list ul li p.archive-btn::after {
  content: url("../img/icon_arrow_r_o.png");
  transform: scale(0.26);
  position: absolute;
  top: -10px;
  right: -5px;
}
@media screen and (max-width: 767px) {
  .archive-list ul li p.archive-btn::after {
    transform: scale(0.2);
    position: static;
  }
}
.archive-list ul li p.archive-btn:hover {
  transform: scale(1.1);
  -webkit-transition: 0.25s ease;
  transition: 0.25s ease;
  background-color: #b8eeef;
}
.archive-list ul li p.archive-btn.archive-btn--focus {
  transform: scale(1.1);
  -webkit-transition: 0.25s ease;
  transition: 0.25s ease;
  background-color: #b8eeef;
}
.archive-list ul li p.archive-btn.archive-btn:focus-visible {
  outline: 0;
}
a.archive-btn2 {
  display: block;
  width: 400px;
  background-color: #ffffff;
  border-radius: 32px;
  padding: 15px 80px;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  position: relative;
  margin: 0 auto;
  margin-top: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
}
@media screen and (max-width: 767px) {
  a.archive-btn2 {
    width: 100%;
    height: 13vw;
    border-radius: 13vw;
    font-size: 4vw;
    margin-left: 0;
    margin-top: 10vw;
    justify-content: space-between;
    padding: 0;
  }
}
a.archive-btn2::before {
  content: url("../common/img/header/icon_archive.png");
  transform: scale(0.26);
  position: absolute;
  top: -64px;
  left: -60px;
}
@media screen and (max-width: 767px) {
  a.archive-btn2::before {
    content: "";
    background: url("../common/img/header/icon_archive.png") no-repeat center center;
    background-size: contain;
    display: inline-block;
    width: 11vw;
    height: 11vw;
    transform: none;
    position: static;
    margin-left: 1vw;
  }
}
a.archive-btn2::after {
  content: url("../img/icon_arrow_r_o.png");
  transform: scale(0.26);
  position: absolute;
  top: -10px;
  right: -5px;
}
@media screen and (max-width: 767px) {
  a.archive-btn2::after {
    position: static;
  }
}
a.archive-btn2:hover,
a.archive-btn2:focus {
  transform: scale(1.1);
  -webkit-transition: 0.25s ease;
  transition: 0.25s ease;
  background-color: #b8eeef;
}
