@charset "UTF-8";

@font-face {
  font-family: "GenJyuuGothic";
  src: url("../../fonts/GenJyuuGothic-Normal.ttf") format("truetype");
  font-weight: normal;
  /* Regular, equivalent to 400 */
  font-style: normal;
}
@font-face {
  font-family: "GenJyuuGothic";
  src: url("../../fonts/GenJyuuGothic-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "Gen Jyuu Gothic";
  src: url("../../fonts/GenJyuuGothic-Heavy.ttf") format("truetype");
  font-weight: 800;
  /* Heavy */
  font-style: normal;
}
@font-face {
  font-family: "LINESeedJP";
  src: url("../../fonts/LINESeedJP_TTF_Bd.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}

#contents {
  margin: 0;
}

#pageTitle,
#pagePath {
  display: none;
}

.l-campaign * {
  box-sizing: border-box;
}

.l-campaign,
.c-campaign__form {
  box-sizing: border-box;
  font-family: "GenJyuuGothic", "メイリオ", "Meiryo", verdana,
    "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック",
    "MS PGothic", Sans-Serif;
}

.l-campaign {
  color: #231815;
  line-height: 1.5;
  overflow: hidden;
}

.l-campaign a:hover {
  transition: 0.25s;
}

.l-campaign a:link,
.l-campaign a:visited {
  transition: 0.25s;
}

.l-campaign a img {
  transition: 0.25s;
}

.l-campaign img {
  max-width: 100%;
  height: auto;
}

.c-campaign__buttons-btn {
  text-align: center;
}

.c-campaign__header-img {
  width: 100%;
  max-width: none;
}

.c-campaign__body {
  background-image: url(../../img/campaign/top_topics_bg.png);
  padding-top: 42px;
}

.c-campaign__buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px 20px;
}

.c-reservation {
  background-color: #fff;
  border-radius: 24px;
  margin-bottom: 40px;
  padding: 19px 46px;
  position: relative;
}
.c-reservation::before {
  background-image: url(../../img/campaign/rp_character.webp);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  content: "";
  position: absolute;
  top: 50%;
  right: -50px;
  width: 144px;
  height: 128px;
  transform: translateY(-50%);
  z-index: 1;
  pointer-events: none;
}

.c-reservation__content {
  display: flex;
  align-items: center;
  gap: 36px;
}

.c-reservation__phone {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.c-reservation__text {
  color: #d00000;
  font-size: 26px;
  font-weight: bold;
  line-height: 1.5;
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 16px;
}
.c-reservation__text::before,
.c-reservation__text::after {
  background-color: #d00000;
  border-radius: 4px;
  content: "";
  width: 4px;
  flex-shrink: 0;
}
.c-reservation__text::before {
  transform: rotate(-30deg);
}
.c-reservation__text::after {
  transform: rotate(30deg);
}

.c-reservation__phone-number {
  color: #d00000;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  font-size: 46px;
  font-family: "LINESeedJP", sans-serif;
  font-weight: bold;
  line-height: 1;
  /* letter-spacing: .04em; */
}
.c-reservation__phone-number::before {
  background-image: url(../../img/campaign/icon_freedial.svg);
  background-position: center;
  background-repeat: repeat;
  content: "";
  display: block;
  width: 71px;
  height: 46px;
  flex-shrink: 0;
}

.c-reservation__details {
  font-size: 16px;
  font-weight: bold;
}

.c-reservation__form-button {
  display: flex !important;
  background-color: #ff8833;
  border-radius: 100px;
  box-shadow: 0 5px 0 0 rgba(255, 255, 255, 0.3) inset;
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  text-align: center;
  padding: 15px 44px;
  width: 404px;
  box-sizing: border-box;
}
.c-reservation__form-button:link,
.c-reservation__form-button:visited {
  color: #fff !important;
  text-decoration: none !important;
}
.c-reservation__form-button::before {
  background-image: url(../../img/campaign/icon_mail.svg);
  background-repeat: no-repeat;
  background-position: center;
  content: "";
  display: block;
  width: 50px;
  height: 35px;
  flex-shrink: 0;
}

.c-reservation__form-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
}

