@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap');

html {
  font-size: 62.5%;
  color: #000;
  letter-spacing: .6px;
  min-width: 320px;
}
body {
  font-family: 'Noto Sans JP', sans-serif;
  position: relative;
}
figure {
  margin: 0;
}
*:focus {
  outline: none !important;
}
a {
  -webkit-tap-highlight-color:rgba(0,0,0,0);
  cursor:pointer;
}
a,
a img {
  color: #000;
  outline: none;
   -webkit-transition: 0.3s ease-in-out;
      -moz-transition: 0.3s ease-in-out;
        -o-transition: 0.3s ease-in-out;
           transition: 0.3s ease-in-out;
}
a:hover,
a:hover img {
  opacity: .70;
  filter: alpha(opacity=70);
  -ms-filter: "alpha(opacity=70)";
  -khtml-opacity: .70;
  -moz-opacity: .70;
}
a:hover {
  color: #555;
}
img {
  width: 100%;
  max-width: 100%;
  height: auto;
  -webkit-backface-visibility: hidden;
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  margin-bottom: 0;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.clearfix::after {
   content: "";
   display: block;
   clear: both;
}
.ytube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.ytube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}
.moreBtn {
  width: 170px;
  margin: 0 auto;
  padding: 11px 0;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  border: 3px solid #000;
  display: block;
  position: relative;
}
.moreBtn:hover {
  color: #fff;
  text-decoration: none;
  background: #000;
  opacity: 1;
}
.moreBtn::before {
  content: '';
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 10px solid #000;
  display: block;
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transition: 0.3s ease-in-out;
}
.moreBtn:hover::before {
  border-left: 10px solid #fff;
  transition: 0.3s ease-in-out;
}
@media all and (max-width: 768px) {
  .moreBtn {
    width: 140px;
  }
}




/*header
------------------------------------------------------------*/
#header {
  width: 100%;
  min-width: 320px;
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}
#headerContent {
  position: relative;
}
#headerNav {
  max-width: 1230px;
  margin: 0 auto;
}
#headerNav ul {
  display: flex;
  gap: 40px;
}
#headerNav ul li {
  font-size: 16px;
  line-height: 60px;
}
#headerNav ul li a:hover {
  text-decoration: none;
}
#headerLink {
  width: 218px;
  height: 60px;
  font-size: 16px;
  font-weight: bold;
  line-height: 60px;
  color: #fff;
  text-align: center;
  background: #000;
  border: 3px solid #000;
  box-sizing: border-box;
  display: block;
  position: absolute;
  right: 0;
  top: 0;
}
#headerLink:hover {
  color: #000;
  background: #fff;
  text-decoration: none;
  opacity: 1;
}
#headerBnr {
  height: 30px;
  padding: 2px 0;
  background: #0F524D;
}
#headerBnr img {
  max-width: 568px;
  max-height: 25px;
  margin: 0 auto;
  display: block;
}
#headerBnrSp {
  display: none;
}
#hamburgerMenuBtn {
  display: none;
}
@media all and (max-width: 1250px) {
  #headerNav {
    width: calc(100% - 40px);
    margin: 0 auto;
  }
}
@media all and (max-width: 768px) {
  #headerContent {
    width: 100%;
    background: #0F524D;
    display: flex;
    align-items: center;
  }
  #headerBnrSp {
    width: 100%;
    max-width: 291px;
    height: 60px;
    margin: 0 0 0 10px;
    display: flex;
    align-items: center;
    overflow: hidden;
  }
  #headerBnrSp img {
    max-width: 291px;
    max-height: 42px;
  }
  #hamburgerMenuBtn {
    width: 60px;
    height: 60px;
    margin: 0 0 0 auto;
    display: block;
    cursor: pointer;
  }
  #hamburgerMenuBtn:hover {
    filter: brightness(200%);
    cursor: pointer;
  }
  #headerLink {
    display: none;
  }
  #headerNav {
    display: none;
  }
  #headerBnr {
    display: none;
  }
}
@media all and (max-width: 375px) {
  #headerBnrSp {
    max-width: 75%;
  }
}


/*hamburgerMenu*/
#hamburgerMenuBg,
#hamburgerMenu {
  display: none;
}
#hamburgerMenuBg {
  height: 0;
  width: 0;
  position: absolute;
  top: 0;
  left: 0;
}
@media all and (max-width: 768px) {
  #hamburgerMenuBg {
    height: 100%;
    width: 100%;
    background-color: #fff;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    position: fixed;
    top: 0;
    left: 0;
    opacity: 1;
    z-index: 200;
    display: none;
  }
  #hamburgerMenuBg.on {
    display: block;
  }
  #hamburgerMenu {
    opacity: 1;
    display: none;
    transition: 0.2s ease-in-out;
  }
  #hamburgerMenu.on {
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    opacity: 1;
    z-index: 200;
    display: block;
    overflow: auto;
  }
  #hamburgerMenuClose {
    width: 60px;
    height: 60px;
    position: fixed;
    top: 0;
    right: 0;
    cursor: pointer;
  }
  #hamburgerMenuClose:hover {
    filter: brightness(200%);
    cursor: pointer;
  }
  #hamburgerMenuMain {
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    opacity: 1;
    z-index: 50;
    display: flex;
    flex-flow: wrap;
    justify-content: center;
  }
  #hamburgerMenuBase ul {
    width: 263px;
    margin: 110px auto 50px;
  }
  #hamburgerMenuBase ul li {
    margin-bottom: 20px;
    padding-bottom: 20px;
    font-size: 18px;
    font-weight: bold;
  }
  #hamburgerMenuBase ul li a {
    color: #000;
    text-decoration: none;
    display: block;
  }
  #hamburgerMenuLink {
    width: 263px;
    margin: 0 auto;
    padding: 11px 0;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    color: #fff;
    border: 3px solid #000;
    background: #000;
    display: block;
    position: relative;
  }
  #hamburgerMenuLink:hover {
    color: #000;
    text-decoration: none;
    background: #fff;
    opacity: 1;
  }
}








