/*画面サイズ849px以上*/

*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
  font-family: 'Zen Maru Gothic', sans-serif;
}

:root {
  --point-color: #F2FEAC;
  --cta-color: #4CC764;
  --base-color: #080808;
}

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 62.5%;
  color: var(--base-color);
}

body {
  font-size: 1.4rem;
  background-color: #F6F4EE;
  letter-spacing: .5em;
  line-height: 30px;
}

img {
  width: 50%;
}

.wrapper {
  margin: 0 40px;
  background-color: #fefefe;
}

.container {
  width: 768px;
  margin: 0 auto;
  text-align: center;
}

.box {
  position: absolute;
  width: 65%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

.pc-br{
  display: block;
}

.sp-br{
  display: none;
}

/*header-area------------------------------*/
header {
  text-align: center;
}

h1 {
  margin: 50px 0;
  padding: 0 100px;
  font-size: 3rem;
  line-height: 0.2em;
  position: relative;
  display: inline-block;
  letter-spacing: .5em;
}

h2,
.big-txt {
  font-size: 2.8rem;
  letter-spacing: .5em;
  margin: 50px 0;
  line-height: 50px;
  display: inline-block;
}

h3 {
  font-size: 2rem;
  margin: 50px 0;
  line-height: 3rem;
}

.h2-bg {
  background-color: var(--point-color);
  padding-left: 15px;
}

h1::before {
  position: absolute;
  left: 0px;
  top: 5px;
  content: "";
  width: 50px;
  height: 50%;
  background: var(--base-color);
  border-radius: 3px;
  transform: rotate(45deg);
}

h1::after {
  position: absolute;
  content: "";
  right: 10px;
  top: 5px;
  width: 50px;
  height: 50%;
  background: var(--base-color);
  border-radius: 3px;
  transform: rotate(-45deg);
}


.top-image {
  width: 80%;
  margin: 0 auto;
  margin-bottom: 50px;
}


.top-brackets {
  width: 45%;
  margin: 0 auto;
}

.top-people {
  width: 250px;
  height: 250px;
}

.top-area-copy {
  margin: 50px;
  position: relative;
  line-height: 25px;
}

.under-line {
  background: linear-gradient(transparent 60%, var(--point-color) 60%);
}

.under-line2 {
  border-bottom: var(--base-color) solid 2px;
}

.under-line3 {
  background: var(--point-color);
}

.food1,.food2,.food3,.food4,.food5,.food6{
  position: absolute;
  width: 10%;
  max-width: 150px;
  animation: fuwafuwa 3s infinite ease-in-out .8s alternate;
  transition: 1.5s ease-in-out;
}
 
@keyframes fuwafuwa {
  0% {
    transform:translate(0, 0) rotate(-7deg);
  }
  50% {
    transform:translate(0, -7px) rotate(0deg);
  }
  100% {
    transform:translate(0, 0) rotate(7deg);
  }
}

.food1{
  top: 150px;
  right: 80px;
  transform: rotate(30deg);
}

.food2{
  top: 150px;
  left: 80px;
  transform: rotate(-30deg);
}

.food3{
  top: 300px;
  left: 120px;
  transform: rotate(30deg);
}

.food4{
  top: 300px;
  right: 120px;
  transform: rotate(-30deg);
}

.food5{
  top: 450px;
  left: 80px;
}

.food6{
  top: 450px;
  right: 80px;
}


@media screen and (min-width:1300px){
  .wrapper {
    width: 1200px;
    margin: 0 auto;
    position: relative;
}

.food1{
  top: 100px;
  right: 150px;
}

.food2{
  top: 100px;
  left: 150px;

}

.food3{
  top: 250px;
  left: 200px;
}

.food4{
  top: 250px;
  right: 200px;
}

.food5{
  top: 400px;
  left: 150px;
}

.food6{
  top: 400px;
  right: 150px;
}

}

/*topアニメーション-----------------------------*/
.sp-piko-anime{
  display: none;
}

.piko-anime {
  display: inline-block;
  animation: piko-anime 2s ease-out infinite;
  opacity: 1;
}

@keyframes piko-anime {

  0%,
  60% {
    transform: scale(1.0);
  }

  40%,
  80% {
    transform: scale(1.2);
    color: var(--point-color);
  }

  50%,
  70% {
    transform: scale(0.75);
  }
}

.mid-txt {
  font-size: 2rem;
}

/*cta*/
.cta-area {
  margin: 100px 0;
}

.cta{
  border: 3px solid var(--cta-color);
  width: 100%;
  display: flex;
  border-radius: 100px;
  position: relative;
  padding: 1.5rem;
  background-color: #fefefe;
  box-shadow: 0 3px 0 0 #fefefe;
  overflow: hidden;
  transition: 300ms;
}
.cta::before{
  position: absolute;
  content: '';
  display: inline-block;
  top: -180px;
  left: 0;
  width: 30px;
  height: 100%;
  background-color: var(--cta-color);
  transition: 300ms;
  animation: shinyshiny 2.5s ease-in-out infinite;
}

.cta:hover {
  text-decoration: none;
  box-shadow: none;
  -webkit-transform: translateY(3px);
}

@-webkit-keyframes shinyshiny {
  0% { -webkit-transform: scale(0) rotate(45deg); opacity: 0; }
  80% { -webkit-transform: scale(0) rotate(45deg); opacity: 0.5; }
  81% { -webkit-transform: scale(4) rotate(45deg); opacity: 1; }
  100% { -webkit-transform: scale(50) rotate(45deg); opacity: 0; }
}

.cta img {
  width: 90px;
  height: 90px;
  margin-right: 20px;
}

.cta span {
  font-size: 2.7rem;
  line-height: 9rem;
  letter-spacing: .5rem;
  color: var(--cta-color);
}

.last-cta-area{
  padding-bottom: 100px;
  margin-bottom: 0;
}

/*attention-area-------------------------------*/
.attention-box {
  display: flex;
}

.attention-mark {
  width: 70px;
  margin-top: 60px;
}

.hand-mark {
  width: 70px;
  margin: 10px 0;
}

.foot-img {
  width: 40%;
}

.attention-box p{
  letter-spacing: 0.25rem;
  text-align: left;
  margin-top: 130px;
  margin-left: 40px;
}

.attention-hand-box {
  margin: 50px;
}

.attention-txt {
  position: relative;
  padding: 0.3em;
  display: inline-block;
  line-height: 40px;
}

.attention-txt:after {
  content: '';
  position: absolute;
  left: -3px;
  bottom: 0;
  width: 100%;
  height: 7px;
  background: repeating-linear-gradient(-45deg, var(--base-color), var(--base-color) 1.5px, white 2px, white 4.5px);
}

.attention-bottom-area {
  position: relative;
  display: inline-block;
  width: 600px;
  margin: 20px 0;
}

.attention-bottom-area::before {
  position: absolute;
  left: 0px;
  bottom: 35px;
  content: "";
  width: 150px;
  height: 3%;
  background: var(--base-color);
  border-radius: 3px;
  transform: rotate(45deg);
}

.attention-bottom-area::after {
  position: absolute;
  content: "";
  right: 10px;
  bottom: 35px;
  width: 150px;
  height: 3%;
  background: var(--base-color);
  border-radius: 3px;
  transform: rotate(-45deg);
}

/*reason---------------------------------------*/
.question-area {
  position: relative;
}

.question-txt {
  width: 20%;
  top: -50px;
  left: 0;
  position: absolute;
}

.reason-top-box {
  position: relative;
  padding: 30px;
  letter-spacing: 0.25em;
  margin-bottom: 30px;
}

.reason-balloon {
  width: 60%;
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

.comment-img {
  width: 30%;
}

.but-image {
  width: 30%;
  margin: 30px 0 30px 20px;
}

.reason-txt {
  margin: 30px 0;
}

.reason-people {
  width: 40%;
  margin-bottom: 50px;
}

.wave-line {
  width: 540px;
  display: inline-block;
  background: url(../image/wavy-line.png) bottom repeat-x;
  background-size: 20px;
  line-height: 10px;
  margin-bottom: 50px;
}

.diet-trend-box {
  display: flex;
  letter-spacing: 0.25em;
  padding-bottom: 30px;
}

.diet-trend-box p {
  letter-spacing: 0.25em;
  margin-left: 90px;
  margin-top: 50px;
}

.diet-trend-box .p2 {
  letter-spacing: 0.25em;
  margin: 0;
  margin-top: 50px;
}

.diet-trend {
  width: 50%;
}

.diet-trend2 {
  margin-left: 120px;
  margin-bottom: 30px;
}

.diet-trend-bottom-box {
  margin: 50px;
  position: relative;
  line-height: 2.5rem;
  margin-bottom: 70px;
}

.reason-box{
  width: 80%;
}

.reason-people2 {
  margin-bottom: 0;
}

.balloon2 {
  top: 120px;
  width: 120%;
}

.perfect {
  width: 60%;
  margin-top: 30px;
  margin-bottom: 50px;
}

.reason2-txt {
  font-size: 3rem;
  margin-top: 50px;
  letter-spacing: .25em;
  line-height: 40px;
}

/*rebound-------------------------------------*/

.rebound-txt {
  font-size: 3rem;
}

.wave-line2{
  width: 400px;
}

.caution-box {
  border: var(--base-color) solid 1px;
  position: relative;
  padding: 20px 0 30px;
  margin: 40px 0 50px;
}


.caution-box::before {
  position: absolute;
  top: 30px;
  left: -20px;
  content: "";
  width: 100px;
  height: .2%;
  background: var(--base-color);
  border-radius: 3px;
  transform: rotate(-45deg);
}

.caution-box::after {
  position: absolute;
  bottom: 30px;
  right: -20px;
  content: "";
  width: 100px;
  height: .2%;
  background: var(--base-color);
  border-radius: 3px;
  transform: rotate(-45deg);
}

.caution-txt {
  width: 20%;
}


.caution-middle-area {
  position: relative;
  display: inline-block;
  width: 700px;
  margin: 20px 0;
  margin-top: 50px;
}

.caution-middle-area::before {
  position: absolute;
  left: 0px;
  bottom: 30px;
  content: "";
  width: 100px;
  height: 3%;
  background: var(--base-color);
  ;
  border-radius: 3px;
  transform: rotate(45deg);
}

.caution-middle-area::after {
  position: absolute;
  content: "";
  right: 10px;
  bottom: 30px;
  width: 100px;
  height: 3%;
  background: var(--base-color);
  border-radius: 3px;
  transform: rotate(-45deg);
}

.rebound-mid-area {
  padding-top: 50px;
}

.mid-area-img {
  width: 40%;
}

.mid-area-txt {
  display: inline-block;
  margin: 30px 0 20px;
}

.mid-area-txt-left {
  text-align: left;
  width: 80%;
  margin: 0 auto;
}

.mid-area-txt-right {
  text-align: right;
  width: 80%;
  margin: 0 auto;
  margin-top: 50px;
  position: relative;
}

.dotted-line {
  width: 150px;
  height: 3px;
  background-size: 10px 2px;
  background-image: linear-gradient(to right, var(--base-color), var(--base-color) 3px, transparent 3px, transparent 8px);
  background-repeat: repeat-x;
  transform: rotate(45deg);
  margin: 0 auto;
  margin-top: 60px;
}


.rebound-area-copy {
  margin: 100px 0;
  position: relative;
  line-height: 25px;
}

.rebound-people,.ohmy{
  margin: 50px 0;
}

.rebound-bottom-txt {
  margin: 50px 0 -20px;
}

.rebound-bottom-brackets {
  position: relative;
}

.rebound-brackets {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

/*reason2-------------------------------------*/
.reason2-bottom-area .hand-mark {
  margin-top: 100px;
}

.reason2-bottom-txt {
  margin: 100px 0;
}

.reason2-bottom-area .mid-txt {
  line-height: 4rem;
}

.reason2-mid-area {
  display: flex;
}

.reason2-mid-area img {
  width: 70%;
  margin: 15px 0;
}

/*eating-habits-----------------------------------------------*/

.eating-habits-top{
  margin-top: 0;
}

.eating-habits-top-wave-line{
  margin-bottom: 100px;
}

.balance{
  margin-top: 50px;
}

.balance-brackets{
  width: 65%;
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

.balance-brackets-area{
  margin: 50px 0;
}

.eating-havits-brackets-area{
  padding: 50px 0;
  margin: 0;
}

.eating-havits-brackets-area .box{
  width: 75%;
}

.eating-havits-brackets-area .mid-txt{
  line-height: 35px;
}

.check-mark{
  width: 35px;
  height: 25px;
  padding: 2.5px;
}


.eating-habits-box{
  padding: 50px 60px;
  margin: 50px 0 100px;
  border: var(--base-color) solid 2px;
}

.eating-havits-box-txt{
  display: flex;
  text-align: left;
}

.eating-havits-box-txt p{
  padding-left: 7px;
}

.eating-habits-people{
  margin: 50px 0;
}

.eating-habits .hand-mark{
  margin-top: 50px;
}

.eating-habits-people2{
  margin-bottom: 50px;
}

.eating-habits-bottom-txt{
  margin-top: 50px;
}

/*フッター*/

.copywright {
  color: var(--base-color);
  text-align: center;
  padding: 10px 0;
}

.copywright p{
  font-size: 1rem;
  letter-spacing: .25rem;
}

/*メディアクエリ*/
@media screen and (min-width:849px) {}