.c-reservation__form-tit {
  font-size: 26px;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: -0.06em;
}

.c-reservation__form-details {
  background-color: #fff;
  border-radius: 10px;
  color: #ff8833;
  font-size: 13px;
  font-weight: bold;
  line-height: 1.5;
  padding: 2px;
}

@media (hover: hover) {
  .c-reservation__form-button {
    transition: 0.25s ease;
  }
  .c-reservation__form-button:hover {
    opacity: 1 !important;
    background-color: #da742c;
    box-shadow: 0 5px 0 0 rgba(255, 255, 255, 0.3) inset;
    color: #fff !important;
    transform: translateY(2px);
  }
  .c-reservation__form-button:hover .c-reservation__form-details {
    color: #da742c;
  }

  .c-reservation__form-details {
    transition: 0.25s ease;
  }
}
.l-promo {
  padding-bottom: calc(20vw * 100 / 430);
}

.l-promo {
  padding-bottom: 24px;
}

.l-promo__inner {
  margin: 0 auto;
  width: 1000px;
}

.c-promo__content {
  padding: 48px 20px;
}

.c-promo__content {
  padding: 0;
  margin: 146px 0 105px;
  position: relative;
}

/* .c-promo__content::before {
  background-image: url(../../img/campaign/rp_character.webp);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  content: '';
  position: absolute;
  top: 33%;
  right: 50%;
  transform: translateX(50%);
  margin-right: 615px;
  width: 270px;
  height: 255px;
} */

.c-promo__list {
  display: flex;
  flex-direction: column;
  gap: 56px;
  position: relative;
  padding-top: 84px;
  z-index: 0;
}
.c-promo__list::before {
  background-image: url(../../img/campaign/rp_character.webp);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 124px;
  height: 128px;
  transform: translateX(-50%);
  margin-left: -59px;
  z-index: -1;
}
/* .c-promo__list::after {
  background-image: url(../../img/campaign/character_tit02.png);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 100px;
  height: 128px;
  transform: translateX(-50%);
  margin-left: 62px;
  z-index: -1;
} */

.c-promo__list {
  padding-top: 35px;
}
.c-promo__list::before {
  top: -90px;
  left: 60px;
  width: 144px;
  height: 128px;
  transform: none;
  margin-left: 0;
}
.c-promo__list::after {
  top: -108px;
  left: auto;
  right: 65px;
  width: 160px;
  height: 204px;
  transform: none;
  margin-left: 0;
}

.c-promo__item {
  position: relative;
}

.c-promo__title {
  background-color: transparent !important;
  border-bottom: none !important;
  margin-bottom: 0 !important;
  padding: 0 !important;
  width: inherit !important;
  color: #0fa32b !important;
  font-weight: 800 !important;
  line-height: 1.4 !important;
  text-align: center !important;
}

.c-promo__title {
  padding: 0 224px;
}

.c-promo__title-text {
  position: relative;
}

#main .c-promo__title-text p {
  font-size: 32px;
}

.c-promo__title-text::before {
  background-image: url(../../img/campaign/title_img.svg);
  background-repeat: no-repeat;
  background-position: center;
  content: "";
  position: absolute;
  top: -50px;
  left: -60px;
  width: 67px;
  height: 62px;
}
.c-promo__title-text p {
  display: contents;
  font-size: 50px;
}
.c-promo__title-text span {
  font-size: 50px;
}

