* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

main {
  max-width: 600px;
  margin: 0 auto;
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

.image {
  width: 100%;
}

.image-18-2 {
  background-image: url(../images/image018-2.jpg);
  /* height: 600px; */
  width: 100%;
  background-size: cover;
  text-align: center;
  padding: 70px 30px;
}

.image-18-2 .text {
  margin-bottom: 24px;
  width: 70%;
  margin: 0 auto 40px;
}
.image-18-2 a.free {
  display: inline-block;
  width: 90%;
}
.image-18-2 a.tel {
  display: inline-block;
  width: 70%;
}

/* ボタン基本スタイル */
.free {
  display: inline-block;
  position: relative;
  /* ゆっくりとした一定の拡大縮小アニメーション */
  animation: simple-pulse 1.5s ease-in-out infinite;
}

/* 画像のスタイル調整 */
.free img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* シンプルなパルスアニメーション - ゆっくりと一定の速度 */
@keyframes simple-pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