/*main
------------------------------------------------------------*/
#main {
  margin: 90px 0 0;
  overflow: hidden;
}
@media all and (max-width: 768px) {
  #main {
    margin: 0;
  }
}


/*mainvisual*/
#mainvisual {
  position: relative;
}
#mainvisual h1 .sp {
  display: none;
}
#mainvisualBalloon1 {
  width: 16vw;
  position: absolute;
  bottom: 6.2vw;
  left: 11vw;
  opacity: 0;
}
#mainvisualBalloon2 {
  width: 17.6vw;
  position: absolute;
  top: 4vw;
  right: 12.4vw;
  opacity: 0;
}
@media all and (max-width: 768px) {
  #mainvisual h1 .pc {
    display: none;
  }
  #mainvisual h1 .sp {
    display: block;
  }
  #mainvisualBalloon1 {
    width: 40.2vw;
    bottom: 6.2vw;
    left: 5.1vw;
  }
  #mainvisualBalloon2 {
    width: 39.2vw;
    top: calc(5vw + 60px);
    right: 4.8vw;
  }
}



/*campaign*/
#campaignBase {
  padding: 30px 0 95px;
  background: #61AD55;
}
#campaignBase h2 {
  max-width: 1026px;
  margin: 0 auto 60px;
}
#campaignBase h2 .sp {
  display: none;
}
#campaignText {
  width: 1090px;
  margin: 0 auto;
  position: relative;
}
#campaignTextContent {
  max-width: 685px;
  margin: 0 auto 80px;
}
#campaignText p {
  margin: 0 0 1em;
  font-size: 24px;
  font-weight: bold;
  line-height: 180%;
  color: #fff;
}
#campaignBottle1 {
  width: 64px;
  position: absolute;
  top: 80px;
  left: 30px;
  transform: rotate(-26deg);
}
.campaignBottle1Anime {
  animation: "bottle1Anime" 1s linear 0s 1 normal;
  -webkit-animation: "bottle1Anime" 1s linear 0s 1 normal;
}
@keyframes bottle1Anime {
  0%{transform: rotate(-26deg);}
  24%{transform: rotate(-26deg);}
  25%{transform: rotate(26deg);}
  49%{transform: rotate(26deg);}
  50%{transform: rotate(-26deg);}
  74%{transform: rotate(-26deg);}
  75%{transform: rotate(26deg);}
  99%{transform: rotate(26deg);}
  100%{transform: rotate(-26deg);}
}
#campaignBottle2 {
  width: 55px;
  position: absolute;
  top: -20px;
  right: 30px;
  transform: rotate(-13deg);
}
.campaignBottle2Anime {
  animation: "bottle2Anime" 1s linear 0s 1 normal;
  -webkit-animation: "bottle2Anime" 1s linear 0s 1 normal;
}
@keyframes bottle2Anime {
  0%{transform: rotate(-13deg);}
  24%{transform: rotate(-13deg);}
  25%{transform: rotate(13deg);}
  49%{transform: rotate(13deg);}
  50%{transform: rotate(-13deg);}
  74%{transform: rotate(-13deg);}
  75%{transform: rotate(13deg);}
  99%{transform: rotate(13deg);}
  100%{transform: rotate(-13deg);}
}
#campaignBottle3 {
  width: 54px;
  position: absolute;
  top: 204px;
  right: 105px;
  transform: rotate(28deg);
}
.campaignBottle3Anime {
  animation: "bottle3Anime" 1s linear 0s 1 normal;
  -webkit-animation: "bottle3Anime" 1s linear 0s 1 normal;
}
@keyframes bottle3Anime {
  0%{transform: rotate(28deg);}
  24%{transform: rotate(28deg);}
  25%{transform: rotate(-28deg);}
  49%{transform: rotate(-28deg);}
  50%{transform: rotate(28deg);}
  74%{transform: rotate(28deg);}
  75%{transform: rotate(-28deg);}
  99%{transform: rotate(-28deg);}
  100%{transform: rotate(28deg);}
}
#campaignList {
  max-width: 1090px;
  margin: 0 auto;
}
#campaignList li {
  margin: 0 0 15px;
}
#campaignList li .sp {
  display: none;
}
#campaignList li a:hover,
#campaignList li a:hover img {
  opacity: 1;
}
@media all and (max-width: 1106px) {
  #campaignList {
    max-width: calc(100% - 16px);
  }
}
@media all and (max-width: 1090px) {
  #campaignBase h2 {
    max-width: calc(100% - 60px);
  }
  #campaignText {
    width: calc(100% - 20px);
  }
  #campaignTextContent {
    width: 50%;
  }
}
@media all and (max-width: 768px) {
  #campaignBase {
    padding: 50px 0 45px;
  }
  #campaignBase h2 {
    margin: 0 auto 30px;
  }
  #campaignBase h2 .pc {
    display: none;
  }
  #campaignBase h2 .sp {
    display: block;
  }
  #campaignTextContent {
    width: calc(100% - 150px);
    min-height: 226px;
    margin: 0 auto 50px;
    overflow: hidden;
  }
  #campaignText p {
    font-size: 14px;
  }
  #campaignBottle1 {
    width: 29px;
    bottom: 50px;
    left: 20px;
  }
  #campaignBottle2 {
    width: 29px;
    top: 21px;
    right: 18px;
  }
  #campaignBottle3 {
    width: 28px;
    top: auto;
    bottom: 0;
    right: 27px;
  }
  #campaignList li {
    margin: 0 0 3px;
  }
  #campaignList li .pc {
    display: none;
  }
  #campaignList li .sp {
    display: block;
  }
}



