/*********************
* initial
*********************/
* {
  box-sizing: content-box;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

iframe {
  width: 100%;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

button {
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
}

/*********************
* variables
*********************/
/*********************
* common
*********************/
html {
  font-size: 62.5%;
}

body {
  position: relative;
  color: #3E3A39;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  z-index: 0;
}
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-image: url(../img/top_bg.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}
body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(to bottom, white 5%, transparent 100%);
  z-index: 1;
}

main {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  background-size: contain;
  background-repeat: no-repeat;
  background-color: white;
  contain: paint;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  z-index: 2;
}
@media (max-width: 600px) {
  main::after {
    content: "";
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: calc(var(--vw) * 50);
    height: 200px;
    background: linear-gradient(to bottom, #D3E5B8 20%, transparent 100%);
    z-index: 3;
  }
}

@media (max-width: 600px) {
  .only_pc {
    display: none;
  }
}
@media (min-width: 601px) {
  .only_sp {
    display: none;
  }
}
.scroll_over_wrapper section#scroll_hand {
  position: relative;
  top: 0;
  z-index: 0;
}

.banner_wrapper {
  width: 100%;
}

.points_wrapper {
  width: 14%;
  margin: 0 auto;
}

section,
.bg_wrapper {
  position: relative;
  z-index: 0;
}

.parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: linear-gradient(to bottom, white, rgba(166, 195, 145, 0.3) 100px, rgba(166, 195, 145, 0.6) 50%, rgba(166, 195, 145, 0.3) calc(100% - 100px), white 100%);
  z-index: -1;
}

.instruction {
  display: block !important;
}

/*********************
* sp size
*********************/
.main_copy_wrapper.only_pc {
  position: fixed;
  top: 50px;
  left: 3%;
  width: 16%;
  height: auto;
  z-index: 100;
}

.popup_wrapper {
  position: fixed;
  bottom: 10px;
  left: 10px;
  width: 200px;
  height: auto;
  z-index: 100;
}
.popup_wrapper .close_btn {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 15px;
  aspect-ratio: 1;
  cursor: pointer;
}

section#key_visual {
  text-align: center;
  padding: 49px 0 50px;
  z-index: 4;
}
section#key_visual p.key_head {
  font-weight: 300;
  font-size: 1.6rem;
  letter-spacing: 5px;
  line-height: 2.3;
}
section#key_visual h2.section_title {
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: 8px;
  line-height: 1.8;
  margin-top: 68px;
}
section#key_visual h2.section_title span.emphasized_text {
  position: relative;
}
section#key_visual h2.section_title span.emphasized_text::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 47%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #C8E5D6, #DDE27C);
  z-index: -1;
}
section#key_visual h2.section_title span.text-point {
  position: relative;
}
section#key_visual h2.section_title span.text-point::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 43%;
  width: 8px;
  aspect-ratio: 1;
  border-radius: 100px;
  transform: translateX(-50%);
}
section#key_visual h2.section_title span.text-point:nth-of-type(1)::before {
  background: linear-gradient(to right, #C8E5D6 0%, #DDE27C 500%);
}
section#key_visual h2.section_title span.text-point:nth-of-type(2)::before {
  background: linear-gradient(to right, #C8E5D6 -100%, #DDE27C 400%);
}
section#key_visual h2.section_title span.text-point:nth-of-type(3)::before {
  background: linear-gradient(to right, #C8E5D6 -200%, #DDE27C 300%);
}
section#key_visual h2.section_title span.text-point:nth-of-type(4)::before {
  background: linear-gradient(to right, #C8E5D6 -300%, #DDE27C 200%);
}
section#key_visual h2.section_title span.text-point:nth-of-type(5)::before {
  background: linear-gradient(to right, #C8E5D6 -400%, #DDE27C 100%);
}
section#key_visual .hand_img_wrapper {
  margin-top: 66px;
  text-align: center;
}
section#key_visual .key_mokumokuto_wrapper {
  width: 73%;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 63px auto 0;
}
section#key_visual .key_mokumokuto_wrapper img.key_mokumokuto_img {
  -o-object-fit: contain;
     object-fit: contain;
}

section#beginning .beginning_img_wrapper {
  width: 100%;
  margin-top: 15px;
}
section#beginning + .banner_wrapper {
  margin: 55px auto 40px;
}

