@charset "UTF-8";
/*
@import url('//fonts.googleapis.com/css?family=Questrial');
@import url('//fonts.googleapis.com/css?family=Muli:300,400');
@import url('//fonts.googleapis.com/css?family=Poppins');
*/
@import url("//fonts.googleapis.com/css?family=Kosugi&display=swap");
@font-face {
  font-family: "IonIcons";
  src: url("//code.ionicframework.com/ionicons/2.0.1/fonts/ionicons.eot?v=2.0.1");
  src: url("//code.ionicframework.com/ionicons/2.0.1/fonts/ionicons.eot?v=2.0.1#iefix") format("embedded-opentype"), url("//code.ionicframework.com/ionicons/2.0.1/fonts/ionicons.ttf?v=2.0.1") format("truetype"), url("//code.ionicframework.com/ionicons/2.0.1/fonts/ionicons.woff?v=2.0.1") format("woff"), url("//code.ionicframework.com/ionicons/2.0.1/fonts/ionicons.svg?v=2.0.1#Ionicons") format("svg");
  font-weight: normal;
  font-style: normal;
}
.mfp-wrap {
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
  opacity: 1;
  -webkit-transform: translateY(0px) !important;
          transform: translateY(0px) !important;
}

/*----------------------------------
スクロールで画像がふわっと出てくる
----------------------------------*/
.animation--fadeup {
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
  opacity: 0;
  -webkit-transform: translateY(70px);
          transform: translateY(70px);
}
.animation--fadeup.active {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.animation--fadedown {
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
  opacity: 0;
  -webkit-transform: translateY(-50px);
          transform: translateY(-50px);
}
.animation--fadedown.active {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.animation--fadeleft {
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
  opacity: 0;
  -webkit-transform: translateX(-100px);
          transform: translateX(-100px);
}
.animation--fadeleft.active {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.animation--faderight {
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
  opacity: 0;
  -webkit-transform: translateX(100px);
          transform: translateX(100px);
}
.animation--faderight.active {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

/*----------------------------------
ズームする
----------------------------------*/
.animation--zoom {
  overflow: hidden;
}

.animation--zoom img {
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

@-webkit-keyframes linkBtn {
  0% {
    background-color: white;
  }
  100% {
    background-color: #d4003b;
  }
}

@keyframes linkBtn {
  0% {
    background-color: white;
  }
  100% {
    background-color: #d4003b;
  }
}
.content-wrap {
  overflow: hidden;
}

.text-small {
  font-size: 1rem;
}

.text-center {
  text-align: center;
}

.main-title h2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 2;
  height: 270px;
  padding: 0;
  color: #fff;
  font-size: 3.6rem;
}
.main-title h2 span {
  font-size: 1.4rem;
}
@media screen and (min-width: 0) and (max-width: 767px) {
  .main-title h2 {
    height: 120px;
    font-size: 2.2rem;
  }
  .main-title h2 span {
    font-size: 1rem;
  }
}
.main-title h2:before {
  content: "";
  position: absolute;
  top: -20px;
  left: 0;
  width: 120%;
  height: 100%;
  margin: -60px -10% 0;
  -webkit-transform-origin: left center;
          transform-origin: left center;
  -webkit-transform: rotate(2deg);
          transform: rotate(2deg);
  z-index: -1;
}
.kodawari .main-title h2:before {
  background: #f3ba2c;
}
.low-gi .main-title h2:before {
  background: #2dbffb;
}
.protein .main-title h2:before {
  background: #fd88a6;
}
@media screen and (min-width: 0) and (max-width: 767px) {
  .main-title h2:before {
    top: 0px;
    margin: -20px -10% 0;
  }
}

.lead-txt {
  text-align: center;
  padding: 40px 0 60px 0;
}
.lead-txt .main-txt {
  margin-bottom: 40px;
}
@media screen and (min-width: 0) and (max-width: 767px) {
  .lead-txt .main-txt {
    margin-bottom: 20px;
    width: auto;
    max-height: 70px;
  }
}
@media screen and (min-width: 0) and (max-width: 767px) {
  .lead-txt {
    padding: 20px;
  }
  .lead-txt p {
    text-align: left;
  }
}

.kodawari .border-wrapper {
  border-color: #f3ba2c;
}
.low-gi .border-wrapper {
  border-color: #2dbffb;
}
.protein .border-wrapper {
  border-color: #fd88a6;
}
.border-wrapper p {
  line-height: 1.8;
}

.kodawari .deco {
  text-align: center;
}
.kodawari .img-deco01,
.kodawari .img-deco02,
.kodawari .img-deco03,
.kodawari .img-deco04 {
  position: absolute;
}
.kodawari .img-deco01 {
  top: 30px;
  right: -60px;
}
.kodawari .img-deco02 {
  top: 40px;
  left: -50px;
}
.kodawari .img-deco03 {
  top: 40px;
  right: 50px;
}
.kodawari .img-deco04 {
  top: -20px;
  right: -120px;
}
.kodawari .img-deco05 {
  top: -20px;
  right: -160px;
  -webkit-transform: rotate(35deg);
          transform: rotate(35deg);
  position: absolute;
}
@media screen and (min-width: 0) and (max-width: 767px) {
  .kodawari .img-deco05 {
    position: relative;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    top: 0px;
    right: 0;
    margin: 10px auto 0;
  }
}
.kodawari .right-content {
  padding-left: 400px;
}
@media screen and (min-width: 0) and (max-width: 767px) {
  .kodawari .right-content {
    padding-left: inherit;
  }
}
.kodawari .component {
  padding: 80px 0 0 0;
}
@media screen and (min-width: 0) and (max-width: 767px) {
  .kodawari .component {
    padding: 30px 0 0 0;
  }
  .kodawari .component .ttl-scene {
    padding: 20px 0;
  }
}
.kodawari .kodawari02 {
  min-height: 520px;
}
.kodawari .kodawari03 {
  min-height: 435px;
}
.kodawari .kodawari04 {
  min-height: 435px;
}
.kodawari .kodawari-list li {
  display: inline-block;
  padding: 0 20px 0 0;
  float: left;
  width: 33.3333333333%;
}
.kodawari .kodawari-list li h4 {
  margin-bottom: 10px;
  line-height: normal;
  position: relative;
  color: #d4003b;
  margin-bottom: 20px;
  font-size: 2.2rem;
}
.kodawari .kodawari04-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.kodawari .kodawari04-box div {
  width: 100%;
}
.kodawari .kodawari04-box div + div {
  padding-left: 20px;
}
.kodawari .kodawari04-box .txt-kodawari04-strong {
  font-size: 2.2rem;
  line-height: 1.4;
  color: #d4003b;
  font-weight: normal;
}
.kodawari .kodawari04-box .txt-kodawari04-strong span {
  font-size: 2.8rem;
  font-weight: bold;
}
@media screen and (min-width: 0) and (max-width: 767px) {
  .kodawari .kodawari04-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .kodawari .kodawari04-box div + div {
    padding-left: 0px;
  }
  .kodawari .kodawari04-box .txt-kodawari04-strong {
    font-size: 1.6rem;
    font-weight: normal;
  }
}
.kodawari .kodawari04 h4 {
  margin-bottom: 10px;
  line-height: normal;
  position: relative;
  color: #d4003b;
  margin-bottom: 10px;
  font-size: 2.2rem;
}
@media screen and (min-width: 0) and (max-width: 767px) {
  .kodawari .kodawari04 h4 {
    font-size: 1.8rem;
  }
}
.kodawari .kodawari04 .box-sub-txt {
  border: 1px solid #ddd;
  padding: 30px 20px 0;
}
@media screen and (min-width: 0) and (max-width: 767px) {
  .kodawari .img-deco01,
  .kodawari .img-deco02,
  .kodawari .img-deco03,
  .kodawari .img-deco04 {
    position: static;
    max-width: 260px;
    width: 100%;
    height: auto;
  }
  .kodawari .right-content {
    padding-left: inherit;
  }
  .kodawari .kodawari02, .kodawari .kodawari03 {
    min-height: inherit;
  }
  .kodawari .kodawari-list li {
    padding: 0;
    width: 100%;
  }
  .kodawari .kodawari-list li h4 {
    font-size: 1.8rem;
  }
  .kodawari .kodawari02 .link-button {
    width: 80%;
    text-align: center;
    max-width: 300px;
  }
  .kodawari .kodawari02 .link-button + .link-button {
    margin-top: 10px;
  }
}

.low-gi .component {
  padding: 60px 0 0 0;
}
@media screen and (min-width: 0) and (max-width: 767px) {
  .low-gi .component {
    padding: 30px 0 0 0;
  }
}
.low-gi .component .inner-left {
  float: left;
  width: 40%;
}
.low-gi .component .inner-left h3 {
  text-align: center;
}
.low-gi .component .inner-right {
  float: right;
  width: 60%;
  text-align: right;
}
@media screen and (min-width: 0) and (max-width: 767px) {
  .low-gi .component .inner-left, .low-gi .component .inner-right {
    float: none;
    width: 100%;
    margin-bottom: 30px;
    text-align: left;
  }
}
.low-gi .img-deco01 {
  position: absolute;
  top: -30px;
  right: -60px;
}
@media screen and (min-width: 0) and (max-width: 767px) {
  .low-gi .img-deco01 {
    display: none;
  }
}
.low-gi .img-deco02 {
  position: absolute;
  top: 30px;
  right: 30px;
}
@media screen and (min-width: 0) and (max-width: 767px) {
  .low-gi .img-deco02 {
    display: none;
  }
}

.protein .deco {
  text-align: center;
}
.protein .img-deco01,
.protein .img-deco03,
.protein .img-deco04 {
  position: absolute;
}
.protein .img-deco01 {
  top: 50px;
  right: 50px;
}
.protein .img-deco03 {
  top: 50px;
  right: 50px;
}
.protein .img-deco04 {
  top: 0;
  right: -200px;
}
.protein .protein01 {
  min-height: 487px;
}
.protein .protein04 {
  min-height: 360px;
}
.protein .right-content {
  padding-left: 400px;
}
@media screen and (min-width: 0) and (max-width: 767px) {
  .protein .right-content {
    padding-left: inherit;
  }
}
.protein .fl, .protein .fr {
  float: left;
  width: 50%;
}
.protein .fl {
  padding-right: 15px;
}
.protein .fr {
  padding-left: 15px;
}
.protein h4 {
  position: relative;
  color: #fd88a6;
  margin-bottom: 20px;
  font-size: 2.2rem;
  line-height: 80px;
  font-weight: normal;
}
.protein .icon-img {
  width: auto;
  max-height: 100px;
  position: absolute;
  top: -20px;
  right: 20px;
}
.protein .protein-table {
  width: 100%;
  text-align: center;
  border-collapse: collapse;
}
.protein .protein-table th, .protein .protein-table td {
  border: 1px solid #fff;
  padding: 10px;
}
.protein .protein-table th {
  background: #fd88a6;
  color: #fff;
}
.protein .protein-table td {
  color: #c32160;
}
.protein .protein-table tr:nth-child(even) {
  background: #f8d5e3;
}
.protein .protein-table tr:nth-child(odd) {
  background: #fcebf2;
}
.protein .protein-table .txt-soy td {
  font-size: 2.2rem;
  font-weight: bold;
}
@media screen and (min-width: 0) and (max-width: 767px) {
  .protein .img-deco01,
  .protein .img-deco02,
  .protein .img-deco03,
  .protein .img-deco04 {
    position: static;
  }
  .protein .img-deco01 {
    width: auto;
    max-height: 230px;
  }
  .protein .img-deco02 {
    width: 100%;
    height: auto;
  }
  .protein .img-deco03 {
    width: 180px;
    height: auto;
  }
  .protein .img-deco04 {
    width: 180px;
    height: auto;
  }
  .protein .right-content {
    padding-left: inherit;
  }
  .protein .protein01, .protein .protein02, .protein .protein03, .protein .protein04 {
    min-height: inherit;
  }
  .protein .protein02 h3 img {
    max-height: 120px;
  }
  .protein h4 {
    font-size: 1.8rem;
    line-height: 50px;
  }
  .protein .icon-img {
    max-height: 50px;
    position: absolute;
    top: 0;
    right: 0;
  }
  .protein .fl table {
    margin-bottom: 30px;
  }
  .protein .fl, .protein .fr {
    float: none;
    width: 100%;
  }
  .protein .fl {
    padding-right: 0;
  }
  .protein .fr {
    padding-left: 0;
  }
  .protein .protein-list li {
    padding: 0;
    width: 100%;
  }
}