/*about*/
#about {
  background: linear-gradient(180deg, #61AD55 75px, #61AD55 75px, #fff 75px, #fff 100%);
}
#aboutTitle1 {
  width: 956px;
  margin: 0 auto 60px;
  position: relative;
}
#aboutTitle1 h2 {
  width: 584px;
  margin: 0 0 0 110px;
}
#aboutTitle1 h2 .sp {
  display: none;
}
#aboutDog1 {
  width: 227px;
  transform: rotate(7deg);
  position: absolute;
  top: 26px;
  right: 0;
}
.campaignAboutDog1Anime {
  animation: "aboutDog1Anime" 1s linear 0s 1 normal;
  -webkit-animation: "aboutDog1Anime" 1s linear 0s 1 normal;
}
@keyframes aboutDog1Anime {
  0%{transform: rotate(7deg);}
  24%{transform: rotate(7deg);}
  25%{transform: rotate(-7deg);}
  49%{transform: rotate(-7deg);}
  50%{transform: rotate(7deg);}
  74%{transform: rotate(7deg);}
  75%{transform: rotate(-7deg);}
  99%{transform: rotate(-7deg);}
  100%{transform: rotate(7deg);}
}
#aboutText {
  width: 956px;
  margin: 0 auto;
  position: relative;
}
#aboutText h3 {
  width: 700px;
  margin: 0 0 50px;
  font-size: 23px;
  font-weight: bold;
  line-height: 180%;
}
#aboutText h3 .sp {
  display: none;
}
#aboutText p {
  width: 680px;
  margin: 0 0 2em;
  font-size: 14px;
  font-weight: bold;
  line-height: 200%;
}
#aboutMoreBtn {
  position: absolute;
  top: 240px;
  right: 8px;
}
#aboutTitle2 {
  width: 956px;
  margin: 0 auto;
  position: relative;
}
#aboutDog2 {
  width: 291px;
  position: absolute;
  top: 15px;
  left: 0;
}
.campaignAboutDog2Anime {
  animation: "aboutDog2Anime" 1s linear 0s 1 normal;
  -webkit-animation: "aboutDog2Anime" 1s linear 0s 1 normal;
}
@keyframes aboutDog2Anime {
  0%{transform: rotate(0deg);}
  24%{transform: rotate(0deg);}
  25%{transform: rotate(15deg);}
  49%{transform: rotate(15deg);}
  50%{transform: rotate(0deg);}
  74%{transform: rotate(0deg);}
  75%{transform: rotate(15deg);}
  99%{transform: rotate(15deg);}
  100%{transform: rotate(0deg);}
}
#aboutTitle2 h2 {
  width: 638px;
  margin: 0 0 40px auto;
}
#aboutTitle2 h2 .sp {
  display: none;
}
@media all and (max-width: 996px) {
  #about {
    background: linear-gradient(180deg, #61AD55 55px, #61AD55 55px, #fff 55px, #fff 100%);
  }
  #aboutTitle1 {
    width: calc(100% - 40px);
    max-width: 768px;
    margin: 0 auto 10px;
    padding: 5px 0 0;
    display: flex;
    align-items: center;
  }
  #aboutTitle1 h2 {
    width: 79%;
    margin: 0 auto;
  }
  #aboutTitle1 h2 .pc {
    display: none;
  }
  #aboutTitle1 h2 .sp {
    display: block;
  }
  #aboutDog1 {
    width: 20%;
    position: inherit;
    top: auto;
  }
  #aboutText {
    width: calc(100% - 40px);
    max-width: 768px;
  }
  #aboutText h3 {
    width: 100%;
    margin: 0 0 30px;
    font-size: 18px;
  }
  #aboutText h3 .pc {
    display: none;
  }
  #aboutText h3 .sp {
    display: block;
  }
  #aboutText p {
    width: 100%;
  }
  #aboutMoreBtn {
    margin: 30px auto 65px;
    position: inherit;
    top: auto;
    right: auto;
  }
  #aboutTitle2 {
    width: calc(100% - 40px);
    max-width: 768px;
    margin: 0 auto 10px;
    padding: 5px 0 0;
    display: flex;
    flex-wrap: wrap;
  }
  #aboutDog2 {
    width: 32%;
    margin-bottom: -40px;
    position: inherit;
    top: auto;
    order: 2;
  }
  #aboutTitle2 h2 {
    width: 79%;
    margin: 0 auto;
    order: 1;
  }
  #aboutTitle2 h2 .pc {
    display: none;
  }
  #aboutTitle2 h2 .sp {
    display: block;
  }
}





