@charset "UTF-8";
/*
====>> 再利用可能なパーツのデフォルトスタイリング <<====

・このファイルはベースのスタイルになるので、原則オーバーライド(上書き)はしない事
・タグに依存しないベースのコンポーネントパーツ
・単体、あるいはパーツ単位で独立した仕様のスタイル

*/
.btn {
  position: relative;
  z-index: 1;
  display: block;
  width: clamp(0rem, 15.78125vw, 30.3rem);
  margin: 0 auto;
  padding: clamp(0rem, 1.0416666667vw, 2rem) 0;
  background-color: #D51212;
  border-radius: 100px;
  color: #FFF;
  font-size: clamp(0rem, 1.0416666667vw, 2rem);
  font-weight: bold;
  text-align: center;
  transition: all 0.3s ease;
}
@media screen and (max-width: 820px) {
  .btn {
    width: clamp(0rem, 36.9512195122vw, 30.3rem);
    padding: 25px 0;
    font-size: 14px;
  }
}
@media screen and (max-width: 563px) {
  .btn {
    width: 271px;
    padding: 20px 0;
    font-size: 16px;
  }
}
.btn:after {
  content: "";
  display: block;
  position: absolute;
  top: 35%;
  right: clamp(-5rem, -2.6041666667vw, 0rem);
  transform: translateY(-50%);
  width: clamp(0rem, 5.2083333333vw, 10rem);
  height: clamp(0rem, 5.2083333333vw, 10rem);
  background-image: url("../img/icon/icon_hand.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.15s ease;
}
@media screen and (max-width: 820px) {
  .btn:after {
    width: clamp(0rem, 9.756097561vw, 8rem);
    height: clamp(0rem, 9.756097561vw, 8rem);
  }
}
@media screen and (max-width: 563px) {
  .btn:after {
    top: 45px;
    right: -15px;
    width: 70px;
    height: 70px;
  }
}
.btn:hover:after {
  animation: handShake 0.15s ease;
}
@keyframes handShake {
  0% {
    transform: translateY(-50%) scale(1);
  }
  50% {
    transform: translateY(-50%) scale(1.3);
  }
  100% {
    transform: translateY(-50%) scale(1);
  }
}

.heading_decoration h2 {
  margin-bottom: clamp(0rem, 0.5208333333vw, 1rem);
  color: #9B893B;
  font-family: var(--en-serif);
  font-size: clamp(0rem, 4.5833333333vw, 8.8rem);
  font-weight: normal;
}
@media screen and (max-width: 820px) {
  .heading_decoration h2 {
    font-size: 37px;
  }
}
@media screen and (max-width: 563px) {
  .heading_decoration h2 {
    margin-bottom: 20px;
    font-size: 30px;
  }
}

.heading_icon {
  position: relative;
  font-size: clamp(0rem, 2.1875vw, 4.2rem);
  margin-bottom: clamp(1rem, 1.5625vw, 3rem);
  padding-left: clamp(0rem, 4.1666666667vw, 8rem);
}
@media screen and (max-width: 820px) {
  .heading_icon {
    margin-bottom: 23px;
    padding-left: 50px;
    font-size: 28px;
  }
}
.heading_icon:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: clamp(-2.5rem, -1.3020833333vw, 0rem);
  transform: translateY(-50%);
  width: clamp(0rem, 5.2083333333vw, 10rem);
  height: clamp(0rem, 5.2083333333vw, 10rem);
  background-image: url("../img/icon/icon_heading.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 563px) {
  .heading_icon:before {
    left: -20px;
    width: 61px;
    height: 73px;
  }
}
