@charset "UTF-8";

/**********************************************************
 * magazine
 **********************************************************/
.magazine {
  position: relative;
  padding: 20px 20px 30px 160px;
  max-width: 740px;
  color: #000;
  background: #e5e5e5;
  box-sizing: border-box;
}
.magazine_img {
  position: absolute;
  top: -20px;
  left: 16px;
  width: 128px;
}
.magazine_img img {
  width: 100%;
}
.magazine_title {
  font-size: 2.1rem;
  font-weight: 700;
}
.magazine_text {
  margin-top: .8em;
  line-height: 1.7;
  font-size: 1.4rem;
}
.magazine_note {
  margin-top: 1em;
  font-size: 1.3rem;
  line-height: 1.5;
}
.magazine_link {
  position: absolute;
  bottom: 20px;
  right: 20px;
}
.magazine_link a {
  position: relative;
  display: block;
  padding: 11.5px 31px;
  color: #000;
  text-align: center;
  font-size: 1.5rem;
  text-decoration: none;
  border: 1px solid #000;
  border-radius: 20px;
  transition: all .3s;
}
.magazine_link a:hover {
  color: #fff;
  background: #000;
}
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 14px;
  display: inline-block;
  width: 6px;
  height: 10px;
}
.arrow::before,
.arrow::after {
  content: "";
  position: absolute;
  top: calc(50% - 0.5px);
  right: 0;
  width: 7.7px;
  height: 1px;
  border-radius: 9999px;
  background-color: #000;
  transform-origin: calc(100% - 0.5px) 50%;
}
.arrow::before {
  transform: rotate(42deg);
}
.arrow::after {
  transform: rotate(-42deg);
}
.magazine_link a:hover .arrow::before,
.magazine_link a:hover .arrow::after {
  background-color: #fff;
}