@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  --color-black: #1A1A1A;
  --color-gray: #ccc;
  --color-dgray: #666;
  --color-lgray: #EBEBEB;
  --color-blue: #005DAD;
  --color-beige: #E3BB80;
  --color-lbeige: #F5F3ED;
  --color-white: #FFF;
}

* {
  box-sizing: border-box;
}

img {
  vertical-align: middle;
  width: 100%;
  max-width: 100%;
}

a:hover {
  transition: .3s;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.7;
  letter-spacing: .02em;
  text-align: center;
  background: var(--color-white);
  color: var(--color-black);
}

body.is-menu-open {
  overflow: hidden;
  scrollbar-gutter: stable;
}

h2,
h3 {
  font-weight: 500;
}

sup {
  vertical-align: super;
  font-size: 0.5625rem;
}

.l-section {
}

.l-container {
  padding: 0 24px;
  max-width: 1128px;
  margin: 0 auto;
}

.l-section .l-container {
  padding: 110px 24px 120px;
}

.l-section:nth-of-type( 2n ) {
  background: var(--color-lbeige);
}

.c-sec-head{
  margin-bottom: 60px;
}

.c-sec-head__ttl {
  font-size: 2.8125rem;
  line-height: 1.4;
}


/* 全体 */
.l-wrapper {
}

@media (max-width: 1024px) {
}

@media (max-width: 767px) {
  html {
    font-size: 3.733vw;
  }

  .l-main-container {
    max-width: none;
    border-right: none;
    border-left: none;
  }
}

.u-sp{
  display: block!important;
}

.u-tb{
    display: none!important;
  }

.u-pc{
  display: none!important;
}

@media screen and (min-width: 768px) {
  .u-tb{
    display: block!important;
  }
}

@media screen and (min-width: 1025px) {
  .u-sp{
    display: none!important;
  }
  .u-pc{
    display: block!important;
  }
}



/* --- Header --- */
.header {
  background-color: var(--color-lbeige);
}

.header .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  padding: 20px 24px;
  position: relative;
}

.header_logo {
  width: 120px;
}

.header_logo a {
  display: block;
  line-height: 1;
}

.p-header__hamburger {
  display: block;
  z-index: 1002;
}

.c-hamburger {
  position: relative;
  width: 24px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.c-hamburger span {
  display: block;
  position: absolute;
  left: 0;
  width: 24px;
  height: 2px;
  background: var(--color-black);
  transition: all 0.4s;
}

.c-hamburger span:nth-of-type(1) { top: 4px; }
.c-hamburger span:nth-of-type(2) { top: 11px; }
.c-hamburger span:nth-of-type(3) { top: 18px; }

.c-hamburger.is-active span:nth-of-type(1) {
  transform: translateY(7px) rotate(225deg);
}
.c-hamburger.is-active span:nth-of-type(2) {
  opacity: 0;
}
.c-hamburger.is-active span:nth-of-type(3) {
  transform: translateY(-7px) rotate(-225deg);
}

.header_nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--color-white);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}

.header_nav.is-active {
  opacity: 1;
  visibility: visible;
}

.header_nav_inner {
  margin-top: 100px;
  width: 100%;
  padding: 0 20px;
}

.header_nav_text {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.header_nav_text li {
  padding: 15px 0;
  width: 100%;
  text-align: center;
}

.header_nav_text li a {
  font-size: 1.25rem;
  color: var(--color-black);
}

.header_nav_btn {
  margin: 30px auto 0;
  max-width: 360px;
  display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.40625rem;
    width: 100%;
    height: 70px;
    background: var(--color-black);
    color: var(--color-white);
    text-decoration: none;
    font-size: 1.40625rem;
    font-weight: 500;
    border-radius: 4px;
    position: relative;
    transition: transform 0.2s ease;
}

.header_overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s;
}

body.is-active .header_overlay {
  opacity: 1;
  visibility: visible;
}

body.is-active {
  overflow: hidden;
}

