* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-weight: 500;
  color: #000;
  line-height: 1.5em;
  min-height: 100vh;
  background: #C1E3F2;
}

ul, ol {
  list-style-type: none;
}

a:hover {
  opacity: 1;
}

a:focus {
  outline: none;
}

img {
  height: auto;
  border: 0;
  vertical-align: top;
  max-width: 100%;
  margin: 0;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  img {
    width: 100%;
  }
}

video {
  vertical-align: bottom;
  width: 100%;
  height: auto;
  outline: none;
}

html {
  scroll-behavior: smooth;
}

.content_wrap {
  max-width: 750px;
  min-height: 100vh;
  margin: 0 auto;
  overflow: visible;
  box-shadow: 0 0 30px rgba(20, 166, 200, 0.5);
  background-image: linear-gradient(178deg, #71cff9, #ffeef6);
  position: relative;
  z-index: 10;
}
.content_wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/4.webp);
  background-size: cover;
  background-position: center;
  opacity: 0.65;
  z-index: -9;
}
.content_wrap img {
  display: block;
  height: auto;
  width: 100%;
}
.content_wrap p img {
  width: 100%;
  height: auto;
  display: block;
}
.content_wrap .top-back {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.content_wrap .top-back .top-font {
  color: #8E9497;
  font-size: 1.5em;
  font-weight: 500;
  line-height: 4.3rem;
  letter-spacing: 1.2em;
  word-wrap: break-word;
  position: absolute;
  top: 63%;
  left: 5%;
  width: 59%;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  .content_wrap .top-back .top-font {
    font-size: 0.94em;
    top: 60%;
    letter-spacing: 1em;
    line-height: 3.3rem;
    width: 73%;
  }
}
.content_wrap .top-back .top-font .white-sen {
  background: rgba(255, 255, 255, 0.5215686275);
  padding: 6px 1px 3px 6px;
  margin-right: 10px;
}
.content_wrap .top-back .top-font .top-font-2 {
  letter-spacing: 0.5em;
}
@media only screen and (max-width: 767px) {
  .content_wrap .top-back .top-font .top-font-2 {
    letter-spacing: 0.3em;
  }
}

.logo-animation {
  position: absolute;
  top: 37%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 88%;
  opacity: 0;
}
@media only screen and (max-width: 767px) {
  .logo-animation {
    top: 37%;
  }
}
.logo-animation svg {
  width: 100%;
  height: auto;
}
.logo-animation path,
.logo-animation line,
.logo-animation circle {
  stroke-width: 4.5px;
  fill: none;
}
#line-svg {
  width: 100%;
  height: auto;
}

#linePath {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
}

.line-container {
  position: relative;
}
.line-container .omoi-wrap {
  z-index: 3;
  position: absolute;
  top: 6%;
  width: 100%;
  padding: 8%;
}
@media only screen and (max-width: 767px) {
  .line-container .omoi-wrap {
    top: 7%;
    padding: 0px;
  }
}
.line-container .omoi-wrap div {
  color: white;
  font-size: 1.9em;
  line-height: 5.2rem;
  letter-spacing: 1rem;
  font-weight: 500;
  letter-spacing: 5.1px;
  word-wrap: break-word;
  text-shadow: 0px 0px 30px rgb(89, 178, 212);
}
@media only screen and (max-width: 767px) {
  .line-container .omoi-wrap div {
    font-size: 0.94em;
    line-height: 2.7em;
    letter-spacing: 0.5em;
  }
}
@media only screen and (max-width: 767px) {
  .line-container .omoi-wrap .to-ten {
    padding-left: 7%;
  }
}
.line-container .omoi-wrap .omoi-font-2 {
  text-align: center;
  font-size: 1.3em;
  line-height: 4rem;
  letter-spacing: 0.1rem;
  margin-top: 24%;
}
@media only screen and (max-width: 767px) {
  .line-container .omoi-wrap .omoi-font-2 {
    text-align: center;
    font-size: 0.8rem;
    line-height: 2.2rem;
    letter-spacing: 0.05rem;
    margin-top: 24%;
  }
}

.card-section {
  position: relative;
  width: 100%;
  height: 100vh;
  background: transparent;
  overflow: hidden;
}

.card-animation-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
  z-index: 10;
  will-change: transform;
}

