@charset "UTF-8";
/*
base
*/
/* スタイルの初期化---------------------*/
* {
  margin: 0;
  padding: 0;
  font-weight: normal;
  list-style: none;
  text-decoration: none;
  border-style: none;
  zoom: 1;
  outline: none;
  -webkit-font-smoothing: antialiased;
}

/* utility---------------------*/
body {
  color: #222222;
  font-family: 'Avenir','Helvetica Neue','Helvetica', "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

.is-fixed {
  height: 100%;
  overflow: hidden;
}

.flex-row {
  display: -webkit-box;
  display: flex;
}

.flex-wrap {
  flex-wrap: wrap;
}

.display-sp {
  display: block;
}

.display-pc {
  display: none;
}

.space-between {
  -webkit-box-pack: justify;
          justify-content: space-between;
}

.flex-center {
  -webkit-box-pack: center;
          justify-content: center;
}

.flex-wrap {
  flex-wrap: wrap;
}

.fw--b {
  font-weight: bold;
}

.section-head, .about-row-head {
  font-weight: bold;
  font-size: 32px;
  line-height: 150%;
  margin: 0 0 1.5rem;
}

.section-head--sm {
  font-size: 28px;
}

.banner-row {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
}

.banner-row .apple {
  width: 123px;
  height: auto;
}

.banner-row .google {
  width: 150px;
  height: auto;
}

.banner-row img {
  width: 100%;
}

@media screen and (min-width: 420px) and (max-width: 768px) {
  .banner-row {
    -webkit-box-pack: center;
            justify-content: center;
  }
  .section-head, .about-row-head {
    text-align: center;
  }
}

@media screen and (min-width: 769px) {
  body {
    min-width: 1080px;
  }
  .display-sp {
    display: none !important;
  }
  .display-pc {
    display: block !important;
  }
  .section-head, .about-row-head {
    font-size: 40px;
    margin: 0;
  }
}

/* header---------------------*/
.header {
  position: fixed;
  width: 100%;
  box-sizing: border-box;
  background: #FFFFFF;
  box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.1);
  padding: 1rem 1.5rem 0.8rem;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
  z-index: 99;
}

.header.hidden-bg {
  background: initial;
  box-shadow: initial;
}

.header-logo img, .header-menu-logo img {
  width: 104px;
  height: auto;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
  opacity: 1;
}

.deactive {
  opacity: 0;
  z-index: -1;
}

.header-menu {
  position: fixed;
  top: 0;
  right: -100vw;
  width: 100%;
  height: 100%;
  background: #01000069;
  opacity: 0;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}

.header-menu.active {
  right: 0;
  opacity: 1;
}

.header-menu-block {
  position: absolute;
  right: 0;
  width: 75%;
  height: 100%;
  background: #fff;
  box-sizing: border-box;
  padding: 1rem 25px 0;
  z-index: 10;
}

.header-menu-block .apple {
  display: block;
  width: 123px;
  height: auto;
  margin: 0 0 1rem;
}

.header-menu-block .google {
  display: block;
  width: 150px;
  height: auto;
}

.header-menu-list {
  margin: 3rem 0 3.5rem;
}

.header-menu-list li {
  margin: 0 0 0.9rem;
}