.stroke-text {
  --stroke-color: #fff;
  --stroke-width: 4px;
  text-shadow: calc(var(--stroke-width) * 1) calc(var(--stroke-width) * 0) 0
      var(--stroke-color),
    calc(var(--stroke-width) * 0.9239) calc(var(--stroke-width) * 0.3827) 0
      var(--stroke-color),
    calc(var(--stroke-width) * 0.7071) calc(var(--stroke-width) * 0.7071) 0
      var(--stroke-color),
    calc(var(--stroke-width) * 0.3827) calc(var(--stroke-width) * 0.9239) 0
      var(--stroke-color),
    calc(var(--stroke-width) * 0) calc(var(--stroke-width) * 1) 0
      var(--stroke-color),
    calc(var(--stroke-width) * -0.3827) calc(var(--stroke-width) * 0.9239) 0
      var(--stroke-color),
    calc(var(--stroke-width) * -0.7071) calc(var(--stroke-width) * 0.7071) 0
      var(--stroke-color),
    calc(var(--stroke-width) * -0.9239) calc(var(--stroke-width) * 0.3827) 0
      var(--stroke-color),
    calc(var(--stroke-width) * -1) calc(var(--stroke-width) * 0) 0
      var(--stroke-color),
    calc(var(--stroke-width) * -0.9239) calc(var(--stroke-width) * -0.3827) 0
      var(--stroke-color),
    calc(var(--stroke-width) * -0.7071) calc(var(--stroke-width) * -0.7071) 0
      var(--stroke-color),
    calc(var(--stroke-width) * -0.3827) calc(var(--stroke-width) * -0.9239) 0
      var(--stroke-color),
    calc(var(--stroke-width) * 0) calc(var(--stroke-width) * -1) 0
      var(--stroke-color),
    calc(var(--stroke-width) * 0.3827) calc(var(--stroke-width) * -0.9239) 0
      var(--stroke-color),
    calc(var(--stroke-width) * 0.7071) calc(var(--stroke-width) * -0.7071) 0
      var(--stroke-color),
    calc(var(--stroke-width) * 0.9239) calc(var(--stroke-width) * -0.3827) 0
      var(--stroke-color);
}

.c-promo__badge {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  color: #fff;
  font-weight: bold;
  line-height: 1;
  position: absolute;
  top: -52px;
  left: -22px;
  text-align: center;
  width: 98px;
  height: 98px;
  z-index: 0;
}

.c-promo__badge::before {
  background-color: #ff8833;
  -webkit-mask-image: url(../../img/campaign/badge_bg.svg);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: cover;
  mask-image: url(../../img/campaign/badge_bg.svg);
  mask-repeat: no-repeat;
  mask-size: cover;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.c-promo__badge-line01 {
  font-size: 12px;
}

.c-promo__badge-line02 {
  font-size: 20px;
}

.c-promo__details {
  background-color: #fff;
  border-radius: 24px;
  padding: 40px;
  text-align: center;
}

#main .c-promo__details h3,
#main .c-promo__notes h3,
#main .c-special-offers__offer-details h3 {
  background: transparent;
  font-size: 26px;
  border-top: none;
  padding: 5px 10px;
  margin: 0 0 25px;
}

#main .c-promo__details h4,
#main .c-promo__notes h4,
#main .c-special-offers__offer-details h4 {
  padding: 0;
  margin: 0;
  font-size: 16px;
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
}

#main .c-promo__details h4::before,
#main .c-promo__details h4::after,
#main .c-promo__notes h4::before,
#main .c-promo__notes h4::after,
#main .c-special-offers__offer-details h4::before,
#main .c-special-offers__offer-details h4::after {
  content: none;
}

#main .c-promo__details h4 a,
#main .c-promo__notes h4 a,
#main .c-special-offers__offer-details h4 a {
  color: inherit !important;
}

.c-promo__notes {
  margin-top: 16px;
  text-align: center;
}

.c-campaign__btn {
  margin-top: 20px;
}

.c-special-offers {
  background-color: #fdfaeb;
  /* background-image: var(
    --campaign-bg02-sp,
    url(../../img/campaign/campaign_bg02_sp.png)
  );
  background-repeat: repeat;
  background-position: center calc(-20vw * 100 / 430); */
  position: relative;
}

