html {
    scroll-behavior: smooth;
}
body{
	font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;

}
.wrapper{
	background: #fff;
	max-width: 600px;
	margin: 0 auto;
}
.cta{
	position: relative;
}
.btn, .btn:before {
  display: inline-block
}

.btn {
	position: absolute;
	left: 0;
	right: 0;
	margin: auto;
	bottom: 11%;
	width: 90%;
  overflow: hidden;
  -webkit-animation-name: expand;
  animation-name: expand;
  -webkit-animation-duration: 1.2s;
  animation-duration: 1.1s;
  -webkit-animation-timing-function: ease;
  animation-timing-function: ease;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite
}

.btn:before {
  position: absolute;
  content: '';
  top: -180px;
  left: 0;
  width: 30px;
  height: 100%;
  background-color: #fff;
  -webkit-animation: btn 3s ease-in-out infinite;
  animation: btn 3s ease-in-out infinite
}
@-webkit-keyframes expand {
  0%, 100% {
    -webkit-transform: scale(1) translateY(-1%);
    transform: scale(1) translateY(-1%)
  }
  65% {
    -webkit-transform: scale(1.05) translateY(0);
    transform: scale(1.05) translateY(0)
  }
}

@keyframes expand {
  0%, 100% {
    -webkit-transform: scale(1) translateY(-1%);
    transform: scale(1) translateY(-1%)
  }
  65% {
    -webkit-transform: scale(1.05) translateY(0);
    transform: scale(1.05) translateY(0)
  }
}
@-webkit-keyframes btn {
  0% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0
  }
  80% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: .5
  }
  81% {
    -webkit-transform: scale(4) rotate(45deg);
    opacity: 1
  }
  100% {
    -webkit-transform: scale(50) rotate(45deg);
    opacity: 0
  }
}
#ingredients{
	text-align: center;
	width: 90%;
	margin: 40px auto;
	font-weight: bold;
}
#ingredients h2{
		background-color:#222222;
        text-align: center;
        color: #fff;
        display: inline-block;
        padding: 0 2%;
	font-size: 5vw;
	margin-bottom: 20px;
	
	}
#ingredients p{
	font-size: 4vw;
	text-align: justify;	
}
footer{
	background: #222222;
	padding: 60px 0 40px;
	font-size: 4vw;
	text-align: center;
	color: #fff;
	font-weight: bold;
}
footer h3{
	display: inline-block;
    width: 40%;
	margin-bottom: 20px;
}
footer ul{
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 60px;
}
footer li{
	width: 45%;
	list-style: none;
	line-height: 3.5;
}
footer a{
	color: #fff;
	text-decoration: none;
}
footer p{
	font-size: 3vw;
}
@media screen and (min-width:769px) {
    .wrapper{	
        box-shadow: 0 0 22px 0 rgba(0, 0, 0, .07); 
	}
}
@media screen and (min-width:1025px) {
	a{
		cursor: pointer;
	}
	a:hover{
		transition:0.2s;
		opacity: .5;
	}
	#ingredients{
		margin: 60px auto;
	}
	#ingredients h2{
		font-size:24px;
    }
	#ingredients p{
        font-size: 20px;
	}
	footer{
		font-size: 18px;
	}
	footer p{
	font-size: 16px;
}
}

