@charset "UTF-8";
body {
  font-family: Noto Sans JP,"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0;
  color: #1a1a1a;
  background: url(../../img/bg.jpg);
}

section,
div,
article {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

a {
  text-decoration: none;
  color: #1a1a1a;
}

a:hover {
  text-decoration: underline;
}

/*.pc or .sp*/
.pc {
  display: block;
}

.sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}

/*////////////////
.header
////////////////*/
.header {
  width: 100%;
}

.header_inner {
  width: 100%;
  max-width: 1366px;
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
}

.header_tt {
  display: block;
  text-align: left;
  margin: -4% 0 0 0;
}

.header_btn {
  z-index: 3;
  position: absolute;
  top: 75px;
  right: 0px;
}

.header_wrapper {
  position: relative;
}

@media screen and (max-width: 1000px) {
  .header_inner {
    width: 90%;
    max-width: 999px;
    margin: 0 auto;
    top: 50%;
    left: 50%;
  }
}

@media screen and (max-width: 768px) {
  .header_inner {
    width: 100%;
    top: 50%;
    left: 50%;
  }
  .header_tt {
    text-align: center;
  }
  .header_tt img {
    width: 80%;
    max-width: 450px;
    height: auto;
  }
  .header_btn {
    display: none;
  }
}

/*////////////////////////////////
slider
////////////////////////////////*/
.slider {
  position: relative;
  z-index: -1;
  /*↑z-indexの値をh1のz-indexの値よりも小さくして背景に回す*/
  height: 60vh;
  min-height: 660px;
}

@media screen and (max-width: 768px) {
  .slider {
    height: 68vh;
    min-height: auto;
  }
}

@media screen and (max-width: 375px) {
  .slider {
    height: 83vh;
    min-height: auto;
  }
}

/*　背景画像設定　*/
.slider-item01 {
  background: url(../../img/header_bg_pc.jpg);
  background-position: top center;
}

@media screen and (max-width: 768px) {
  .slider-item01 {
    background: url(../../img/header_bg_sp.jpg);
    background-position: top center;
  }
}

.slider-item02 {
  background: url(../../img/header_bg_pc02.jpg);
  background-position: top center;
}

@media screen and (max-width: 768px) {
  .slider-item02 {
    background: url(../../img/header_bg_sp02.jpg);
    background-position: top center;
  }
}

.slider-item03 {
  background: url(../../img/header_bg_pc03.jpg);
  background-position: top center;
}

@media screen and (max-width: 768px) {
  .slider-item03 {
    background: url(../../img/header_bg_sp03.jpg);
    background-position: top center;
  }
}

.slider-item {
  width: 100%;
  /*各スライダー全体の横幅を画面の高さいっぱい（100%）にする*/
  height: 60vh;
  min-height: 660px;
  background-repeat: no-repeat;
  /*背景画像をリピートしない*/
  background-size: auto;
  /*背景画像が.slider-item全体を覆い表示*/
}

@media screen and (max-width: 768px) {
  .slider-item {
    height: 68vh;
    min-height: auto;
  }
}

@media screen and (max-width: 375px) {
  .slider-item {
    height: 83vh;
    min-height: auto;
  }
}

@media screen and (max-width: 1000px) {
  .slider-item {
    background-size: cover;
    /*背景画像が.slider-item全体を覆い表示*/
  }
}

/*////////////////
.about
////////////////*/
.about {
  padding: 60px 0 30px 0;
  background: url(../../img/border.png) top repeat-x;
}

.about_inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  font-size: 114%;
  line-height: 1.7;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.about_inner a {
  text-decoration: underline;
}

.about_tt {
  text-align: center;
  margin: 0 15px 0 0;
}

.about_tt img {
  width: 80px;
  height: auto;
  display: block;
  margin: 0 auto;
}

