@charset "UTF-8";
:root {
  --gap_s:4%;
  --gap_m:10%;
  --gap_l:16%;
  --gap_xl:20%;
  --10px: 59%;
}

a {
  transition: opacity 0.3s ease;
}

a:hover {
  opacity: 0.7;
}

body {
  max-width: 100VW;
  overflow-x: hidden;
}

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

video {
  top: 0;
  width: 100%;
  max-width: 100%;
  height: auto;
  background: transparent;
}

.fonte {
  font-family: "Montserrat", sans-serif;
}
.fonte.section_headline {
  font-size: 32px;
  color: #7bd3ca;
  font-weight: 500;
  text-align: center;
}

.disclaimer {
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
  font-size: 9px;
  font-weight: 400;
  color: #fff;
  margin-left: auto;
}

.js-fade_zoom {
  opacity: 0;
  transform: scale(2, 2);
}

.js-fade_zoom.is-visible {
  opacity: 1;
  transform: scale(1, 1);
  transition-duration: 0.7s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.js-fade {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.js-fade_in {
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.js-fade_right {
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.js-fade_left {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.js-fade.is-visible, .js-fade_right.is-visible, .js-fade_left.is-visible {
  opacity: 1;
  transform: translate(0);
}

.js-fade_in.is-visible {
  opacity: 1;
  transition-duration: 1s;
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.deley-1 {
  transition-delay: 0.5s;
  animation-delay: 0.5s;
}

.deley-2 {
  transition-delay: 1s;
  animation-delay: 1s;
}

.deley-3 {
  transition-delay: 1.5s;
  animation-delay: 1.5s;
}

.deley-4 {
  transition-delay: 2s;
  animation-delay: 2s;
}

.deley-5 {
  transition-delay: 2.5s;
  animation-delay: 2.5s;
}

.deley-6 {
  transition-delay: 3s;
  animation-delay: 3s;
}

.deley-7 {
  transition-delay: 3.5s;
  animation-delay: 3.5s;
}

.deley-8 {
  transition-delay: 4s;
  animation-delay: 4s;
}

.deley-9 {
  transition-delay: 4.5s;
  animation-delay: 4.5s;
}

.deley-10 {
  transition-delay: 5s;
  animation-delay: 5s;
}

.deley-1_1 {
  transition-delay: 0.35s;
  animation-delay: 0.35s;
}

.deley-1_2 {
  transition-delay: 0.7s;
  animation-delay: 0.7s;
}

.deley-1_3 {
  transition-delay: 1.05s;
  animation-delay: 1.05s;
}

.deley-1_4 {
  transition-delay: 1.4s;
  animation-delay: 1.4s;
}

.deley-1_5 {
  transition-delay: 1.75s;
  animation-delay: 1.75s;
}

.deley-1_6 {
  transition-delay: 2.1s;
  animation-delay: 2.1s;
}

.deley-1_7 {
  transition-delay: 2.45s;
  animation-delay: 2.45s;
}

.deley-1_8 {
  transition-delay: 2.8s;
  animation-delay: 2.8s;
}

.deley-1_9 {
  transition-delay: 3.15s;
  animation-delay: 3.15s;
}

.deley-1_10 {
  transition-delay: 3.5s;
  animation-delay: 3.5s;
}

.ma {
  margin-left: auto;
  margin-right: auto;
}

.mr {
  margin-left: auto;
}

.img-anime {
  border-radius: 8px;
  animation: imgAnimation 2s infinite ease-in-out;
}

@keyframes imgAnimation {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.9;
  }
}
.wrap {
  background: url(../img/content_fv-bg.webp) no-repeat center bottom;
  background-size: cover;
  background-attachment: fixed;
}

.wrap article {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.24);
}

.section.section_hero {
  position: relative;
}

.section.section_cta {
  position: relative;
}
.section.section_cta .btn_area {
  position: absolute;
  left: 50%;
  bottom: 8%;
  transform: translateX(-50%);
  width: 80%;
}
.section.section_cta .btn_area .btn_mini {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 2%;
  gap: 1%;
}
.section.section_cta .btn_area .btn_mini a.is-disabled {
    pointer-events: none;
    filter: grayscale(100%);
    opacity: 0.5;
}
.section.section_cta .btn_area .btn_mini li {
  width: 49%;
  padding: 0 1%;
}
.section.section_point .content_point {
  position: relative;
}
.section.section_point .content_point .point_lists {
  position: absolute;
  left: 50%;
  bottom: 8%;
  transform: translateX(-50%);
  width: 90%;
}
.section.section_point .content_point .point_lists ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.section.section_point .content_point .point_lists ul li {
  width: 50%;
}
.section.section_howto .section_content {
  position: relative;
}
.section.section_howto .media_wrap {
  position: absolute;
  left: 50%;
  bottom: 8%;
  transform: translateX(-50%);
  width: 80%;
  aspect-ratio: 9 / 16;
  overflow: hidden;
}
.section.section_recommend .cta_content {
  position: relative;
}
.section.section_recommend .btn_area {
  position: absolute;
  left: 50%;
  bottom: 5%;
  transform: translateX(-50%);
  width: 90%;
}
.section.section_qna .qna_on {
  display: none;
}
.section.section_qna .qna_area img {
  cursor: pointer;
}
.section.section_qna .qna_area.is-open .qna_off {
  display: none;
}
.section.section_qna .qna_area.is-open .qna_on {
  display: block;
}





.fix_contents {
  display: none;
}

@media screen and (min-width: 980px) {
  .fix_contents {
    display: flex;
    justify-content: space-between;
    position: fixed;
    align-items: flex-end;
    z-index: 1;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1440px;
  }
  .section_fixleft {
    width: calc((100vw - 600px) * 0.5);
    padding-right: 7%;
    font-size: min(3vw, 21px);
    color: #3e4448;
  }
  .section_fixleft h2 {
    color: #555e63;
    font-size: min(3vw, 26px);
  }
  .section_fixleft .fix_menulists li {
    margin-top: 0.725em;
  }
  .section_fixleft .fix_menulists li a {
    padding: 0.425em;
    border: 3px solid #fff;
    background-color: rgba(255,244,246,.5);
    display: block;
    font-weight: 700;
    color: #555e63;
  }
  .section_fixright {
    width: calc((100vw - 600px) * 0.5);
    padding-left: 7%;
  }
  .section_fixright img {
    height: auto;
  }
  .section_fixright > img, .section_fixright a img {
    margin-top: var(--gap_s);
  }
  .section_fixright .media_qr {
    width: -moz-max-content;
    width: max-content;
    border: 1px solid #3e4448;
    margin-top: var(--gap_s);
  }
}
@media screen and (min-width: 1400px) {
  .section_fixleft {
    width: 420px;
  }
  .section_fixright {
    width: 420px;
  }
}
.fix_cta {
  position: fixed;
  z-index: 2;
  bottom: 0;
  left: 50%;
  width: 100%;
  max-width: 680px;
  transform: translateX(-50%) translateY(120%);
  opacity: 0;
  transition: transform 0.28s ease, opacity 0.28s ease;
}

.fix_cta.is-active {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.wrapper {
  max-width: 660px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
}

.col3 {
  width: 18%;
  padding: 5% 0;
}

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

a.guide-link__page {
  color: #96070b;
  font-size: 1.5rem;
  text-decoration: underline;
  text-underline-offset: 6px;
}

#guide.container {
  padding: var(--gap_m) 15px 30px;
  background: #FFF;
  color: #333;
}

#guide h2 {
  font-size: min(7.7vw, 212%);
  text-align: center;
  line-height: 0.8;
  margin-bottom: 30px;
  font-weight: 500;
}

#guide h2 span {
  font-size: 16px;
  letter-spacing: 2px;
}

#guide h3 {
  font-size: min(3.6vw, 118%);
  border: 1px solid #333;
  border-radius: 5px;
  margin-top: 15px;
  padding: 5px;
  min-height: 50px;
  line-height: 1.5;
  text-align: center;
  font-weight: 500;
  box-sizing: border-box;
  position: relative;
}

#guide h3.one-line {
  display: flex;
  align-items: center;
  justify-content: center;
}

