@charset "UTF-8";

/*====================
  Common
====================*/

:root {
  --font-family-base: "Zen Maru Gothic", "Yu Gothic", "Meiryo", "MS PGothic",
    "Roboto", "Droid Sans", sans-serif;
  --font-size-base: 1.6rem;
  --font-wight-base: 400;
  --color-text: #000;
  --background-main-color: #dff2fc;
}

html {
  font-size: 10px;

  @media screen and (max-width: 600px) {
    font-size: 50%;
  }
}

body {
  background-color: var(--background-main-color);
  font-family: var(--font-family-base);
  font-weight: var(--font-wight-base);
  font-size: var(--font-size-base);
  color: var(--color-text);
  letter-spacing: 1px;
  overflow: hidden;

  @media screen and (max-width: 600px) {
    font-size: 2rem;
    overflow-x: hidden;
  }
}

a {
  text-decoration: none;

  &:hover {
    opacity: 0.8;
    transition: all 0.3s;

    @media (max-width: 800px) {
      opacity: 1;
      text-decoration: none;
    }
  }
}

@media screen and (max-width: 800px) {
  .pc-only {
    display: none !important;
  }
}
@media screen and (min-width: 801px) {
  .tb-only {
    display: none !important;
  }
}
@media screen and (min-width: 601px) {
  .sp-only {
    display: none !important;
  }
}

/** スプラッシュスクリーン **/
.splash {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  background-color: var(--background-main-color);
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;

  img {
    width: 100%;
    max-width: 1300px;
  }

  .skip {
    position: absolute;
    right: 40px;
    bottom: 40px;
    cursor: pointer;
    z-index: 999;
    font-weight: 700;
  }
}

/** アニメーション設定 **/

.mv-fade-in {
  opacity: 0;
  transition: opacity 1s ease;

  &.show {
    opacity: 1;
  }
}
.mv-fade-up,
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;

  &.show {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes mokomokoFloat {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  35% {
    transform: translateY(-8px) scale(1.02, 0.98);
  }

  70% {
    transform: translateY(8px) scale(0.98, 1.02);
  }
}

.cloud-fuwamoko {
  animation: mokomokoFloat 3.3s linear infinite;
}

@keyframes fuwafuwaFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

.fuwafuwa {
  animation: fuwafuwaFloat 3s linear infinite;
}

@keyframes fuwafuwaMiniFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(5px);
  }
}

.fuwafuwa-mini {
  animation: fuwafuwaMiniFloat 3s linear infinite;
}

@keyframes fuwafuwaReverseFloat {
  0%,
  100% {
    transform: translateY(-20px);
  }

  50% {
    transform: translateY(0);
  }
}

.fuwafuwa-reverse {
  animation: fuwafuwaReverseFloat 3s linear infinite;
}

@keyframes fuwafuwaSideFloat {
  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(10px);
  }
}

.fuwafuwa-side {
  animation: fuwafuwaSideFloat 2.5s linear infinite;
}
@keyframes fuwafuwaSideReverseFloat {
  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(-10px);
  }
}

.fuwafuwa-side-reverse {
  animation: fuwafuwaSideReverseFloat 2.5s linear infinite;
}

@keyframes fuwafuwaLargeFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(15px);
  }
}

.fuwafuwa-large {
  animation: fuwafuwaLargeFloat 2.5s linear infinite;
}

@keyframes yurayuraFloat {
  0%,
  100% {
    rotate: 0;
  }

  30% {
    rotate: 5deg;
  }

  75% {
    rotate: -5deg;
  }
}

.yurayura {
  animation: yurayuraFloat 2.5s linear infinite;
}

@keyframes fuwafuwaScaleUp {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.2);
  }
}

.fuwafuwa-scaleup {
  animation: fuwafuwaScaleUp 3s linear infinite;
}

/* 遅延クラス */
.delay--300 {
  transition-delay: 0.3s;
}

.delay--600 {
  transition-delay: 0.6s;
}

.delay--900 {
  transition-delay: 0.9s;
}