@media screen and (max-width: 1000px) {
  .about {
    position: relative;
    z-index: 4;
    padding: 7.5vw 0 5vw 0;
    background: url(../../img/border_sp.png) top repeat-x;
  }
  .about_inner {
    width: 95%;
    font-size: 80%;
    line-height: 1.3;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .about_tt {
    margin: 0 5px 0 0;
  }
  .about_tt img {
    width: 60px;
    height: auto;
    display: block;
    margin: 0 auto;
  }
  .about .message_btn_sp {
    margin: 5vw auto 0;
    text-align: center;
  }
  .about .message_btn_sp img {
    width: 80%;
    height: auto;
  }
}

/*////////////////
.info
////////////////*/
.info {
  padding: 0px 0 90px 0;
  text-align: center;
  background: url(../../img/border.png) bottom repeat-x;
}

.info_tt {
  padding: 20px 0;
  margin: 0 0 60px 0;
  text-align: center;
  background: #ad0527;
}

.info_tt img {
  display: block;
  margin: 0 auto;
}

.info_tt img.sp {
  display: none;
}

.info_inner {
  max-width: 1000px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.info_group1, .info_group2 {
  width: 49%;
}

.info_group1 li, .info_group2 li {
  margin: 30px 0 0 0;
  border-bottom: 1px dashed #cc0000;
}

.info_group1 li:nth-child(1), .info_group2 li:nth-child(1) {
  margin: 0;
  height: 205px;
}

.info_group1 li:nth-child(2), .info_group2 li:nth-child(2) {
  height: 130px;
}

.info_group1 li:nth-child(3), .info_group2 li:nth-child(3) {
  margin: 20px 0 0 0;
  border-bottom: none;
}

.info_group2 li:nth-child(2) {
  margin: 20px 0 10px 0;
  border-bottom: none;
}

.info_group2 li:nth-child(3) {
  margin: 0;
}

.info_bnr {
  margin: 40px auto 0;
}

.info_bnr img.pc {
  width: 535px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.info_bnr img.sp {
  display: none;
}

@media screen and (max-width: 1000px) {
  .info {
    padding: 0 0 10vw 0;
    text-align: center;
    background: url(../../img/border_sp.png) bottom repeat-x;
  }
  .info_tt {
    padding: 2vw 0;
    margin: 0 0 5vw 0;
    text-align: center;
    background: #ad0527;
  }
  .info_tt img.pc {
    display: none;
  }
  .info_tt img.sp {
    width: 85%;
    height: auto;
    display: block;
  }
  .info_inner {
    margin: 0 auto;
    display: block;
  }
  .info_group1, .info_group2 {
    width: 90%;
    margin: 0 auto;
  }
  .info_group1 li, .info_group2 li {
    margin: 0 0 3vw 0;
    padding: 0 0 3vw 0;
    border-bottom: 1px dashed #cc0000;
  }
  .info_group1 li img, .info_group2 li img {
    width: 100%;
    height: auto;
  }
  .info_group1 li:nth-child(1), .info_group2 li:nth-child(1) {
    margin: 3vw 0 3vw 0;
    height: auto;
  }
  .info_group1 li:nth-child(2), .info_group2 li:nth-child(2) {
    padding: 0 0 2vw 0;
    height: auto;
  }
  .info_group1 li:nth-child(2) img, .info_group2 li:nth-child(2) img {
    width: 93%;
    height: auto;
  }
  .info_group1 li:nth-child(3), .info_group2 li:nth-child(3) {
    margin: 0 0 0 0;
    border-bottom: none;
  }
  .info_group1 li:nth-child(3) img, .info_group2 li:nth-child(3) img {
    width: 93%;
    height: auto;
  }
  .info_group2 li {
    padding: 0 0 3vw 0;
  }
  .info_group2 li:nth-child(2) {
    margin: 0 0 0 0;
    padding: 0 0 3vw 0;
    border-bottom: none;
  }
  .info_group2 li:nth-child(3) {
    margin: 0;
  }
  .info_group2 li:nth-child(3) img {
    width: 100%;
    height: auto;
  }
  .info_bnr {
    margin: 3vw auto 0;
  }
  .info_bnr img.pc {
    display: none;
  }
  .info_bnr img.sp {
    display: block;
    width: 90%;
    height: auto;
    margin: 0 auto;
  }
}

/*////////////////
.message
////////////////*/
.message {
  padding: 60px 0 90px 0;
  text-align: center;
  background: url(../../img/border.png) bottom repeat-x;
}

.message_tt {
  margin: 0 0 60px 0;
  text-align: center;
}

.message_tt img {
  display: block;
  width: 506px;
  height: auto;
  margin: 0 auto;
}

.message_inner {
  max-width: 900px;
  margin: 0 auto;
}

.message_group {
  margin: 0 auto 50px;
  text-align: center;
  color: #cc0000;
  line-height: 1.8;
  font-size: 155%;
  font-weight: 500;
  border: 2px dotted #cc0000;
  vertical-align: bottom;
}

.message_group span {
  font-size: 155%;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  vertical-align: bottom;
  line-height: 1.2;
}

.message_ph {
  margin: 0 0 60px 0;
}

.message .btn {
  margin: 0 auto;
  padding: 0 0 0 0;
  text-align: center;
}

.message .btn img.pc {
  display: block;
  margin: 0 auto;
  opacity: 0.5;
}

.message .btn img.sp {
  display: none;
}

.message a:hover {
  opacity: .7;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.message .end {
  color: #ad0527;
  padding: 1vw 0 0 0;
  font-size: 110%;
  line-height: 1.6;
}

.message .end br {
  display: none;
}

@media screen and (max-width: 768px) {
  .message {
    padding: 7vw 0 12vw 0;
    background: url(../../img/border_sp.png) bottom repeat-x;
  }
  .message_tt {
    margin: 0 0 7vw 0;
  }
  .message_tt img {
    display: block;
    width: 90%;
    max-width: 565px;
    height: auto;
    margin: 0 auto;
  }
  .message_inner {
    width: 90%;
    margin: 0 auto;
  }
  .message_group {
    margin: 0 auto 5vw;
    padding: 1.5vw 0;
    line-height: 1.3;
    font-size: 120%;
  }
  .message_group span {
    line-height: 1.1;
  }
  .message_ph {
    margin: 0 0 7vw 0;
  }
  .message_ph img.pc {
    display: none;
  }
  .message_ph img.sp {
    display: block;
    margin: 0 auto;
    width: 90%;
    height: auto;
  }
  .message .btn {
    margin: 0 auto;
    padding: 0 0 0 0;
    text-align: center;
  }
  .message .btn img.pc {
    display: none;
  }
  .message .btn img.sp {
    display: block;
    margin: 0 auto;
    width: 90%;
    height: auto;
    opacity: 0.5;
  }
  .message .end {
    padding: 3vw 0 0 0;
    font-size: 100%;
    line-height: 1.5;
  }
  .message .end br {
    display: inline;
  }
}

/*////////////////
.onair
////////////////*/
.onair {
  padding: 60px 0 90px 0;
  text-align: center;
  background: url(../../img/border.png) bottom repeat-x;
  /*全て共通：hideエリアをはじめは非表示*/
  /*全て共通：モーダルのボタンの色を変更したい場合*/
}

.onair_tt {
  margin: 0 0 60px 0;
  text-align: center;
}

.onair_tt img {
  display: block;
  width: 400px;
  height: auto;
  margin: 0 auto;
}

.onair p {
  text-align: center;
  font-size: 150%;
  font-weight: 700;
  padding: 0 0 3vw 0;
}

.onair_inner {
  max-width: 1000px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.onair_article {
  width: 48%;
  margin: 0 0 30px 0;
}

.onair_article ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin: 0 0 20px 0;
}

.onair_article ul li {
  width: 48%;
  position: relative;
}

.onair_article ul li img {
  width: 100%;
  height: 220px;
  -o-object-fit: cover;
     object-fit: cover;
  border: 1px solid #cc0000;
}

.onair_article ul li span img {
  position: absolute;
  display: block;
  width: 80px;
  height: auto;
  padding: 5px;
  border: none;
  background: #cc0000;
  bottom: 0;
  right: -1px;
}

.onair_article ul li:last-child img {
  border: 1px solid #f28f01;
}

.onair_article ul li:last-child span img {
  background: #f28f01;
}

.onair_chara {
  width: 48%;
  text-align: center;
}

.onair_chara img {
  width: 190px;
  height: auto;
}

.onair_subtt {
  font-size: 110%;
  text-align: left;
  line-height: 1.4;
}

.onair_subtt span {
  color: #cc0000;
  font-style: normal;
  font-size: 90%;
}

.onair a:hover {
  opacity: .7;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.onair .hide-area {
  display: none;
}

.onair .modaal-close:after,
.onair .modaal-close:before {
  background: #ccc;
}

.onair .modaal-close:focus:after,
.onair .modaal-close:focus:before,
.onair .modaal-close:hover:after,
.onair .modaal-close:hover:before {
  background: #666;
}

.onair .gallery-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.onair .gallery-list li {
  margin: 0 10px 0 0;
}

@media screen and (max-width: 1000px) {
  .onair .gallery-list li {
    margin: 0 0 0 0;
  }
}

.onair_sns .logo {
  margin: 0 auto 30px;
}

.onair_sns .logo img {
  width: 200px;
  height: auto;
}

.onair_sns ul {
  max-width: 393px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.onair_sns ul li img {
  width: 67px;
  height: auto;
}

@media screen and (max-width: 1000px) {
  .onair {
    padding: 9vw 0 7vw 0;
    background: url(../../img/border_sp.png) bottom repeat-x;
  }
  .onair_tt {
    margin: 0 0 7vw 0;
    text-align: center;
  }
  .onair_tt img {
    display: block;
    width: 80%;
    max-width: 400px;
    height: auto;
    margin: 0 auto;
  }
  .onair p {
    text-align: center;
    font-size: 150%;
    font-weight: 700;
    padding: 0 0 7vw 0;
  }
  .onair_inner {
    max-width: 1000px;
    margin: 0 auto;
    display: block;
  }
  .onair_article {
    width: 90%;
    margin: 0 auto 7vw;
  }
  .onair_article ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin: 0 0 5vw 0;
  }
  .onair_article ul li {
    width: 48%;
    position: relative;
  }
  .onair_article ul li img {
    width: 100%;
    height: 180px;
    -o-object-fit: cover;
       object-fit: cover;
    border: 1px solid #cc0000;
  }
  .onair_article ul li span img {
    position: absolute;
    display: block;
    width: 80px;
    height: auto;
    padding: 5px;
    border: none;
    background: #cc0000;
    bottom: 0;
    right: -1px;
  }
  .onair_article ul li:last-child img {
    border: 1px solid #f28f01;
  }
  .onair_article ul li:last-child span img {
    background: #f28f01;
  }
  .onair_article:nth-child(4) {
    margin: 0 auto;
  }
  .onair_chara {
    margin: 0 auto 5vw;
  }
  .onair_chara img {
    width: 100%;
    max-width: 190px;
    height: auto;
  }
  .onair_subtt {
    font-size: 110%;
    text-align: left;
    line-height: 1.4;
  }
  .onair_subtt span {
    color: #cc0000;
    font-style: normal;
    font-size: 90%;
  }
  .onair_sns .logo {
    border-top: 1px solid #cc0000;
    padding: 5vw 0 0 0;
    margin: 0 auto 5vw;
  }
  .onair_sns .logo img {
    width: 200px;
    height: auto;
  }
  .onair_sns ul {
    width: 75%;
    max-width: 393px;
    margin: 0 auto;
  }
  .onair_sns ul li {
    width: 20%;
  }
  .onair_sns ul li img {
    width: 100%;
    max-width: 67px;
    height: auto;
  }
}

/*////////////////
.product
////////////////*/
.product {
  padding: 60px 0 80px 0;
  text-align: center;
  background: url(../../img/chara_bg.png) no-repeat center;
}

.product_tt {
  margin: 0 0 60px 0;
  text-align: center;
}

.product_tt img {
  display: block;
  width: 385px;
  height: auto;
  margin: 0 auto;
}

.product_inner {
  max-width: 950px;
  margin: 0 auto;
}

.product_group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  margin: 0 auto 70px;
  text-align: center;
}

.product_group span {
  font-size: 130%;
  font-weight: 700;
  line-height: 1.8;
  color: #ad0527;
  font-weight: 700;
}

.product_group em {
  font-size: 80%;
  line-height: 1.9;
  font-style: normal;
}

.product_ph {
  margin: 0 0 20px 0;
}

.product_ph img {
  width: 275px;
  height: auto;
}

.product_link {
  width: 93%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.product_bnr {
  padding: 0 0 0 0;
  text-align: center;
}

.product_bnr img.pc {
  width: 666px;
  height: auto;
  display: block;
}

.product_bnr img.sp {
  display: none;
}

.product a:hover {
  opacity: .7;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

@media screen and (max-width: 1000px) {
  .product {
    padding: 7vw 0 9vw 0;
    text-align: center;
    background: none;
  }
  .product_tt {
    margin: 0 0 8vw 0;
  }
  .product_tt img {
    display: block;
    width: 80%;
    max-width: 385px;
    margin: 0 auto;
  }
  .product_inner {
    margin: 0 auto;
  }
  .product_group {
    display: block;
    margin: 0 auto 7vw;
    text-align: center;
  }
  .product_group span {
    font-size: 130%;
    line-height: 1.8;
  }
  .product_group ul {
    margin: 0 auto 8vw;
  }
  .product_ph {
    margin: 0 0 1vw 0;
  }
  .product_link {
    width: auto;
    display: block;
  }
  .product_bnr {
    width: auto;
    margin: 0 auto;
    padding: 0 0 0 0;
    text-align: center;
  }
  .product_bnr img.pc {
    display: none;
  }
  .product_bnr img.sp {
    display: block;
    margin: 0 auto 6vw;
    width: 80%;
    height: auto;
  }
  .product_store img {
    width: 50%;
    max-width: 170px;
    height: auto;
  }
  .product_chara {
    margin: 6vw 0 auto;
  }
  .product_chara img {
    width: 60%;
    max-width: 300px;
    height: auto;
  }
}

/*////////////////
.footer
////////////////*/
.footer {
  clear: both;
  text-align: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.footer_listen {
  padding: 0 0 20px 0;
  border-top: 5px solid #cc0000;
}

.footer_inner {
  width: 100%;
  margin: 0 auto;
  padding: 20px 20px 20px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-top: 1px solid #cc0000;
}

.footer_logo {
  width: 375px;
  padding: 0 0;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer_logo li {
  width: 138px;
}

.footer_logo li img {
  width: 100%;
  height: auto;
}

.footer_logo li:last-child {
  width: 200px;
}

.footer .sns {
  width: 130px;
  float: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer .sns li {
  width: 35px;
}

.footer .sns li img {
  width: 100%;
  height: auto;
}

.footer_copyright {
  clear: both;
  margin: 0px 0 0 0;
  font-size: 80%;
  color: #cc0000;
  font-weight: 700;
  text-align: left;
}

@media screen and (max-width: 1000px) {
  .footer_listen {
    padding: 0;
    margin: 0 auto 5vw;
    border-top: none;
  }
  .footer_listen.pc {
    display: none;
  }
  .footer_listen.sp {
    display: block;
  }
  .footer_inner {
    padding: 0 0 3vw 0;
    margin: 0 auto;
    display: block;
    border: none;
  }
  .footer_logo {
    width: auto;
    margin: 0 auto;
    padding: 0 7vw 5vw 7vw;
    border-bottom: 5px solid #cc0000;
  }
  .footer_logo li {
    width: 40%;
  }
  .footer_logo li img {
    width: 100%;
    height: auto;
  }
  .footer_logo li:last-child {
    width: 56%;
  }
  .footer .sns {
    float: none;
    width: 150px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .footer .sns li {
    width: 35px;
  }
  .footer .sns li img {
    width: 100%;
    height: auto;
  }
  .footer_copyright {
    clear: both;
    border-bottom: 1px solid #cc0000;
    color: #cc0000;
    margin: 0 auto 5vw;
    padding: 0 0 5vw 0;
    font-size: 72%;
    text-align: center;
  }
}

a.is-top {
  position: fixed;
  bottom: 130px;
  right: 20px;
  display: block;
  padding: 0px;
  border-radius: 5px;
  color: #1a1a1a;
  text-decoration: none;
  width: 150px;
}

@media screen and (max-width: 1000px) {
  a.is-top {
    position: static;
    width: 120px;
    padding: 0;
    margin: 4vw auto 0;
  }
}

a.is-top img {
  width: 100%;
  height: auto;
}

.next_btn {
  /* position: fixed; */
  position: absolute;
  bottom: 3%;
  right: 20px;
  float: right;
}

.next_btn img {
  width: 57px;
  height: auto;
}

@media screen and (max-width: 768px) {
  .next_btn {
    position: static;
    text-align: center;
    float: none;
  }
}

.clearfix:after {
  content: " ";
  display: block;
  clear: both;
}

.wow {
  visibility: hidden;
}
/*# sourceMappingURL=style.css.map */