section#worries {
  background: linear-gradient(to bottom, transparent, #F1F6F5 100px, #F1F6F5 100%);
  padding-top: 57px;
  padding-bottom: 71px;
}
section#worries .points_wrapper {
  width: 14%;
  margin: 0 auto;
}
section#worries .worries_area {
  width: 90%;
  margin: 50px auto 0;
  padding-top: 51px;
  padding-bottom: 81px;
  transform: translateZ(0);
}
section#worries .worries_area h2.worries_head_wrapper {
  width: 71%;
  margin: 0 auto;
}
section#worries .worries_area .worries_unit {
  position: relative;
  width: 166px;
}
section#worries .worries_area .worries_unit .worries_unit_head {
  position: relative;
  display: inline-block;
  z-index: 0;
}
section#worries .worries_area .worries_unit .worries_unit_head::after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 230%;
  aspect-ratio: 1;
  border-radius: 50%;
  z-index: -1;
}
section#worries .worries_area .worries_unit .worries_unit_head p.problem_number {
  position: relative;
  display: inline-block;
  color: #888888;
  font-family: "outfit";
  font-weight: 300;
  font-size: 1.5rem;
}
section#worries .worries_area .worries_unit .worries_unit_head p.problem_number::after {
  position: absolute;
  bottom: 0;
  right: -56px;
  width: 54px;
  height: auto;
}
section#worries .worries_area .worries_unit .worries_unit_head h3.worries_subtitle {
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: 3.5px;
  transform: translateX(-6px);
  margin-top: 22px;
}
section#worries .worries_area .worries_unit ul.worries_unit_content {
  position: relative;
  color: #717071;
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.5px;
  margin-top: 76px;
  padding-left: 6px;
  z-index: 1;
}
section#worries .worries_area .worries_unit ul.worries_unit_content li.worries_unit_list {
  position: relative;
  margin-top: 8.5px;
}
section#worries .worries_area .worries_unit ul.worries_unit_content li.worries_unit_list::before {
  content: url(../img/worries_check_icon.svg);
  position: absolute;
  width: 11px;
  aspect-ratio: 1;
  top: 60%;
  left: -18px;
  transform: translateY(-50%);
}
section#worries .worries_area .worries_unit.problems01 {
  margin-top: 149px;
  margin-left: 9%;
}
section#worries .worries_area .worries_unit.problems01::after {
  content: "";
  position: absolute;
  top: -5px;
  right: -268px;
  width: 364px;
  aspect-ratio: 1;
  -o-object-fit: cover;
     object-fit: cover;
  background-image: url(../img/problem01_illust.webp);
  background-size: contain;
  background-repeat: no-repeat;
}
section#worries .worries_area .worries_unit.problems01 .worries_unit_head::after {
  content: url(../img/problems_bg01.svg);
}
section#worries .worries_area .worries_unit.problems01 .worries_unit_head .problem_number::after {
  content: url(../img/problems01.svg);
}
section#worries .worries_area .worries_unit.problems02 {
  margin-top: 127px;
  margin-left: auto;
  margin-right: 0;
}
section#worries .worries_area .worries_unit.problems02::after {
  content: "";
  position: absolute;
  top: -11px;
  left: -308px;
  width: 364px;
  aspect-ratio: 1;
  -o-object-fit: cover;
  object-fit: cover;
  background-image: url(../img/problem02_illust.webp);
  background-size: contain;
  background-repeat: no-repeat;
  transform: scale(-1, 1);
}
section#worries .worries_area .worries_unit.problems02 .worries_unit_head::after {
  content: url(../img/problems_bg02.svg);
}
section#worries .worries_area .worries_unit.problems02 .worries_unit_head .problem_number::after {
  content: url(../img/problems02.svg);
  right: -65px;
  width: 63px;
}
section#worries .worries_area .worries_unit.problems03 {
  margin-top: 126px;
  margin-left: 9%;
}
section#worries .worries_area .worries_unit.problems03::after {
  content: "";
  position: absolute;
  top: -5px;
  right: -240px;
  width: 364px;
  aspect-ratio: 1;
  -o-object-fit: cover;
     object-fit: cover;
  background-image: url(../img/problem03_illust.webp);
  background-size: contain;
  background-repeat: no-repeat;
}
section#worries .worries_area .worries_unit.problems03 .worries_unit_head h3.worries_subtitle {
  transform: translateX(-20px);
}
section#worries .worries_area .worries_unit.problems03 .worries_unit_head::after {
  content: url(../img/problems_bg01.svg);
}
section#worries .worries_area .worries_unit.problems03 .worries_unit_head .problem_number::after {
  content: url(../img/problems03.svg);
  right: -65px;
  width: 63px;
}
section#worries .worries_area .worries_relations_wrapper {
  margin-top: 115px;
}
section#worries .worries_area .worries_relations_wrapper img.worries_relations_img {
  scale: 1.15;
}
section#worries .worries_area .worries_table_wrapper {
  display: none;
  overflow-x: scroll;
  margin-top: 120px;
  padding: 0 5.5% 50px;
}
section#worries .worries_area .worries_table_wrapper::-webkit-scrollbar {
  background: #DBDCDC;
  width: 5px;
  height: 5px;
  border-radius: 20px;
}
section#worries .worries_area .worries_table_wrapper::-webkit-scrollbar-thumb {
  background-color: #96C800;
  border-radius: 20px;
}
section#worries .worries_area .worries_table_wrapper img.worries_table_img {
  width: 152%;
}

section#origin {
  transform: translateY(-1px);
}
section#origin img.origin_head_img {
  width: 115%;
  transform: translateX(-13%);
}
section#origin .origin_text_wrapper {
  width: 88%;
  border-top: 1px dashed #B4B4B5;
  border-bottom: 1px dashed #B4B4B5;
  transform: translateY(-28px);
  margin: 0 auto;
  padding: 28px 0 28px;
}
section#origin .origin_text_wrapper p.origin_text {
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 3px;
  line-height: 1.95;
}
section#origin .origin_foot_wrapper {
  margin-top: 129px;
}
section#origin .origin_foot_wrapper p.origin_foot_head_text {
  position: relative;
  font-size: 2.2rem;
  font-weight: 500;
  letter-spacing: 9px;
  margin-left: 6%;
  z-index: 0;
}
section#origin .origin_foot_wrapper p.origin_foot_head_text::after {
  content: "";
  position: absolute;
  top: -129px;
  right: -1px;
  width: 276px;
  aspect-ratio: 1;
  background-image: url(../img/origin_foot.webp);
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
}
section#origin .origin_foot_wrapper .origin_footer {
  position: relative;
  margin-top: 58px;
  padding-bottom: 98px;
}
section#origin .origin_foot_wrapper .origin_footer p.origin_footer_text {
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 6.7px;
  line-height: 2;
  margin-left: 6%;
}
section#origin .origin_foot_wrapper .origin_footer p.origin_footer_text .emphasized_text {
  position: relative;
}
section#origin .origin_foot_wrapper .origin_footer p.origin_footer_text .emphasized_text::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -6%;
  width: 150%;
  height: 122%;
  transform: translateY(-50%);
  background: linear-gradient(to right, #C8E5D6, #DDE27C);
  z-index: -1;
}
section#origin .origin_foot_wrapper .origin_footer .origin_footer_img_wrapper {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 74%;
}

