@charset "UTF-8";
/*
全てのページに影響するCSSに関して記述しているファイル
phpで作成したpartsごとのファイルを作成する様にする
*/
/*
変数関係をまとめたファイル
 */
/*
色に関して記述しているファイル
色に関して、ここで宣言をしたものを利用する様にする

例：
color: $color-font-white;
*/
/*
ブレイクポイントに関して記述しているファイル
下のブレイクポイントの設定を変更するときは必ずPMに一声かける
 */
.svgs > .svg {
  position: absolute;
  width: 0;
  height: 0;
}

body {
  position: relative;
  color: #0B0630;
  font-family: "Noto Sans JP", sans-serif;
  overflow-x: hidden;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 7000;
}

header,
footer,
section {
  padding: 0 20px;
}

header > .container,
footer > .container,
section > .container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

@-webkit-keyframes shake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(24%);
    transform: translateX(24%);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes shake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(24%);
    transform: translateX(24%);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

/*
HeaderのSCSSに関して記述しているファイル
 */
.svgs > .svg {
  position: absolute;
  width: 0;
  height: 0;
}

.header-hoken {
  width: 100%;
  position: relative;
  padding: 16px 16px 11px;
}

@media screen and (max-width: 897px) {
  .header-hoken {
    padding: 12px 16px 0px;
  }
}

.header-hoken > .container {
  padding: 16px 16px;
  text-align: center;
}

.header-hoken > .container > .logo > .yokihi {
  background-image: url("./../../assets/imgs/logo-yokihi.png");
  background-size: contain;
  background-repeat: no-repeat;
  width: 178px;
  height: 52px;
  margin: 0 auto;
}

@media screen and (max-width: 640px) {
  .header-hoken > .container > .logo > .yokihi {
    width: 137px;
    height: 40px;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  border-top: 1px solid #FBAACC;
  background-color: #FFFBFD;
}

.header.un-fixed {
  position: absolute;
  top: 550px;
}

@media screen and (max-width: 897px) {
  .header {
    border-top: 0;
    background-color: transparent;
  }
}

.header > .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 19px 0;
}

@media screen and (max-width: 897px) {
  .header > .container {
    display: none;
  }
}

.header > .container > .left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header > .container > .left > .logo > .yokihi {
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
  background-image: url("../../assets/imgs/logo-yokihi.png");
  background-size: contain;
  background-repeat: no-repeat;
  min-width: 139px;
  height: 41px;
}

.header > .container > .center {
  width: 70%;
  max-width: 544px;
  padding: 0 24px;
}

.header > .container > .center > .pages {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
}

.header > .container > .center > .pages > .page {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  white-space: nowrap;
}

.header > .container > .center > .pages > .page > .link {
  font-size: 18px;
  padding: 10px 16px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.header > .container > .center > .pages > .page > .link:hover {
  opacity: 0.5;
}

.header > .container > .right {
  width: 30%;
  max-width: 408px;
  min-width: 240px;
}

.header > .container > .right > .search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: white;
  border: 1px solid #DA2772;
  width: 100%;
  height: 41px;
  padding: 0 10px;
}

.header > .container > .right > .search > .word {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  border: none;
  font-size: 16px;
  padding-left: 10px;
}

.header > .container > .right > .search > .submit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: transparent;
  border: none;
  width: 23px;
  height: 23px;
  padding: 0;
  border: none;
}

.header > .container > .right > .search > .submit > .img {
  width: 100%;
  height: 100%;
}

.header > .hamburger {
  display: none;
}

@media screen and (max-width: 897px) {
  .header > .hamburger {
    display: block;
    position: fixed;
    right: 16px;
    bottom: 16px;
    background-color: #FF65A5;
    border-radius: 50%;
    width: 62px;
    height: 62px;
    z-index: 100;
  }
}

.header > .hamburger > .bar {
  position: absolute;
  top: 50%;
  left: 50%;
  background: #FFFFFF;
  display: inline-block;
  width: 32px;
  height: 3px;
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
}

.header > .hamburger > .bar:first-child {
  -webkit-transform: translate(-50%, -50%) translateY(-6px);
  transform: translate(-50%, -50%) translateY(-6px);
}

.header > .hamburger > .bar:first-child.active {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}

.header > .hamburger > .bar:last-child {
  -webkit-transform: translate(-50%, -50%) translateY(6px);
  transform: translate(-50%, -50%) translateY(6px);
}

.header > .hamburger > .bar:last-child.active {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
}

.header > .sp-menu {
  display: none;
  background: #FFFBFD;
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 98;
  padding: 11px 16px;
}

.header > .sp-menu > .container {
  overflow: auto;
  max-width: 358px;
  height: 100%;
  margin: auto;
}

