/** Shopify CDN: Minification failed

Line 316:3 Expected "}" to go with "{"

**/
.cp-bd img {
  max-width: 100%;
}

ol,
ul {
  margin: 0;
  list-style: none;
}

#lp_pheni {
  position: relative;
  background: #ffffff;
  /* Old browsers */
  background: -moz-linear-gradient(top, #ffffff 0%, #6ec2ee 45%, #6ec2ee 55%, #ffffff 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #ffffff 0%, #6ec2ee 45%, #6ec2ee 55%, #ffffff 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #ffffff 0%, #6ec2ee 45%, #6ec2ee 55%, #ffffff 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#ffffff', GradientType=0);
  /* IE6-9 */
}

body {}

#lp_pheni::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100vh;
  background: url("/cdn/shop/files/bg_main_top.png?v=1634757457") no-repeat scroll center top / contain;
}

#lp_pheni::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100vh;
  background: url("/cdn/shop/files/bg_main_btm.png?v=1634757462") no-repeat scroll center bottom / contain;
}

#lp_pheni .inner {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  padding: 80px 0;
}

#lp_pheni h1 {
  margin: 0 0 80px;
}

#lp_pheni .block {
  border: 6px solid #67ceff;
  border-radius: 20px;
  padding: 50px;
  margin: 0 0 80px;
  background: #fff;
}

#lp_pheni .set dl {
  margin: 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}

#lp_pheni .set dl dt {
  width: 42%;
  margin: 0;
}

#lp_pheni .set dl dd {
  width: 58%;
  margin: 0;
  padding: 0 0 0 3%;
}

#lp_pheni .block .tit {
  font-size: 28px;
  font-weight: 500;
  margin: 0 0 20px;
}

#lp_pheni .block .text {
  padding: 0 0 15px;
  line-height: 1.8;
}

#lp_pheni .block .btn {
  font-size: 16px;
  padding: 15px 60px;
  background: #67ceff;
  color: white;
  border-radius: 25px;
  text-decoration: none;
}

#lp_pheni .list {
  margin: 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

#lp_pheni .list li {
  width: 24%;
  line-height: 0;
  margin: 0;
}

#lp_pheni .list.blue li {
  width: 32.4%;

}

#lp_pheni .list.scene li {
  width: 49.35%;
  margin: 2% 0 0;
}

#lp_pheni .img .ph-main {
  line-height: 0;
  margin: 2% 0;
}

#lp_pheni .block.info .tit {
  text-align: center;
  letter-spacing: 5px;
}

#lp_pheni .btn-area {
  margin: 0;
}

#lp_pheni .block.info .btn-area {
  text-align: center;
  margin: 30px 0 0;
}

#lp_pheni .list li img,
.ph-main img {
  opacity: 0;
}

#lp_pheni .list.blue.on li:nth-child(1) img {
  animation: fadeIn 1s ease 0.1s 1 forwards;
}

#lp_pheni .list.blue.on li:nth-child(2) img {
  animation: fadeIn 1s ease 0.3s 1 forwards;
}

#lp_pheni .list.blue.on li:nth-child(3) img {
  animation: fadeIn 1s ease 0.5s 1 forwards;
}

.ph-main.on img {
  animation: fadeIn02 1s ease 0.1s 1 forwards;
}

#lp_pheni .list.color.on li:nth-child(1) img {
  animation: fadUp 0.5s ease 0.1s 1 forwards;
}

#lp_pheni .list.color.on li:nth-child(2) img {
  animation: fadUp 0.5s ease 0.3s 1 forwards;
}

#lp_pheni .list.color.on li:nth-child(3) img {
  animation: fadUp 0.5s ease 0.5s 1 forwards;
}

#lp_pheni .list.color.on li:nth-child(4) img {
  animation: fadUp 0.5s ease 0.7s 1 forwards;
}

#lp_pheni .list.scene.on li:nth-child(1) img {
  animation: fadeInleft 1s ease 0.3s 1 forwards;
}

#lp_pheni .list.scene.on li:nth-child(2) img {
  animation: fadeInleft 1s ease 0.5s 1 forwards;
}


@keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translate(0, -30px);
    transform: translate(0, -30px);
  }

  to {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}

@keyframes fadeIn02 {
  from {
    opacity: 0;
    -webkit-transform: translate(0, 30px);
    transform: translate(0, 30px);
  }

  to {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}

@keyframes fadeInleft {
  from {
    opacity: 0;
    -webkit-transform: translate(-30px, 0);
    transform: translate(-30px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}

@keyframes fadUp {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }

  50% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@media (max-width: 768px) {
  #lp_pheni .inner {
    padding: 8% 0;
  }

  #lp_pheni h1 {
    margin: 0 0 8%;
  }

  #lp_pheni .block {
    border: 3px solid #67ceff;
    border-radius: 10px;
    padding: 4%;
    margin: 0 0 8%;
  }

  #lp_pheni .set dl dd,
  #lp_pheni .set dl dt {
    width: 100%;
    margin: 0;
  }

  #lp_pheni .block .tit {
    font-size: 20px;
    font-weight: 500;
    margin: 4% 0;
  }

  #lp_pheni .block .text {
    padding: 0 0 8px;
    line-height: 1.6;
  }

  .notice {
    padding: 0 0 12px;
  }

  .notice li {
    text-indent: -1em;
    padding: 0 0 5px 0.7em;
  }

  #lp_pheni .btn-area,
  #lp_pheni .block.info .btn-area {
    margin: 0 0 4%;
  }

  #lp_pheni .block .btn {
    font-size: 14px;
    padding: 15px;
    width: 100%;
  }