section#about {
  position: relative;
  background-image: url(../img/about_bg.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top left;
  margin-top: 34px;
  padding-top: 124px;
}
section#about .points_wrapper {
  position: absolute;
  top: 80px;
  right: 10%;
}
section#about .about_main {
  margin-left: 6%;
}
section#about .about_main h2.section_title {
  color: #96C800;
  font-size: 1.4rem;
  font-family: "outfit";
  font-weight: 300;
  letter-spacing: 1.2px;
}
section#about .about_main p.section_lead {
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: 4.5px;
  line-height: 2;
  margin-top: 40px;
}
section#about .about_main div.about_advantage {
  position: relative;
  z-index: 0;
}
section#about .about_main div.about_advantage .point_num {
  width: 28%;
  margin-top: 161px;
  margin-left: 1.5%;
}
section#about .about_main div.about_advantage .advantage_subtitle {
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: 2.4px;
}
section#about .about_main div.about_advantage .advantage_title {
  position: relative;
  display: inline-block;
  font-size: 2.2rem;
  font-weight: 500;
  letter-spacing: 1px;
}
section#about .about_main div.about_advantage .advantage_title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -56%;
  width: 160%;
  height: 155%;
  background: linear-gradient(to right, #C8E5D6, #DDE27C);
  transform: skewX(-35deg) translateY(-50%);
  z-index: -1;
}
section#about .about_main div.about_advantage .advantage_img_wrapper {
  position: absolute;
  z-index: -2;
}
section#about .about_main div.about_advantage.about_advantage01 .point_num {
  margin-top: 161px;
}
section#about .about_main div.about_advantage.about_advantage01 .advantage_subtitle {
  margin-top: 4px;
}
section#about .about_main div.about_advantage.about_advantage01 .advantage_title {
  margin-top: 20px;
}
section#about .about_main div.about_advantage.about_advantage01 .advantage_img_wrapper {
  width: 115%;
  top: -174px;
  right: -28%;
}
section#about .about_main div.about_advantage.about_advantage02 .point_num {
  margin-top: 92px;
}
section#about .about_main div.about_advantage.about_advantage02 .advantage_subtitle {
  position: absolute;
  top: 46px;
  left: 38%;
}
section#about .about_main div.about_advantage.about_advantage02 .advantage_title {
  margin-top: -9px;
  margin-left: 22%;
}
section#about .about_main div.about_advantage.about_advantage02 .advantage_title::before {
  left: -60%;
  width: 167%;
}
section#about .about_main div.about_advantage.about_advantage02 .advantage_img_wrapper {
  width: 100%;
  top: 135px;
  left: -3%;
}
section#about .about_main div.about_advantage.about_advantage03 .point_num {
  margin-top: 234px;
}
section#about .about_main div.about_advantage.about_advantage03 .advantage_subtitle {
  margin-top: 4px;
}
section#about .about_main div.about_advantage.about_advantage03 .advantage_title {
  margin-top: 20px;
}
section#about .about_main div.about_advantage.about_advantage03 .advantage_img_wrapper {
  width: 86%;
  top: -73px;
  right: -5%;
}
section#about .about_question_wrapper {
  margin-top: 108px;
  background: linear-gradient(to bottom, transparent 30%, white 30%, white);
}
section#about p.about_text01 {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 4px;
  line-height: 2;
  margin-top: 90px;
  margin-left: 6%;
}

section#scroll_hand p.about_text02 {
  position: relative;
  display: inline-block;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 4px;
  margin-left: 5%;
  z-index: 0;
}
section#scroll_hand p.about_text02:first-of-type {
  margin-top: 57px;
}
section#scroll_hand p.about_text02:last-of-type {
  margin-top: 32px;
}
section#scroll_hand p.about_text02::before {
  content: "";
  position: absolute;
  width: 111%;
  height: 178%;
  top: 50%;
  right: -4%;
  transform: translateY(-50%);
  background: linear-gradient(to right, #C8E5D6, #DDE27C);
  z-index: -1;
}
section#scroll_hand .about_hand_wrapper {
  position: relative;
  width: 90%;
  aspect-ratio: 1;
  margin: 0 auto;
  background-image: url(../img/hand_product.webp);
  background-position: bottom;
  background-size: contain;
  background-repeat: no-repeat;
  margin-top: 124px;
  z-index: -1;
}
section#scroll_hand .about_hand_wrapper::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 40%;
  top: -1px;
  left: 0;
  background: linear-gradient(to bottom, white 20%, transparent);
}
section#scroll_hand .about_foot_wrapper {
  width: 65%;
  margin: 0 auto;
}
section#scroll_hand + .banner_wrapper {
  margin: 0 auto;
}