/*review*/
#review {
  padding: 80px 0;
  background: url(../img/bg_stripe-yellow.jpg);
  background-size: 100px 100px;
}
#reviewTitle {
  width: 419px;
  margin: 0 auto 40px;
}
#reviewList {
  width: 956px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 3%;
}
#reviewList li {
  width: 48.5%;
  position: relative;
}
#reviewDog {
  width: 178px;
  transform: rotate(6deg);
  position: absolute;
  top: -126px;
  right: 37px;
}
.reviewDogAnime {
  animation: "reviewDogAnime" 1s linear 0s 1 normal;
  -webkit-animation: "reviewDogAnime" 1s linear 0s 1 normal;
}
@keyframes reviewDogAnime {
  0%{transform: rotate(6deg);}
  24%{transform: rotate(6deg);}
  25%{transform: rotate(-6deg);}
  49%{transform: rotate(-6deg);}
  50%{transform: rotate(6deg);}
  74%{transform: rotate(6deg);}
  75%{transform: rotate(-6deg);}
  99%{transform: rotate(-6deg);}
  100%{transform: rotate(6deg);}
}
#reviewDog_sp {
  display: none;
}
#reviewText {
  width: 371px;
  transform: rotate(-6deg);
  position: absolute;
  bottom: 10px;
  left: 50px;
}
@media all and (max-width: 972px) {
  #reviewList {
    width: calc(100% - 16px);
  }
  #reviewDog {
    width: 150px;
    top: -100px;
    right: 5px;
  }
  #reviewText {
    width: 90%;
    transform: rotate(-6deg);
    position: absolute;
    bottom: 10px;
    left: 5%;
  }
}
@media all and (max-width: 768px) {
  #review {
    padding: 60px 0 50px;
  }
  #reviewTitle {
    width: 60%;
    margin: 0 auto 60px;
  }
  #reviewList {
    width: calc(100% - 16px);
    display: block;
  }
  #reviewList li {
    width: 100%;
    margin: 0 auto 10px;
  }
  #reviewDog {
    display: none;
  }
  #reviewDog_sp {
    width: 29.7%;
    transform: rotate(6deg);
    display: block;
    position: absolute;
    top: -15%;
    right: 0;
  }
  .reviewDog_spAnime {
    animation: "reviewDog_spAnime" 1s linear 0s 1 normal;
    -webkit-animation: "reviewDog_spAnime" 1s linear 0s 1 normal;
  }
  @keyframes reviewDog_spAnime {
    0%{transform: rotate(6deg);}
    24%{transform: rotate(6deg);}
    25%{transform: rotate(-6deg);}
    49%{transform: rotate(-6deg);}
    50%{transform: rotate(6deg);}
    74%{transform: rotate(6deg);}
    75%{transform: rotate(-6deg);}
    99%{transform: rotate(-6deg);}
    100%{transform: rotate(6deg);}
  }
  #reviewText {
    width: 80%;
    transform: rotate(-6deg);
    position: absolute;
    bottom: 10px;
    left: 10%;
  }
}