.c-special-offers::before {
  background-color: #fdfaeb;
  /* background-image: var(
    --campaign-bg02-sp,
    url(../../img/campaign/campaign_bg02_sp.png)
  ); */
  background-repeat: repeat;
  background-position: center top;
  -webkit-mask-image: url(../../img/campaign/jagged_sp.svg);
  -webkit-mask-repeat: repeat-x;
  -webkit-mask-position: bottom left;
  mask-image: url(../../img/campaign/jagged_sp.svg);
  mask-repeat: repeat-x;
  mask-position: bottom left;
  content: "";
  position: absolute;
  top: -20px;
  left: 0;
  width: 100%;
  height: 20px;
}

.c-special-offers__wrap {
  padding: 64px 20px 48px;
  position: relative;
}
.c-special-offers__wrap::before {
  background-image: url(../../img/campaign/rp_character.webp);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  content: "";
  position: absolute;
  top: -40px;
  right: -20px;
  width: 155px;
  height: 137px;
}

/* .c-special-offers {
  background-image: var(
    --campaign-bg02,
    url(../../img/campaign/campaign_bg02.png)
  );
  background-position: center -24px;
} */
/* .c-special-offers::before {
  background-image: var(
    --campaign-bg02,
    url(../../img/campaign/campaign_bg02.png)
  );
  -webkit-mask-image: url(../../img/campaign/jagged.svg);
  mask-image: url(../../img/campaign/jagged.svg);
  height: 24px;
  top: -24px;
  content: "";
} */

.c-special-offers__wrap {
  padding: 124px 0 100px;
}
.c-special-offers__wrap::before {
  top: -80px;
  right: 50%;
  transform: translateX(50%);
  margin-right: -560px;
  width: 155px;
  height: 137px;
}
/* .c-special-offers__wrap::after {
  background-image: url(../../img/campaign/character_bg03.png);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  content: "";
  position: absolute;
  right: 50%;
  bottom: -46px;
  transform: translateX(50%);
  margin-right: 608px;
  width: 180px;
  height: 262px;
} */

.c-special-offers__inner {
  margin: 0 auto;
  width: 1000px;
}

.c-special-offers__header {
  position: relative;
  z-index: 1;
}

.c-special-offers__list {
  display: flex;
  flex-direction: column;
  gap: 48px;
  counter-reset: li_count;
  position: relative;
  padding-top: 66px;
  z-index: 0;
}
.c-special-offers__list::before {
  background-image: url(../../img/campaign/rp_character.webp);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  content: "";
  position: absolute;
  top: -58px;
  left: -40px;
  width: 144px;
  height: 128px;
  z-index: -1;
}

.c-special-offers__list {
  display: grid;
  grid-template-columns: repeat(3, 320px);
  gap: 30px 20px;
}
.c-special-offers__list::before {
  top: -109px;
  left: -40px;
  width: 144px;
  height: 128px;
}

.c-special-offers__item {
  position: relative;
}

.c-special-offers__badge {
  background-color: #0fa32b;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  color: #fff;
  font-weight: bold;
  line-height: 1;
  position: absolute;
  top: -52px;
  left: -16px;
  text-align: center;
  width: 86px;
  height: 86px;
  z-index: 0;
}
.c-special-offers__badge::after {
  counter-increment: li_count;
  font-size: 36px;
  content: counter(li_count);
}

.c-special-offers__badge-line01 {
  font-size: 18px;
}

.c-special-offers__offer-details {
  background-color: #fff;
  border-radius: 24px;
  padding: 40px;
}

.c-special-offers__offer-details {
  box-sizing: border-box;
  height: 100%;
}

.c-campaign__footer {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 40px 20px;
}

.c-campaign__footer {
  gap: 120px;
  padding: 80px 0 50px;
}

.c-campaign__footer-title {
  border-bottom: 4px dotted #0fa32b;
  color: #0fa32b;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.3;
  text-align: center;
  padding: 0 72px 16px;
  margin: 0 0 20px;
  position: relative;
}
.c-campaign__footer-title::before {
  background-image: url(../../img/campaign/rp_character.webp);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 120px;
  height: 106px;
}