section#advantages {
  background-image: url(../img/faq_bg.webp);
  background-position: top left;
  background-size: contain;
  padding-top: 52px;
  padding-bottom: 54px;
  z-index: 1;
  transform: translateZ(1px);
}
section#advantages .points_wrapper {
  width: 14%;
  margin: 0 auto;
}
section#advantages .points_wrapper:last-of-type {
  margin-top: 48px;
}
section#advantages p.advantage_head {
  font-family: "outfit";
  font-weight: 300;
  font-size: 2rem;
  color: #888888;
  letter-spacing: 1.5px;
  text-align: center;
  margin-top: 38px;
}
section#advantages h2.section_title {
  font-size: 2.3rem;
  font-weight: 500;
  letter-spacing: 4px;
  text-align: center;
  margin-top: 24px;
}
section#advantages h3.section_subtitle {
  position: relative;
  font-size: 2.3rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: white;
  text-align: center;
  margin-top: 30px;
  z-index: 0;
}
section#advantages h3.section_subtitle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 224px;
  height: 46px;
  background: linear-gradient(to right, #C8E5D6, #DDE27C);
  z-index: -1;
}
section#advantages .advantage_top_img_wrapper {
  width: 86%;
  margin: 32px auto 50px;
}
section#advantages .advantage_unit {
  position: relative;
}
section#advantages .advantage_unit .point_wrapper {
  position: absolute;
  font-family: "outfit";
  text-align: center;
  z-index: 0;
}
section#advantages .advantage_unit .point_wrapper::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 212%;
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  background-image: url(../img/point_wrapper.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
section#advantages .advantage_unit .point_wrapper .point {
  font-size: 1.9rem;
  font-weight: 300;
}
section#advantages .advantage_unit .point_wrapper .point_num {
  font-size: 3.6rem;
  font-weight: 700;
}
section#advantages .advantage_unit .advantage_card {
  background-color: white;
  width: 61%;
  border-radius: 20px;
}
section#advantages .advantage_unit .advantage_card h3.card_title {
  font-size: 2.2rem;
  font-weight: 500;
  letter-spacing: 6px;
}
section#advantages .advantage_unit .advantage_card p.advantage_text {
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 1.2px;
  line-height: 1.6;
  margin-top: 25px;
}
section#advantages .advantage_unit .advantage_card p.advantage_text span.emphasized {
  font-weight: 500;
  color: #00913A;
}
section#advantages .advantage_unit.advantage01, section#advantages .advantage_unit.advantage03 {
  margin-top: 1px;
}
section#advantages .advantage_unit.advantage01 .point_wrapper, section#advantages .advantage_unit.advantage03 .point_wrapper {
  top: -3px;
  left: 10%;
}
section#advantages .advantage_unit.advantage01 .advantage_card, section#advantages .advantage_unit.advantage03 .advantage_card {
  margin-left: 20%;
  padding: 27px 6% 34px 7%;
}
section#advantages .advantage_unit.advantage03 {
  margin-top: 52px;
}
section#advantages .advantage_unit.advantage02, section#advantages .advantage_unit.advantage04 {
  margin-top: 55px;
}
section#advantages .advantage_unit.advantage02 .point_wrapper, section#advantages .advantage_unit.advantage04 .point_wrapper {
  top: -3px;
  right: 10%;
}
section#advantages .advantage_unit.advantage02 .advantage_card, section#advantages .advantage_unit.advantage04 .advantage_card {
  margin-left: 6%;
  padding: 27px 6% 34px 7%;
}
section#advantages .advantage_unit .advantage_bg_img_wrapper {
  position: absolute;
  width: 70%;
  bottom: -124px;
  right: -4%;
  z-index: -1;
}
section#advantages .advantage_foot_wrapper {
  width: 95%;
  margin-top: 132px;
}

section#comparison {
  width: 94%;
  text-align: center;
  background-image: url(../img/faq_bg.webp);
  background-position: top left;
  background-size: contain;
  padding: 37px 3% 0;
}
section#comparison div.comparison_head {
  background-color: white;
  border-radius: 20px 20px 0 0;
  padding-top: 40px;
  padding-bottom: 37px;
}
section#comparison div.comparison_head h2.section_title {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 7px;
  line-height: 2.1;
}
section#comparison div.comparison_head h2.section_title span.emphasized {
  position: relative;
  z-index: 0;
}
section#comparison div.comparison_head h2.section_title span.emphasized::before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 272px;
  height: 40px;
  background: linear-gradient(to right, #C8E5D6, #DDE27C);
  z-index: -1;
}
section#comparison .comparison_main {
  background-color: white;
  border-radius: 0 0 20px 20px;
  padding-bottom: 17px;
}
section#comparison .comparison_main img.comparison_img {
  width: 101.5%;
}

section#additive_free {
  width: 87%;
  background-image: url(../img/faq_bg.webp);
  background-position: top left;
  background-size: contain;
  padding: 60px 6.5% 0;
}

section#heat_cap {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  background-image: url(../img/faq_bg.webp);
  background-position: top left;
  background-size: contain;
  padding-top: 56px;
  padding-bottom: 47px;
  z-index: 0;
}
section#heat_cap::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to bottom, transparent, white);
  z-index: -1;
}
section#heat_cap h2.section_title {
  position: relative;
  top: 0;
  width: 3.7%;
  padding: 10px 4% 0;
}
section#heat_cap .heat_cap_main {
  width: 88.3%;
}
section#heat_cap .heat_cap_main img.heat_cap_img {
  width: 142%;
  transform: translateX(-29.5%);
}
section#heat_cap .points_wrapper:last-of-type {
  margin-top: 48px;
}
section#heat_cap + .banner_wrapper {
  margin: 0 auto 47px;
}