.header-menu-list a {
  font-size: 32px;
  font-weight: bold;
  line-height: 44px;
  letter-spacing: 0.1em;
  color: #00081A;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}

.header-menu-list a:hover {
  color: #D3A74E;
}

.header-menu-text {
  font-weight: bold;
  font-size: 14px;
  line-height: 180%;
  letter-spacing: 0.12em;
  margin: 0 0 1rem;
}

.header-menu-btn {
  position: absolute;
  top: 20px;
  right: 1.5rem;
  width: 16px;
  height: 16px;
  z-index: 999;
}

.header-menu-btn span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #222;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}

.header-menu-btn span:nth-of-type(1) {
  top: 0;
}

.header-menu-btn span:nth-of-type(2) {
  top: 7px;
}

.header-menu-btn span:nth-of-type(3) {
  width: 12px;
  bottom: 0;
}

.header-menu-btn.active span:nth-of-type(1) {
  top: -11px;
  -webkit-transform: translateY(20px) rotate(-45deg);
          transform: translateY(20px) rotate(-45deg);
}

.header-menu-btn.active span:nth-of-type(2) {
  opacity: 0;
}

.header-menu-btn.active span:nth-of-type(3) {
  bottom: -15px;
  width: 16px;
  -webkit-transform: translateY(-20px) rotate(45deg);
          transform: translateY(-20px) rotate(45deg);
}

@media screen and (max-width: 350px) {
  .header-menu-block {
    padding: 1rem;
  }
}

@media screen and (min-width: 769px) {
  .header {
    display: -webkit-box;
    display: flex;
    width: 100%;
    height: 80px;
    -webkit-box-align: center;
            align-items: center;
    background: #FFFFFF;
    box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.1);
    -webkit-box-pack: justify;
            justify-content: space-between;
    padding: 1rem 2.5rem;
  }
  .header.deactive {
    opacity: 1;
    z-index: 2;
  }
  .header-logo img {
    width: 171px;
  }
  .header-menu-btn {
    display: none;
  }
  .header-menu {
    position: relative;
    top: 0;
    right: 0;
    width: auto;
    height: 100%;
    background: initial;
    opacity: 1;
  }
  .header-menu-block {
    position: relative;
    display: -webkit-box;
    display: flex;
    width: 100%;
    -webkit-box-align: center;
            align-items: center;
    background: initial;
    padding: 0;
  }
  .header-menu-block .apple, .header-menu-block .google {
    margin: 0 0 0 2rem;
  }
  .header-menu-logo {
    display: none;
  }
  .header-menu-list {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
            align-items: center;
    margin: 0.5rem 0 0;
  }
  .header-menu-list li {
    margin: 0 0 0 2rem;
  }
  .header-menu-list a {
    font-size: 18px;
    line-height: 25px;
    letter-spacing: 0.1em;
  }
  .header-menu-text {
    display: none;
  }
}

/* mainvisual---------------------*/
.mainvisual {
  position: relative;
  width: 100%;
  min-height: 545px;
  background-image: url(../img/mainvisual-bg-sp.png);
  background-repeat: no-repeat;
  background-size: auto 545px;
  box-sizing: border-box;
  padding: 0 0 1rem;
}

.mainvisual-block {
  position: relative;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
  letter-spacing: 0.17em;
  padding: 5rem 1.5rem 0;
}

.mainvisual-logo {
  width: 180px;
  height: auto;
}

.banner-row--mainvisual {
  height: 44px;
  margin: 2.5rem 0 0;
  padding: 0 1rem;
}

.mainvisual-text {
  margin: 0 0 0.5rem;
}

.mainvisual-sub-title {
  margin: 0.5rem 0 0;
}

.mainvisual-video {
  position: relative;
  width: 100%;
  box-sizing: border-box;
  margin: 3rem 0 0;
  padding: 0 1.5rem 0;
}

.mainvisual-video video {
  width: 100%;
  height: auto;
}

.youtube-modal {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000000d4;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  z-index: 999;
}

.youtube-modal.deactive {
  opacity: 0;
  z-index: -1;
}

.video-wrapper {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 90.05vw;
  height: 50.59vw;
  max-width: 1400px;
  max-height: 786px;
  margin: auto;
}

#play {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 72px;
  height: 72px;
  cursor: pointer;
  margin: auto;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  z-index: 2;
}

#play:hover {
  -webkit-transform: scale(0.85);
          transform: scale(0.85);
}

#pause {
  position: absolute;
  top: 12px;
  right: 24px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  margin: auto;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  z-index: 2;
}

#pause:hover {
  -webkit-transform: scale(0.85);
          transform: scale(0.85);
}

@media screen and (min-width: 410px) and (max-width: 768px) {
  .mainvisual {
    background-size: 100% auto;
  }
  .banner-row--mainvisual {
    -webkit-box-pack: center;
            justify-content: center;
  }
  .banner-row--mainvisual .google {
    margin: 0 0 0 1rem;
  }
}