#guide h3.link::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-48%);
  width: 20px;
  height: 20px;
  background: url(../img/external_link-icon.png);
  background-size: cover;
}

#guide h3 a {
  color: #333;
}

#guide p {
  font-size: 100%;
  padding: 5px 0;
}

#guide .link_underline {
  text-decoration: underline;
}

@media screen and (min-width: 660px) {
  #guide.container {
    padding: var(--gap_m) 30px 30px;
  }
  #guide h3 {
    min-height: 70px;
    margin-top: 20px;
  }
  #guide h3.link::after {
    width: 25px;
    height: 25px;
    right: 15px;
  }
} /* min-width:660px */
/* footer */
#footer {
  font-size: min(3.2vw, 94%);
  background: #fff;
  padding: 0 15px 30px;
}

#footer .footer_menu {
  padding: 10px 0;
  border-top: 2px solid #ccc;
  border-bottom: 2px solid #ccc;
  text-align: center;
}

#footer .footer_menu a {
  display: inline-block;
  padding: 3px 0;
  vertical-align: middle;
  color: #333;
}

#footer .footer_menu a:after {
  content: "";
  display: inline-block;
  margin: 0 5px 0 10px;
  width: 1px;
  height: 15px;
  background: #333;
  transform: translateY(2px);
}

#footer .footer_menu a:last-child:after {
  display: none;
}

#footer .copyright {
  font-size: 90%;
  color: #333;
}

@media screen and (min-width: 660px) {
  #footer {
    padding-bottom: 0;
  }
  #footer .footer_menu {
    padding: 15px 0;
  }
  .footer .footer_menu a {
    font-size: 82%;
  }
  .footer .footer_menu a:after {
    margin: 0 10px 0 15px;
    transform: none;
  }
  .footer .copyright {
    padding: 0;
    font-size: 80%;
  }
}/*# sourceMappingURL=style.css.map */