.header > .sp-menu > .container::-webkit-scrollbar {
  display: none;
}

.header > .sp-menu > .container > .logo {
  margin-bottom: 28px;
}

.header > .sp-menu > .container > .logo > .yokihi {
  width: 102px;
  height: 30px;
  margin-bottom: 28px;
}

.header > .sp-menu > .container > .search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: white;
  border: 1px solid #DA2772;
  max-width: 303px;
  width: 100%;
  height: 41px;
  margin: 0 auto 26px;
  padding: 0 10px;
}

.header > .sp-menu > .container > .search > .word {
  width: 100%;
  border: none;
  font-size: 16px;
  padding-left: 3px;
}

.header > .sp-menu > .container > .search > .submit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: transparent;
  border: none;
  width: 23px;
  height: 23px;
  padding: 0;
  border: none;
}

.header > .sp-menu > .container > .search > .submit > .img {
  width: 100%;
  height: 100%;
}

.header > .sp-menu > .container > .content {
  margin: 0 auto 26px;
}

.header > .sp-menu > .container > .content > .ttl {
  border-bottom: 2px solid #FBAACC;
  font-size: 20px;
  font-weight: 700;
  color: #DA2772;
  letter-spacing: -0.06em;
  margin-bottom: 20px;
  padding-bottom: 8px;
}