.c-campaign__footer-title::after {
  background-image: url(../../img/campaign/rp_character.webp);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 120px;
  height: 106px;
}

.c-campaign__footer-title {
  font-size: 32px;
  padding: 0 72px 16px;
  margin: 0 0 40px;
}
.c-campaign__footer-title::before {
  left: 10px;
  width: 120px;
  height: 106px;
}
.c-campaign__footer-title::after {
  right: 10px;
  width: 120px;
  height: 106px;
}

.c-campaign__footer-description {
  text-align: center;
}

.c-campaign__footer-description .form {
  text-align: left;
}

.c-campaign__footer-content {
  margin: 0 auto;
  width: 1000px;
}

.c-showroom {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.c-showroom__location {
  background-color: #fff7e9;
  border-radius: 24px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: calc((100% / 2) - 15px);
  box-sizing: border-box;
}

.c-showroom__name {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}

.c-showroom__image {
  width: 100%;
  height: 250px;
}
.c-showroom__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c-showroom__address {
  font-size: 16px;
  line-height: 1.8;
}

.c-showroom__location iframe {
  width: 100%;
  height: 230px;
}

.c-showroom__btn {
  width: 450px;
  margin-inline: auto;
}

#campaign #contents.clearfix {
  margin-bottom: 0;
  width: auto;
}

.c-campaign__form {
  padding-bottom: 60px;
  background-image: url(../../img/campaign/top_topics_bg.png);
  background-position: center;
  background-repeat: repeat;
}

.c-campaign__form #form {
  padding: 0;
}

.c-campaign__form .inner {
  padding: 0;
}

.a-btn__link {
  background-color: #004ea2;
  border-radius: calc(100vw * 100 / 430);
  box-shadow: 0 calc(4vw * 100 / 430) 0 #0b1244;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: calc(26vw * 100 / 430);
  font-weight: bold;
  line-height: 1.3;
  padding: calc(12vw * 100 / 430) calc(16vw * 100 / 430);
  position: relative;
  text-align: center;
  min-height: calc(50vw * 100 / 430);
}
.a-btn__link:link,
.a-btn__link:visited {
  color: #fff !important;
  text-decoration: none !important;
}
.a-btn__link::before {
  background-color: #fff;
  -webkit-mask-image: url(../../img/campaign/btn_arrow.svg);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: cover;
  mask-image: url(../../img/campaign/btn_arrow.svg);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: cover;
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: calc(16vw * 100 / 430);
  width: calc(50vw * 100 / 430);
  height: calc(50vw * 100 / 430);
}
.a-btn__link.is-white {
  background-color: #fff;
  box-shadow: 0 calc(4vw * 100 / 430) 0 #c2c2c2;
}
.a-btn__link.is-white:link,
.a-btn__link.is-white:visited {
  color: #004ea2;
}
.a-btn__link.is-white::before {
  background-color: #004ea2;
}
.a-btn__link.c-showroom__link {
  background-color: #8fc320;
  font-size: calc(20vw * 100 / 430);
  padding-left: calc(42vw * 100 / 430);
  box-shadow: 0 5px 0 0 rgba(255, 255, 255, 0.3) inset;
}
.a-btn__link.c-orange__link {
  background-color: #8fc320;
  box-shadow: 0 5px 0 0 rgba(255, 255, 255, 0.3) inset;
}

.a-btn__text {
  display: block;
  font-size: calc(16em / 26);
}