/*data*/
#data {
  padding: 80px 0;
}
.dataContent {
  width: 956px;
  margin: 0 auto 50px;
  padding: 0 0 40px;
  border: 3px solid #000;
  position: relative;
}
.dataContent h2 {
  margin: 0 0 40px;
  padding: 35px 5px;
  font-size: 28px;
  font-weight: bold;
  line-height: 160%;
  text-align: center;
  background: url(../img/bg_stripe-gray.jpg);
  background-size: 100px 100px;
}
.dataContent h2 br.sp {
  display: none;
}
.dataContent p {
  width: 78.5%;
  margin: 0 auto;
  font-size: 16px;
  font-weight: bold;
  line-height: 200%;
}
.dataContent p span {
  background:linear-gradient(transparent 60%, #D9EAB4 60%);
}
.dataContent .moreBtn {
  margin: 40px auto 0;
}
#dataHerb1 {
  width: 159px;
  position: absolute;
  top: -47px;
  left: -10px;
}
.dataHerb1Anime {
  animation: "dataHerb1Anime" 1s linear 0s 1 normal;
  -webkit-animation: "dataHerb1Anime" 1s linear 0s 1 normal;
}
@keyframes dataHerb1Anime {
  0%{transform: rotate(0deg);}
  24%{transform: rotate(0deg);}
  25%{transform: rotate(-10deg);}
  49%{transform: rotate(-10deg);}
  50%{transform: rotate(0deg);}
  74%{transform: rotate(0deg);}
  75%{transform: rotate(-10deg);}
  99%{transform: rotate(-10deg);}
  100%{transform: rotate(0deg);}
}
#dataHerb2 {
  width: 140px;
  position: absolute;
  bottom: 25px;
  right: -16px;
}
.dataHerb2Anime {
  animation: "dataHerb2Anime" 1s linear 0s 1 normal;
  -webkit-animation: "dataHerb2Anime" 1s linear 0s 1 normal;
}
@keyframes dataHerb2Anime {
  0%{transform: rotate(0deg);}
  24%{transform: rotate(0deg);}
  25%{transform: rotate(-10deg);}
  49%{transform: rotate(-10deg);}
  50%{transform: rotate(0deg);}
  74%{transform: rotate(0deg);}
  75%{transform: rotate(-10deg);}
  99%{transform: rotate(-10deg);}
  100%{transform: rotate(0deg);}
}
#dataHerb3 {
  width: 160px;
  position: absolute;
  bottom: 20px;
  left: -23px;
}
.dataHerb3Anime {
  animation: "dataHerb3Anime" 1s linear 0s 1 normal;
  -webkit-animation: "dataHerb3Anime" 1s linear 0s 1 normal;
}
@keyframes dataHerb3Anime {
  0%{transform: rotate(0deg);}
  24%{transform: rotate(0deg);}
  25%{transform: rotate(-10deg);}
  49%{transform: rotate(-10deg);}
  50%{transform: rotate(0deg);}
  74%{transform: rotate(0deg);}
  75%{transform: rotate(-10deg);}
  99%{transform: rotate(-10deg);}
  100%{transform: rotate(0deg);}
}
#dataHerb4 {
  width: 150px;
  position: absolute;
  top: 15px;
  right: -40px;
}
.dataHerb4Anime {
  animation: "dataHerb4Anime" 1s linear 0s 1 normal;
  -webkit-animation: "dataHerb4Anime" 1s linear 0s 1 normal;
}
@keyframes dataHerb4Anime {
  0%{transform: rotate(0deg);}
  24%{transform: rotate(0deg);}
  25%{transform: rotate(-10deg);}
  49%{transform: rotate(-10deg);}
  50%{transform: rotate(0deg);}
  74%{transform: rotate(0deg);}
  75%{transform: rotate(-10deg);}
  99%{transform: rotate(-10deg);}
  100%{transform: rotate(0deg);}
}
#dataDog {
  width: 189px;
  position: absolute;
  bottom: -25px;
  right: -10px;
  transform: rotate(12deg);
}
.dataDogAnime {
  animation: "dataDogAnime" 1s linear 0s 1 normal;
  -webkit-animation: "dataDogAnime" 1s linear 0s 1 normal;
}
@keyframes dataDogAnime {
  0%{transform: rotate(12deg);}
  24%{transform: rotate(12deg);}
  25%{transform: rotate(-12deg);}
  49%{transform: rotate(-12deg);}
  50%{transform: rotate(12deg);}
  74%{transform: rotate(12deg);}
  75%{transform: rotate(-12deg);}
  99%{transform: rotate(-12deg);}
  100%{transform: rotate(12deg);}
}
#dataList {
  width: 83.6%;
  margin: 56px auto 0;
  display: flex;
  gap: 4.4%;
}
#dataList li {
  width: 47.8%;
  position: relative;
}
#dataBottle1 {
  width: 10%;
  position: absolute;
  top: -20%;
  right: 3%;
  transform: rotate(25deg);
}
.dataBottle1Anime {
  animation: "dataBottle1Anime" 1s linear 0s 1 normal;
  -webkit-animation: "dataBottle1Anime" 1s linear 0s 1 normal;
}
@keyframes dataBottle1Anime {
  0%{transform: rotate(25deg);}
  24%{transform: rotate(25deg);}
  25%{transform: rotate(-25deg);}
  49%{transform: rotate(-25deg);}
  50%{transform: rotate(25deg);}
  74%{transform: rotate(25deg);}
  75%{transform: rotate(-25deg);}
  99%{transform: rotate(-25deg);}
  100%{transform: rotate(25deg);}
}
#dataBottle2 {
  width: 10%;
  position: absolute;
  top: -20%;
  right: 3%;
  transform: rotate(25deg);
}
.dataBottle2Anime {
  animation: "dataBottle2Anime" 1s linear 0s 1 normal;
  -webkit-animation: "dataBottle2Anime" 1s linear 0s 1 normal;
}
@keyframes dataBottle2Anime {
  0%{transform: rotate(25deg);}
  24%{transform: rotate(25deg);}
  25%{transform: rotate(-25deg);}
  49%{transform: rotate(-25deg);}
  50%{transform: rotate(25deg);}
  74%{transform: rotate(25deg);}
  75%{transform: rotate(-25deg);}
  99%{transform: rotate(-25deg);}
  100%{transform: rotate(25deg);}
}
@media all and (max-width: 1016px) {
  .dataContent {
    width: calc(100% - 60px);
  }
}
@media all and (max-width: 768px) {
  #data {
    padding: 50px 0 20px;
  }
  .dataContent {
    margin: 0 auto 30px;
  }
  .dataContent h2 {
    margin: 0 0 30px;
    padding: 15px 5px;
    font-size: 18px;
  }
  .dataContent h2 br.sp {
    display: block;
  }
  .dataContent p {
    width: 80%;
    font-size: 12px;
  }
  #dataHerb1 {
    width: 70px;
    top: 25px;
    left: -19px;
  }
  #dataHerb2 {
    width: 63px;
    bottom: 14px;
    right: -10px;
  }
  #dataHerb3 {
    width: 80px;
    bottom: 10px;
    left: -21px;
  }
  #dataHerb4 {
    width: 71px;
    top: 55px;
    right: -11px;
  }
  #dataDog {
    width: 91px;
    bottom: 18px;
    right: -25px;
    pointer-events: none;
  }
  #dataList {
    width: 80%;
    margin: 35px auto 0;
    display: block;
  }
  #dataList li {
    width: 100%;
  }
  #dataList li+li {
    margin: 40px 0 0;
  }
}






/*lineup*/
#lineup {
  padding: 90px 0 80px;
  background: #F3F3F3;
}
#lineup h2 {
  margin: 0 0 35px;
  font-size: 34px;
  font-weight: bold;
  text-align: center;
}
#lineup h3 {
  margin: 0 0 20px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}
#lineup ul+h3 {
  margin: 40px 0 20px;
}
.lineupList {
  width: 797px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 25px 2.9%;
}
.lineupList li {
  width: 31.4%;
  height: 60px;
  position: relative;
}
.lineupList li a {
  width: 100%;
  height: 100%;
  font-size: 16px;
  line-height: 130%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  border-radius: 5px;
  border: 1px solid #eee;
}
.lineupList li a:hover {
  color: #fff;
  background: #000;
  border: 1px solid #000;
  text-decoration: none;
  opacity: 1;
}
.lineupList li a::after {
  content: '';
  width: 10px;
  height: 10px;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  right: 18px;
  transition: 0.3s ease-in-out;
}
.lineupList li a:hover::after {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transition: 0.3s ease-in-out;
}
@media all and (max-width: 837px) {
  #lineup {
    padding: 55px 0 50px;
  }
  .lineupList {
    width: calc(100% - 40px);
    gap: 2px 0.6%;
  }
  .lineupList li {
    width: 49.7%;
  }
  .lineupList li a {
    font-size: 14px;
  }
  .lineupList li a::after {
    right: 8px;
  }
}
@media all and (max-width: 768px) {
  #lineup h2 {
    margin: 0 0 30px;
    font-size: 18px;
  }
  #lineup h3 {
    margin: 0 0 15px;
    font-size: 16px;
  }
  #lineup ul+h3 {
    margin: 30px 0 15px;
  }
}
@media all and (max-width: 450px) {
  .lineupList li a {
    font-size: 13px;
  }
}