.animation-delay--200 {
  animation-delay: 0.25s;
}

.animation-delay--400 {
  animation-delay: 0.45s;
}

/** SEO対策用 **/
.cc {
  position: absolute;
  font-size: clamp(1.5rem, calc(1.458rem + 1.389vw), 2.5rem);
  line-height: 1.4332;
  clip: rect(1px, 1px, 1px, 1px);
}

/** イラスト **/
.content_illusts {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  max-width: 1500px;
  margin-inline: auto;

  .illust,
  .illust-mokumoku {
    position: absolute;
  }

  .illust1 {
    top: 19px;
    left: 71px;
  }

  .illust2 {
    top: 19px;
    right: 71px;
  }

  .illust3 {
    top: 50%;
    left: 26px;
  }

  .illust4 {
    top: 50%;
    right: 26px;
  }

  .illust5 {
    bottom: 0;
    left: 96px;
  }

  .illust6 {
    bottom: 0;
    right: 96px;
  }

  .illust7 {
    top: 150px;
    right: 49px;
  }

  .illust8 {
    top: 50%;
    left: 31px;
    transform: translateY(-90%);
  }

  .illust9 {
    bottom: 20px;
    right: 37px;
  }

  .illust10 {
    top: 50%;
    left: 50px;
  }

  .illust11 {
    bottom: -140px;
    right: 35px;
  }

  .illust12 {
    top: -100px;
    left: 59px;
  }

  .illust13 {
    top: 65%;
    left: 25px;
  }

  .illust14 {
    bottom: 0;
    right: 25px;
  }

  .illust15 {
    top: 94px;
    left: 50px;
  }

  .illust16 {
    top: 115px;
    right: 30px;
  }

  .illust17 {
    top: 50%;
    left: 0;
  }

  .illust18 {
    right: 10px;
    bottom: -10%;
  }

  .illust-mokumoku {
    max-width: 100px;

    @media screen and (max-width: 600px) {
      max-width: 60px;
    }
  }

  .illust-mokumoku--small {
    max-width: 80px;

    @media screen and (max-width: 600px) {
      max-width: 40px;
    }
  }

  .illust-mokumoku--large {
    max-width: 120px;

    @media screen and (max-width: 600px) {
      max-width: 80px;
    }
  }

  .illust-mokumoku1 {
    top: 30%;
    left: 20px;
  }

  .illust-mokumoku2 {
    top: 30%;
    right: 20px;
  }

  .illust-mokumoku3 {
    top: 75%;
    left: 3%;
  }

  .illust-mokumoku4 {
    top: 75%;
    right: 3%;
  }

  .illust-mokumoku5 {
    top: 10%;
    left: 0;
  }

  .illust-mokumoku6 {
    top: 53%;
    right: 5%;
  }

  .illust-mokumoku7 {
    top: 89%;
    left: 5%;
  }

  .illust-mokumoku8 {
    top: 25%;
    right: 20px;
  }

  .illust-mokumoku9 {
    top: 17%;
    left: 20px;
  }

  .illust-mokumoku10 {
    top: 35%;
    right: 3%;
  }

  .illust-mokumoku11 {
    bottom: 8%;
    left: 20px;
  }

  .illust-mokumoku12 {
    top: 30%;
    left: 6%;
  }

  .illust-mokumoku13 {
    right: 20px;
    top: 0;
  }

  .illust-mokumoku14 {
    top: 33%;
    left: 20px;
  }

  .illust-mokumoku15 {
    right: 20px;
    top: 50%;
  }

  @media screen and (max-width: 1000px) {
    .illust1 {
      top: 0;
      left: 0;
      max-width: 200px;
      width: 100%;
    }

    .illust2 {
      top: 0;
      right: 0;
      max-width: 200px;
      width: 100%;
    }

    .illust3 {
      left: 0;
      max-width: 130px;
      width: 100%;
    }

    .illust4 {
      right: 0;
      max-width: 130px;
      width: 100%;
    }

    .illust5 {
      left: 20px;
      max-width: 140px;
      width: 100%;
    }

    .illust6 {
      right: 20px;
      max-width: 140px;
      width: 100%;
    }

    .illust7 {
      display: none;
    }

    .illust8 {
      top: auto;
      transform: none;
      bottom: 10px;
      max-width: 120px;
      left: 30px;
    }

    .illust9 {
      max-width: 190px;
      bottom: -10px;
      right: 25px;
    }

    .illust10 {
      left: 30px;
      max-width: 95px;
      top: 56%;
    }

    .illust11 {
      max-width: 130px;
      right: 20px;
      bottom: -120px;
    }

    .illust12 {
      max-width: 110px;
      left: 20px;
      top: -120px;
    }

    .illust13 {
      max-width: 160px;
      top: 70%;
      left: 20px;
    }

    .illust14 {
      max-width: 120px;
      bottom: 30px;
    }

    .illust15 {
      max-width: 200px;
    }

    .illust16 {
      max-width: 210px;
      right: 60px;
    }

    .illust17 {
      max-width: 130px;
      width: 100%;
    }

    .illust18 {
      max-width: 120px;
      width: 100%;
      right: 20px;
      bottom: -30px;
    }

    .illust-mokumoku5 {
      top: -30px;
      left: 20px;
    }

    .illust-mokumoku6 {
      right: 25px;
    }

    .illust-mokumoku5,
    .illust-mokumoku7,
    .illust-mokumoku14,
    .illust-mokumoku15 {
      display: none;
    }

    .illust-mokumoku8 {
      right: 20px;
    }

    .illust-mokumoku9 {
      left: 30px;
    }

    .illust-mokumoku10 {
      top: 54%;
    }
    .illust-mokumoku11 {
      left: 30px;
    }
    .illust-mokumoku12 {
      left: 30px;
    }
    .illust-mokumoku13 {
      right: 20px;
      top: -40px;
    }
  }

  @media screen and (max-width: 890px) {
    .illust5 {
      bottom: -50px;
    }

    .illust6 {
      bottom: -50px;
    }

    .illust11 {
      top: 76%;
      bottom: auto;
    }

    .illust12 {
      top: -170px;
    }

    .illust15 {
      top: 50px;
    }

    .illust16 {
      top: 60px;
    }

    .illust-mokumoku12 {
      display: none;
    }
  }

  @media screen and (max-width: 600px) {
    .illust1 {
      max-width: max(25vw, 120px);
    }

    .illust2 {
      max-width: max(25vw, 120px);
    }

    .illust3,
    .illust4 {
      display: none;
    }

    .illust5 {
      max-width: max(23vw, 90px);
    }

    .illust6 {
      max-width: max(23vw, 90px);
    }

    .illust8 {
      max-width: max(25vw, 90px);
    }

    .illust9 {
      max-width: max(35vw, 140px);
    }

    .illust10 {
      max-width: max(18vw, 60px);
      top: 49%;
      left: 10px;
    }

    .illust11 {
      max-width: max(23vw, 90px);
      top: 74%;
      right: 10px;
    }

    .illust12 {
      max-width: max(18vw, 80px);
      top: -15%;
    }

    .illust13 {
      max-width: max(25vw, 120px);
      top: auto;
      bottom: 0;
    }

    .illust14 {
      max-width: max(23vw, 90px);
      bottom: 0;
    }

    .illust15 {
      max-width: max(35vw, 150px);
      left: 20px;
    }

    .illust16 {
      max-width: max(33vw, 150px);
      right: 20px;
    }

    .illust17 {
      top: auto;
      bottom: 0px;
    }

    .illust-mokumoku8 {
      display: none;
    }

    .illust-mokumoku9 {
      top: 10%;
    }
    .illust-mokumoku11 {
      bottom: 18%;
    }
  }
}

