@charset "UTF-8";
@font-face {
  font-family: 'font00-1';
  src: url("../font/SourceHanSans-Normal.otf");
}

@font-face {
  font-family: 'font00-2';
  src: url("../font/SourceHanSans-Bold.otf");
}

@font-face {
  font-family: 'font01';
  src: url("../font/FOT-RodinPro-M.otf");
}

@font-face {
  font-family: 'font02';
  src: url("../font/FOT-RodinPro-DB.otf");
}

@font-face {
  font-family: 'font03';
  src: url("../font/FOT-RodinPro-B.otf");
}

@font-face {
  font-family: 'font04';
  src: url("../font/FOT-TsukuBRdGothicStd-B.otf");
}

@font-face {
  font-family: 'font06';
  src: url("../font/BebasNeue-Regular.ttf");
}

@keyframes cyon {
  10% {
    transform: translateY(0);
  }
  15% {
    transform: translateY(5px);
  }
  20% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(5px);
  }
  30% {
    transform: translateY(0);
  }
}

* {
  font-family: 'font00-1';
  font-weight: 600;
  font-size: 16px;
  line-height: 32px;
}

@media (max-width: 350px) {
  body {
    min-width: 280px;
  }
}

.border:before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  z-index: -1;
  transform: translateX(-50%);
  animation: border_anim 1s linear forwards;
}

@keyframes border_anim {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

@keyframes anime_stripe_1 {
  0% {
    background-position-x: 0;
  }
  100% {
    background-position-x: -15px;
  }
}

.topcontent {
  font-family: 'font02';
}

.topcontent a {
  position: relative;
  cursor: pointer;
  text-decoration: none;
  outline: none;
  display: block;
  z-index: 10;
}

.topcontent a:before, .topcontent a:after, .topcontent .hovercon:before, .topcontent .hovercon:after {
  position: absolute;
  z-index: -1;
  display: block;
  content: '';
}

.topcontent a, .topcontent a:before, .topcontent a:after, .topcontent .hovercon, .topcontent .hovercon:before, .topcontent .hovercon:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.display-pc {
  display: block;
}

@media (max-width: 850px) {
  .display-pc {
    display: none;
  }
}

.display-pc2 {
  display: inline-block;
}

@media (max-width: 850px) {
  .display-pc2 {
    display: none;
  }
}

.display-sp {
  display: none;
}

@media (max-width: 850px) {
  .display-sp {
    display: block;
  }
}

.display-sp2 {
  display: none;
}

@media (max-width: 850px) {
  .display-sp2 {
    display: block;
  }
}

.display-sp3 {
  display: none;
}

@media (max-width: 485px) {
  .display-sp3 {
    display: block;
  }
}

header.lp-header {
  position: fixed;
  width: 100%;
  height: 135px;
  padding: 20px 0;
  z-index: 10;
  background-color: #000000;
}

@media (max-width: 1200px) {
  header.lp-header {
    width: 100%;
    height: 110px;
  }
}

@media (max-width: 850px) {
  header.lp-header {
    position: fixed;
    z-index: 50;
    height: auto;
    padding: 15px 0;
    background-color: transparent;
  }
  header.lp-header.sp-bg {
    height: 98px;
    background-color: #000000;
    animation: fadeIn 0.5s ease;
  }
  header.lp-header.sp-bg .img-01 {
    margin: 10px 0;
  }
}

.lp-inner {
  width: 1200px;
  margin: 0 auto;
}

@media (max-width: 1200px) {
  .lp-inner {
    width: 90%;
  }
}

/* ハンバーガーここから */
.overlay {
  position: fixed;
  display: none;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  margin: 0;
  background-color: rgba(0, 0, 0, 0.8);
}

.sp-open {
  position: relative;
  display: none;
  z-index: 5;
  opacity: 1;
}

.sp-open .text-00 {
  color: #ffffff;
  line-height: 30px;
}

.openbtn1 {
  display: none;
}

.openbtn1 .div-01 {
  display: none;
  opacity: 1;
}

@media (max-width: 850px) {
  .openbtn1 {
    position: relative;
    display: inline-block;
    cursor: pointer;
    width: 65px;
    height: 65px;
    border-radius: 5px;
    background-image: url("../img/lp_lowfat/img_item_56.png");
    background-size: contain;
    float: right;
    z-index: 50;
  }
  .openbtn1 span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 17.5px;
    height: 1.5px;
    background: #fff;
    width: 30px;
  }
  .openbtn1 span:nth-of-type(1) {
    top: 21px;
  }
  .openbtn1 span:nth-of-type(2) {
    top: 31px;
  }
  .openbtn1 span:nth-of-type(3) {
    top: 41px;
  }
  .openbtn1.active span:nth-of-type(1) {
    top: 26px;
    left: 17.5px;
    transform: translateY(6px) rotate(-45deg);
    width: 35px;
  }
  .openbtn1.active span:nth-of-type(2) {
    opacity: 0;
  }
  .openbtn1.active span:nth-of-type(3) {
    top: 38px;
    left: 17.5px;
    transform: translateY(-6px) rotate(45deg);
    width: 35px;
  }
}