/*movie*/
#movie {
  padding: 90px 0 80px;
  background: url(../img/bg_stripe-green.jpg);
  background-size: 100px 100px;
}
#movie h2 {
  margin: 0 0 35px;
  font-size: 34px;
  font-weight: bold;
  text-align: center;
}
#movie .movieContent {
  width: 683px;
  margin: 0 auto;
}
#movie .movieContent .ytube+.ytube {
  margin: 20px 0 0;
}
#movie h3 {
  margin: 50px 0 35px;
  font-size: 34px;
  font-weight: bold;
  text-align: center;
}
@media all and (max-width: 768px) {
  #movie {
    padding: 50px 0;
  }
  #movie h2 {
    margin: 0 0 30px;
    font-size: 18px;
  }
  #movie .movieContent .ytube+.ytube {
    margin: 10px 0 0;
  }
  #movie h3 {
    margin: 35px 0 30px;
    font-size: 18px;
  }
}
@media all and (max-width: 723px) {
  #movie .movieContent {
    width: calc(100% - 40px);
  }
}




/*linkbnrList*/
#linkbnrList {
  width: 600px;
  margin: 85px auto 100px;
  display: flex;
  gap: 6.6%;
}
#linkbnrList li {
  width: 46.7%;
  height: 118px;
  position: relative;
}
#linkbnrList li a {
  width: 100%;
  height: 100%;
  font-size: 18px;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 3px solid #000;
  position: relative;
}
#linkbnrList li a span {
  margin-right: 2em;
}
#linkbnrList li a:hover {
  color: #fff;
  text-decoration: none;
  background: #000;
  opacity: 1;
}
#linkbnrList li a::before {
  content: '';
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 10px solid #000;
  display: block;
  position: absolute;
  right: 35px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transition: 0.3s ease-in-out;
}
#linkbnrList li a:hover::before {
  border-left: 10px solid #fff;
  transition: 0.3s ease-in-out;
}
#linkbnrCat1 {
  width: 149px;
  position: absolute;
  top: -37px;
  left: -140px;
  pointer-events: none;
  z-index: 1;
}
.linkbnrCat1Anime {
  animation: "linkbnrCat1Anime" 1s linear 0s 1 normal;
  -webkit-animation: "linkbnrCat1Anime" 1s linear 0s 1 normal;
}
@keyframes linkbnrCat1Anime {
  0%{transform: rotate(0deg);}
  24%{transform: rotate(0deg);}
  25%{transform: rotate(-10deg);}
  49%{transform: rotate(-10deg);}
  50%{transform: rotate(0deg);}
  74%{transform: rotate(0deg);}
  75%{transform: rotate(-10deg);}
  99%{transform: rotate(-10deg);}
  100%{transform: rotate(0deg);}
}
#linkbnrCat2 {
  width: 201px;
  position: absolute;
  top: -22px;
  right: -165px;
  pointer-events: none;
  z-index: 1;
}
.linkbnrCat2Anime {
  animation: "linkbnrCat2Anime" 1s linear 0s 1 normal;
  -webkit-animation: "linkbnrCat2Anime" 1s linear 0s 1 normal;
}
@keyframes linkbnrCat2Anime {
  0%{transform: rotate(0deg);}
  24%{transform: rotate(0deg);}
  25%{transform: rotate(-10deg);}
  49%{transform: rotate(-10deg);}
  50%{transform: rotate(0deg);}
  74%{transform: rotate(0deg);}
  75%{transform: rotate(-10deg);}
  99%{transform: rotate(-10deg);}
  100%{transform: rotate(0deg);}
}
@media all and (max-width: 900px) {
  #linkbnrList {
    width: 300px;
    margin: 85px auto 100px;
    display: block;
  }
  #linkbnrList li {
    width: 100%;
    margin: 0 auto;
  }
  #linkbnrList li+li {
    margin: 40px 0 0;
  }
}
@media all and (max-width: 640px) {
  #linkbnrList {
    width: 300px;
    margin: 55px auto 50px;
    gap: 6.6%;
  }
  #linkbnrList li {
    height: 80px;
  }
  #linkbnrList li a {
    width: 70.7%;
    font-size: 13px;
    text-align: center;
  }
  #linkbnrList li a::before {
    right: 25px;
  }
  #linkbnrList li#linkbnr1 a {
    margin: 0 0 0 auto;
  }
  #linkbnrCat1 {
    width: 96px;
    top: -20px;
    left: 0;
  }
  #linkbnrCat2 {
    width: 113px;
    top: 7px;
    right: -15px;
  }
}




/*pageTop*/
#pageTop {
  width: 40px;
  height: 40px;
  position: fixed;
  right: 15px;
  bottom: 15px;
  display: none;
  z-index: 100;
}
#pageTop a {
  height: 40px;
  width: 40px;
  background: url(../img/up.png) no-repeat;
  background-size: 40px 40px;
  display: block;
  position: relative;
  -webkit-transition: .2s;
  transition: .2s;
}
#pageTop a:hover {
  opacity: 0.7;
  -webkit-transition: .2s;
  transition: .2s;
}