/** Instagramリンクボタン **/
.instagram-link {
  margin-top: 20px;
  max-width: 130px;
  a {
    background: #ff8d93;
    color: #fff;
    font-weight: 700;
    border-radius: 8px;
    padding: 10px;
    position: relative;
    display: flex;
    column-gap: 10px;
    align-items: center;
    justify-content: center;
    font-size: 13px;

    &::before {
      content: "";
      background: url(../img/icon_instagram.svg) 0 0 no-repeat;
      background-size: 100%;
      width: 17px;
      height: 17px;
      display: block;
    }

    &:hover {
      text-decoration: none;
    }

    span {
      line-height: 1;
      padding-bottom: 2px;
      letter-spacing: 0.1em;
    }
  }
}

/*====================
  コンテンツ
====================*/
.main section {
  position: relative;
}

.mv {
  padding-top: 100px;
  margin-bottom: 65px;

  @media screen and (max-width: 600px) {
    padding-top: 60px;
    padding-inline: 20px;
  }
}

.mv_title {
  text-align: center;
  margin-bottom: 15px;
  max-width: 940px;
  width: 100%;
  margin-inline: auto;

  @media screen and (max-width: 890px) {
    max-width: 750px;
    width: 100%;
    margin-inline: auto;
  }
}

.mv_character {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  column-gap: 20px;
  margin-inline: auto;
  max-width: 600px;

  .img-iyashimane {
    width: 50%;
  }
  .img-nodoguro {
    width: 40%;
  }

  .img-iyashimane {
    text-align: right;
    img {
      max-width: 400px;
    }
  }

  .img-nodoguro {
    text-align: left;
    img {
      max-width: 140px;
      padding-bottom: 70px;
    }
  }

  @media screen and (max-width: 890px) {
    .img-iyashimane {
      img {
        max-width: 240px;
      }
    }
    .img-nodoguro {
      img {
        max-width: 100px;
        padding-bottom: 50px;
      }
    }
  }
  @media screen and (max-width: 600px) {
    .mv_character {
      column-gap: 0;
    }
    .img-iyashimane {
      img {
        max-width: 180px;
        width: 100%;
      }
    }
    .img-nodoguro {
      width: 40%;
      img {
        max-width: 80px;
        width: 100%;
        padding-bottom: 30px;
      }
    }
  }
}