section#users_voice {
  padding-bottom: 75px;
}
section#users_voice .points_wrapper {
  width: 14%;
  margin: -4px auto 0;
}
section#users_voice .points_wrapper:last-of-type {
  margin-top: 78px;
}
section#users_voice .users_voice_head,
section#users_voice .user_type_wrapper {
  display: flex;
  align-items: flex-start;
}
section#users_voice .users_voice_head h2.users_voice_head_title,
section#users_voice .user_type_wrapper h2.users_voice_head_title {
  position: relative;
  top: 0;
  width: 4.7%;
  padding: 10px 4% 0;
}
section#users_voice .users_voice_head h3.user_type_title,
section#users_voice .user_type_wrapper h3.user_type_title {
  position: relative;
  top: 0;
  width: 4.7%;
  padding: 10px 3.5% 0;
}
section#users_voice .users_voice_head .users_voice_head_main,
section#users_voice .user_type_wrapper .users_voice_head_main {
  width: 88%;
  border-top-left-radius: 20px;
  box-shadow: -15px -15px 15px rgba(230, 228, 0, 0.3);
  transform: translateZ(0);
}
section#users_voice .users_voice_head .user_wrapper,
section#users_voice .user_type_wrapper .user_wrapper {
  width: 88.3%;
  background-color: rgba(230, 228, 0, 0.3);
  box-shadow: -15px 15px 15px rgba(230, 228, 0, 0.3);
  transform: translateZ(0);
}
section#users_voice .users_voice_head .user_wrapper img.user_img,
section#users_voice .user_type_wrapper .user_wrapper img.user_img {
  width: 105%;
  transform: translateX(-4.5%);
}
section#continuation {
  padding-bottom: 86px;
}
section#continuation .continuation_main {
  position: relative;
}
section#continuation .continuation_main img.continuation_img {
  width: 115%;
  transform: translateX(-6.5%);
}
section#continuation .continuation_main h2.section_title {
  position: absolute;
  width: 100%;
  top: 86px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2.1rem;
  font-weight: 500;
  letter-spacing: 4px;
  line-height: 2;
  text-align: center;
  z-index: 0;
}
section#continuation .continuation_main h2.section_title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 265px;
  height: 40px;
  background: linear-gradient(to right, #C8E5D6, #DDE27C);
  z-index: -1;
}
section#continuation .points_wrapper {
  margin-top: 24px;
}

section#recommend_for {
  padding-top: 10px;
}
section#recommend_for h3.section_subtitle {
  font-family: "outfit";
  font-weight: 300;
  font-size: 1.8rem;
  color: #888888;
  text-align: center;
  letter-spacing: 2px;
  margin-top: 1px;
}
section#recommend_for h2.section_title {
  font-weight: 500;
  font-size: 2rem;
  text-align: center;
  letter-spacing: 3px;
  margin-top: 24px;
}
section#recommend_for hr.section_bar {
  width: 82%;
  height: 2px;
  background: linear-gradient(to right, #C8E5D6, #DDE27C);
  border: none;
  margin: 34px auto 0;
}
section#recommend_for ul.recommend_for_content {
  width: 82%;
  margin: 40px auto 0;
}
section#recommend_for ul.recommend_for_content li.recommend_for_item {
  position: relative;
  display: flex;
  height: 55px;
  font-size: 1.2rem;
  letter-spacing: 1px;
  background-color: #EEEEEF;
  border-radius: 7px;
  padding-left: 18%;
  padding-right: 3%;
  align-items: center;
  z-index: 0;
}
section#recommend_for ul.recommend_for_content li.recommend_for_item:not(:first-child) {
  margin-top: 6.7px;
}
section#recommend_for ul.recommend_for_content li.recommend_for_item::before {
  content: "";
  position: absolute;
  width: 32px;
  aspect-ratio: 1;
  top: 50%;
  left: 11px;
  transform: translateY(-50%);
  background-color: white;
  background-size: contain;
  background-position: center;
  border-radius: 100px;
  z-index: 1;
}
section#recommend_for ul.recommend_for_content li.recommend_for_item::after {
  content: "";
  position: absolute;
  width: 28px;
  aspect-ratio: 1;
  top: 50%;
  left: 13px;
  transform: translateY(-50%);
  background: linear-gradient(to bottom, #C8E5D6, #DDE27C);
  background-size: contain;
  background-position: center;
  border-radius: 100px;
  z-index: 2;
}
section#recommend_for ul.recommend_for_content li.recommend_for_item span {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 3;
}
section#recommend_for ul.recommend_for_content li.recommend_for_item span::after {
  content: "";
  position: absolute;
  width: 18px;
  aspect-ratio: 1;
  top: 50%;
  left: 18px;
  transform: translateY(-50%);
  background-image: url(../img/recommend_check.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 100px;
  z-index: 1;
}
section#recommend_for img.merit_img {
  width: 141%;
  transform: translateX(-15.5%);
}
section#recommend_for .merit_table_wrapper {
  margin-top: 45px;
  overflow-x: scroll;
  padding-left: 6%;
  padding-right: 6%;
  padding-bottom: 50px;
}
section#recommend_for .merit_table_wrapper::-webkit-scrollbar {
  background: #DBDCDC;
  width: 5px;
  height: 5px;
  border-radius: 20px;
}
section#recommend_for .merit_table_wrapper::-webkit-scrollbar-thumb {
  background-color: #96C800;
  border-radius: 20px;
}
section#recommend_for .merit_table_wrapper img.merit_table {
  width: 154%;
}
section#recommend_for .merit_bottom_wrapper {
  margin-top: 56px;
}
section#recommend_for .merit_bottom_wrapper img.merit_bottom {
  width: 110%;
  transform: translateX(-5%);
}
section#recommend_for .points_wrapper {
  margin-top: 35px;
}
section#recommend_for + .banner_wrapper {
  margin: 40px auto 0;
}

