@charset "UTF-8";
/* import */
/*****STANDART CSS******/
:root {
  --view-size: 375;
}

/* -----------------------------------
common：基本
----------------------------------- */
abbr, acronym, address, applet, article, aside, audio, b, big, blockquote, body, canvas, caption, center, cite, code, dd, del, details, dfn, div, dl, dt, em, embed, fieldset, figcaption, figure, footer, form, h1, h2, h3, h4, h5, h6, header, hgroup, html, i, iframe, img, ins, kbd, label, legend, li, mark, menu, nav, object, ol, output, p, pre, q, ruby, s, samp, section, small, span, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, time, tr, tt, u, ul, var,
video {
  margin: 0;
}

html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  font-size: 16px;
  /******SMOOTH SCROLL ANCHOR******/
}

/*****STANDART CSS******/
/* ---------common--------- */
body {
  color: #707070;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
  line-height: 1;
}

b {
  font-weight: normal;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

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

a {
  transition: 0.3s;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
a:hover {
  opacity: 0.7;
}

/* 768px以下では電話発信のリンクを無効化する */
@media (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
/* inner関係 */
.content_width {
  width: 100%;
  max-width: 750px;
  overflow: hidden;
  margin: 0 auto;
}

/* -----------------------------------
common：flex
----------------------------------- */
.row {
  display: flex;
  flex-wrap: wrap;
}

.between {
  justify-content: space-between;
}

.align_start {
  align-items: flex-start;
}

.align_center {
  align-items: center;
}

.align_end {
  align-items: flex-end;
}

.flex_center {
  justify-content: center;
}

.flex_start {
  justify-content: flex-start;
}

.flex_end {
  justify-content: flex-end;
}

.stretch {
  align-items: stretch;
}

.reverse {
  flex-direction: row-reverse;
}

/* -----------------------------------
common：position
----------------------------------- */
.fixed {
  position: fixed;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

/* -----------------------------------
ヘッダー：ヘッダー
----------------------------------- */
.header {
  width: 100%;
  height: 96px;
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  background-color: #fff;
}
@media (max-width: 750px) {
  .header {
    height: calc(48 / var(--view-size) * 100vw);
  }
}

.header .content_width {
  padding-top: 5px;
  padding-left: 9px;
  padding-right: 19px;
}
@media (max-width: 750px) {
  .header .content_width {
    padding-top: calc(5 / var(--view-size) * 100vw);
    padding-left: calc(9 / var(--view-size) * 100vw);
    padding-right: calc(19 / var(--view-size) * 100vw);
  }
}

.header_ttl {
  width: 172px;
  line-height: 0;
}
@media (max-width: 750px) {
  .header_ttl {
    width: calc(86 / var(--view-size) * 100vw);
  }
}

.header_link {
  padding: 5px 12px;
  border-radius: 10px;
  background-color: #6F9E5D;
}
@media (max-width: 750px) {
  .header_link {
    border-radius: calc(10 / var(--view-size) * 100vw);
    padding: calc(5 / var(--view-size) * 100vw) calc(12 / var(--view-size) * 100vw);
  }
}

.header_link a {
  display: block;
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  text-align: center;
}
@media (max-width: 750px) {
  .header_link a {
    font-size: calc(14 / var(--view-size) * 100vw);
  }
}

/* -----------------------------------
フッター：
----------------------------------- */
.footer .content_width {
  background-color: #5C9F55;
  padding: 28px 0 12px;
}
@media (max-width: 750px) {
  .footer .content_width {
    padding: calc(14 / var(--view-size) * 100vw) 0 calc(6 / var(--view-size) * 100vw);
  }
}

.footer_nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer_nav ul li:not(:first-of-type) {
  margin-left: 60px;
}
@media (max-width: 750px) {
  .footer_nav ul li:not(:first-of-type) {
    margin-left: calc(30 / var(--view-size) * 100vw);
  }
}

.footer_nav ul li a {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
}
@media (max-width: 750px) {
  .footer_nav ul li a {
    font-size: calc(8 / var(--view-size) * 100vw);
  }
}

.copy {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  text-align: center;
  margin-top: 14px;
}
@media (max-width: 750px) {
  .copy {
    font-size: calc(8 / var(--view-size) * 100vw);
    margin-top: calc(7 / var(--view-size) * 100vw);
  }
}

/* 左からフェードイン */
.leftin {
  opacity: 0;
  transform: translateX(-10%);
}
.leftin.active {
  animation: 0.8s forwards leftin;
}

.leftin2 {
  opacity: 0;
  transform: translateX(-10%);
}
.leftin2.active {
  animation: 0.8s forwards 0.2s leftin;
}

.leftin3 {
  opacity: 0;
  transform: translateX(-10%);
}
.leftin3.active {
  animation: 0.8s forwards 0.4s leftin;
}

.leftin4 {
  opacity: 0;
  transform: translateX(-10%);
}
.leftin4.active {
  animation: 0.8s forwards 0.6s leftin;
}

/* 右からフェードイン */
.rightin {
  opacity: 0;
  transform: translateX(10%);
}
.rightin.active {
  animation: 0.8s forwards rightin;
}

.rightin2 {
  opacity: 0;
  transform: translateX(10%);
}
.rightin2.active {
  animation: 0.8s forwards 0.2s rightin;
}

.rightin3 {
  opacity: 0;
  transform: translateX(10%);
}
.rightin3.active {
  animation: 0.8s forwards 0.4s rightin;
}

.rightin4 {
  opacity: 0;
  transform: translateX(10%);
}
.rightin4.active {
  animation: 0.8s forwards 0.6s rightin;
}

/* 上からフェードイン */
.topin1 {
  opacity: 0;
  transform: translateY(5%);
}
.topin1.active {
  animation: 0.8s forwards topin;
}

.topin2 {
  opacity: 0;
  transform: translateY(5%);
}
.topin2.active {
  animation: 0.8s forwards 0.2s topin;
}

.topin3 {
  opacity: 0;
  transform: translateY(5%);
}
.topin3.active {
  animation: 0.8s forwards 0.4s topin;
}

.topin4 {
  opacity: 0;
  transform: translateY(5%);
}
.topin4.active {
  animation: 0.8s forwards 0.6s topin;
}

.topin5 {
  opacity: 0;
  transform: translateY(5%);
}
.topin5.active {
  animation: 0.8s forwards 0.8s topin;
}

/* 下からフェードイン */
.bottomin1 {
  opacity: 0;
  transform: translateY(-5%);
}
.bottomin1.active {
  animation: 0.8s forwards bottomin;
}

.bottomin2 {
  opacity: 0;
  transform: translateY(-5%);
}
.bottomin2.active {
  animation: 0.8s forwards 0.2s bottomin;
}

.bottomin3 {
  opacity: 0;
  transform: translateY(-5%);
}
.bottomin3.active {
  animation: 0.8s forwards 0.4s bottomin;
}

.bottomin4 {
  opacity: 0;
  transform: translateY(-5%);
}
.bottomin4.active {
  animation: 0.8s forwards 0.6s bottomin;
}

.bottomin5 {
  opacity: 0;
  transform: translateY(-5%);
}
.bottomin5.active {
  animation: 0.8s forwards 0.8s bottomin;
}

.scroll-infinity__list--left {
  animation: infinity-scroll-left 80s infinite linear 0.5s both;
}

.scroll-infinity__list--right {
  animation: infinity-scroll-right 80s infinite linear 0.5s both;
}

/* 左からフェードイン */
@keyframes leftin {
  0% {
    opacity: 0;
    transform: translateX(-10%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
/* 右からフェードイン */
@keyframes rightin {
  0% {
    opacity: 0;
    transform: translateX(10%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
/* 上からフェードイン */
@keyframes topin {
  0% {
    opacity: 0;
    transform: translateY(-5%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* 下からフェードイン */
@keyframes bottomin {
  0% {
    opacity: 0;
    transform: translateY(5%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* 無限に横スクロール */
@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes infinity-scroll-right {
  from {
    transform: translateX(-100);
  }
  to {
    transform: translateX(0%);
  }
}
/* -----------------------------------
FV
----------------------------------- */
.fv {
  padding-top: 96px;
}
@media (max-width: 750px) {
  .fv {
    padding-top: calc(48 / var(--view-size) * 100vw);
  }
}

/* -----------------------------------
Bar-Findとは？
----------------------------------- */
.cont .content_width {
  background-color: #6F9E5D;
  padding: 0 36px;
  padding-top: 22px;
  padding-bottom: 70px;
}
@media (max-width: 750px) {
  .cont .content_width {
    padding: 0 calc(18 / var(--view-size) * 100vw);
    padding-top: calc(11 / var(--view-size) * 100vw);
    padding-bottom: calc(35 / var(--view-size) * 100vw);
  }
}

.cont_ttl {
  background-color: #fff;
  border-radius: 40px;
  padding: 32px 0 28px;
  text-align: center;
}
@media (max-width: 750px) {
  .cont_ttl {
    border-radius: calc(20 / var(--view-size) * 100vw);
    padding: calc(16 / var(--view-size) * 100vw) 0 calc(14 / var(--view-size) * 100vw);
  }
}

.cont_ttl h2 {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cont_ttl h2 span {
  width: 394px;
}
@media (max-width: 750px) {
  .cont_ttl h2 span {
    width: calc(197 / var(--view-size) * 100vw);
  }
}

.cont_ttl h2 b {
  font-size: 40px;
  font-weight: 700;
  padding-top: 22px;
  margin-left: -15px;
}
@media (max-width: 750px) {
  .cont_ttl h2 b {
    font-size: calc(20 / var(--view-size) * 100vw);
    padding-top: calc(11 / var(--view-size) * 100vw);
    margin-left: calc(-7.5 / var(--view-size) * 100vw);
  }
}

.cont_ttl p {
  font-size: 32px;
  line-height: 1.48;
  margin-top: -6px;
}
@media (max-width: 750px) {
  .cont_ttl p {
    font-size: calc(16 / var(--view-size) * 100vw);
    margin-top: calc(-3 / var(--view-size) * 100vw);
  }
}

.color_red {
  color: #FF5B5B;
}

.cont_point {
  margin-top: 20px;
}
@media (max-width: 750px) {
  .cont_point {
    margin-top: calc(10 / var(--view-size) * 100vw);
  }
}

.cont_point_list {
  display: flex;
  flex-direction: column;
  row-gap: 40px;
}
@media (max-width: 750px) {
  .cont_point_list {
    row-gap: calc(20 / var(--view-size) * 100vw);
  }
}

.point_list_item {
  background-color: #fff;
  border-radius: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 26px 34px 40px;
}
@media (max-width: 750px) {
  .point_list_item {
    border-radius: calc(20 / var(--view-size) * 100vw);
    padding: calc(13 / var(--view-size) * 100vw) calc(17 / var(--view-size) * 100vw) calc(20 / var(--view-size) * 100vw);
  }
}

.list_item_ttl {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.list_item_ttl b {
  width: 156px;
  height: 46px;
  background-color: #E0365E;
  border-radius: 14px;
  font-size: 32px;
  font-weight: 500;
  color: #fff;
  text-align: center;
}
@media (max-width: 750px) {
  .list_item_ttl b {
    width: calc(78 / var(--view-size) * 100vw);
    height: calc(23 / var(--view-size) * 100vw);
    font-size: calc(16 / var(--view-size) * 100vw);
    border-radius: calc(7 / var(--view-size) * 100vw);
  }
}

.list_item_ttl span {
  font-size: 50px;
  font-weight: 700;
  line-height: 1.44;
  color: #428E1F;
  text-align: center;
  margin-top: 5px;
}
@media (max-width: 750px) {
  .list_item_ttl span {
    font-size: calc(25 / var(--view-size) * 100vw);
    margin-top: calc(5 / var(--view-size) * 100vw);
  }
}

.list_item_img {
  width: 350px;
  margin-top: 6px;
}
@media (max-width: 750px) {
  .list_item_img {
    width: calc(175 / var(--view-size) * 100vw);
    margin-top: calc(3 / var(--view-size) * 100vw);
  }
}

.list_item_txt {
  font-size: 32px;
  font-weight: 500;
  line-height: 1.5;
  margin-top: 22px;
}
@media (max-width: 750px) {
  .list_item_txt {
    font-size: calc(16 / var(--view-size) * 100vw);
    margin-top: calc(11 / var(--view-size) * 100vw);
  }
}

.point_list_item:nth-child(2) .list_item_ttl span {
  margin-top: 34px;
}
@media (max-width: 750px) {
  .point_list_item:nth-child(2) .list_item_ttl span {
    margin-top: calc(17 / var(--view-size) * 100vw);
  }
}
.point_list_item:nth-child(2) .list_item_img {
  width: 488px;
  margin-top: 6px;
}
@media (max-width: 750px) {
  .point_list_item:nth-child(2) .list_item_img {
    width: calc(244 / var(--view-size) * 100vw);
    margin-top: calc(3 / var(--view-size) * 100vw);
  }
}
.point_list_item:nth-child(2) .list_item_txt {
  margin-top: 12px;
}
@media (max-width: 750px) {
  .point_list_item:nth-child(2) .list_item_txt {
    margin-top: calc(6 / var(--view-size) * 100vw);
  }
}

.point_list_item:nth-child(3) {
  padding: 26px 34px 84px;
}
@media (max-width: 750px) {
  .point_list_item:nth-child(3) {
    padding: calc(13 / var(--view-size) * 100vw) calc(17 / var(--view-size) * 100vw) calc(42 / var(--view-size) * 100vw);
  }
}
.point_list_item:nth-child(3) .list_item_ttl span {
  margin-top: 30px;
}
@media (max-width: 750px) {
  .point_list_item:nth-child(3) .list_item_ttl span {
    margin-top: calc(15 / var(--view-size) * 100vw);
  }
}
.point_list_item:nth-child(3) .list_item_img {
  width: 394px;
  margin-top: 20px;
}
@media (max-width: 750px) {
  .point_list_item:nth-child(3) .list_item_img {
    width: calc(197 / var(--view-size) * 100vw);
    margin-top: calc(10 / var(--view-size) * 100vw);
  }
}

.cont_five {
  margin-top: 74px;
}
@media (max-width: 750px) {
  .cont_five {
    margin-top: calc(37 / var(--view-size) * 100vw);
  }
}

.cont_five_ttl {
  position: relative;
  background-color: #fff;
  border-radius: 46px;
  padding: 40px 0 52px;
  text-align: center;
}
@media (max-width: 750px) {
  .cont_five_ttl {
    border-radius: calc(23 / var(--view-size) * 100vw);
    padding: calc(20 / var(--view-size) * 100vw) 0 calc(26 / var(--view-size) * 100vw);
  }
}

.cont_five_ttl span {
  display: block;
  width: 500px;
  margin-inline: auto;
}
@media (max-width: 750px) {
  .cont_five_ttl span {
    width: calc(250 / var(--view-size) * 100vw);
  }
}

.cont_five_ttl span::after {
  content: "";
  position: absolute;
  bottom: -17%;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-color: #ffffff transparent transparent transparent;
  border-width: 104px 60px 0px 60px;
}
@media (max-width: 750px) {
  .cont_five_ttl span::after {
    border-width: calc(52 / var(--view-size) * 100vw) calc(30 / var(--view-size) * 100vw) 0 calc(30 / var(--view-size) * 100vw);
  }
}

.cont_five_box {
  margin-top: 84px;
}
@media (max-width: 750px) {
  .cont_five_box {
    margin-top: calc(42 / var(--view-size) * 100vw);
  }
}

.five_box_ttl {
  background-color: #fff;
  background-image: url("../images/cont-img06-1.png");
  background-position: 27px 38px;
  background-size: 122px 97px;
  text-align: center;
  padding: 52px 0 40px 151px;
  border-radius: 20px;
}
@media (max-width: 750px) {
  .five_box_ttl {
    background-position: calc(14 / var(--view-size) * 100vw) calc(19 / var(--view-size) * 100vw);
    background-size: calc(61 / var(--view-size) * 100vw) calc(49 / var(--view-size) * 100vw);
    padding: calc(26 / var(--view-size) * 100vw) 0 calc(20 / var(--view-size) * 100vw) calc(75 / var(--view-size) * 100vw);
    border-radius: calc(10 / var(--view-size) * 100vw);
  }
}

.five_box_ttl b {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: #EB2353;
}
@media (max-width: 750px) {
  .five_box_ttl b {
    font-size: calc(12 / var(--view-size) * 100vw);
  }
}

.five_box_ttl span {
  display: block;
  font-size: 32px;
  font-weight: 700;
  margin-top: 16px;
}
@media (max-width: 750px) {
  .five_box_ttl span {
    font-size: calc(16 / var(--view-size) * 100vw);
    margin-top: calc(8 / var(--view-size) * 100vw);
  }
}

.five_box_list {
  row-gap: 10px;
  margin-top: 10px;
}
@media (max-width: 750px) {
  .five_box_list {
    row-gap: calc(5 / var(--view-size) * 100vw);
    margin-top: calc(5 / var(--view-size) * 100vw);
  }
}

.box_list_item {
  background-image: url("../images/cont-img06-2.png");
  background-size: 94px 94px;
  background-position: center top 20px;
  width: calc((100% - 10px) / 2);
  height: 292px;
  background-color: #fff;
  border-radius: 20px;
  padding-top: 108px;
  text-align: center;
}
@media (max-width: 750px) {
  .box_list_item {
    background-size: calc(47 / var(--view-size) * 100vw) calc(47 / var(--view-size) * 100vw);
    background-position: center top calc(10 / var(--view-size) * 100vw);
    width: calc((100% - 5 / var(--view-size) * 100vw) / 2);
    height: calc(146 / var(--view-size) * 100vw);
    border-radius: calc(10 / var(--view-size) * 100vw);
    padding-top: calc(54 / var(--view-size) * 100vw);
  }
}

.box_list_item:nth-child(2) {
  background-image: url("../images/cont-img06-3.png");
  background-size: 105px 105px;
  background-position: center 10px;
}
@media (max-width: 750px) {
  .box_list_item:nth-child(2) {
    background-size: calc(52 / var(--view-size) * 100vw) calc(52 / var(--view-size) * 100vw);
    background-position: center top calc(5 / var(--view-size) * 100vw);
  }
}

.box_list_item:nth-child(3) {
  background-image: url("../images/cont-img06-4.png");
  background-size: 98px 98px;
  background-position: center top 10px;
}
@media (max-width: 750px) {
  .box_list_item:nth-child(3) {
    background-size: calc(49 / var(--view-size) * 100vw) calc(49 / var(--view-size) * 100vw);
    background-position: center top calc(5 / var(--view-size) * 100vw);
  }
}

.box_list_item:nth-child(4) {
  background-image: url("../images/cont-img06-5.png");
  background-size: 82px 82px;
  background-position: center top 16px;
}
@media (max-width: 750px) {
  .box_list_item:nth-child(4) {
    background-size: calc(41 / var(--view-size) * 100vw) calc(41 / var(--view-size) * 100vw);
    background-position: center top calc(8 / var(--view-size) * 100vw);
  }
}

.box_list_ttl {
  font-size: 24px;
  font-weight: 700;
  color: #EB2353;
  margin-top: 8px;
}
@media (max-width: 750px) {
  .box_list_ttl {
    font-size: calc(12 / var(--view-size) * 100vw);
    margin-top: calc(4 / var(--view-size) * 100vw);
  }
}

.box_list_txt {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.4615384615;
  margin-top: 16px;
}
@media (max-width: 750px) {
  .box_list_txt {
    font-size: calc(13 / var(--view-size) * 100vw);
    margin-top: calc(8 / var(--view-size) * 100vw);
  }
}

/* -----------------------------------
キャンペーン
----------------------------------- */
.campaign .content_width {
  padding-bottom: 56px;
}
@media (max-width: 750px) {
  .campaign .content_width {
    padding-bottom: calc(28 / var(--view-size) * 100vw);
  }
}

.memorial {
  background-color: #FFF8DB;
  padding: 38px 0 106px;
}
@media (max-width: 750px) {
  .memorial {
    padding: calc(19 / var(--view-size) * 100vw) 0 calc(53 / var(--view-size) * 100vw);
  }
}

.memorial_ttl span {
  display: block;
  width: 678px;
  margin-inline: auto;
}
@media (max-width: 750px) {
  .memorial_ttl span {
    width: calc(339 / var(--view-size) * 100vw);
  }
}

.step {
  margin-top: 44px;
}
@media (max-width: 750px) {
  .step {
    margin-top: calc(22 / var(--view-size) * 100vw);
  }
}

.step_item:not(:first-of-type) {
  margin-top: 42px;
}
@media (max-width: 750px) {
  .step_item:not(:first-of-type) {
    margin-top: calc(21 / var(--view-size) * 100vw);
  }
}

.step_ttl {
  display: inline-block;
  font-size: 28px;
  font-weight: 700;
  padding-left: 100px;
}
@media (max-width: 750px) {
  .step_ttl {
    font-size: calc(14 / var(--view-size) * 100vw);
    padding-left: calc(50 / var(--view-size) * 100vw);
  }
}

.step_ttl::after {
  content: "";
  position: absolute;
  top: 32%;
  right: -45%;
  transform: translateY(-50%);
  background-image: url("../images/step-01.png");
  background-size: cover;
  background-position: center center;
  width: 86px;
  height: 86px;
}
@media (max-width: 750px) {
  .step_ttl::after {
    width: calc(43 / var(--view-size) * 100vw);
    height: calc(43 / var(--view-size) * 100vw);
  }
}

.step_item:nth-of-type(2) .step_ttl::after {
  top: 55%;
  right: -44%;
  background-image: url("../images/step-02.png");
  width: 82px;
  height: 82px;
}
@media (max-width: 750px) {
  .step_item:nth-of-type(2) .step_ttl::after {
    width: calc(41 / var(--view-size) * 100vw);
    height: calc(41 / var(--view-size) * 100vw);
  }
}

.step_item:nth-of-type(3) .step_ttl::after {
  top: 35%;
  right: -41%;
  background-image: url("../images/step-03.png");
  width: 68px;
  height: 68px;
}
@media (max-width: 750px) {
  .step_item:nth-of-type(3) .step_ttl::after {
    width: calc(34 / var(--view-size) * 100vw);
    height: calc(34 / var(--view-size) * 100vw);
  }
}

.step_txt {
  display: inline-block;
  width: 694px;
  background-color: #FFF8DB;
  font-size: 24px;
  font-weight: 700;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 100px;
  margin-top: 10px;
}
@media (max-width: 750px) {
  .step_txt {
    width: calc(347 / var(--view-size) * 100vw);
    font-size: calc(12 / var(--view-size) * 100vw);
    padding-top: calc(4 / var(--view-size) * 100vw);
    padding-bottom: calc(4 / var(--view-size) * 100vw);
    padding-left: calc(47 / var(--view-size) * 100vw);
  }
}

.campaign_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #6F9E5D;
  box-shadow: 0 12px 12px #5E5E5E;
  width: 402px;
  height: 126px;
  border-radius: 28px;
  margin-inline: auto;
  margin-top: 104px;
}
@media (max-width: 750px) {
  .campaign_btn {
    box-shadow: 0 calc(6 / var(--view-size) * 100vw) calc(6 / var(--view-size) * 100vw) #5E5E5E;
    width: calc(201 / var(--view-size) * 100vw);
    height: calc(63 / var(--view-size) * 100vw);
    border-radius: calc(14 / var(--view-size) * 100vw);
    margin-top: calc(52 / var(--view-size) * 100vw);
  }
}

.campaign_btn a {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
}
@media (max-width: 750px) {
  .campaign_btn a {
    font-size: calc(24 / var(--view-size) * 100vw);
  }
}/*# sourceMappingURL=style.css.map */