.content_title {
  text-align: center;
  position: relative;
  z-index: 1;
  margin-bottom: -40px;
}

.about {
  padding-bottom: 88px;

  @media screen and (max-width: 600px) {
    padding-bottom: 30%;

    .content_title {
      img {
        max-width: 260px;
        width: 100%;
      }
    }
  }

  .content_title {
    max-width: 350px;
    width: 100%;
    margin-inline: auto;
    margin-bottom: -50px;
  }
}

.about_inner {
  max-width: 894px;
  width: 100%;
  margin-inline: auto;
}

.contents_frame,
.message_contents_frame {
  border: 80px solid transparent;
  border-image-source: url(../img/bg-contents-frame.png);
  border-image-slice: 103 fill;
  border-image-repeat: round;
  padding: 0;
  max-width: 895px;
  width: 100%;
  margin-inline: auto;
  box-sizing: border-box;

  @media screen and (max-width: 600px) {
    border-image-slice: 146 fill;
  }
}

.message_contents_frame {
    border-image-source: url(../img/bg-message-contents.png);

  @media screen and (max-width: 600px) {
    border-image-source: url(../img/bg-contents-frame.png);
  }
}

.about_contents {
  background: #fff;
  padding-top: 30px;
  padding-bottom: 20px;
  display: flex;
  column-gap: 48px;
  position: relative;

  @media screen and (max-width: 890px) {
    flex-direction: column;
    align-items: center;

    &::before,
    &::after {
      content: "";
      background-color: #fff;
      width: 55px;
      height: 55px;
      border-radius: 100%;
      position: absolute;
      bottom: -10px;
    }

    &::before {
      left: -30px;
    }

    &::after {
      right: -30px;
    }
  }

  @media screen and (max-width: 600px) {
    padding-top: 20px;
    margin-inline: -25px;
  }

  .about_character {
    width: 50%;

    @media screen and (max-width: 890px) {
      width: 100%;
      margin-bottom: 30px;
    }

    h3 {
      text-align: center;
      margin-bottom: 16px;
      font-size: 24px;
      font-weight: 700;
    }

    figcaption {
      font-size: 13px;
      text-align: center;
      font-weight: 700;
    }

    .character-iyashimane {
      display: block;
      text-align: center;
      margin-bottom: 46px;

      @media screen and (max-width: 600px) {
        margin-bottom: 25px;
      }

      img {
        width: 100%;
        max-width: 180px;
      }
    }

    .character-fairy {
      display: flex;
      column-gap: 8px;
      align-items: flex-end;

      @media screen and (max-width: 890px) {
        justify-content: center;
      }

      @media screen and (max-width: 450px) {
        flex-direction: column;
        align-items: center;
        text-align: center;
        row-gap: 15px;
      }

      figcaption {
        min-height: 40px;
        margin-top: 5px;
      }
    }
  }

  .about_desc {
    width: 60%;

    @media screen and (max-width: 890px) {
      width: 100%;
    }

    .about_author {
      margin-top: 40px;

      @media screen and (max-width: 600px) {
        margin-top: 30px;
      }

      .author_name {
        margin-bottom: 4px;
        font-weight: bold;
      }

      > p {
        font-size: 14px;
      }
    }
  }
}