section#features {
  padding-top: 45px;
  background: linear-gradient(to bottom, transparent, #F1F6F5 2%, #F1F6F5 98%, transparent);
}
section#features img.features_head {
  width: 113%;
  transform: translateX(10%);
}
section#features .feature_unit {
  display: flex;
  align-items: flex-start;
}
section#features .feature_unit:nth-of-type(2) {
  margin-top: -48px;
}
section#features .feature_unit:nth-of-type(2) img.feature_img {
  width: 110%;
  transform: translateX(-9%);
  margin-top: 37px;
}
section#features .feature_unit:nth-of-type(3) img.feature_img {
  width: 104%;
  transform: translateX(-0.5%);
}
section#features .feature_unit:nth-of-type(4) img.feature_img {
  width: 127%;
  transform: translateX(-17.5%);
}
section#features .feature_unit:nth-of-type(5) img.feature_img {
  width: 107%;
  transform: translateX(-6.6%);
}
section#features .feature_unit h3.feature_sub_title_wrapper {
  position: relative;
  top: 0;
  width: 3.7%;
  padding: 10px 4% 0;
}
section#features .feature_unit .feature_content {
  width: 88.3%;
}

section#start_mail_order {
  padding-top: 100px;
}
section#start_mail_order img.start_mail_order_img {
  width: 141%;
  transform: translateX(-16%);
}

section#tutorial_video .videos_text_wrapper {
  width: 85%;
  margin: 0 auto;
}
section#tutorial_video iframe {
  margin-top: 81px;
  aspect-ratio: 1.7777777778;
}
section#tutorial_video .vp-center {
  height: auto;
}

section#scoop {
  padding-top: 73px;
}
section#scoop .scoop_main {
  display: flex;
  align-items: flex-start;
  margin-top: 51px;
}
section#scoop .scoop_main h2.section_title {
  position: relative;
  top: 0;
  width: 3.7%;
  padding: 10px 4% 0;
}
section#scoop .scoop_main .scoop_img_wrapper {
  position: relative;
  width: 88.3%;
  box-shadow: -15px -15px 15px rgba(230, 228, 0, 0.3);
  transform: translateZ(0);
  z-index: 0;
}
section#scoop .scoop_main .scoop_img_wrapper::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 28px;
  left: 0;
  box-shadow: 0 15px 16px rgba(230, 228, 0, 0.3);
  transform: translateZ(0);
  z-index: -1;
}
section#scoop .scoop_main .scoop_img_wrapper p.scoop_title {
  position: absolute;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 3px;
  line-height: 2.5;
  top: 28px;
  left: 24px;
  z-index: 1;
}
section#scoop .scoop_main .scoop_img_wrapper p.scoop_title span.emphasized {
  position: relative;
  z-index: 0;
}
section#scoop .scoop_main .scoop_img_wrapper p.scoop_title span.emphasized::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -27px;
  transform: translateY(-50%);
  width: calc(100% + 24px);
  height: 40px;
  background: linear-gradient(to right, #C8E5D6, #DDE27C);
  z-index: -1;
}
section#scoop .scoop_main .scoop_img_wrapper img.scoop_img {
  width: 111%;
  transform: translateX(-4.5%);
}
section#scoop .points_wrapper {
  margin-top: 17px;
}
section#scoop .points_wrapper:last-child {
  margin-top: 40px;
}

section#faq {
  padding-top: 52px;
}
section#faq .faq_main {
  display: flex;
  align-items: flex-start;
  padding-bottom: 68px;
}
section#faq .faq_main h2.section_title {
  position: relative;
  top: 0;
  width: 3.7%;
  padding: 10px 4% 0;
}
section#faq .faq_main .faq_content {
  width: 82.3%;
  background-color: white;
  border-radius: 20px 0 0 20px;
  box-shadow: -15px 15px 15px rgba(230, 228, 0, 0.3), 0 -15px 15px rgba(230, 228, 0, 0.3);
  transform: translateZ(0);
  padding: 28px 0 79px 6%;
}
section#faq .faq_main .faq_content p.faq_title {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 3px;
  line-height: 2.5;
}
section#faq .faq_main .faq_content ul.faq_list_content {
  margin-top: 45px;
}
section#faq .faq_main .faq_content ul.faq_list_content li.faq_list {
  color: #595757;
  background-color: #F7F7F7;
  border-radius: 10px 0 0 10px;
  padding: 10px 19px 22px 5%;
}
section#faq .faq_main .faq_content ul.faq_list_content li.faq_list:not(:first-child) {
  margin-top: 25px;
}
section#faq .faq_main .faq_content ul.faq_list_content li.faq_list h3.question {
  position: relative;
  display: flex;
  font-size: 1.4rem;
  font-weight: 500;
  height: 63px;
  vertical-align: middle;
  align-items: center;
  letter-spacing: 4px;
  line-height: 1.1;
  padding-left: 44px;
  z-index: 0;
}
section#faq .faq_main .faq_content ul.faq_list_content li.faq_list h3.question::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 30px;
  aspect-ratio: 1;
  background-image: url(../img/faq_question.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}
section#faq .faq_main .faq_content ul.faq_list_content li.faq_list hr.question_bar {
  width: 100%;
  height: 2px;
  border: none;
  background: linear-gradient(to right, #C8E5D6, #DDE27C);
  margin: 4px 0 0;
}
section#faq .faq_main .faq_content ul.faq_list_content li.faq_list p.answer {
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 2px;
  line-height: 1.8;
  margin-top: 10px;
}

section#lineup {
  padding-top: 81px;
}
section#lineup h2.section_title {
  position: relative;
  color: white;
  font-size: 3.6rem;
  font-family: "outfit";
  font-weight: 500;
  letter-spacing: 4px;
  padding-left: 7%;
  z-index: 0;
}
section#lineup h2.section_title::after {
  content: "";
  position: absolute;
  bottom: -16px;
  left: 0;
  width: 93%;
  height: 2px;
  background-color: white;
}
section#lineup p.lineup_text {
  position: relative;
  font-size: 2.2rem;
  font-weight: 500;
  letter-spacing: 2px;
  line-height: 2.3;
  padding-left: 7%;
  margin-top: 32px;
  z-index: 0;
}
section#lineup p.lineup_text::before {
  content: "";
  position: absolute;
  bottom: 3px;
  left: 0;
  width: 291px;
  height: 40px;
  background: linear-gradient(to right, #C8E5D6, #DDE27C);
  z-index: -1;
}
section#lineup .lineup_main {
  margin-top: 45px;
}
section#lineup .points_wrapper {
  margin-top: 134px;
}