/*page-top*/
#page-top {
  border-top: solid 1px #d5d5d5;
  border-bottom: solid 1px #fff;
}
#page-top p {
  margin: 0;
  font-size: 68%;
  border-top: solid 1px #dedede;
}
#page-top a:hover, #page-top a:active {
  background-color: #e5e5e5;
}
#page-top a:link, #page-top a:visited {
  background-color: #eee;
}
#page-top a {
  display: block;
  padding-bottom: 3px;
  text-align: center;
  text-decoration: none;
  line-height: 25px;
  color: #666;
  font-size: 14px;
  border-top: solid 1px #e5e5e5;
}
#page-top a::after {
  content: '\f077';
  font-family: "Font Awesome 5 Free";
  font-size: 11px;
  font-weight: 900;
  margin-left: 5px;
  color: #999;
}









/* ------ Footer ------ */
footer {
    color: #000;
    font-size: 1.6rem;
    font-family: "游ゴシック体", "Yu Gothic", "YuGothic", "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.p-footer {
    border-top: 1px solid #e3e3e3;
}
.p-footer--sns {
    max-width: 1440px;
    margin: 0 auto;
}
.p-footer--sns .list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: stretch;
    margin-bottom: 0;
}
.p-footer--sns .list li.sns_btn {
    padding: 20px 0;
}
.p-footer--sns .list li.sns_btn > *:not(:last-child) {
    margin-right: 10px;
}
.p-footer--sns .list li.sns_btn a {
    display: inline-block;
    padding: 0 10px;
    font-size: 12px;
    border: 2px solid #e3e3e3;
    border-radius: 50px;
    font-weight: normal;
    line-height: 26px;
}
.p-footer--sns .list li.sns_btn a:hover {
    background: #e3e3e3;
}
.p-footer--sns .list li.sns_btn > *:not(:last-child) {
    margin-right: 10px;
}
.p-footer--sns .list li {
    width: calc(100% / 4.1);
    text-align: center;
}
.p-footer--sns .list li:not(:last-child) {
    border-right: 1px solid #e5e5e5;
}
.p-footer--sns .list li:nth-child(4) a {
    display: flex;
    align-items: center;
    justify-content: center;
}
.p-footer--sns .list li:nth-child(4) {
  margin-top: 7px;
}
@media all and (max-width: 1200px) {
  .p-footer--sns .list li {
    width: 50%;
    border-top: 1px solid #e5e5e5;
  }
  .p-footer--sns .list li:nth-child(even) {
    border-right: none;
  }
  .p-footer--sns .list li:nth-child(4) {
    margin-top: 0;
    padding-top: 7px;
  }
}
@media all and (max-width: 750px) {
  .p-footer--sns .list li {
    width: 100%;
    border-top: none;
  }
  .p-footer--sns .list li:nth-child(4) a {
    display: block;
  }
  .p-footer--sns .list li:nth-child(4) {
    padding-top: 0;
  }
}







footer {
  font-size: 1.6rem;
  font-family: "游ゴシック体", "Yu Gothic", "YuGothic", "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  background-color: #ffffff;
}
.p-footer--bg {
    background: #f3f3f3;
}
.p-footer--sns .list li.sns_btn > *:not(:last-child) {
    margin-right: 10px;
}
.p-footer--sns .list li a span {
    display: inline-block;
    margin-left: 10px;
    color: #787878;
    font-size: 14px;
    font-weight: bold;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}
footer a {
    color: #000;
    text-decoration: none;
}
footer .p-footer--sns .list li a {
    color: #000;
    text-decoration: none;
}
.pagetop-inner-bg {
    display: none;
}
.p-footer--sns .list li img {
    width: 10%;
}
.p-footer--sns .list li a {
    display: block;
    padding: 20px 0;
    margin-top: 1%;
}
.p-footer--sns .list li:nth-child(4) {
}
.p-footer--nav_area nav .ft-title,.brand_menu .ft-title {
    padding-left: 5px;
    font-weight: bold;
    border-left: 3px solid #0f524d;
}
.brand_menu .ft-title {
	border-left: none;
}
.brand_menu .ft-title.normal{
    padding-left: 0;
}
.p-footer--contents {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0px 50px 0px;
}
.p-footer--nav_area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-preferred-size: 70%;
    flex-basis: 68%;
    padding: 50px 0% 40px 0%;
}
.p-footer--nav_area nav {
    padding:0;
    margin-left: 2%;
    width: 80%
}
.p-footer--nav_area nav:nth-child(2){
    width: 40%;
}
.p-footer--nav_area nav .nav-list,.brand_menu .nav-list {
    margin-top: 20px;
}
.p-footer--nav_area nav:first-child .nav-list {
    display: inline-block;
    vertical-align: top;
}
.p-footer--contents{
    max-width: 1440px;
    margin: 0 auto;
}
.p-footer--nav_area_sp {
    display: none;
    width: 100%;
    background: #f3f3f3;
}
.p-footer--nav_area nav .nav-list li a,.brand_menu .nav-list li a {
    line-height: 1.5;
    font-size: 14px;
    font-weight: normal;
}
.p-footer--nav_area nav .nav-list li a:hover,.brand_menu .nav-list li a:hover {
	color: #000;
    opacity: 0.7;
    text-decoration: none;
}
.p-footer--nav_area nav .nav-list + .nav-list {
    /*margin-left: 120px;*/
}
.p-footer--nav_area nav:first-child .nav-list{
    float: left;
    width: 35%;
}
.p-footer--nav_area nav:first-child .nav-list:nth-child(3){
    float: left;
    padding-left: 10%;
}
.p-footer--nav_area nav .nav-list li,.brand_menu .nav-list li {
    margin-bottom: 5px;
    padding-left: 0;
}
.brand_menu {
    padding-left: 6%;
    background: #f3f3f3;
    width: 21.5%;
    padding: 50px 0 40px 3%;
}


