/*基本*/

html,
body {
  height: 100%; /*高さを100%にして描画エリアをとる*/
}

body {
  margin: 0;
  font-family: "Noto Sans JP", "Yu Gothic",
    sans-serif;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  font-size: 12px;
  color: #333333;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
figure {
  margin: 0;
}

img,
picture {
  max-width: 100%;
}

a {
  text-decoration: none;
  color: #666666;
}

.w100 {
  width: 100%;
}

.lh18 {
  line-height: 1.8em;
}

/*横幅*/

.main {
  margin: auto auto;
}
/*SmartNewsロゴ*/

.sn_logo {
  margin: 5px auto;
  width: 57%;
}
/*ヒーローコンテンツ*/

.hero {
  /* 方眼紙模様に必須のスタイル */
  background-image: linear-gradient(
      0deg,
      transparent calc(100% - 1px),
      #f0f0f0 calc(100% - 1px)
    ),
    linear-gradient(
      90deg,
      transparent calc(100% - 1px),
      #f0f0f0 calc(100% - 1px)
    );
  background-size: 16px 16px;
  background-repeat: repeat;
  background-position: center center;
}

.hero img {
  width: 100%;
}


/*画像ダウンロード*/

.relative {
  position: relative;
}

.absolute01 {
  position: absolute;
  bottom: clamp(109px,34vw,264px);
  left: 0;
  right: 0;
  margin: auto;
}

.absolute02 {
  position: absolute;
  bottom: 
  clamp(39px,12vw,100px);
  left: 0;
  right: 0;
  margin: auto;
}
/*ボタン*/

.cva {
  width: 80%;
  margin: auto;
  animation: poyopoyo 2s ease-out infinite;
  opacity: 1;
}
@keyframes poyopoyo {
  0%,
  40%,
  60%,
  80% {
    transform: scale(1);
  }
  50%,
  70% {
    transform: scale(0.95);
  }
}


/*シェア*/

.share {
  margin-top: 30px;
}

.s_relative {
  position: relative;
}



.sns {
  background-color: #fff;
  border-radius: 90px;
  position: absolute;
  bottom: 
  clamp(24px,6vw,138px);
  left: 0;
  right: 0;
  margin: auto;
  width: 80%;
}


.wrapper{
  display: -webkit-flex;
  display: flex;
  flex-direction: row;            /*横並び・左から右（デフォルト）*/
  justify-content: space-evenly;
  align-items: center;
  margin: 1.5em 0em;
}

.element{
  width: 15%;
}

/*キャンペーン詳細*/

.details {
  padding: 40px 30px;
}

h1 {
  text-align: center;
  font-weight: bold;
  font-size: 2.5em;
  margin-bottom: 20px;
}

h3 {
  font-size: 1.5em;
  margin: 10px 0;
} 

ul {
}

li {
  list-style: disc;
}

.copy{
	font-size: 1.2rem;
	padding: 20px 0 20px 0;
	text-align: center;
}


/*横幅768px以上*/

@media screen and (min-width: 768px) {
  .main {
    width: 768px;
    margin: 0 auto;
  }

  .display-sp {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .display-sp {
    display: block;
  }

  .display-pc {
    display: none;
  }
}

.ririm {
  color: #EF6F94;
}

.ex {
  color: #5C9BBC;
}

.rena {
  color: #f7265a;
}