section#caution {
  width: 90%;
  margin: 0 auto;
  padding-top: 62px;
}

section#form {
  padding-top: 49px;
}
section#form h2.section_title {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 6px;
  text-align: center;
  margin-top: 80px;
}
section#form p.form_text {
  font-size: 1.4rem;
  font-weight: 700;
  text-align: center;
  line-height: 2.6;
  letter-spacing: 1.3px;
  margin-top: 34px;
}
section#form .btns_wrapper {
  width: 90%;
  margin: 44px auto 0;
}
section#form .btns_wrapper .btn_wrapper {
  width: 100%;
}
section#form .btns_wrapper .btn_wrapper img.form_btn {
  width: 88%;
}
section#form .btns_wrapper .btn_wrapper:first-child {
  text-align: left;
}
section#form .btns_wrapper .btn_wrapper:nth-child(2) {
  text-align: center;
  margin-top: 17px;
}
section#form .btns_wrapper .btn_wrapper:last-child {
  text-align: right;
  margin-top: 17px;
}
section#form .tab {
  width: 92%;
  margin: 0 auto;
  margin-top: 58px;
}
section#form .tab__menu {
  display: flex;
  justify-content: space-between;
  padding: 0;
  margin: 0;
}
section#form .tab__menu-item {
  position: relative;
  display: flex;
  align-items: center;
  list-style: none;
  width: 29%;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 8px 5px 8px 10%;
  text-align: left;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  color: white;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 0;
}
section#form .tab__menu-item:first-child {
  font-size: 1.3rem;
  background-color: #96C800;
}
section#form .tab__menu-item:first-child::before {
  background-image: url(../img/tab_num1.svg);
}
section#form .tab__menu-item:nth-child(2) {
  background-color: #1EAA39;
}
section#form .tab__menu-item:nth-child(2)::before {
  background-image: url(../img/tab_num2.svg);
}
section#form .tab__menu-item:last-child {
  background-color: #00913A;
}
section#form .tab__menu-item:last-child::before {
  background-image: url(../img/tab_num3.svg);
}
section#form .tab__menu-item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 12px;
  width: 20px;
  aspect-ratio: 1;
  transform: translateY(-50%);
  background-size: contain;
  background-repeat: no-repeat;
}
section#form .tab__menu-item:last-of-type {
  margin-right: 0px;
}
section#form .tab__panel {
  width: 100%;
}
section#form .tab__panel .tab__panel-box {
  display: none;
  background-color: white;
  padding-top: 48px;
}
section#form .tab__panel .tab__panel-box.is-show {
  display: block;
}
section#form div#lp-form {
  width: 100%;
}
section#form table.landing_form_ec {
  width: 100%;
}
section#form table.landing_form_ec tr {
  display: flex;
  flex-wrap: wrap;
}
section#form table.landing_form_ec tr th {
  width: 100%;
}
section#form table.landing_form_ec tr td {
  width: 100%;
}
section#form .tab__panel-form {
  background-color: white;
}
section#form .caution02_container_ec.without_border_ec {
  width: 100% !important;
}