.header > .sp-menu > .container > .content > .img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.header > .sp-menu > .container > .content > .img > .thumbnail {
  width: 100%;
  height: 100%;
  -webkit-transition: -webkit-transform 0.16s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: -webkit-transform 0.16s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 0.16s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 0.16s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.16s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.header > .sp-menu > .container > .content > .categories {
  margin-top: 12px;
  padding-left: 57px;
}

.header > .sp-menu > .container > .content > .categories > .category {
  position: relative;
  margin-bottom: 12px;
}

.header > .sp-menu > .container > .content > .categories > .category:before {
  content: "";
  position: absolute;
  top: 8px;
  left: -18px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 7px 0 7px;
  border-color: #000000 transparent transparent transparent;
  line-height: 0;
  pointer-events: none;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.header > .sp-menu > .container > .content > .sociales {
  padding-left: 39px;
}

.header > .sp-menu > .container > .content > .sociales > .social:first-child {
  margin-bottom: 12px;
}

.header > .sp-menu > .container > .content > .sociales > .social > .text-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.header > .sp-menu > .container > .content > .sociales > .social > .text-link > .icon {
  margin-left: 5px;
}

.header > .sp-menu > .container > .content > .tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0 0 0 39px;
}

.header > .sp-menu > .container > .content > .tags > .tag {
  margin-right: 16px;
  margin-bottom: 8px;
}

.header > .sp-menu > .container > .content > .tags > .tag > .link {
  padding: 8px 4px;
}

.header > .sp-menu > .container > .content > .logo {
  width: 100%;
  height: 50%;
  padding: 19px;
}

.header > .sp-menu > .container > .content > .logo > .icon {
  width: 90%;
}

.header > .sp-menu.active {
  display: block;
}

/*
FooterのSCSSに関して記述しているファイル
 */
.section-banner {
  background-image: url("./../../assets/imgs/lp/post1/bg_conversion.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  width: 100%;
  padding: 61px 16px 55px;
}

@media screen and (max-width: 640px) {
  .section-banner {
    background-image: url("./../../assets/imgs/lp/post1/bg_conversion_sp.jpg");
    background-position: top right;
    margin-bottom: 40px;
    padding: 30px 36px;
  }
}

.section-banner > .container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-banner > .container > .content {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

@media screen and (max-width: 897px) {
  .section-banner > .container > .content > .left {
    max-width: 400px;
    margin: auto;
  }
}

.section-banner > .container > .content > .left > .copy {
  width: 270px;
  height: 66px;
  color: #0B0630;
}

@media screen and (max-width: 897px) {
  .section-banner > .container > .content > .left > .copy {
    margin-bottom: 16px;
  }
}

.section-banner > .container > .content > .left > .yokihi {
  width: 289px;
  height: 85px;
}

@media screen and (max-width: 897px) {
  .section-banner > .container > .content > .left > .yokihi {
    width: 143px;
    height: 41px;
    margin-bottom: 16px;
  }
}

.section-banner > .container > .content > .btn {
  margin-left: auto;
}

.section-banner > .container > .content > .btn > .link {
  padding: 30px 71px;
}

@media screen and (max-width: 897px) {
  .section-banner > .container > .content > .btn > .link {
    max-width: 400px;
    margin: auto;
  }
}

.section-banner > .container > .content > .btn > .link > .txt {
  font-size: 32px;
}

@media screen and (max-width: 897px) {
  .section-banner > .container > .content > .btn > .link > .txt {
    font-size: 20px;
  }
}

@media screen and (max-width: 640px) {
  .section-banner > .container > .content > .btn > .link {
    padding: 20px 24px;
  }
}

.section-whatis {
  margin: 0 auto;
  padding: 72px 0;
}

@media screen and (max-width: 897px) {
  .section-whatis {
    margin-bottom: 72px;
    padding: 72px 0 0;
  }
}

@media screen and (max-width: 640px) {
  .section-whatis {
    padding: 0;
  }
}

.section-whatis > .container > .yokihi {
  width: 232px;
  height: 68px;
  margin: 0 auto;
}

.section-whatis > .container > .text {
  font-weight: 300;
  line-height: 200%;
  text-align: center;
  margin-top: 26px;
}

.footer {
  margin: 101px 16px 29px;
}

@media screen and (max-width: 897px) {
  .footer {
    margin: 92px 0 51px;
  }
}

@media screen and (max-width: 640px) {
  .footer {
    margin: 0 0 32px;
  }
}

.footer > .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  max-width: 1200px;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  width: 100%;
  margin: 0 auto;
}

@media screen and (max-width: 897px) {
  .footer > .container {
    display: block;
  }
}

.footer > .container > .left {
  text-align: left;
}

.footer > .container > .left > .link {
  margin-bottom: 18px;
}

@media screen and (max-width: 897px) {
  .footer > .container > .left > .link {
    margin-bottom: 8px;
  }
}

.footer > .container > .left > .link > a > .logo {
  width: 188px;
  height: 44px;
}

@media screen and (max-width: 897px) {
  .footer > .container > .left > .link > a > .logo {
    margin: 0 auto;
    display: block;
    width: 220px;
    height: auto;
  }
}

.footer > .container > .left > .txt {
  font-size: 12px;
  font-weight: 300;
}

@media screen and (max-width: 897px) {
  .footer > .container > .left > .txt {
    text-align: center;
    margin-top: 32px;
    margin-bottom: 40px;
  }
}

.footer > .container > .right {
  text-align: right;
}

.footer > .container > .right > .pages {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-bottom: 61px;
}

@media screen and (max-width: 897px) {
  .footer > .container > .right > .pages {
    max-width: 294px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 0 auto 32px;
  }
}

.footer > .container > .right > .pages > .page > .text-link {
  padding: 3px 5px;
  font-weight: 300;
  color: #0B0630;
}

@media screen and (max-width: 897px) {
  .footer > .container > .right > .pages > .page > .text-link {
    font-size: 14px;
  }
}

@media screen and (max-width: 897px) {
  .footer > .container > .right > .pages > .page:first-child {
    -webkit-transform: translateY(-1px);
    transform: translateY(-1px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
}

.footer > .container > .right > .copyright {
  font-size: 11px;
  font-weight: 300;
}

@media screen and (max-width: 897px) {
  .footer > .container > .right > .copyright {
    text-align: center;
  }
}

.footer > .container.site-map {
  position: relative;
  display: block;
  padding: 22px 0 18px;
}

@media screen and (max-width: 640px) {
  .footer > .container.site-map {
    padding: 22px 0 55px;
  }
}

.footer > .container.site-map > .pages {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  text-align: center;
  max-width: 605px;
  margin: 0 auto;
}

@media screen and (max-width: 640px) {
  .footer > .container.site-map > .pages {
    display: block;
  }
}

.footer > .container.site-map > .pages > .title {
  font-weight: 700;
}

@media screen and (max-width: 640px) {
  .footer > .container.site-map > .pages > .title {
    font-size: 14px;
    margin-bottom: 15px;
  }
}

@media screen and (max-width: 640px) {
  .footer > .container.site-map > .pages > .page {
    margin-bottom: 2px;
  }
}

.footer > .container.site-map > .pages > .page > .text-link {
  font-weight: 300;
  padding: 10px 12px;
}

@media screen and (max-width: 640px) {
  .footer > .container.site-map > .pages > .page > .text-link {
    font-size: 14px;
    padding: 4px 12px;
  }
}

.footer > .container.site-map > .pages > .page > .text-link.active {
  font-weight: 700;
}

.footer > .container.site-map > .pages:first-of-type {
  padding-bottom: 12px;
}

@media screen and (max-width: 640px) {
  .footer > .container.site-map > .pages:first-of-type {
    padding-bottom: 22px;
  }
}

.footer > .container.site-map > .pages:last-of-type {
  padding-top: 12px;
}

@media screen and (max-width: 897px) {
  .footer > .container.site-map > .pages.pages-fix > *:nth-child(3) {
    -webkit-transform: translateX(-1px);
    transform: translateX(-1px);
  }
}

.footer > .container.site-map:before {
  content: "";
  display: block;
  background-color: #FBAACC;
  position: absolute;
  top: 57px;
  width: 100%;
  height: 1px;
}

@media screen and (max-width: 640px) {
  .footer > .container.site-map:before {
    top: 175px;
    width: 92%;
    right: 50%;
    -webkit-transform: translateX(50%);
    transform: translateX(50%);
  }
}

/*
LoadingのSCSSに関して記述しているファイル
 */
/*
SidebarのSCSSに関して記述しているファイル
*/
.sidenav {
  width: 328px;
  min-width: 328px;
  margin-left: 25px;
}

@media screen and (max-width: 897px) {
  .sidenav {
    max-width: 358px;
    width: 100%;
    padding: 0 16px;
    margin: 0 auto;
  }
}

.sidenav > .container > .content {
  margin-bottom: 26px;
}

.sidenav > .container > .content > .ttl {
  border-bottom: 2px solid #FBAACC;
  font-size: 20px;
  font-weight: 700;
  color: #DA2772;
  margin-bottom: 20px;
  padding-bottom: 8px;
}

.sidenav > .container > .content > .img {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 14px;
}

.sidenav > .container > .content > .img > .thumbnail {
  width: 100%;
  height: 100%;
  -webkit-transition: -webkit-transform 0.16s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: -webkit-transform 0.16s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 0.16s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 0.16s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.16s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.sidenav > .container > .content > .categories {
  margin-top: 12px;
  padding-left: 58px;
}

.sidenav > .container > .content > .categories > .category {
  position: relative;
  margin-bottom: 12px;
}

.sidenav > .container > .content > .categories > .category:before {
  content: "";
  position: absolute;
  top: 8px;
  left: -18px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 7px 0 7px;
  border-color: #000000 transparent transparent transparent;
  line-height: 0;
  pointer-events: none;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.sidenav > .container > .content > .tags {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 39px;
}

.sidenav > .container > .content > .tags > .tag {
  margin-right: 16px;
  margin-bottom: 12px;
}

.sidenav > .container > .content > .tags > .tag > .text-link {
  padding: 8px 4px;
}

.sidenav > .container > .content > .sociales {
  padding-left: 39px;
}

.sidenav > .container > .content > .sociales > .social:first-child {
  margin-bottom: 12px;
}

.sidenav > .container > .content > .sociales > .social > .text-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.sidenav > .container > .content > .sociales > .social > .text-link > .icon {
  margin-left: 5px;
}

.sidenav > .container > .content > .logo {
  padding: 20px 20px 20px 16px;
}

.flex-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 897px) {
  .flex-wrap {
    display: block;
  }
}

.flex-wrap-all {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

@media screen and (max-width: 897px) {
  .is-pc {
    display: none;
  }
}

.is-sp {
  display: none;
}

@media screen and (max-width: 897px) {
  .is-sp {
    display: block;
  }
}

.border-box {
  border: 1px solid #FBAACC;
}

.strong {
  font-weight: 700;
}

.link {
  color: #0B0630;
}

.text-link {
  color: #0B0630;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.text-link:hover {
  opacity: 0.5;
}

.bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.btn > .link {
  position: relative;
  background-color: #FF65A5;
  padding: 30px 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  white-space: nowrap;
}

@media screen and (max-width: 897px) {
  .btn > .link {
    padding: 20px 26px;
  }
}

@media screen and (max-width: 640px) {
  .btn > .link {
    max-width: 302px;
    margin: 0 auto;
  }
}

.btn > .link > .txt {
  font-weight: 700;
  color: #FFFFFF;
  text-align: left;
}

@media screen and (max-width: 897px) {
  .btn > .link > .txt {
    font-size: 20px;
  }
}

.btn > .link > .txt > .small {
  font-size: 14px;
  display: block;
}

@media screen and (max-width: 897px) {
  .btn > .link > .txt > .small {
    font-size: 11px;
  }
}

.btn > .link > .icon {
  fill: none;
  stroke: #FFFFFF;
  width: 85px;
  height: 12px;
  margin-left: 24px;
}

.btn > .link:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  background-color: #FDFFFF;
  -webkit-transform-origin: left top;
  transform-origin: left top;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: -webkit-transform .2s;
  transition: -webkit-transform .2s;
  transition: transform .2s;
  transition: transform .2s, -webkit-transform .2s;
}

.btn > .link:hover > .txt {
  color: #F277AB;
  z-index: 2;
}

.btn > .link:hover > .icon {
  stroke: #FBAACC;
  z-index: 2;
}

.btn > .link:hover:before {
  -webkit-transform-origin: left top;
  transform-origin: left top;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}