@media screen and (min-width: 1080px) {
  .header{
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--color-lbeige);
    box-shadow: none;
    transition: background-color 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
  }
  .header.is-scrolled {
    background-color:var(--color-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.075);
  }

  .header .inner {
    transition: height 0.4s ease;
  }
  
  .header.is-scrolled .inner {
  }

  .header .inner {
    padding: 0 24px;
    margin: 0 auto;
  }

  .header_logo {
    width: 150px;
  }

  .p-header__hamburger,
  .header_overlay {
    display: none !important;
  }

  .header_nav {
    position: inherit;
    width: auto;
    height: auto;
    background: transparent;
    opacity: 1;
    visibility: visible;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
  }

  .header_nav_inner {
    margin-top: 0;
    padding: 0;
    display: flex;
  }

  .header_nav_text {
    flex-direction: row;
    gap: 40px;
  }

  .header_nav_text li {
    width: auto;
    padding: 0;
    margin: 0;
    border: none;
    white-space: nowrap;
  }

  .header_nav_btn {
    font-size: 1.125rem;
    padding: 8px 24px;
    width: 200px;
    margin: 0 0 0 40px;
    white-space: nowrap;
    height: 50px;
  }
}



/* --- Main Visual --- */
.p-main-visual {
  padding: 20px 0 28px;
  background-image: radial-gradient(#ffffff 10%, #f5f1e6);
}

.p-main-visual__sub-copy {
  font-size: 1.6875rem;
}

.p-main-visual__main-copy {
  font-size: 2.8125rem;
  font-weight: 500;
  line-height: 1.4;
  margin: 10px auto 0;
}

.p-main-visual__card {
  width: 79%;
  margin: 20px auto 0;
  position: relative;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
}

.p-main-visual__card:after {
   content: "";
  position: absolute;
  bottom: 35px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 8px;
  box-shadow: 0 40px 20px rgba(0, 0, 0, .4);
  background-color: transparent;
  border-radius: 80px / 4px;
}

.p-main-visual__features {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-top: 40px;
  gap: 1rem;
}

.p-main-visual__feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

.p-main-visual__feature-icon {
  height: 3.75rem;
  width: 5.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-main-visual__feature-item:first-of-type .p-main-visual__feature-icon{
  padding-left: .5rem;
}

.p-main-visual__feature-text {
  font-size: 0.984375rem;
  line-height: 1;
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.p-main-visual__feature-text span{
  display: block;
}

.p-main-visual__feature-text .big{
  margin-top: 2px;
}

.p-main-visual__feature-text .big01{
  font-size: 2.109375rem;
  line-height: 1.25;
  font-weight: 500;
  position: relative;
}

.p-main-visual__feature-text .mark{
  position: absolute;
  right: -0.75rem;
  bottom: .1rem;
  font-size: 0.625rem;
}

.p-main-visual__feature-text .big02{
  font-size: 2.8125rem;
  font-family: "Work Sans", "Noto Sans JP", sans-serif;
  font-weight: 400;
}

.p-main-visual__feature-text .big02 .small{
  font-size: 1.6875rem;
  display: inline;
}

.p-main-visual__feature-text .big03{
  font-size: 1.6875rem;
  line-height: 1.7;
  font-weight: 500;
}

.p-main-visual .p-cta__btn {
  margin-top: 36px;
}

.p-main-visual__note{
  font-size: 0.703125rem;
  color: var(--color-dgray);
  text-align: left;
  margin-top: 16px;
  text-indent: -1em;
  padding-left: 1em;
}

/* ---  CTA --- */
.p-cta__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.40625rem;
  width: 100%;
  height: 70px;
  background: var(--color-black);
  color: var(--color-white);
  text-decoration: none;
  font-size: 1.40625rem;
  font-weight: 500;
  border-radius: 4px;
  position: relative;
  transition: transform 0.2s ease;
}

.p-cta__icon {
  position: absolute;
  right: 20px;
  width: 12px;
  height: 12px;
  border-top: 2px solid var(--color-white);
  border-right: 2px solid var(--color-white);
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.p-cta__icon::after {
  content: "";
  position: absolute;
  top: -1px;
  right: 0;
  width: 17px;
  height: 2px;
  background-color: var(--color-white);
  transform: rotate(-45deg);
  transform-origin: top right;
}


@media screen and (min-width: 768px) {
  .p-main-visual__card{
    width: 60%;
    margin: 40px auto 0;
  }
  .p-main-visual .p-cta__btn{
    max-width: 80%;
    margin-right: auto;
    margin-left: auto;
    height: 80px;
  }
}

@media screen and (min-width: 1025px) {
  .p-main-visual{
    margin-top: 90px;
    padding: 60px 0 60px;
  }
  .p-main-visual__wrapper{
    display: flex;
    align-items: center;
  }
  .p-main-visual__head{
    flex: 1;
    margin-right: 9.25%;
    text-align: left;
  }
  .p-main-visual__card{
    width: 50%;
  }
  .p-main-visual__card:after {
    bottom: 30px;
  }
  .p-main-visual__sub-copy{
    font-size: 2rem;
  }
  .p-main-visual__main-copy{
    font-size: 3.375rem;
    margin-top: 6px;
  }
  .p-main-visual .p-cta__btn{
    font-size: 1.375rem;
    max-width: 23.125rem;
    height: 76px;
    margin-left: 0;
  }
  .p-main-visual__features{
    gap: 60px;
    margin-top: 70px;
  }
  .p-main-visual__feature-item{
    flex-direction: row;
    flex: auto;
  }
  .p-main-visual__feature-text{
    flex: 1;
    flex-direction: row;
    margin: 0 0 0 10px;
    text-align: left;
    align-items: baseline;
  }
  .p-main-visual__feature-text .head{
    font-size: 1.5rem;
  }
  .p-main-visual__feature-text .big01{
    font-size: 2rem;
  }
  .p-main-visual__feature-text .big02{
    font-size: 2.5rem;
  }
  .p-main-visual__feature-text .big02 .small{
    font-size: 1.5rem;
  }
  .p-main-visual__feature-text .big03{
    font-size: 2rem;
  }
  .p-main-visual__note{
    font-size: 0.875rem;
    margin-top: 28px;
  }
}





/* --- Reasons --- */
.p-reason__item{
  border-top: 1px solid var(--color-gray);
  position: relative;
}

.p-reason__item + .p-reason__item{
  margin-top: 80px;
}

.p-reason__num{
  position: absolute;
  left: 0;
  top: 3.15rem;
  color: var(--color-blue);
  font-size: 2.25rem;
  font-family: "Work Sans", "Noto Sans JP", sans-serif;
}

.p-reason__icon{
  width: 52.6%;
  margin: 80px auto 30px;
}

.p-reason__title{
  font-size: 1.6875rem;
  line-height: 1.1;
}
.p-reason__title .big{
  display: block;
  font-size: 5.625rem;
}
.p-reason__item h3.p-reason__title .big{
  font-weight: 400;
  margin-top: 4px;
}

.p-reason__description{
  margin-top: 30px;
}

.p-reason__note{
  font-size: 0.875rem;
  color: var(--color-dgray);
  text-indent: -1em;
  padding-left: 1em;
  text-align: left;
}

.p-reason__note small{
  font-size: 0.625rem;
}

.p-reason__subtxt + .p-reason__note{
  margin-top: 10px;
}

.p-reason__item:nth-of-type(1) .p-reason__title{
  font-size: 3.375rem;
}

.p-reason__item:nth-of-type(1) .p-reason__note{
  margin-top: 40px;
}

.p-reason__item:nth-of-type(2) .p-reason__title .big{
  font-size: 7.875rem;
  line-height: 1;
  font-family: "Work Sans", "Noto Sans JP", sans-serif;
}

.p-reason__item:nth-of-type(2) .p-reason__title .percentage{
  font-size: 3.9375rem;
}

.p-reason__item:nth-of-type(2) .p-reason__subtxt{
  margin: 8px 0 2px;
}

.p-reason__item:nth-of-type(3) .p-reason__title{
  font-size: 2.25rem;
}

.p-reason__item:nth-of-type(3) .p-reason__title .big{
  font-size: 3.9375rem;
  margin-bottom: 10px;
}

.p-reason__item:nth-of-type(4) .p-reason__title .apr{
  display: flex;
  font-family: "Work Sans", "Noto Sans JP", sans-serif;
  align-items: flex-end;
  justify-content: center;
  font-size: 7.875rem;
  font-weight: 400;
  line-height: .75;
  margin-top: 16px;
}

.p-reason__item:nth-of-type(4) .p-reason__title .apr .txt{
  font-size: 1.96875rem;
  line-height: 1;
  margin-right: 4px;
  font-weight: 500;
}

.p-reason__item:nth-of-type(4) .p-reason__title .apr .percentage{
  font-size: 3.9375rem;
  line-height: .9;
}

.p-benefit {
  border: 1px solid var(--color-gray);
  margin-top: 48px;
}
.p-benefit__head{
  background: var(--color-lbeige);
  font-size: 1.40625rem;
  line-height: 1.4;
  padding: 12px 16px 16px;
}
.p-benefit__content{
  padding: 24px;
}
.p-benefit__item{
  display: flex;
  align-items: center;
}
.p-benefit__item + .p-benefit__item{
  border-top: 1px solid var(--color-gray);
  padding-top: 20px;
  margin-top: 20px;
}
.p-benefit__icon{
  width: 20%;
}
.p-benefit__item:nth-of-type(1) .p-benefit__icon img{
  max-width: 50px;
}
.p-benefit__txt{
  flex: 1;
  padding-left: 20px;
  text-align: left;
  line-height: 1.4;
}
.p-benefit__num{
  font-size: 1.40625rem;
  font-family: "Work Sans", "Noto Sans JP", sans-serif;
  color: var(--color-blue);
}
.p-benefit__num span{
  font-size: 0.984375rem;
}

.p-link__btn{
  display: inline-block;
  padding: 0.5625rem 1.6875rem;
  border: 1px solid var(--color-black);
  border-radius: 4px;
}

.p-benefit + .p-link__btn{
  margin-top: 40px;
}

@media screen and (max-width: 1024px) {
  .p-reason__note small{
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .p-reason__item{
    padding: 80px 0 0 0;
  }
  .p-reason__wrapper{
    display: flex;
    align-items: center;
    padding-left: 6.67%;
  }
  .p-reason__icon{
    width: 23.8%;
    margin: 0;
  }
  .p-reason__txt{
    flex: 1;
    text-align: left;
    padding-left: 5%;
  }
  .p-reason__item:nth-of-type(1) .p-reason__title{
    font-size: 4.5rem;
  }
  .p-reason__item:nth-of-type(1) h3.p-reason__title{
    font-weight: 400;
  }
  .p-reason__item:nth-of-type(1) .p-reason__title .big{
    display: inline;
    font-size: 4.5rem;
  }
  .p-reason__item:nth-of-type(1) .p-reason__note{
    margin-top: 36px;
    font-size: 0.875rem;
  }
  .p-benefit__head{
    font-size: 1.25rem;
  }
  .p-benefit__list{
    display: flex;
    align-items: center;
    justify-content:center;
  }
  .p-benefit__item + .p-benefit__item{
    border-top: none;
    border-left: 1px solid var(--color-gray);
    padding: 0 0 0 40px;
    margin: 0 0 0 40px;
  }
  .p-reason__num{
    font-size: 2rem;
    top: 2.5rem;
  }
  .p-benefit__icon{
    width: 72px;
    display: flex;
    justify-content: center;
  }
  .p-benefit__item:nth-of-type(1) .p-benefit__icon{
    width: 60px;
  }
  .p-benefit__item:nth-of-type(1) .p-benefit__icon img{
    max-width: none;
  }
  .p-benefit__txt{
    padding-left: 16px;
  }
  .p-reason__title{
    font-size: 2rem;
  }
  .p-benefit__num{
    font-size: 1.25rem;
  }
  .p-benefit__num span{
    font-size: 1rem;
  }
  .p-link__btn{
    font-size: 1.25rem;
    padding: 0.5rem 1.5rem;
  }
  .p-reason__item:nth-of-type(3) .p-reason__title .big{
    
    font-size: 4.5rem;
  }
  .p-reason__item:nth-of-type(3) .p-reason__title{
    font-size: 3rem;
  }
  .p-reason__item:nth-of-type(4) .p-reason__title .apr{
    justify-content: flex-start;
    font-size: 7rem;
  }
  .p-reason__item:nth-of-type(4) .p-reason__title .apr .txt{
    font-size: 1.75rem;
  }
  .p-reason__item:nth-of-type(4) .p-reason__title .apr .percentage{
    font-size: 3.5rem;
  }
}



/* --- STEP --- */

.p-step__item {
  display: flex;
  align-items: center;
  background: var(--color-white);
  border-radius: 4px;
  padding: 16px;
  min-height: 102px;
}

.p-step__item+.p-step__item {
  margin-top: 58px;
  position: relative;
}

.p-step__item+.p-step__item:before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  border: 0;
  border-bottom: solid 1px var(--color-black);
  border-right: solid 1px var(--color-black);
  transform: rotate(45deg);
  top: -47px;
  left: 0;
  right: 0;
  margin: auto;
}

.p-step__illust {
  width: 4.5rem;
  margin-right: 1rem;
}

.p-step__item:nth-of-type(1) .p-step__illust img {
  width: 47.1%;
}

.p-step__item:nth-of-type(2) .p-step__illust img {
  width: 85.7%;
}

.p-step__item:nth-of-type(3) .p-step__illust img {
  width: 72.8%;
}

.p-step__item:nth-of-type(4) .p-step__illust img {
  width: 72.8%;
}

.p-step__txt {
  flex: 1;
  text-align: left;
  line-height: 1.4;
}

.p-step__num {
  font-family: "Work Sans", "Noto Sans JP", sans-serif;
  color: var(--color-blue);
  line-height: 1;
}

.p-step__name {
  font-size: 1.40625rem;
  margin-top: 6px;
}

@media screen and (min-width: 1025px) {
  .p-step__list{
    display: flex;
    gap: 5rem;
  }
  .p-step__item{
    width: 19.4%;
    flex-direction: column;
    padding: 40px 20px 36px;
   }
  .p-step__item+.p-step__item{
    margin: 0;
  }
  .p-step__item+.p-step__item:before{
    top: calc( 50% - 10px );
    right: auto;
    left: calc( -25% - 5px );
    transform: rotate(-45deg);
    border-width: 2px;
  }
  .p-step__illust{
    margin: 0;
    width: 5rem;
    height: 5rem;
    display: flex;
    justify-content: center;
  }
  .p-step__txt{
    margin: 30px 0 0;
  }
  .p-step__num{
    text-align: center;
    font-size: 1.375rem;
  }
  .p-step__name{
    font-size: 1.5rem;
    text-align: center;
    margin-top: 8px;
  }
  .p-step__item:nth-of-type(1) .p-step__illust img,
  .p-step__item:nth-of-type(2) .p-step__illust img,
  .p-step__item:nth-of-type(3) .p-step__illust img,
  .p-step__item:nth-of-type(4) .p-step__illust img{
    width: auto;
  }
}




/* --- STEP --- */
.p-spec__img {
  width: 73%;
  margin: 0 auto 0;
}

.p-spec__list {
  text-align: left;
  margin-top: 56px;
}

.p-spec__ttl {
  color: var(--color-dgray);
}

.p-spec__data {
  margin: 24px 0 36px;
}

.p-spec__data:last-of-type{
  margin-bottom: 0;
}

.p-spec__data+.p-spec__ttl {
  border-top: 1px solid var(--color-gray);
  padding-top: 36px;
}

.p-spec__note {
  font-size: 0.984375rem;
  color: var(--color-dgray);
  margin-top: 16px;
}

.p-spec__note + .p-spec__note{
  margin-top: 4px;
}

.p-spec__link {
  display: inline-block;
  text-decoration: underline;
  margin-top: 24px;
}

@media screen and (min-width: 768px) {
  .p-spec__img{
    width: 46%;
  }
}

@media screen and (min-width: 1025px) {
  .p-spec__img{
    display: none;
  }
  .p-spec__list{
    display: flex;
    flex-wrap: wrap;
    flex: 1 1;
  }
  .p-spec__ttl{
    width: 30%;
    border-top: 1px solid var(--color-gray);
    padding-top: 36px;
    margin: 36px 0 0;
  }
  .p-spec__data{
    width: 70%;
    border-top: 1px solid var(--color-gray);
    padding-top: 36px;
    margin: 36px 0 0;
  }
  .p-spec__ttl:first-of-type, .p-spec__data:first-of-type{
    border-top: none;
    padding-top: 0;
    margin: 0;
  }
  .p-spec__data+.p-spec__ttl{
    padding-top: 36px;
  }
  .p-spec__link{
    margin-top: 20px;
  }
  .p-spec__note{
    font-size: 0.875rem;
  }
}




/* --- Footer --- */
.p-footer {
  padding: 50px 0 0;
  background: var(--color-lbeige);
}

.p-footer__logo img {
  width: 160px;
}

.p-footer__nav {
  margin: 30px auto 50px;
}

.p-footer__nav li + li{
  margin-top: 12px;
}

.p-footer__nav a {
  text-decoration: underline;
}

.p-footer__copy {
  border-top: 1px solid var(--color-gray);
  color: var(--color-dgray);
  font-size: 0.875rem;
  padding: 20px 0;
}

@media screen and (min-width: 1025px) {
  .p-footer {
    padding: 70px 0 0;
  }
  .p-footer__logo img {
    width: 170px;
  }
  .p-footer__nav {
    margin: 40px auto 70px;
    display: flex;
    justify-content: center;
    gap: 48px;
  }
  .p-footer__nav li + li{
    margin-top: 0;
  }
}


/* --- Floating CTA --- */
.p-floating-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 16px 24px;
  z-index: 100;
  transform: translateY(100%);
  transition: transform 0.4s ease-out;
  pointer-events: none;
}

.p-floating-cta.is-visible {
  transform: translateY(0);
  pointer-events: auto;
}

.p-floating-cta__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.40625rem;
    width: 100%;
    height: 70px;
    background: var(--color-black);
    color: var(--color-white);
    text-decoration: none;
    font-size: 1.40625rem;
    font-weight: 500;
    border-radius: 4px;
  position: relative;
  transition: transform 0.2s ease;
}

.p-floating-cta__icon {
  position: absolute;
  right: 20px;
  width: 12px;
  height: 12px;
  border-top: 2px solid var(--color-white);
  border-right: 2px solid var(--color-white);
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.p-floating-cta__icon::after {
  content: "";
  position: absolute;
  top: -1px;
  right: 0;
  width: 17px;
  height: 2px;
  background-color: var(--color-white);
  transform: rotate(-45deg);
  transform-origin: top right;
}

@media screen and (min-width: 768px) {
  .p-floating-cta {
    width: 80%;
    left: 10%;
  }
  .p-floating-cta__btn {
    height: 80px;
  }
}

@media screen and (min-width: 1025px) {
  .p-floating-cta {
    display: none;
  }
}