/* =====================
   リセット
===================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* =====================
   ベース
===================== */
body {
  background: #f5f5f5;
  font-family: "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  color: #333;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* =====================
   LP全体
===================== */
.lp-wrap {
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
  background: #fff;
  overflow: hidden;
}




/* =====================
   FV画像
===================== */
.FV {
  width: 100%;
  height: auto;
  display: block;
}

/* =====================
   テキスト共通
===================== */
.text-wrap {
  max-width: 600px;
  width: 95%;
  margin: 0 auto;
  text-align: center;
}

.margin {
  margin: 30px 0;
}

h1 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
}

h1.text-md {
  font-size: 23px
}

h2 {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.4;
}

h3 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
}

p {
  font-size: 18px;
  line-height: 1.6;
  margin: 15px 0;
}

.annotation {
  font-size: 10px;
  line-height: 1.4;
  margin: 10px 0;
  color: #666;
  text-align: left;
}

/* =====================
   強調系
===================== */
.red {
  color: #e50012;
}

.friend {
  font-size: 32px;
  line-height: 1.2;
  color: #e50012;
  background: linear-gradient(transparent 60%, #fff176 60%);
  display: inline-block;
  padding: 0 5px;
  margin: 10px 0;
}

h3.redtitle {
  font-size: 35px;
  color: #e50012;
  line-height: 1.2;
  margin: 15px 0;
}

/* =====================
   リスト
===================== */
.list,
.check-list {
  padding: 16px;
  list-style: none;
  display: inline-block;
  text-align: left;
}

.list li,
.check-list li {
  font-size: 28px;
  font-weight: 600;
  position: relative;
  padding-left: 34px;
  margin-bottom: 10px;
}

/* チェックボックス */
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 18px;
  height: 18px;
  border: 2.5px solid #000;
  background: #fff;
}

.check-list li::after {
  content: "✔";
  position: absolute;
  left: 2.5px;
  top: -1px;
  color: red;
  font-size: 18px;
  font-weight: bold;
}

/* =====================
   超進化
===================== */
.text-wrap h3 {
  line-height: 1.2;
}

.evolution {
  font-size: 3em;
  color: #e50012;
  display: inline-block;
  position: relative;
  text-shadow: 2px 2px 0px #fff, 4px 4px 0px rgba(229, 0, 18, 0.2);
}

/* =====================
   矢印
===================== */
.arrow {
  font-size: 40px;
  font-weight: 700;
  color: #e50012;
  text-align: center;
  margin: 30px 0;
  display: block;
  animation: bounce 1.5s infinite;
}

/* =====================
   画像
===================== */
.content {
  width: 100%;
  margin: 10px auto;
}


/* =====================
   アンケートエリア
===================== */
.area {
  max-width: 600px;
  width: 100%;
  margin: 40px auto;
  position: relative;
}

.base {
  width: 100%;
}

.btn-group {
  position: absolute;
  width: 100%;
  left: 0;
}

.btn {
  width: 80%;
  margin: 1% auto;
  cursor: pointer;
  transition: 0.2s;
}

.btn:hover {
  opacity: 0.8;
  transform: scale(1.02);
}

.btn.active {
  outline: 3px solid #ffba59;
  outline-offset: -5px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(179, 146, 0, 0.6);
  transform: scale(1.05);
  position: relative;
  z-index: 10;
}

/* 位置調整 */
.group1 {
  top: 23%;
}

.group2 {
  top: 53.6%;
}

.group3 {
  top: 93%;
}

/* =====================
   CTA
===================== */
.cta-btn {
  display: block;
  text-decoration: none;
  margin: 20px 0;
}

.bounce {
  animation: bounce 1.5s infinite;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* =====================
   フッター
===================== */
.footer {
  padding: 40px 0;
  border-top: 1px solid #eee;
  margin-top: 40px;
}

.footer div {
  margin-bottom: 10px;
}

/* =====================
   補助
===================== */
.pc-only {
  display: inline;
}

.sp-only {
  display: none;
}

/* =====================
   画像重ね
===================== */
.image-wrap {
  position: relative;
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
}

.base-img {
  width: 100%;
}

.overlay-img {
  position: absolute;
  top: 72%;
  left: 87.5%;
  width: 73%;
  transform: translate(-100%);
}

/* =====================
   空白
===================== */
.section {
  margin-top: 70px;
  margin-bottom: 40px;
}

/* =====================
   スマホ
===================== */
@media screen and (max-width: 768px) {

  h1 {
    font-size: 18px;
  }

  h2 {
    font-size: 19px;
  }

  h3 {
    font-size: 24px;
  }

  p {
    font-size: 16px;
  }


  .pc-only {
    display: none;
  }

  .sp-only {
    display: inline;
  }


  h1.text-md {
    font-size: 15px
  }


  h3.red {
    font-size: 35px;
    line-height: 1.2;
    margin: 15px 0;
  }

  h3.red sup {
    font-size: 0.4em;
    vertical-align: super;
    margin-left: 2px;
  }

  .evolution {
    font-size: 1.3em;
  }

  .group1 {
    top: 23.4%;
  }

  .group2 {
    top: 53%;
  }

  .group3 {
    top: 93%;
  }

  /* チェックリスト */

  .list li,
  .check-list li {
    font-size: 18px;
    padding-left: 32px;
    margin-bottom: 10px;
    line-height: 1.6;
  }

  .check-list {
    padding: 12px;
  }

  .check-list li {
    font-size: 18px;
    padding-left: 32px;
    margin-bottom: 10px;
    line-height: 1.6;
  }

  .check-list li::before {
    width: 18px;
    height: 18px;
    top: 4px;
  }

  .check-list li::after {
    font-size: 24px;
    left: 2px;
    top: -5px;
  }

  h3.redtitle {
    font-size: 30px;
  }

  /* =====================
   空白
===================== */
  .section {
    margin-top: 60px;
    margin-bottom: 20px;
  }

  /* =====================
   FV画像
===================== */
  .FV {
    width: 100%;
    height: auto;
    display: block;
  }

/* =====================
   注釈
===================== */
.annotation {
  font-size: 6px;
  line-height: 1.4;
  margin: 10px 0;
  color: #666;
  text-align: left;
}

}