@charset "UTF-8";
/**
 * ViewPort Mixin and setting rem to pixel.
 */
/** ここでデザインファイルのサイズを入力 */
/**
 * mixin
 */
/**
 * pxをvwで返す関数
 */
/** デスクトップ上でpxをvwを返す */
/** モバイル上でpxをvwを返す */
/** largeDisplay（1536px以上）でウィンドウサイズサイズに追従するための関数 */
/**
 * Colors
 */
.shared-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 410rem;
  height: 63rem;
  margin: 50rem auto 0;
  padding-top: 2rem;
  background: #FF9000;
  color: #fff;
  font-size: 20rem;
  font-weight: 600;
  border: 1px solid #FF9000;
  border-radius: 100px;
  transition: 0.4s ease;
  transition-delay: 0s !important;
}
@media (max-width: 768px) {
  .shared-button {
    width: 342rem;
    height: 62rem;
    font-size: 18rem;
  }
}
.shared-button:hover {
  background: #fff;
  color: #FF9000;
}
@media (max-width: 768px) {
  .shared-button:hover {
    background: #FF9000;
    color: #fff;
  }
}