@charset "utf-8";

.lp-header {
  display: none;
}

.lp-header--fixed+.lp-page {
  margin-top: 0!important;
}

.new-tl {
  width: 100vw;
  max-width: 700px;
  margin: 0 auto;
  background: #e1d7cc;
}

.new-tl img {
  /* width: 100%; */
  display: block;
}

.formOutBox {
  background: #fff;
  padding-bottom: 16%;
}

.fixed-logo {
  display: none;
  position: fixed;
  width: 102px;
  z-index: 100;
  top: 15px;
  left: 15px;
}

.bg-image {
  display: none;
}
.new-tl__full-image, .new-tl__full-image > img {
  width: 100%;
}

.new-tl__visual > img {
  width: 96%;
  margin: 8% auto;
}

.new-tl__point {
  background: #cbbaa7;
  padding-bottom: 15%;
}
.new-tl__point__text {
  width: 85.7%;
  margin: 10% auto 0;
}
.new-tl__point__arrow {
  width: 13.7%;
  margin: 8% auto;
}
.new-tl__point__note {
  width: 92.8%;
  margin: 0 auto;
}
.new-tl__point__image img {
  margin-top: 20%;
}

.new-tl__feature {
  width: 100%;
  background: #e1d7cc;
  padding-bottom: 2%;
}
.new-tl__feature__arrow {
  width: 6.28%;
  margin: 0 auto 10%
}

.new-tl__feature__table {
  width: 96%;
  margin: 0 auto 10%;
}

.new-tl__feature .new-tl__full-image img {
  margin-bottom: 10%;
}

.new-tl__point__link {
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: 400;
  height: 80px;
  border-radius: 80px;
  width: 92.8%;
  margin: 7% auto 0;
  color: #9c7c52;
  transition: .2s;
  text-align: center;
  line-height: 1.6;
  box-shadow: 1px 2px 2px #90724c;
}

@media (hover:hover){
  .new-tl__point__link:hover{opacity:.8}
}

.new-tl__point__link:active {
  opacity: .8;
}

.new-tl__faq {
  padding: 10% 0;
  background: #cbbaa7;
}

.new-tl__faq h2 {
  width: 96%;
  margin: 0 auto 5%;
}

.new-tl__faq div > img {
  width: 86.3%;
  margin: 0 auto;
}

.new-tl__voice__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 3% 3%;
  padding: 5% 4% 7%;
}
.new-tl__voice__item {
  width: 48%;
  margin-bottom: 4%;
}
.new-tl__voice iframe {
  width: 100%;
  aspect-ratio: 9 / 16;
}
.new-tl__message {
  padding-bottom: 10%;
}
.new-tl__message h2 {
  width: 96%;
  margin: -9% auto 0;
  position: relative;
  z-index: 1;
}
.new-tl__message h3 {
  width: 25.6%;
  margin: 0 auto 6%;
}
.new-tl__message > div {
  width: 91.4%;
  margin: -6% auto 0;
  background: #fff;
  padding: 12% 3% 3%;
  font-size: clamp(14px, 4vw, 20px);
  line-height: 2;
}

.formOutBox > h2 {
  background: linear-gradient(90deg, rgba(170,159,152,1) 10%, rgba(174,149,114,1) 90%);
  margin-bottom: 10%;
  padding: 3.5% 0;
  color: #fff;
  font-size: clamp(18px, 5.2vw, 28px);
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 400;
}

.formOutBox > p {
  text-align: center;
  margin-bottom: 5%;
  font-size: 12px;
}

.fixed-button {
  display: none;
  position: fixed;
  left: 50%;
  bottom: 0;
  translate: -50% 100px;
  max-width: 700px;
  width: 100vw;
  height: 100px;
  background: rgba(255, 255, 255, 0.9);
  padding: 20px 2%;
  z-index: 2;
}

.fixed-button a {
  background: #b9a767;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: 400;
  height: 60px;
  border-radius: 60px;
  width: 100%;
  color: #fff;
  transition: .2s;
}

@media (hover:hover){
  .fixed-button a:hover{opacity:.8}
}

.fixed-button a:active {
  opacity: .8;
}

#btmBtn.UpMove {
  animation: UpAnime 0.5s forwards;
  opacity: 1;
  translate: -50% 0;
}
@keyframes UpAnime {
  from {
    opacity: 0;
    translate: -50% 100px;
  }
  to {
    opacity: 1;
    translate: -50% 0;
  }
}
#btmBtn.DownMove {
  animation: DownAnime 0.5s forwards;
  opacity: 0;
  translate: -50% 100px;
}
@keyframes DownAnime {
  from {
    opacity: 1;
    translate: -50% 0;
  }
  to {
    opacity: 0;
    translate: -50% 100px;
  }
}

@media screen and (min-width: 900px) {
  .fixed-button {
    display: block;
  }
  .fixed-logo {
    display: block;
    left: 3.2vw;
  }
  .bg-pattern {
    position: fixed;
    z-index: 0;
    background: url(../img/sub-bg.svg) no-repeat center center;
    background-size: cover;
    width: 100vw;
    height: 100vh;
  }
  .bg-image {
    display: block;
    position: fixed;
    top: 0;
    z-index: 0;
    background: #f0f1f2;
    height: 100vh;
    width: calc(50vw - 357px);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .bg-image--left {
    left: 0;
  }
  .bg-image--left > img {
    width: 18.2vw;
  }
  .bg-image--right {
    right: 0;
    gap: 8px;
  }
  .bg-image--right ul {
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    width: 16.7vw;
    padding: 40px 0;
  }
  .bg-image--right li {
    margin: 0 auto 30px;
    transition: .2s;
  }
  .bg-image--right li:hover {
    opacity: .8;
  }
  .bg-image--right li:first-of-type {
    width: 6.1vw;
  }
  .bg-image--right li:nth-of-type(2) {
    width: 12.4vw;
  }
  .bg-image--right li:nth-of-type(3) {
    width: 6.4vw;
  }
  .bg-image--right li:nth-of-type(4) {
    width: 7.2vw;
  }
  .bg-image--right li:nth-of-type(5) {
    width: 6.8vw;
    margin-bottom: 0;
  }

  .formOutBox > p {
    font-size: 16px;
  }
}