footer #footer-logo {
    background-color: #f3f3f3;
    padding-top: 15px;
    text-align: center;
}
footer #footer-logo {
    content: "";
    clear: both;
    display: block;
}
footer #footer-logo p {
    margin: 0;
    padding-top: 5px;
    padding-bottom: 10px;
    font-size: 8px;
    font-family: 'PT Sans', sans-serif;
    color: #666;
}
footer #footer-logo div {
    height: 18px;
    margin-top: 6px;
}
footer #footer-title {
    width: 90px;
    margin: 0 auto 5px;
}
footer nav li {
    border-left: none;
    display: block;
    padding: inherit;
}
footer nav {
    margin: inherit;
    padding: inherit;
}
.brand_menu .nav-list li{
    line-height: 22px;
}
.brand_menu .nav-list li.flg a{
	display: block;
  margin-bottom: 8px;
	margin-right: 5px;
}
.brand_menu .nav-list li.flg a img{
	width: 50px;
}

@media screen and (max-width: 750px) {
  .p-footer--nav_area nav:first-child .nav-list + .nav-list {
      margin-left: 0;
  }
  .p-footer--sns,.p-footer--contents{
      width: 100%;
      min-width: 100%;
  }
  .p-footer--sns .list li.sns_btn {
      padding: 15px;
  }
  .p-footer--sns .list li:not(:last-child) {
      border-right: none;
      border-bottom: 1px solid #e5e5e5;
      width: 100%;
  }

  .p-footer--sns .list li {
      width: 100%;
      text-align: left;
      background: #fff;
  }
  .p-footer--sns .list li a::after {
      content: "";
      display: block;
      width: 8px;
      height: 8px;
      border-top: 1px solid #717171;
      border-right: 1px solid #717171;
      position: absolute;
      top: 50%;
      right: 20px;
      -webkit-transform: translateY(-50%) rotate(45deg);
      transform: translateY(-50%) rotate(45deg);
  }
  .p-footer--sns .list li a {
      padding: 15px;
      position: relative;
  }
  .p-footer--sns .list li.sns_btn a::after,section.p-footer--contents div.brand_menu,.p-footer--nav_area {
      display: none;
  }
  .p-footer--nav_area_sp {
      display: block;
  }
  div#pagetop {
      position: fixed;
      bottom: 4%;
      right: 2%;
      z-index: 999;
  }
  dl.accordion dd.dd01 {
      display: none;
  }
  dl.accordion:not(:last-child) {
      border-bottom: 1px solid #e3e3e3;
  }
  .p-footer--contents {
      padding: 0;
  }
  .p-footer--nav_area_sp dl dt {
      font-size: 15px;
      font-weight: normal;
  }
  dl.accordion b{
      font-weight: normal;
  }
  dl.accordion{
      margin-bottom: 0;
  }
  .p-footer--nav_area_sp dl dt {
      display: block;
      line-height: 1.4;
      font-weight: normal;
      padding: 15px;
      position: relative;
  }
  .p-footer--nav_area_sp dl dt::after{
      content: "";
      display: block;
      width: 8px;
      height: 8px;
      border-top: 1px solid #717171;
      border-right: 1px solid #717171;
      position: absolute;
      top: 50%;
      right: 20px;
      -webkit-transform: translateY(-50%) rotate(45deg);
      transform: translateY(-50%) rotate(45deg);
  }
  dt.open::after {
      -webkit-transform: translateY(-50%) rotate(135deg) !important;
      transform: translateY(-50%) rotate(135deg) !important;
  }
  .p-footer--nav_area_sp dl dd li {
    margin-bottom: 20px;
  }
  .p-footer--nav_area_sp dl dd li a {
      display: block;
      padding: 0 15px;
      font-size: 12px;
      line-height: 160%;
  }
  .clearfix:after {
      visibility: inherit;
  }
  p.flg{
  	clear: both;
  	text-align: left;
  	margin-top: 20px;
  	padding-left: 15px;
  	margin-bottom: 10px;
  }
  p.flg a{
  	display: inline-block;
  	margin-right: 5px;
  }
  p.flg a img{
  	width: 40px;
  }
  p.flg span {
      display: block;
      font-size: 13px;
      font-weight: bold;
      margin-bottom: 1%;
  }
  p.flg.overseas p.title {
      margin-bottom: 5px;
  }
  p.flg.overseas a {
      display: block;
      margin-top: 15px;
      margin-bottom: -5px;
      font-size: 13px;
      line-height: 160%;
  }

  footer {
  	background-color: #e6e6e6;
  }


  footer h1{
  	font-family:Arial, Helvetica, sans-serif;
  	font-weight:bold;
  	font-size:13px;
  }
  footer h2{
  	font-family:Arial, Helvetica, sans-serif;
  	font-weight:bold;
  	font-size:13px;
  }


  footer nav {
  	margin: 30px 0 15px;
  	padding:0 10px;
  }

  footer nav li {
  	display: inline-block;
  	padding: 0 5px 0 10px;
  	border-left: solid 1px #000;
  	font-size: 68%;
  }
  footer nav li:first-child {
  	padding-left: 0;
  	border-left: none;
  }

  footer nav a:link,
  footer nav a:visited {
  	color: #000;
  	text-decoration: none;
  }
  footer nav a:hover,
  footer nav a:active {
  	color: #666;
  	text-decoration: underline;
  }

  #copyright {
  	margin-bottom: 35px;
  	text-align:center;

  	border-top:#000 solid 1px;
  	padding-top:7px;
  }

  #copyright p {
  	font-size: 62%;
  	color: #000;
  }

  footer .logo {
  	padding-top: 35px;
  	text-align: right;
  }

  footer .logo img {
  	width: 72px;
  	height: 46px;
  }

}


#overseasPc {
  margin-top: 20px;
}