@charset "utf-8";
/* CSS Document */

/*
@media以外の所は全てのサイズで読み込まれます。
*/
.btn-tel{
  position: relative;
  display: block;
  border-radius: 50px;
  color: white;
  font-weight: bold;
  text-align: center;
  background: #f75065;
  padding: 5px 0;
  margin: auto;
  max-width: 250px;
}

.btn-tel::after{
  content: "";
  background: url(img/telephone.svg) no-repeat center;
  background-size: contain;
  width: 24px;
  height: 24px;
  position: absolute;
  top: calc(50% - 12px);
  left: 15px;
}

iframe{
	height: 1600px;
}
/* mobile */
@media(min-width: 768px){
  a[href^="tel:"]{
    pointer-events: none;
  }
}