/* ハンバーガーここまで */
.button-01 {
  margin: 50px auto 30px auto;
}

@media (max-width: 850px) {
  .button-01 {
    margin: 20px auto;
  }
}

.button-01 a {
  position: relative;
  display: block;
  width: 90%;
  max-width: 530px;
  /*height: 75px;*/
  height: auto;
  margin: 0 auto 20px auto;
  background-color: #df0015;
  padding: 10px;
  position: relative;
  z-index: 1;
  transition: .3s;
}

.button-01 a:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: #ff0000;
  transform-origin: 100% 50%;
  transform: scaleX(0);
  transition: transform ease .3s;
}

.button-01 a:hover {
  color: #fff;
}

.button-01 a:hover:before {
  transform-origin: 0% 50%;
  transform: scaleX(1);
}

.button-01 a img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 20px;
  margin: auto;
  width: 35px;
  height: auto;
}

@media (max-width: 850px) {
  .button-01 a img {
    width: 20px;
    left: 8px;
    height: auto;
  }
}

.button-01 a p {
  display: block;
  color: #ffffff;
  font-size: 24px;
  line-height: 75px;
  text-align: center;
  font-family: 'font00-2';
}

@media (max-width: 850px) {
  .button-01 a p {
    font-size: 16px;
    line-height: 50px;
  }
}

@media (max-width: 850px) {
  .button-01 a p br.spnone {
    display: none;
  }
}

.button-02 {
  display: none;
}

@media (max-width: 850px) {
  .button-02 {
    position: relative;
    display: block;
    width: 65px;
    height: 65px;
    margin-left: 10px;
    padding: 15px 17.5px;
    background-image: url("../img/lp_lowfat/img_item_56.png");
    background-size: contain;
    float: right;
    z-index: 50;
  }
  .button-02 img {
    width: 30px;
    height: 30px;
  }
}

.img-01 {
  display: inline-block;
  width: 215px;
  height: auto;
}

@media (max-width: 1200px) {
  .img-01 {
    width: 150px;
  }
}

@media (max-width: 850px) {
  .img-01 {
    position: relative;
    z-index: 50;
    width: 120px;
    vertical-align: top;
  }
}

.img-01 a {
  display: block;
}

.img-01 a img {
  width: 100%;
  height: auto;
}