@media screen and (min-width: 769px) {
  .mainvisual {
    position: relative;
    width: 100%;
    height: 765px;
    background-image: url(../img/mainvisual-bg-pc.png);
    background-repeat: no-repeat;
    background-size: cover;
    box-sizing: border-box;
    padding: 0;
  }
  .mainvisual-row {
    display: -webkit-box;
    display: flex;
    width: 79%;
    max-width: 1140px;
    height: 100%;
    -webkit-box-align: center;
            align-items: center;
    box-sizing: border-box;
    -webkit-box-pack: justify;
            justify-content: space-between;
    margin: 0 auto 0;
    padding: 1.5rem 0 0;
  }
  .mainvisual-block {
    position: relative;
    width: initial;
    box-sizing: border-box;
    text-align: center;
    letter-spacing: 0.17em;
    padding: 0 1.5rem;
  }
  .mainvisual-logo {
    width: 320px;
    height: auto;
  }
  .banner-row--mainvisual {
    display: none;
    width: 302px;
    height: 44px;
    margin: 4rem auto 0;
    -webkit-box-pack: initial;
            justify-content: initial;
    padding: 0 1rem;
  }
  .banner-row--mainvisual .google {
    width: 150px;
    height: auto;
    margin: 0 0 0 1rem;
  }
  .mainvisual-text {
    font-size: 24px;
    line-height: 180%;
    text-align: left;
    letter-spacing: 0.12em;
    margin: 0 0 0.5rem;
  }
  .mainvisual-sub-title {
    font-size: 27px;
    line-height: 150%;
    margin: 0.5rem 0 0;
    text-align: left;
  }
  .mainvisual-video {
    position: relative;
    width: 640px;
    box-sizing: initial;
    margin: 0;
    z-index: 1;
  }
  #pause {
    position: absolute;
    top: 24px;
    right: 24px;
  }
}

/* introduction---------------------*/
.introduction-copy-block {
  box-sizing: border-box;
  font-size: 14px;
  line-height: 180%;
  letter-spacing: 0.12em;
  margin: 5rem 0 0;
  padding: 0 2.5rem;
}

.introduction-copy {
  font-weight: bold;
  font-size: 32px;
  line-height: 150%;
  margin: 0 0 1.5rem;
}

.slider {
  width: 100%;
  margin: 2.5rem 0 5rem;
}

.slick-slide {
  margin: 0 10px;
}

.slick-slide img {
  width: 100%;
  height: auto;
}

@media screen and (min-width: 600px) and (max-width: 768px) {
  .introduction-copy-block {
    text-align: center;
    padding: 0 5rem;
  }
}

@media screen and (min-width: 769px) {
  .introduction-copy-block {
    display: -webkit-box;
    display: flex;
    width: 880px;
    -webkit-box-align: center;
            align-items: center;
    box-sizing: border-box;
    font-size: 18px;
    -webkit-box-pack: justify;
            justify-content: space-between;
    line-height: 180%;
    letter-spacing: 0.12em;
    margin: 7.5rem auto 0;
    padding: 0;
  }
  .introduction-copy {
    font-weight: bold;
    font-size: 32px;
    line-height: 150%;
    margin: 0 0 1.5rem;
  }
  .slider {
    width: 100%;
    margin: 3.5rem 0 6rem;
  }
  .slick-slide {
    display: -webkit-box !important;
    display: flex !important;
    height: 22vh;
    margin: 0 10px;
    -webkit-box-pack: center;
            justify-content: center;
    overflow: hidden;
  }
  .slick-slide img {
    width: auto;
    height: 100%;
  }
}

/* about---------------------*/
.about-row-yellow {
  height: 626px;
  background: #D3A74E;
  background-image: url(../img/about-bg-sp.png);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: contain;
  box-sizing: border-box;
  color: #fff;
  padding: 5rem 2.5rem;
}

.about-row {
  position: relative;
  box-sizing: border-box;
}

.about-row:nth-of-type(2) {
  padding: 5rem 2.5rem 5rem;
}

.about-row:nth-of-type(2) .about-row-text {
  width: 59%;
}