.a-btn__link {
  border-radius: 100px;
  box-shadow: 0 4px 0 #0b1244;
  flex-direction: row;
  font-size: 26px;
  padding: 0 48px;
  padding-left: 82px;
  min-height: 72px;
  margin: 0 auto;
  width: max-content;
}
.a-btn__link::before {
  left: 16px;
  width: 50px;
  height: 50px;
}
.a-btn__link.is-white {
  box-shadow: 0 4px 0 #c2c2c2;
}
.a-btn__link.c-showroom__link {
  display: inline-flex !important;
  font-size: 16px;
  padding-left: 42px;
  padding-right: 0;
  box-shadow: 0 5px 0 0 rgba(255, 255, 255, 0.3) inset;
  width: 100%;
  box-sizing: border-box;
  word-break: keep-all;
}
.a-btn__link.c-orange__link {
  box-shadow: 0 5px 0 0 rgba(255, 255, 255, 0.3) inset;
}

.a-btn__text {
  display: inline;
  font-size: 26px;
}

@media (hover: hover) {
  .a-btn__link {
    transition: 0.25s ease;
  }
  .a-btn__link:hover {
    background-color: #485085;
    box-shadow: 0 5px 0 0 rgba(255, 255, 255, 0.3) inset;
    color: #fff !important;
    transform: translateY(2px);
  }
  .a-btn__link.is-white::before {
    transition: 0.25s ease;
  }
  .a-btn__link.is-white:hover {
    background-color: #e9eaf0;
    box-shadow: 0 2px 0 #c2c2c2;
    color: #004ea2 !important;
  }
  .a-btn__link.is-white:hover::before {
    background-color: #004ea2;
  }
  .a-btn__link.c-showroom__link:hover {
    opacity: 1 !important;
    background-color: #81b11c;
    box-shadow: 0 5px 0 0 rgba(255, 255, 255, 0.3) inset;
  }
  .a-btn__link.c-orange__link:hover {
    opacity: 1 !important;
    background-color: #81b11c;
    box-shadow: 0 5px 0 0 rgba(255, 255, 255, 0.3) inset;
  }
}
.a-campaign-btn__link {
  background-color: #ff8833;
  border-radius: calc(100vw * 100 / 430);
  box-shadow: 0 5px 0 0 rgba(255, 255, 255, 0.3) inset;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: calc(26vw * 100 / 430);
  font-weight: bold;
  line-height: 1.3;
  letter-spacing: -0.05em;
  padding: calc(16vw * 100 / 430) calc(24vw * 100 / 430) calc(16vw * 100 / 430)
    calc(100vw * 100 / 430);
  position: relative;
  text-align: center;
  min-height: calc(50vw * 100 / 430);
}
.a-campaign-btn__link:link,
.a-campaign-btn__link:visited {
  color: #fff !important;
  text-decoration: none !important;
}
.a-campaign-btn__link::before {
  background-image: url(../../img/campaign/rp_character.webp);
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: contain;
  content: "";
  display: block;
  position: absolute;
  left: calc(8vw * 100 / 430);
  bottom: 0;
  width: calc(104vw * 100 / 430);
  height: calc(94vw * 100 / 430);
}
.a-campaign-btn__link.c-campaign-btn02::before {
  background-image: url(../../img/campaign/rp_character.webp);
}

.a-campaign-btn__link {
  display: flex !important;
  border-radius: 100px;
  box-shadow: 0 5px 0 0 rgba(255, 255, 255, 0.3) inset;
  flex-direction: row;
  font-size: 30px;
  padding: 0 24px;
  padding-left: 100px;
  min-height: 104px;
  margin: 0 auto;
  width: 520px;
  box-sizing: border-box;
}
.a-campaign-btn__link::before {
  left: 24px;
  width: 108px;
  height: 96px;
}

@media (hover: hover) {
  .a-campaign-btn__link {
    transition: 0.25s ease;
  }
  .a-campaign-btn__link:hover {
    opacity: 1 !important;
    background-color: #da742c;
    box-shadow: 0 5px 0 0 rgba(255, 255, 255, 0.3) inset;
    color: #fff !important;
    transform: translateY(2px);
  }
}

.main .formBox .submit {
  background-color: transparent;
}

#form ul {
  margin-bottom: 0;
}
