body {
  max-width: 430px;
  margin: 0 auto 100px;
  background-color: #fff;
}

@media (max-width:768px) {
  body {
    max-width: 100%;
  }
}

.benefit-deadline {
  font-size: 1.25rem;
  font-weight: bold;
  color: #000;
}

/* section relative */
.floor-section {
  position: relative;
}

/* img w-full */
.floor-bg {
  width: 100%;
  height: auto;
  display: block;
}

/* absolute + スマホ基準で vw 計算してた部分をCSSへ */
.map-box {
  position: absolute;

  /* 元: width: calc(410vw / 4.3); */
  width: calc(410vw / 4.3);

  /* 元: height: calc(200vw / 4.3); */
  height: calc(200vw / 4.3);

  /* 元: bottom: calc(527vw / 4.3); */
  bottom: calc(527vw / 4.3);

  /* 元: left: calc(10vw / 4.3); */
  left: calc(10vw / 4.3);
}

/* iframe w-full h-full */
.map-iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

/* sm: (Tailwindのsmは min-width: 640px ) */
@media (min-width: 640px) {
  .map-box {
    width: 410px;
    height: 200px;
    bottom: 527px;
    left: 10px;
  }
}

/* section relative */
.famous-section {
  position: relative;
}

/* 背景画像 */
.famous-bg {
  width: 100%;
  height: auto;
  display: block;
}

/* absolute + w-full + overflow-visible */
.famous-swiper-area {
  position: absolute;
  width: 100%;
  overflow: visible;

  /* 元: bottom: calc(34vw / 4.3); */
  bottom: calc(34vw / 4.3);

  /* 元: height: calc(219vw / 4.3); */
  height: calc(219vw / 4.3);
}

/* sm: (min-width: 640px) */
@media (min-width: 640px) {
  .famous-swiper-area {
    bottom: 34px;
    height: 219px;
  }
}

/* swiper slide 内の画像サイズ（w-[175px] h-[219px]） */
.swiper-slide img {
  width: 175px;
  height: 219px;
  object-fit: cover;
  display: block;
}

.benefit-deadline {
  text-align: center;
}

.benefit-deadline-border {
  position: relative;
  display: inline-block;
  padding: 0 1.4em;
}

.benefit-deadline-border::before,
.benefit-deadline-border::after {
  content: "";
  position: absolute;
  top: 70%;
  width: 30px;
  height: 1px;
  background: currentColor;
  transform: translateY(-50%);
}

/* 左：＼ */
.benefit-deadline-border::before {
  left: 0;
  transform: translateY(-50%) rotate(45deg);
}

/* 右：／ */
.benefit-deadline-border::after {
  right: 0.25em;
  transform: translateY(-50%) rotate(-45deg);
}

.fixed-cta {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;

  width: 100%;
  background: #fff;
  padding: 5px;
}

.fixed-cta__inner {
  display: block;
  max-width: 430px;
  margin: 0 auto;
}

.fixed-cta__inner img {
  width: 100%;
  height: auto;
  display: block;
}

.number {
  color: #ff0000;
  font-size: 1.5em;
}

.red {
  color: #ff0000;
}