.shimane-point {
  margin-bottom: 175px;

  @media screen and (max-width: 890px) {
    padding-inline: 30px;
  }

  @media screen and (max-width: 600px) {
    margin-bottom: 20%;
  }
}

.title-frame {
  margin-inline: auto;
  border: 50px solid transparent;
  border-image-source: url("../img/bg-title-frame.png");
  border-image-slice: 100 fill;
  border-image-repeat: round;
  border-image-width: 1;
  width: 100%;
  max-width: 900px;
  box-sizing: border-box;
  text-align: center;
  @media screen and (max-width: 600px) {
    border-image-slice: 130 fill;
  }
}

.shimane-point_contents {
  max-width: 927px;
  width: 100%;
  margin-inline: auto;

  .content_title {
    margin-bottom: 36px;

    @media screen and (max-width: 600px) {
      width: calc(100% + 50px);
      margin-left: -30px;
    }
    > img {
      max-width: 700px;
      width: 100%;
    }
  }

  .point-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 47px 36px;

    @media screen and (max-width: 800px) {
      grid-template-columns: none;
      max-width: 400px;
      margin-inline: auto;
      row-gap: 30px;
    }
  }

  .point-item {
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px;
    background-image: url(../img/bg-iyashimane-content.png);
    background-size: 90%;
    background-repeat: no-repeat;
    background-position: center;
    > h3 {
      font-weight: bold;
      font-size: 3rem;
      position: relative;
      letter-spacing: 0.1em;

      > img {
        max-width: 120px;
      }
    }

    @media screen and (max-width: 890px) {
      img {
        max-width: 280px;
        width: 100%;
      }
    }
  }
}

.shimane-point-more {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  column-gap: 20px;
  margin-top: 50px;

  @media screen and (max-width: 600px) {
    column-gap: 10px;
  }

  .more-comment {
    position: relative;
    font-size: 24px;
    font-weight: bold;

    @media screen and (max-width: 600px) {
      font-size: 18px;
    }

    &::before,
    &::after {
      content: "";
      background: #000;
      height: 40px;
      width: 2px;
      position: absolute;
    }
    &::before {
      right: 10px;
      top: -33px;
      rotate: -60deg;

      @media screen and (max-width: 600px) {
        top: -20px;
      }
    }
    &::after {
      right: 10px;
      bottom: -35px;
      rotate: 65deg;
    }
  }

  .more-image {
    margin: 0;
    max-width: 180px;
    @media screen and (max-width: 600px) {
      max-width: 130px;
    }
  }
}

.shimane-manga {
  padding-bottom: 222px;

  @media screen and (max-width: 600px) {
    padding-inline: 30px;
    padding-bottom: 35%;
  }
}

