@charset 'UTF-8';

/*------------ linkbtn ------------*/
.linkbtn {
  width: 220px;
  height: 40px;
  font-size: 14px;
  transition: 0.25s ease 0.15s;
  letter-spacing: 0.1em;
  font-weight: 600;
  font-family: Hiragino Sans, "ヒラギノ角ゴシック", Hiragino Kaku Gothic ProN,
    "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo;
  position: relative;
  color: #fff;
  display: block;
}
.linkbtn span {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  padding-left: 20px;
}
.linkbtn::before,
.linkbtn::after,
.linkbtn span::before,
.linkbtn span::after {
  content: "";
  background-color: #fff;
  position: absolute;
  transition: 0.3s ease;
}

.linkbtn::before,
.linkbtn::after {
  width: 100%;
  height: 1px;
}
.linkbtn::before {
  top: 0;
  right: 0;
}
.linkbtn::after {
  bottom: 0;
  left: 0;
}
/* ------ option ------ */
.linkbtn span::before,
.linkbtn span::after {
  width: 1px;
  height: calc(100% - 4px);
}
.linkbtn span::before {
  bottom: 0;
  left: 0;
}
.linkbtn span::after {
  top: 0;
  right: 0;
}
/* ------ option ------ */
.linkbtn .fa-angle-right {
  position: absolute;
  right: 15px;
  line-height: 1;
  height: 1em;
  top: 0;
  bottom: 0;
  margin: auto;
  font-size: 20px;
}
.linkbtn .fa-angle-down {
  position: absolute;
  right: 15px;
  line-height: 1;
  height: 1em;
  top: 0;
  bottom: 0;
  margin: auto;
  font-size: 20px;
}

@media screen and (min-width: 768px) {
  .linkbtn:hover {
    background-color: #3868ad;
  }

  .linkbtn:hover::before,
  .linkbtn:hover::after {
    width: 0%;
  }
  .linkbtn:hover span::before,
  .linkbtn:hover span::after {
    height: 0%;
  }
}

/* ---------------------------------------------------------------- SP ---- */

@media screen and (max-width: 767px) {
}