.about-row:nth-of-type(2) .about-row-phone {
  position: absolute;
  top: 140px;
  right: 0;
  width: 67%;
  max-width: 260px;
  z-index: 1;
}

.about-row-video {
  position: absolute;
  top: 283px;
  left: 55px;
  display: -webkit-box;
  display: flex;
  width: 224px;
  height: 460px;
  background-image: url(../img/phone-body.png);
  background-size: contain;
  background-repeat: no-repeat;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-transform: rotate(-15deg);
          transform: rotate(-15deg);
}

.about-row-video video {
  position: relative;
  top: 27px;
  width: 181px;
  height: auto;
}

.about-row-bg-yellow {
  width: 100%;
  height: 828px;
  background: radial-gradient(203.29% 203.29% at 50% 203.29%, #EEDDBB 31.57%, #FCF8F1 89.71%);
}

.about-row-bg-yellow .about-row-block {
  width: 89.5%;
  height: 100%;
  background: #E0C285;
  box-sizing: border-box;
  padding: 7.5rem 2.5rem 0;
}

.about-row-bg-yellow .about-row-phone {
  position: absolute;
  top: 256px;
  left: 0;
  width: 99%;
  max-width: 369px;
}

.about-row-text {
  font-size: 14px;
  line-height: 180%;
  letter-spacing: 0.12em;
}

@media screen and (max-width: 350px) {
  .about-row-bg-yellow img {
    position: absolute;
    top: 320px;
    left: 10px;
    width: 87%;
  }
  .about-row-video {
    top: 40%;
    width: 180px;
    height: 360px;
  }
  .about-row-video video {
    top: 24px;
    width: 144px;
  }
}

@media screen and (min-width: 600px) and (max-width: 768px) {
  .about-row {
    position: relative;
    box-sizing: border-box;
    text-align: center;
  }
  .about-row:nth-of-type(2) {
    padding: 5rem 6.5rem 5rem;
  }
  .about-row:nth-of-type(2) .about-row-text {
    width: 100%;
  }
  .about-row-bg-yellow .about-row-block {
    padding: 7.5rem 6.5rem 0;
  }
  .about-row-bg-yellow .about-row-phone {
    position: absolute;
    top: 260px;
    left: 100px;
    width: 87%;
    max-width: 400px;
  }
  .about-row-text .display-sp {
    display: none;
  }
}

@media screen and (min-width: 769px) {
  .about-row-head {
    margin: 0 0 2.5rem;
  }
  .about-row-yellow {
    height: 452px;
    background-image: url(../img/about-bg-pc.png);
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: contain;
    box-sizing: border-box;
    color: #fff;
    padding: 0;
  }
  .about-row-yellow .about-row-block {
    -webkit-box-pack: end;
            justify-content: flex-end;
  }
  .about-row {
    position: relative;
    box-sizing: border-box;
  }
  .about-row:nth-of-type(2) {
    height: 388px;
    background: radial-gradient(203.29% 203.29% at 50% 203.29%, #EEDDBB 31.57%, #FCF8F1 89.71%);
    padding: 0;
  }
  .about-row:nth-of-type(2) .about-row-text {
    width: auto;
  }
  .about-row:nth-of-type(2) .about-row-phone {
    position: relative;
    top: 0;
    right: 0;
    width: 295px;
    max-width: initial;
    padding: 40px 0 0;
    z-index: 1;
  }
  .about-row-bg-yellow {
    height: 364px;
    background: #E0C285;
    overflow: hidden;
  }
  .about-row-bg-yellow .about-row-block {
    width: 880px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: justify;
            justify-content: space-between;
    padding: 0;
  }
  .about-row-bg-yellow .about-row-phone {
    position: relative;
    top: 0;
    left: initial;
    width: 282px;
    max-width: initial;
    padding: 40px 0 0;
    z-index: 1;
  }
  .about-row-text {
    font-size: 18px;
  }
  .about-row-block {
    display: -webkit-box;
    display: flex;
    width: 900px;
    height: 100%;
    margin: 0 auto;
    -webkit-box-pack: justify;
            justify-content: space-between;
    padding: 0;
  }
  .about-row-block div {
    padding: 6.25rem 0 0;
  }
  .about-row-video {
    position: relative;
    top: 40px;
    left: -4px;
    width: 295px;
    height: auto;
    background-size: cover;
    -webkit-transform: rotate(0);
            transform: rotate(0);
    padding: 0 !important;
  }
  .about-row-video div {
    padding: 0;
  }
  .about-row-video video {
    top: 33px;
    width: 252px;
    height: auto;
  }
}

/* how-to-use---------------------*/
.how-to-use {
  position: relative;
  box-sizing: border-box;
  font-size: 14px;
  line-height: 180%;
  letter-spacing: 0.12em;
  padding: 5rem 2.5rem 1.5rem;
}

.how-to-use .section-head {
  margin: 0 0 1.5rem;
}

.how-to-use-row {
  margin: 3rem 0 0;
  text-align: center;
}

.how-to-use-box {
  margin: 0 0 3.5rem;
}

.how-to-use-box-head {
  font-weight: bold;
  font-size: 18px;
  line-height: 150%;
  margin: 1rem 0 0.8rem;
}

@media screen and (min-width: 600px) and (max-width: 768px) {
  .how-to-use {
    text-align: center;
    padding: 6.25rem 6.5rem 1.5rem;
  }
}

@media screen and (min-width: 769px) {
  .how-to-use {
    font-size: 18px;
    text-align: center;
    padding: 6.25rem 0 6.25rem;
  }
  .how-to-use-row {
    display: -webkit-box;
    display: flex;
    width: 1080px;
    -webkit-box-pack: justify;
            justify-content: space-between;
    margin: 2.5rem auto 0;
  }
  .how-to-use-box {
    width: 32%;
    margin: 0;
  }
  .how-to-use-box div {
    display: -webkit-box;
    display: flex;
    height: 200px;
    -webkit-box-align: center;
            align-items: center;
    -webkit-box-pack: center;
            justify-content: center;
  }
  .how-to-use-box-head {
    font-weight: bold;
    font-size: 24px;
  }
}

/* voice---------------------*/
.voice {
  background: #222222;
  background-image: url(../img/voice-bg-sp.png);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: contain;
  box-sizing: border-box;
  color: #fff;
  padding: 5rem 2.5rem;
}

.voive-row {
  margin: 3rem auto 0;
}

.voice-box {
  width: 295px;
  background: #FFFFFF;
  border-radius: 40px;
  box-sizing: border-box;
  color: #222;
  padding: 1rem 20px;
  margin: 0 auto;
}

.voice-box:first-of-type {
  margin: 0 auto 2rem;
}

.voice-box:last-of-type {
  padding: 1rem 20px 1.5rem;
}

.voice-profile {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  color: #222;
  margin: 0 0 1rem;
}

.voice-profile-head {
  margin: 0 0 0 1rem;
}

.voice-profile-img {
  width: 62px;
}

.voice-profile-name {
  font-weight: bold;
  font-size: 18px;
  line-height: 150%;
}

.voice-profile-job {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  justify-content: space-around;
}

.voice-profile-job img {
  margin: 0 0.5rem 0 0;
}

.voice-profile-job span {
  color: #777777;
  font-size: 12px;
  font-weight: bold;
  line-height: 150%;
}

.voice-profile-text {
  font-size: 14px;
  line-height: 180%;
  letter-spacing: 0.12em;
}

@media screen and (max-width: 350px) {
  .voice {
    padding: 5rem 1.5rem;
  }
  .voice-box {
    width: 270px;
  }
}

@media screen and (min-width: 600px) and (max-width: 768px) {
  .voice {
    padding: 5rem 6.5rem 5rem;
  }
}

@media screen and (min-width: 769px) {
  .voice {
    background-image: url(../img/voice-bg-pc.png);
    background-size: cover;
    text-align: center;
    padding: 7rem 0 5rem;
  }
  .voive-row {
    display: -webkit-box;
    display: flex;
    width: 880px;
    -webkit-box-align: center;
            align-items: center;
    margin: 2rem auto 0;
    -webkit-box-pack: justify;
            justify-content: space-between;
  }
  .voice-box {
    width: 420px;
    height: 345px;
    margin: 0;
    padding: 1.5rem 20px;
  }
  .voice-box:first-of-type {
    margin: 0;
  }
  .voice-box:last-of-type {
    padding: 1.5rem 20px;
  }
  .voice-profile-text {
    font-size: 18px;
    text-align: left;
  }
  .voice-profile-name {
    font-size: 24px;
    text-align: left;
  }
  .voice-profile-job {
    width: 150px;
    -webkit-box-pack: initial;
            justify-content: initial;
  }
  .voice-profile-job span {
    font-size: 14px;
  }
}

/* footer---------------------*/
.footer {
  position: relative;
  box-sizing: border-box;
  background-image: url(../img/footer-bg-sp.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center bottom;
  padding: 5rem 0 0;
}

.footer-contents-block {
  box-sizing: border-box;
  padding: 0 2.5rem 5rem;
}

.footer-text {
  font-weight: bold;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: 0.12em;
}

.footer-banner-block {
  margin: 2.5rem 0 0;
}

.footer-banner-row {
  display: -webkit-box;
  display: flex;
  width: 100%;
  height: 44px;
  -webkit-box-pack: justify;
          justify-content: space-between;
  margin: 1.5rem 0 0;
}

.footer-banner-row .apple {
  width: 123px;
  height: auto;
}

.footer-banner-row .google {
  width: 150px;
  height: auto;
}

.footer-banner-row img {
  width: 100%;
}

.copyright {
  width: 100%;
  height: 40px;
  background: #222;
  text-align: center;
}

.copyright a {
  color: #FFFFFF;
  font-size: 14px;
  line-height: 40px;
  letter-spacing: 0.12em;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
}

@media screen and (min-width: 500px) and (max-width: 768px) {
  .footer-contents-block {
    box-sizing: border-box;
    padding: 0 7.5rem 5rem;
  }
}

@media screen and (min-width: 600px) and (max-width: 768px) {
  .footer-copy .display-sp {
    display: none;
  }
  .footer-text-block {
    text-align: center;
    padding: 0 6.5rem 5rem;
  }
  .footer-banner-row {
    -webkit-box-pack: center;
            justify-content: center;
  }
  .footer-banner-row .google {
    margin: 0 0 0 1rem;
  }
}

@media screen and (min-width: 769px) {
  .footer {
    position: relative;
    box-sizing: border-box;
    background-image: url(../img/footer-bg-pc.png);
    background-size: cover;
    padding: 6.25rem 0 0;
  }
  .footer-contents-block {
    display: -webkit-box;
    display: flex;
    width: 880px;
    margin: 0 auto;
    -webkit-box-pack: justify;
            justify-content: space-between;
    padding: 0 0 6rem;
  }
  .footer-text {
    font-size: 24px;
    letter-spacing: 0;
  }
  .footer-banner-block {
    margin: 1.5rem 0 0;
  }
  .footer-banner-block .google {
    width: 150px;
    height: auto;
    margin: 0 0 0 1rem;
  }
  .footer-banner-row {
    -webkit-box-pack: end;
            justify-content: end;
  }
  .copyright {
    height: 48px;
    line-height: 48px;
    text-align: center;
  }
  .copyright a {
    font-size: 18px;
  }
}

/* fixed banner---------------------*/
.fixed-banner {
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 80px;
  background: #fff;
  box-sizing: border-box;
  padding: 0.5rem 0;
  text-align: center;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
  opacity: 1;
  z-index: 2;
}

.fixed-banner.deactive {
  opacity: 0;
  z-index: -1;
}

.fixed-banner-text {
  color: #000000;
  font-weight: bold;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0.12em;
  margin: 0 0 0.25rem;
}

.fixed-banner-row {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
}

.fixed-banner-row img {
  width: auto;
  height: 100%;
}

.fixed-banner-row .apple, .fixed-banner-row .google {
  height: 36px;
}

.fixed-banner-row .google {
  margin: 0 0 0 1rem;
}

/* utility---------------------*/