.shimane-manga_contents {
  max-width: 964px;
  width: 100%;
  margin-inline: auto;

  .content_title {
    margin-bottom: 82px;

    @media screen and (max-width: 600px) {
      margin-bottom: 36px;
      width: calc(100% + 50px);
      margin-left: -30px;
    }

    > img {
      max-width: 700px;
      width: 100%;
    }
  }

  .manga-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 32px;

    @media screen and (max-width: 600px) {
      grid-template-columns: auto;
      row-gap: 35px;
    }

    .manga-item {
      text-align: center;

      > a {
        color: #000;

        &:hover {
          text-decoration: none;
        }
      }

      h3 {
        font-size: 20px;
        margin-bottom: 14px;
        font-weight: bold;
      }
    }
  }
}

.comingsoon {
  text-align: center;
}

.bnr-contents {
  position: relative;
  &::before {
    content: "";
    background: url(../img/img_bnr_iyashimane.png) 0 0 no-repeat;
    background-size: 100%;
    width: 170px;
    height: 190px;
    position: absolute;
    right: -140px;
    bottom: -60px;
    z-index: 1;

    @media screen and (max-width: 600px) {
      width: 120px;
      height: 135px;
      right: -70px;
      bottom: -13%;
    }
  }
}

.bnr-title {
  max-width: 330px;
  margin-inline: auto;
  margin-bottom: 30px;
}

.bnr-label {
  display: block;
  color: #000;
  margin-top: 10px;
  font-size: 14px;
  text-align: center;
}

.bnr-list {
  max-width: 1008px;
  width: 100%;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 40px;
  position: relative;
  z-index: 2;

  @media screen and (max-width: 600px) {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 30px;
    max-width: 250px;
  }

  a {
    &:hover {
      text-decoration: none;
    }
  }
}

.iyashimane-message {
  padding-bottom: 100px;
}

.iyashimane-message_contents {
  display: flex;
  align-items: center;
  column-gap: 20px;
  margin: -20px 0;

  @media screen and (max-width: 600px) {
    flex-direction: column;
    row-gap: 20px;
    margin-inline: -30px;
  }
}

.message-image {
  flex: 1;

  @media screen and (max-width: 600px) {
    max-width: 220px;
    width: 100%;
  }
}

.messagae-desc {
  width: 70%;

  @media screen and (max-width: 600px) {
    width: 100%;
  }
}

.message-title {
  font-size: 26px;
  margin-bottom: 10px;
  font-weight: bold;

  @media screen and (max-width: 600px) {
    font-size: 23px;
    text-align: center;
  }

  span {
    display: block;
    font-size: 18px;
    position: relative;
    display: flex;
    align-items: center;
    column-gap: 10px;
    font-weight: bold;

    @media screen and (max-width: 600px) {
      font-size: 16px;
      justify-content: center;
    }

    &::before,
    &::after {
      content: "";
      background: #000;
      height: 20px;
      width: 2px;
    }

    &::before {
      rotate: -20deg;
    }

    &::after {
      rotate: 15deg;
    }
  }
}

.footer {
  position: relative;
  padding-top: 268px;
  padding-bottom: 60px;

  @media screen and (max-width: 890px) {
    padding-top: 200px;
  }

  @media screen and (max-width: 600px) {
    padding-top: 35%;
    padding-bottom: 20px;
  }

  .page-top {
    width: fit-content;
    margin-inline: auto;
    cursor: pointer;

    @media screen and (max-width: 600px) {
      padding-bottom: 80px;
      max-width: 120px;
      width: 100%;
    }

    &:hover {
      opacity: 0.8;
    }
  }

  .copyright {
    margin-top: 74px;
    text-align: center;

    @media screen and (max-width: 600px) {
      margin-top: 40px;
    }

    small {
      font-size: 14px;
    }
  }
}

.bnr-event {
  position: fixed;
  right: 30px;
  bottom: 40px;
  z-index: 99;
  max-width: 250px;
  display: none;

  @media screen and (max-width: 800px) {
    right: 10px;
    bottom: 40px;
    max-width: 180px;
  }
}