.promise-wrap {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.promise-card {
  position: absolute;
  width: 80%;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(200px);
  transition: transform 0.3s ease-out, opacity 0.3s ease-out;
  will-change: transform, opacity;
}
.promise-card.card1 {
  opacity: 1;
  transform: translateY(200px);
}
.promise-card.card2 {
  transform: translateY(300px);
}
.promise-card.card3 {
  transform: translateY(300px);
}
.promise-card img {
  width: 100%;
  height: auto;
  display: block;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.section {
  height: 100vh;
  position: relative;
}
.section__pin {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  will-change: transform, opacity;
  box-sizing: border-box;
}
.section__pin img {
  width: 100%;
  max-width: 700px;
  height: auto;
  display: block;
}
.section__pin.new_pin {
  background: #fff;
}
.section__pin.new_pin .new-section {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  padding: 40px 20px;
}
.section__pin.new_pin .new-section .omoi-font-2 {
  color: #000;
  font-size: 1.1em;
  line-height: 2;
  text-align: left;
}
.section__pin.new_pin .new-section .omoi-font-2 p {
  margin-bottom: 2em;
}

.new-promise .block {
  width: 52%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: sticky;
  margin: auto;
  top: 0;
}
@media only screen and (max-width: 767px) {
  .new-promise .block {
    width: 86%;
  }
}
@media only screen and (max-width: 320px) {
  .new-promise .block {
    width: 80%;
    height: 85vh;
  }
}
.new-promise .block p {
  display: inline-block;
  font-size: 60px;
  padding: 0;
  margin: 0;
}
.new-promise .block img {
  box-shadow: 0 4px 10px rgba(176, 225, 244, 0.51);
  border-radius: 188px 0px 0px 0px;
}
.new-promise .block-one {
  color: #fff;
  z-index: 100;
}
.new-promise .block-two {
  z-index: 200;
}
.new-promise .block-two img {
  margin-top: 206px;
}
@media only screen and (max-width: 767px) {
  .new-promise .block-two img {
    margin-top: 58%;
  }
}
.new-promise .block-three {
  z-index: 300;
}
.new-promise .block-three img {
  margin-top: 416px;
}
@media only screen and (max-width: 767px) {
  .new-promise .block-three img {
    margin-top: 120%;
  }
}

.new-section {
  margin-top: 100px;
  width: 100%;
  max-width: 750px;
  padding: 352px 20px 100px;
}
@media only screen and (max-width: 767px) {
  .new-section {
    padding: 139px 20px 70px;
  }
}
.new-section-title {
  margin-top: 100px;
  width: 50%;
  margin: auto;
}
.new-section .tatesen-wrap {
  height: 100px;
  margin: 50px auto;
}
@media only screen and (max-width: 767px) {
  .new-section .tatesen-wrap {
    height: 50px;
  }
}
.new-section .tatesen-wrap .tatesen {
  width: 1px;
  height: 0;
  background-color: white;
  animation: lineGrowAndFade 2s ease-in-out infinite;
  margin: auto;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .new-section .tatesen-wrap .tatesen {
    animation: lineGrowAndFadeSP 2s ease-in-out infinite;
  }
}

@keyframes lineGrowAndFade {
  0% {
    height: 0;
    opacity: 0;
  }
  25% {
    height: 100px;
    opacity: 1;
  }
  50% {
    height: 100px;
    opacity: 0;
  }
  75% {
    height: 0;
    opacity: 0;
  }
  100% {
    height: 0;
    opacity: 0;
  }
}
@keyframes lineGrowAndFadeSP {
  0% {
    height: 0;
    opacity: 0;
  }
  25% {
    height: 50px;
    opacity: 1;
  }
  50% {
    height: 50px;
    opacity: 0;
  }
  75% {
    height: 0;
    opacity: 0;
  }
  100% {
    height: 0;
    opacity: 0;
  }
}
.new-products {
  width: 70%;
  margin: 100px auto;
}
@media only screen and (max-width: 767px) {
  .new-products {
    width: 90%;
    margin: 50px auto;
  }
}
.new-products-detail {
  width: 100%;
}
.new-products-botan {
  width: 97%;
  margin: 0px auto;
}
.new-products-detail-1 {
  width: 100%;
}
.new-products-botan-1 {
  width: 72%;
  margin: 50px auto 100px;
}

.footer-wrap {
  width: 100%;
  border-top: 2px solid white;
  margin: 200px auto 100px;
}
@media only screen and (max-width: 767px) {
  .footer-wrap {
    margin: 100px auto 50px;
  }
}
.footer-wrap .hp-link-1 {
  margin: 100px auto;
  display: block;
}
@media only screen and (max-width: 767px) {
  .footer-wrap .hp-link-1 {
    margin: 50px auto;
  }
}
.footer-wrap .hp-link-2 {
  margin: 100px auto;
  width: 67%;
  display: block;
}
@media only screen and (max-width: 767px) {
  .footer-wrap .hp-link-2 {
    margin: 50px auto;
  }
}

.sns-waku {
  display: flex;
  justify-content: space-between;
  width: 76%;
  margin: 100px auto;
}
@media only screen and (max-width: 767px) {
  .sns-waku {
    margin: 50px auto;
  }
}
.sns-waku .sns-waku-1 {
  width: 26%;
}
.sns-waku .sns-waku-2 {
  width: 26%;
}
.sns-waku .sns-waku-3 {
  width: 26%;
}
.sns-waku a {
  width: 100%;
  display: block;
}

.copyright {
  font-size: 15px;
  margin: auto;
  color: #8E9497;
  text-align: center;
}/*# sourceMappingURL=lpstyle_1.css.map */