@charset "UTF-8";

#article-317 .btn {
  display: inline-block;
}

#article-317 .btn01 {
  color: #fff;
  background: #333;
  padding: 0.5em 1em;
  transition: .3s;
}
#article-317 .btn01:hover {
  background: #555;
}

#article-317 .btn02 {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: #000;
  padding: 0.5em 1em;
  z-index: 1;
}
#article-317 .btn02::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #0af;
  z-index: -1;
  transform: translateX(-100%);
  transition: .3s;
}
#article-317 .btn02:hover::before {
  transform: translateX(0);
}

#article-317 .btn03 {
  color: inherit;
  border: 2px solid #333;
  padding: 0.5em 1em;
  transition: .3s;
}
#article-317 .btn03:hover {
  color: #fff;
  background: #333;
}

#article-317 .btn04 {
  color: #fff;
  background: #333;
  padding: 0.5em 1em;
  transition: transform .3s;
}
#article-317 .btn04:hover {
  transform: scale(1.1);
}

#article-317 .btn05 {
  position: relative;
  color: #fff;
  background: #333;
  padding: 0.5em 1em;
}
#article-317 .btn05::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #2CB1DC;
  transition: .3s;
}
#article-317 .btn05:hover::after {
  width: 100%;
}

#article-317 .btn06 {
  color: #fff;
  background: linear-gradient(45deg, #f00, #00f);
  padding: 0.5em 1em;
  transition: .3s;
}
#article-317 .btn06:hover {
  background: linear-gradient(45deg, #00f, #f00);
}

#article-317 .btn07 {
  color: #fff;
  background: #333;
  padding: 0.5em 1em;
  box-shadow: 0 5px 0 #222;
  transition: .2s;
}
#article-317 .btn07:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, .3);
}

#article-317 .btn08 {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: #333;
  padding: 0.5em 1em;
  z-index: 1;
}
#article-317 .btn08::after {
  content: "";
  position: absolute;
  width: 50%;
  aspect-ratio: 1 / 1;
  background: rgba(255, 255, 255, .3);
  border-radius: 50%;
  transform: scale(0);
  transition: .4s;
  z-index: -1;
}
#article-317 .btn08:hover::after {
  transform: scale(3);
}

#article-317 .btn09 {
  color: #fff;
  background: #000;
  border: 1px solid #000;
  padding: 0.5em 1em;
  transition: .3s;
}
#article-317 .btn09:hover {
  color: #000;
  background: #fff;
}

#article-317 .btn10 {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: #000;
  padding: 0.5em 1em;
}

#article-317 .btn10::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #ff9900;
  transform: skewX(-45deg) translateX(-150%);
  transition: .4s;
}

#article-317 .btn10:hover::before {
  transform: skewX(-45deg) translateX(150%);
}

/* card */
#article-317 .card {
  width: fit-content;
  margin-inline: auto;
}
#article-317 .card img {
  width: min(200px, calc(200 / 640 * 100vw));
}

#article-317 .card01 img {
  transition: transform .4s;
}

#article-317 .card01:hover img {
  transform: scale(1.1);
}

#article-317 .card02 {
  position: relative;
}
#article-317 .card02::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .5);
  opacity: 0;
  transition: .3s;
}
#article-317 .card02:hover::after {
  opacity: 1;
}

#article-317 .card03 {
  position: relative;
}
#article-317 .card-text03 {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  transform: translateY(100%);
  transition: .3s;
  color: #fff;
  white-space: nowrap;
}
#article-317 .card03:hover .card-text03 {
  transform: translateY(0);
}

#article-317 .card04 {
  transition: box-shadow .3s;
}
#article-317 .card04:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, .3);
}

#article-317 .card05:hover {
  transform: rotate(2deg);
}

#article-317 .card06:hover img {
  filter: blur(3px);
}

#article-317 .card07 {
  position: relative;
}
#article-317 .card07::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #ff0000;
  mix-blend-mode: overlay;
  opacity: 0;
  transition: .3s;
}
#article-317 .card07:hover::before {
  opacity: 1;
}

#article-317 .card08 {
  border: 2px solid transparent;
  transition: .3s;
}
#article-317 .card08:hover {
  border-color: #333;
}

#article-317 .card09 img {
  filter: grayscale(100%);
  transition: .3s;
}
#article-317 .card09:hover img {
  filter: grayscale(0);
}

#article-317 .card10 {
  transition: transform .3s;
}
#article-317 .card10:hover {
  transform: translateY(-10px);
}