/*********************
* pc size
*********************/
@media (min-width: 501px) {
  html {
    font-size: 93.75%;
  }
  section#beginning + .banner_wrapper {
    margin: 110px auto 80px;
  }
  section#worries .worries_area .worries_unit {
    position: relative;
    width: 266px;
  }
  section#worries .worries_area .worries_unit.problems01::after {
    top: -5px;
    right: -289px;
    width: 433px;
  }
  section#worries .worries_area .worries_unit.problems02::after {
    left: -359px;
    width: 426px;
  }
  section#worries .worries_area .worries_unit.problems03::after {
    right: -263px;
    width: 435px;
  }
  section#origin .origin_foot_wrapper {
    margin-top: 172px;
    padding-bottom: 65px;
  }
  section#origin .origin_foot_wrapper p.origin_foot_head_text::after {
    top: -162px;
    right: -30px;
    width: 370px;
  }
  section#origin .origin_foot_wrapper .origin_footer {
    position: relative;
    margin-top: 58px;
    padding-bottom: 148px;
  }
  section#about .about_main div.about_advantage.about_advantage02 .point_num {
    margin-top: 210px;
  }
  section#about .about_main div.about_advantage.about_advantage02 .advantage_img_wrapper {
    width: 100%;
    top: 204px;
    left: -3%;
  }
  section#about .about_main div.about_advantage.about_advantage03 .point_num {
    margin-top: 324px;
  }
  section#about .about_question_wrapper {
    margin-top: 224px;
    background: linear-gradient(to bottom, transparent 30%, white 30%, white);
  }
  section#scroll_hand .about_hand_wrapper {
    width: 100%;
  }
  section#scroll_hand + .banner_wrapper {
    margin: 0 auto;
  }
  section#advantages .points_wrapper:last-of-type {
    margin-top: 80px;
  }
  section#comparison div.comparison_head h2.section_title span.emphasized::before {
    width: 388px;
    height: 50px;
  }
  section#additive_free {
    padding: 80px 6.5% 0;
  }
  section#heat_cap {
    padding-bottom: 80px;
  }
  section#heat_cap h2.section_title {
    padding: 30px 4% 0;
  }
  section#heat_cap .points_wrapper:last-of-type {
    margin-top: 80px;
  }
  section#heat_cap + .banner_wrapper {
    margin: 80px auto 160px;
  }
  section#users_voice .users_voice_head h3.user_type_title,
  section#users_voice .user_type_wrapper h3.user_type_title {
    padding: 30px 4% 0;
  }
  section#users_voice .points_wrapper:last-of-type {
    margin-top: 80px;
  }
  section#continuation .continuation_main h2.section_title {
    top: 116px;
  }
  section#continuation .continuation_main h2.section_title::after {
    width: 335px;
    height: 58px;
  }
  section#recommend_for ul.recommend_for_content li.recommend_for_item {
    height: 74px;
    font-size: 1.2rem;
  }
  section#recommend_for .points_wrapper {
    margin-top: 80px;
  }
  section#recommend_for + .banner_wrapper {
    margin: 160px auto 40px;
  }
  section#features {
    padding-top: 79px;
  }
  section#features .feature_unit h3.feature_sub_title_wrapper {
    padding: 30px 4% 0;
  }
  section#tutorial_video {
    margin-top: -6px;
  }
  section#scoop .scoop_main {
    margin-top: 80px;
  }
  section#scoop .scoop_main h2.section_title {
    padding: 30px 4% 0;
  }
  section#scoop .scoop_main .scoop_img_wrapper::before {
    bottom: 38px;
  }
  section#faq .faq_main h2.section_title {
    padding: 30px 4% 0;
  }
  section#faq .faq_main h2.section_title {
    padding: 30px 4% 0;
  }
  section#faq .faq_main .faq_content {
    padding: 42px 0 118px 6%;
  }
  section#faq .faq_main .faq_content ul.faq_list_content {
    margin-top: 67px;
  }
  section#faq .faq_main .faq_content ul.faq_list_content li.faq_list {
    border-radius: 20px 0 0 20px;
    padding: 15px 28px 33px 5%;
  }
  section#faq .faq_main .faq_content ul.faq_list_content li.faq_list:not(:first-child) {
    margin-top: 37px;
  }
  section#faq .faq_main .faq_content ul.faq_list_content li.faq_list h3.question {
    height: 90px;
    padding-left: 66px;
  }
  section#faq .faq_main .faq_content ul.faq_list_content li.faq_list h3.question::before {
    width: 40px;
  }
  section#faq .faq_main .faq_content ul.faq_list_content li.faq_list hr.question_bar {
    width: 100%;
    height: 2px;
    border: none;
    background: linear-gradient(to right, #C8E5D6, #DDE27C);
    margin: 4px 0 0;
  }
  section#faq .faq_main .faq_content ul.faq_list_content li.faq_list p.answer {
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 2px;
    line-height: 1.8;
    margin-top: 10px;
  }
  section#lineup p.lineup_text::before {
    width: 380px;
    height: 60px;
  }
  section#form {
    padding-top: 80px;
  }
  section#form .tab__menu-item::before {
    width: 30px;
  }
}
@media (min-width: 601px) {
  #top_pc {
    position: relative;
    text-align: center;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
  }
  #top_pc::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: calc(var(--vw) * 50);
    height: 200px;
    background: linear-gradient(to bottom, #D3E5B8 20%, transparent 100%);
    z-index: -1;
  }
  #top_pc p.key_head {
    font-weight: 300;
    font-size: 1.6rem;
    letter-spacing: 5px;
    line-height: 2.3;
    padding-top: 49px;
  }
  #top_pc h2.section_title {
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 8px;
    line-height: 1.8;
    margin-top: 68px;
  }
  #top_pc h2.section_title span.emphasized_text {
    position: relative;
  }
  #top_pc h2.section_title span.emphasized_text::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 47%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #C8E5D6, #DDE27C);
    z-index: -1;
  }
  #top_pc h2.section_title span.text-point {
    position: relative;
  }
  #top_pc h2.section_title span.text-point::before {
    content: "";
    position: absolute;
    top: -10px;
    left: 43%;
    width: 8px;
    aspect-ratio: 1;
    border-radius: 100px;
    transform: translateX(-50%);
  }
  #top_pc h2.section_title span.text-point:nth-of-type(1)::before {
    background: linear-gradient(to right, #C8E5D6 0%, #DDE27C 500%);
  }
  #top_pc h2.section_title span.text-point:nth-of-type(2)::before {
    background: linear-gradient(to right, #C8E5D6 -100%, #DDE27C 400%);
  }
  #top_pc h2.section_title span.text-point:nth-of-type(3)::before {
    background: linear-gradient(to right, #C8E5D6 -200%, #DDE27C 300%);
  }
  #top_pc h2.section_title span.text-point:nth-of-type(4)::before {
    background: linear-gradient(to right, #C8E5D6 -300%, #DDE27C 200%);
  }
  #top_pc h2.section_title span.text-point:nth-of-type(5)::before {
    background: linear-gradient(to right, #C8E5D6 -400%, #DDE27C 100%);
  }
  .hand_img_wrapper.only_pc {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: auto;
    top: 0;
    margin: 0 auto;
    text-align: center;
    z-index: -1;
  }
  .hand_img_wrapper.only_pc::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 40%;
    top: -1px;
    left: 0;
    background: linear-gradient(to bottom, white 20%, transparent);
    z-index: 0;
  }
  .hand_img_wrapper.only_pc img.hand_img {
    position: relative;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
    -o-object-position: top;
       object-position: top;
    z-index: 0;
  }
  main {
    background: linear-gradient(to bottom, transparent, white 300px, white);
  }
  main section#key_visual {
    padding: 100px 0 50px;
  }
  .popup_wrapper {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 260px;
    height: auto;
    z-index: 100;
  }
}/*# sourceMappingURL=style.css.map */