.img-02 {
  width: 60px;
  height: 60px;
  padding: 10px 17.5px;
  background-color: #ffffff;
  border-bottom: 10px solid #bdbdbd;
  float: right;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

@media (max-width: 1200px) {
  .img-02 {
    width: 35px;
    height: 50px;
    border-bottom: 5px solid #bdbdbd;
    padding: 1px 8px;
  }
}

@media (max-width: 850px) {
  .img-02 {
    height: 35px;
    vertical-align: text-bottom;
    background-color: transparent;
    border-bottom: 5px solid transparent;
  }
  .img-02.display-sp2 {
    display: inline-block;
    float: none;
  }
}

.img-02 img {
  animation-name: cyon;
  animation-duration: 4.5s;
  animation-timing-function: ease-in;
  animation-iteration-count: infinite;
  width: 25px;
  height: 25px;
}

@media (max-width: 1200px) {
  .img-02 img {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 1200px) {
  .img-02 img {
    width: 15px;
    height: 15px;
  }
}

.img-03 {
  position: absolute;
  z-index: 1;
  width: 100%;
  margin: 0 auto;
}

@media (max-width: 850px) {
  .img-03 {
    display: none;
  }
}

.img-03 img {
  width: 100%;
}

.img-04 img {
  display: block;
  width: 480px;
  height: auto;
  margin: 30px auto;
}

@media (max-width: 850px) {
  .img-04 img {
    width: 280px;
  }
}

.img-05 img {
  display: block;
  width: 85%;
  height: auto;
  margin: 30px auto;
}

@media (max-width: 850px) {
  .img-05 img {
    margin: 15px auto;
  }
}

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

.img-07-1 {
  position: absolute;
  top: 0;
  left: 0;
}

@media (max-width: 850px) {
  .img-07-1 {
    display: none;
  }
}

.img-07-2 {
  position: absolute;
  top: 0;
  right: 0;
}

@media (max-width: 850px) {
  .img-07-2 {
    display: none;
  }
}

.div-01 {
  display: inline-block;
  float: right;
  margin: 13px auto;
}

@media (max-width: 1200px) {
  .div-01 {
    margin: 5px auto;
  }
}

@media (max-width: 850px) {
  .div-01 {
    display: none;
    float: none;
  }
}

.div-01 ul {
  display: block;
}

@media (max-width: 850px) {
  .div-01 ul {
    margin: 50px auto;
    text-align: center;
  }
}

.div-01 ul li {
  position: relative;
  display: inline-block;
  width: 275px;
  height: 60px;
  margin-left: 15px;
}

@media (max-width: 1200px) {
  .div-01 ul li {
    width: 180px;
    height: 50px;
    margin-left: 10px;
  }
}

@media (max-width: 850px) {
  .div-01 ul li {
    display: block;
    width: auto;
    height: auto;
    margin: 10px auto;
    padding-bottom: 0;
    margin-bottom: 10px;
    border-radius: 0;
    line-height: 10px;
    text-align: center;
  }
}

.div-01 ul li a {
  position: absolute;
  display: block;
  width: 275px;
  height: 60px;
  background-color: #32aa00;
  border-bottom: 10px solid #326400;
  border-radius: 10px;
}

@media (max-width: 1200px) {
  .div-01 ul li a {
    width: 180px;
    height: 50px;
    border-bottom: 5px solid #326400;
  }
}

@media (max-width: 850px) {
  .div-01 ul li a {
    position: static;
    display: inline-block;
    width: auto;
    height: auto;
    margin: 0 auto;
    padding-bottom: 0;
    border-bottom: solid 1px #ffffff;
    border-radius: 0;
    background-color: transparent;
    border-bottom: 1px solid white;
  }
}

.div-01 ul li a:hover {
  top: 3px;
  height: 57px;
  border-bottom: 7px solid #326400;
}

.div-01 ul li a:hover .img-02 {
  height: 57px;
  border-bottom: 7px solid #bdbdbd;
}

@media (max-width: 1200px) {
  .div-01 ul li a:hover {
    height: 48px;
    border-bottom: 5px solid #326400;
  }
  .div-01 ul li a:hover .img-02 {
    height: 48px;
    border-bottom: 5px solid #bdbdbd;
  }
}

@media (max-width: 850px) {
  .div-01 ul li a:hover {
    height: auto;
    border-bottom: none;
    border-bottom: 1px solid white;
  }
  .div-01 ul li a:hover .img-02 {
    height: auto;
    border-bottom: none;
  }
}

.div-02 {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 35px auto 80px auto;
}

.div-02 .div-02-c {
  width: 250px;
  height: 250px;
  margin: 5px 30px;
  background-image: url("../img/lp_lowfat/img_item_51.png");
  background-size: contain;
}

@media (max-width: 850px) {
  .div-02 .div-02-c {
    width: 130px;
    height: 130px;
    margin: 5px;
  }
}

.div-02 .div-02-c p {
  padding: 90px 0;
  text-align: center;
  font-size: 26px;
  line-height: 35px;
  font-family: 'font00-2';
  color: #000000 !important;
}

@media (max-width: 850px) {
  .div-02 .div-02-c p {
    padding: 42px 0;
    font-size: 18px;
    line-height: 24px;
  }
}

.div-03 {
  position: relative;
  padding: 0 0 50px 0;
}

.div-03 details {
  margin: 25px auto;
  border: solid 5px #000000;
  padding: 30px;
  border-radius: 10px;
  background-color: #ffffff;
}

@media (max-width: 850px) {
  .div-03 details {
    margin: 20px auto;
    border: solid 3px #000000;
    padding: 20px;
  }
}

.div-03 details summary {
  position: relative;
  display: block;
  list-style-type: none;
}

.div-03 details summary::-webkit-details-marker {
  display: none;
}

.div-03 details summary p {
  width: 90%;
  font-size: 33px;
  line-height: 50px;
  font-family: 'font00-2';
}

@media (max-width: 850px) {
  .div-03 details summary p {
    font-size: 20px;
    line-height: 30px;
  }
}

.div-03 details summary:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 0;
  height: 0;
  margin: 10px;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 30px solid #000000;
  float: right;
  transition: .2s;
}

@media (max-width: 850px) {
  .div-03 details summary:after {
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 15px solid #000000;
  }
}

.div-03 details summary summary::-webkit-details-marker {
  display: none;
}

.div-03 details .details-content {
  margin: 20px 0;
}

@media (max-width: 850px) {
  .div-03 details .details-content {
    margin: 10px 0;
  }
}

.div-03 details .details-content p {
  font-size: 20px;
  line-height: 35px;
  font-family: 'font00-2';
}

@media (max-width: 850px) {
  .div-03 details .details-content p {
    font-size: 16px;
    line-height: 26px;
  }
}

.div-03 details[open] summary:after {
  transform: rotate(180deg);
}

.div-03 details[open] .details-content {
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}

.title-01 {
  position: relative;
  z-index: 1;
}

.title-01 img {
  display: block;
  width: 435px;
  height: auto;
  margin: 50px auto;
}

@media (max-width: 850px) {
  .title-01 img {
    width: 80%;
    margin: 50px auto 20px auto;
  }
}

.circle {
  width: 500px;
  height: 250px;
  margin: -100px auto 50px auto;
  border-radius: 0 0 250px 250px;
  background: #ff7800;
}

@media (max-width: 850px) {
  .circle {
    width: 280px;
    height: 200px;
    margin: -100px auto 10px auto;
    border-radius: 0 0 200px 200px;
  }
}

.text-00 {
  width: auto;
  font-size: 20px;
  line-height: 48px;
  text-align: center;
}

@media (max-width: 850px) {
  .text-00 {
    font-size: 16px;
    line-height: 30px;
    text-align: left;
  }
}

.text-00-2 {
  line-height: 40px;
}

@media (max-width: 850px) {
  .text-00-2 {
    line-height: 30px;
  }
}

.text-01 {
  display: inline-block;
  width: 215px;
}

@media (max-width: 1200px) {
  .text-01 {
    width: 145px;
  }
}

@media (max-width: 850px) {
  .text-01 {
    width: auto;
  }
}

.text-01 p {
  font-family: 'font00-2';
  display: block;
  font-size: 22px;
  color: #ffffff;
  text-align: center;
  font-weight: 600;
  line-height: 55px;
}

@media (max-width: 1200px) {
  .text-01 p {
    font-size: 17px;
    line-height: 50px;
  }
}

@media (max-width: 850px) {
  .text-01 p {
    display: inline-block;
    font-size: 15px;
    line-height: 30px;
  }
}

.text-02 {
  font-family: 'font00-2';
  position: absolute;
  bottom: 250px;
  right: 0;
  left: 0;
  margin: 0 auto;
  text-align: center;
  font-size: 45px;
  line-height: 66px;
  letter-spacing: 10px;
  font-weight: 600;
  color: #ffffff;
  text-shadow: 2px 2px 2px #323232;
}

@media (max-width: 1200px) {
  .text-02 {
    bottom: 100px;
    font-size: 35px;
    line-height: 55px;
  }
}

@media (max-width: 850px) {
  .text-02 {
    bottom: 50px;
    width: 90%;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 4px;
  }
}

.text-02 span {
  display: block;
  margin-top: 5px;
  text-align: center;
  letter-spacing: 2px;
  font-size: 26px;
  color: #ffffff;
}

@media (max-width: 1200px) {
  .text-02 span {
    font-size: 15px;
    line-height: 20px;
  }
}

@media (max-width: 850px) {
  .text-02 span {
    font-size: 12px;
    line-height: 20px;
  }
}

.text-03 {
  position: relative;
  text-align: center;
  font-family: 'font00-2';
  width: 500px;
  margin: 30px auto;
  font-size: 60px;
  line-height: 70px;
  z-index: 2;
}

@media (max-width: 850px) {
  .text-03 {
    width: 250px;
    margin: 20px auto;
    font-size: 26px;
    line-height: 35px;
    z-index: 2;
  }
}

.text-03.border:before {
  border-bottom: solid 20px #32aa00;
}

@media (max-width: 850px) {
  .text-03.border:before {
    border-bottom: solid 10px #32aa00;
  }
}

.text-03.text-03-2 {
  width: 565px;
}

@media (max-width: 850px) {
  .text-03.text-03-2 {
    width: 280px;
  }
}

.text-03.text-03-2.border:before {
  border-bottom: solid 20px #eec800;
}

@media (max-width: 850px) {
  .text-03.text-03-2.border:before {
    border-bottom: solid 10px #eec800;
  }
}

.text-04 {
  position: relative;
  text-align: center;
  font-family: 'font00-2';
  margin: 0 auto 20px auto;
  font-size: 34px;
  line-height: 51px;
  color: #ffff82 !important;
}

@media (max-width: 850px) {
  .text-04 {
    font-size: 20px;
    line-height: 35px;
  }
}

.text-05 {
  font-family: 'font00-2';
  font-size: 43px;
  text-align: center;
  padding-top: 150px;
}

@media (max-width: 850px) {
  .text-05 {
    font-size: 26px;
    padding-top: 120px;
  }
}

.text-06 {
  font-family: 'font00-2';
  font-size: 38px;
  line-height: 83px;
  text-align: center;
  margin: 60px 0 0 0;
  padding: 10px 0;
}

@media (max-width: 850px) {
  .text-06 {
    font-size: 20px;
    line-height: 45px;
    margin: 30px 0 0 0;
    padding: 10px 0;
  }
}

.text-06 span {
  position: relative;
  display: inline-block;
  width: auto;
  height: 80px;
  font-size: 58px;
  line-height: 83px;
  font-family: 'font00-2';
  z-index: 3;
}

@media (max-width: 850px) {
  .text-06 span {
    height: 30px;
    font-size: 26px;
    line-height: 45px;
  }
}

.text-06 span:after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  bottom: 5px;
  z-index: -1;
  height: 25px;
  background: linear-gradient(-45deg, #ff7800 25%, rgba(255, 255, 255, 0) 25%, rgba(255, 255, 255, 0) 50%, #ff7800 50%, #ff7800 75%, rgba(255, 255, 255, 0) 75%, rgba(255, 255, 255, 0));
  background-size: 15px 15px;
  animation: anime_stripe_1 .80s infinite linear;
}

@media (max-width: 850px) {
  .text-06 span:after {
    bottom: -10px;
    height: 15px;
  }
}

.text-07 {
  width: 740px;
  margin: 0 auto;
  border: solid 5px #000000;
  padding: 30px 0;
  font-family: 'font00-2';
  font-size: 33px;
  line-height: 33px;
  text-align: center;
  background-color: #ffffff;
  color: #000000 !important;
}

@media (max-width: 850px) {
  .text-07 {
    width: 100%;
    border: solid 3px #000000;
    padding: 20px 10px;
    font-size: 20px;
    line-height: 30px;
  }
}

.text-08 {
  font-family: 'font00-2';
  font-size: 38px;
  line-height: 55px;
  text-align: center;
  margin: 50px 0 0 0;
}

@media (max-width: 850px) {
  .text-08 {
    font-size: 20px;
    line-height: 30px;
  }
}

section {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}

section:before, section:after {
  content: '';
  width: 100%;
}

section:before {
  height: 100%;
  position: absolute;
  display: block;
  background-size: cover;
}

@media (max-width: 850px) {
  section:before {
    background-size: auto 100%;
  }
}

section.section01 {
  z-index: 3;
  height: 110vh;
  margin-top: 135px;
}

@media (max-width: 1200px) {
  section.section01 {
    height: 90vh;
    margin-top: 110px;
  }
}

@media (max-width: 850px) {
  section.section01 {
    margin-top: 0;
  }
}

section.section01:before {
  background-position: bottom;
  background-image: url("../img/lp_lowfat/img_main.jpg");
}

@media (max-width: 1200px) {
  section.section01:before {
    background-image: url("../img/lp_lowfat/img_main_sp.jpg");
    background-position: center;
  }
}

section.section02 {
  z-index: 5;
  height: auto;
  margin: 0 auto;
  padding: 100px 0 80px 0;
}

@media (max-width: 850px) {
  section.section02 {
    clip-path: inset(0);
  }
  section.section02:before {
    background-attachment: scroll !important;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
  }
}

@media (max-width: 850px) {
  section.section02 {
    margin: 0 auto;
    padding: 30px 0;
  }
}

section.section02:before {
  background-image: url("../img/lp_lowfat/img_item_02-2.jpg");
  background-position: top;
  background-attachment: fixed;
  margin: -100px auto;
  padding: 100px 0 50px 0;
}

@media (max-width: 850px) {
  section.section02:before {
    margin: -50px auto;
    padding: 50px 0 20px 0;
  }
}

section.section02 .img-03 {
  margin: -200px auto;
}

section.section02 .section02-inner {
  width: 100%;
}

section.section02 .section02-inner .lp-inner {
  position: relative;
  margin: 0 auto;
  z-index: 2;
}

section.section03 {
  z-index: 4;
  height: 100%;
}

@media (max-width: 850px) {
  section.section03 {
    clip-path: inset(0);
  }
  section.section03:before {
    background-attachment: scroll !important;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
  }
}

section.section03:before {
  background-image: url("../img/lp_lowfat/img_item_09.jpg");
  background-position: top;
  background-attachment: fixed;
}

section.section03 .lp-inner {
  position: relative;
  margin: 0 auto;
  padding: 50px 0;
}

section.section03 p {
  color: #ffffff;
  line-height: normal;
}

section.section04 {
  z-index: 3;
  padding-bottom: 100px;
  overflow: inherit;
}

@media (max-width: 850px) {
  section.section04 {
    clip-path: inset(0);
  }
  section.section04:before {
    background-attachment: scroll !important;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
  }
}

@media (max-width: 850px) {
  section.section04 {
    padding: 50px 0;
  }
}

section.section04:before {
  bottom: 0;
  padding: 100px 0;
  z-index: -5;
  background-image: url("../img/lp_lowfat/img_item_02-2.jpg");
  background-position: top;
  background-attachment: fixed;
}

section.section04 .img-03 {
  top: 0;
  z-index: 1;
}

section.section04 .img-03-2 {
  top: auto;
  bottom: -150px;
  z-index: 3;
}

section.section04 .section04-img {
  position: relative;
  width: calc(100% + 50px);
  margin: 80px 0 30px 0;
}

@media (max-width: 850px) {
  section.section04 .section04-img {
    position: relative;
    width: 100%;
    height: auto;
    margin: 20px auto !important;
  }
}

section.section04 .section04-img:first-of-type {
  margin-left: -50px;
}

section.section04 .section04-img:nth-of-type(2) {
  z-index: 5;
}

section.section04 .section04-img:last-of-type {
  margin-left: -50px;
  z-index: 4;
}

section.section04 .section04-img img {
  width: 100%;
  height: auto;
}

section.section05 {
  z-index: 1;
}

@media (max-width: 850px) {
  section.section05 {
    clip-path: inset(0);
  }
  section.section05:before {
    background-attachment: scroll !important;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
  }
}

@media (max-width: 850px) {
  section.section05:before {
    background-size: 100% auto;
  }
}

section.section05.section05-1 {
  overflow: inherit;
  margin-top: -250px;
  padding-top: 250px;
}

section.section05.section05-1:after {
  position: relative;
  display: block;
  height: 35px;
  background-image: url("../img/lp_lowfat/img_item_49.png");
}

section.section05.section05-2 {
  padding-bottom: 50px;
}

section.section05:before {
  z-index: -1;
  background-image: url("../img/lp_lowfat/img_item_48.png");
  background-repeat: repeat-y;
  background-attachment: fixed;
}

section.section05 p {
  color: #ffffff !important;
}

section.section05 .text-07 {
  color: #000000 !important;
}

section.section05 .section05-inner {
  margin: 80px auto;
}

@media (max-width: 850px) {
  section.section05 .section05-inner {
    margin: 50px auto;
  }
}

section.section05 .section05-inner2 {
  display: flex;
  justify-content: center;
}

section.section05 .section05-inner2 .img-06 {
  width: 30%;
  margin: 30px auto;
  padding: 0 20px;
}

@media (max-width: 850px) {
  section.section05 .section05-inner2 .img-06 {
    width: 33%;
    margin: 10px auto;
    padding: 0 5px;
  }
}

section.section05 .section05-inner2 .img-06:nth-of-type(2) {
  border-left: solid 1px #ffffff;
  border-right: solid 1px #ffffff;
}

section.section06 {
  z-index: 2;
}

section.section06:before {
  z-index: -1;
  background-image: url("../img/lp_lowfat/img_item_49.png");
  background-repeat: repeat-y;
}

section.section06 .section06-inner {
  position: relative;
  padding: 50px 0;
  z-index: 2;
}

@media (max-width: 850px) {
  section.section06 .section06-inner {
    padding: 30px 0;
  }
}

section.section06 .section06-inner .img-03 {
  z-index: 0;
}

section.section06 .slider {
  margin: 50px auto;
}

@media (max-width: 850px) {
  section.section06 .slider {
    margin: 30px auto;
  }
}

section.section06 .slider li {
  margin: 0 30px;
}

section.section06 .slider li img {
  width: 700px;
  height: auto;
}

@media (max-width: 850px) {
  section.section06 .slider li img {
    width: 300px;
  }
}

section.section06 .slider .slide-arrow {
  width: 65px !important;
  height: 150px !important;
  bottom: 0;
  height: 0;
  margin: auto;
  position: absolute;
  z-index: 5;
  top: 0;
  opacity: 0.8;
  background-size: cover;
}

@media (max-width: 850px) {
  section.section06 .slider .slide-arrow {
    width: 30px !important;
    height: 70px !important;
  }
}

section.section06 .slider .prev-arrow {
  left: 0;
  background-image: url("../img/lp_lowfat/img_item_57.png");
}

section.section06 .slider .next-arrow {
  right: 0;
  background-image: url("../img/lp_lowfat/img_item_58.png");
}

section.section07 {
  z-index: 2;
}

@media (max-width: 850px) {
  section.section07 {
    clip-path: inset(0);
  }
  section.section07:before {
    background-attachment: scroll !important;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
  }
}

section.section07:before {
  background-image: url("../img/lp_lowfat/img_item_52.png");
  background-position: bottom -100px left 0;
}

@media (max-width: 850px) {
  section.section07:before {
    background-attachment: fixed;
    background-position: bottom 0 left 0;
  }
}

section.section07 .section07-inner {
  position: relative;
  width: 100%;
  height: auto;
  margin-bottom: 80px;
  padding: 50px;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 850px) {
  section.section07 .section07-inner {
    margin-bottom: 50px;
    padding: 30px 20px;
  }
}

section.section07 .section07-inner .section07-inner-c {
  margin: 0 0 30px 0;
  text-align: center;
}

section.section07 .section07-inner .section07-inner-c img {
  display: inline-block;
  width: 120px;
  height: 120px;
  margin: 0 30px 0 0;
  vertical-align: baseline;
}

@media (max-width: 850px) {
  section.section07 .section07-inner .section07-inner-c img {
    width: 30%;
    height: auto;
    margin: 30px 20px 0 0;
    vertical-align: top;
  }
}

section.section07 .section07-inner .section07-inner-c .section07-inner-text {
  position: relative;
  display: inline-block;
  width: 800px;
  height: auto;
  padding: 25px 30px;
  border-radius: 20px;
  background-color: #ffffff;
  box-shadow: 5px 5px 5px 0 rgba(50, 50, 50, 0.5);
}

@media (max-width: 850px) {
  section.section07 .section07-inner .section07-inner-c .section07-inner-text {
    width: 60%;
    padding: 25px 20px;
  }
}

section.section07 .section07-inner .section07-inner-c .section07-inner-text:after {
  content: '';
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  left: -20px;
  top: 60px;
  border-right: 35px solid #ffffff;
  border-top: 25px solid transparent;
  border-bottom: 0px solid transparent;
  transform: rotate(-10deg);
}

section.section07 .section07-inner .section07-inner-c .section07-inner-text p {
  font-size: 18px;
  line-height: 29px;
  font-family: 'font04';
  text-align: left;
}

@media (max-width: 850px) {
  section.section07 .section07-inner .section07-inner-c .section07-inner-text p {
    font-size: 16px;
    line-height: 26px;
  }
}

section.section07 .section07-inner .section07-inner-c .section07-inner-text p span {
  font-size: 18px;
  line-height: 29px;
  font-family: 'font04';
  float: right;
}

@media (max-width: 850px) {
  section.section07 .section07-inner .section07-inner-c .section07-inner-text p span {
    font-size: 16px;
    line-height: 26px;
  }
}

section.section08 {
  z-index: 2;
}

@media (max-width: 850px) {
  section.section08 {
    clip-path: inset(0);
  }
  section.section08:before {
    background-attachment: scroll !important;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
  }
}

section.section08:before {
  background-attachment: fixed;
  background-image: url("../img/lp_lowfat/img_item_40.jpg");
}

.width-inner {
  width: 1200px;
  height: auto;
  margin: 0 auto;
}

@media (max-width: 1200px) {
  .width-inner {
    width: 100%;
  }
}

.pagetop {
  position: relative;
  width: 60px;
  height: 60px;
  position: fixed;
  right: 0;
  bottom: 0;
  background: #32aa00;
  opacity: 1;
  z-index: 10;
}

.pagetop img {
  transform: rotate(180deg);
  position: absolute;
  width: 25px;
  height: 25px;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}

/* フッターカスタム */
.p-footer-widget-area {
  background-color: #ffffff;
}

.l-footer {
  margin-top: 130px;
}

.p-footer-widget-area .p-widget__title {
  color: #dc7c00;
  font-size: 24px;
  font-family: 'font06';
}

.p-footer-widget-area .p-widget li {
  margin-bottom: 0;
}

.p-footer-widget-area .p-widget li a, .f-text1 {
  font-size: 14px;
  lone-height: 36px;
}

.p-copyright {
  height: 75px;
  background-color: #000000;
}

.p-copyright p {
  line-height: 75px;
  color: #ffffff;
}

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

.f-logo img {
  display: block;
  width: 240px;
  height: auto;
  margin: 0 auto 30px auto;
}

.f-text1 span {
  font-size: 18px;
  font-family: 'font00-2';
}

@media (max-width: 850px) {
  .l-footer {
    margin-top: 60px;
  }
  .f-logo img {
    width: 180px;
    margin: 0 auto;
  }
  .p-footer-widget-area .p-widget {
    padding: 20px 0;
  }
  .p-siteinfo {
    text-align: center;
  }
  .p-footer-widget-area .p-widget li a, .f-text1 {
    line-height: 20px;
  }
  .p-footer-widget-area__has-social-nav .p-footer-widget-area__inner {
    padding-bottom: 50px;
  }
}

#js-footer-bar {
  display: none !important;
}

/* フッターカスタム */
