@charset "utf-8";
#s {
  visibility: hidden;
}

/* Reset */
html {
  font-size: 62.5%;
  overflow-x: hidden;
  /* scroll-behavior: smooth; */
  overscroll-behavior-y: contain;
  -webkit-overflow-scrolling: touch;
}
body {
  color: #000;
  line-height: 1.7;
  word-spacing: 0;
  font-size: 1.6rem;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  font-family: "Noto Sans JP", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  border: 0;
  outline: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}
ol,
ul {
  list-style: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
th {
  text-align: left;
  font-weight: normal;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  vertical-align: bottom;
  max-width: 100%;
}
.disabled {
  filter: grayscale(1);
  opacity: 0.5;
  pointer-events: none;
}
.u-ta-c {
  text-align: center;
}
.u-mt-20 {
  margin-top: 20px;
}
.u-mt-40 {
  margin-top: 40px;
}
.container {
  margin: 0 auto;
  max-width: 1000px;
  width: calc(100% - 40px);
}
.cap {
  font-size: 1.2rem;
}
.bold {
  font-weight: bold;
}
.bnr {
  text-align: center;
}
.exlink {
  color: #0a4b91;
  text-decoration: underline;
}
.exlink:after {
  content: "";
  width: 14px;
  height: 14px;
  background: url("../img/ic_open.svg") no-repeat top left/100% auto;
  display: inline-block;
}
.exlink:hover {
  opacity: 0.7;
}

.islink {
  color: #0a4b91;
  text-decoration: underline;
}
.islink:hover {
  opacity: 0.7;
}

@media (min-width: 768px) {
  body {
    padding-top: 70px;
  }

  a[href^="tel:"] {
    pointer-events: none;
  }
  .only-sp {
    display: none;
  }
}

@media (max-width: 767px) {
  .only-pc {
    display: none;
  }
}

@media print {
  body {
    color-adjust: exact;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  /* height: 70px; */
  background: #01407c;
  color: #fff;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  font-weight: bold;
  z-index: 1000;
}

.menu {
  display: flex;
  align-items: center;
}
.menu li {
  margin: 0 40px 0 0;
  font-weight: bold;
}
.menu a {
  position: relative;
  padding: 5px 0;
}
.menu a:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: #fff;
  transition: width 0.3s;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
}
.menu a:hover:after {
  width: 100%;
}

.header-btn {
  display: flex;
  /* margin: 0 20px 0 0; */
}
.header-btn a {
  /* border: 1px solid #fff; */
  padding: 4px 15px;
  line-height: 1.5;
  transition: 0.3s;
}
.header-btn_app,
.header-btn_lang {
  /* font-family: "Inter", sans-serif;
  font-size: 1.5rem;
  font-weight: 600; */
  /* font-family: "Inter", sans-serif; */
  font-size: 1.4rem;
  font-weight: 600;
  background: #222;
  color: #fff;
  border: 0;
  padding: 6px 17px;
}
.header-btn_lang:hover {
  background: rgba(34, 34, 34, 0.7);
}
.header-btn_app .icon,
.header-btn_lang .icon {
  width: 36px;
  display: block;
  margin: 4px auto;
  height: 36px;
  transition: all 0.3s;
}
.header-btn_app {
  color: #01407c;
  background: #fff;
  border: 2px solid #01407c;
  transition: all 0.3s;
}
.header-btn_app:hover {
  background: rgba(34, 34, 34, 0.7);
  color: #fff;
}
.header-btn_app:hover .icon {
  filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(116deg)
    brightness(102%) contrast(103%);
}

#btn-menu {
  display: none;
}

@media (max-width: 767px) {
  header {
    display: block;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: 0.3s;
  }
  header:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
    height: 100%;
    background: #01407c;
    z-index: -1;
  }

  .menu {
    flex-wrap: wrap;
    padding: 80px 5% 40px 25%;
  }
  .menu li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    margin: 0;
    opacity: 0;
    transform: translateX(-20px);
    -webkit-transform: translateX(-20px);
    transition: 0.6s;
  }
  .menu a {
    padding: 13px 0;
    display: block;
  }
  .menu a:after {
    display: none;
  }
  .menu li:nth-of-type(1) {
    transition-delay: 0.4s;
  }
  .menu li:nth-of-type(2) {
    transition-delay: 0.7s;
  }
  .menu li:nth-of-type(3) {
    transition-delay: 1s;
  }
  .menu li:nth-of-type(4) {
    transition-delay: 1.3s;
  }

  .header-btn {
    margin: 0 5% 0 25%;
    justify-content: space-between;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    -webkit-transform: translateY(20px);
    transition: 0.6s 1.6s;
  }
  .header-btn a {
    width: 100%;
    /* margin: 0 !important; */
    text-align: center;
    padding: 7px 0;
  }

  header.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  header.is-visible .menu li {
    opacity: 1;
    transform: translateX(0);
    -webkit-transform: translateX(0);
  }
  header.is-visible .header-btn {
    opacity: 1;
    transform: translateY(0);
    -webkit-transform: translateY(0);
  }
  .header-btn_lang {
    margin-top: 5%;
  }
  .header-btn_app,
  .header-btn_lang {
    width: 100%;
    text-align: left;
    padding: 6px 23px;
  }
  .header-btn_app .icon,
  .header-btn_lang .icon {
    display: inline-block;
    vertical-align: middle;
    margin: 0 15px 0 0;
    width: 25px;
  }
  #btn-menu {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    width: 50px;
    height: 50px;
    background: #01407c;
    z-index: 1001;
  }
  #btn-menu span {
    width: 36px;
    height: 2px;
    position: absolute;
    left: 7px;
    background: #fff;
    display: block;
    transition: 0.3s;
  }
  #btn-menu span:nth-of-type(1) {
    top: 14px;
  }
  #btn-menu span:nth-of-type(2) {
    top: 24px;
  }
  #btn-menu span:nth-of-type(3) {
    top: 34px;
  }
  #btn-menu.is-close span:nth-of-type(1) {
    top: 24px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
  }
  #btn-menu.is-close span:nth-of-type(2) {
    display: none;
  }
  #btn-menu.is-close span:nth-of-type(3) {
    top: 24px;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
  }
}

/* MV */
.mv {
  position: relative;
  /* height: 92vh; */

  /* background: url("../img/mv.jpg") no-repeat top center / cover; */
  /* padding: 0 0 90px; */
  /* min-height: 58.54vw; */
}
.mvgazou {
  /* position: fixed;
  z-index: -1; */
  display: block;
  /* width: 1000px; */
  /* margin: 0 auto; */
  max-width: 1920px;
  height: 870px;
  margin-left: auto;
}
.mv-content {
  padding: 8rem 0 4rem 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 1000px;
  max-width: 100%;
  margin: 0 auto;
  /* margin-top: -29vw; */
  /* position: relative; */
  /* z-index: 1; */
}
.mvttl {
  width: 57.6rem;
}
.themename {
  font-size: 2.4rem;
  font-weight: bold;
  margin-top: 3rem;
}
.themename span {
  display: block;
  font-size: 125%;
  margin-left: -0.5em;
}
.mv-desc li {
  margin: 1.8rem 0 0;
}
.mv-desc span {
  font-weight: bold;
}

@media (max-width: 767px) {
  /* .mv {
    padding: 0 0 70px;
  } */
  .mvgazou {
    max-width: 100%;
    height: auto;
  }
  .mvttl {
    display: none;
  }
  .mv-content {
    position: relative;
    /* margin-top: 0; */
    padding: 3rem 0 6rem 0;
    width: calc(100% - 40px);
  }
  .themename {
    font-size: 4.6vw;
    margin-top: 0;
  }
  .themename span {
    margin: 0;
  }
}

/* Logo Keirin*/
.logo-keirin {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  gap: 40px;
  padding-top: 60px;
}
.logo-keirin figure {
  width: 120px;
}
.relatedgroups {
  display: grid;
  grid-template-columns: 320px 320px;
  column-gap: 10px;
}

@media (max-width: 767px) {
  .logo-keirin {
    gap: 20px;
    flex-wrap: wrap;
    /* padding: 0 0 50px; */
  }
  /* .logo-keirin figure {
    margin: 0 auto 20px;
  } */
  .logo-keirin p {
    width: 100%;
    text-align: center;
  }
  .relatedgroups {
    display: grid;
    grid-template-columns: auto;
    column-gap: 10px;
  }
}

.infolist li {
  display: flex;
  gap: 0;
}
.infolist li span:first-child {
  min-width: 50px;
}

/* Main */
.group {
  padding: 80px 0;
}
.m-box {
  margin-bottom: 80px;
}
.m-box.last {
  margin-bottom: 0;
}
.m-rows {
  margin-bottom: 1em;
  /* text-indent: 10px; */
}
.m-note {
  padding-top: 1em;
}
.m-list {
  margin-bottom: 1em;
}
.m-list li {
  text-indent: -1em;
  margin-left: 1em;
}

.bg-gray {
  background: #f5f5f5;
}
.posRel {
  position: relative;
}
.posAbs {
  position: absolute;
  top: -80px;
  left: 0;
}

.m-h2 {
  text-align: center;
  font-weight: bold;
  font-size: 3.6rem;
  margin: 0 0 30px;
}
.m-h3 {
  text-align: left;
  font-weight: bold;
  font-size: 2.4rem;
  border-left: 4px solid #01407c;
  padding: 0 18px;
  margin: 0 0 20px;
}
.bdr-top {
  border-top: 1px solid #dedfde;
  padding-top: 30px;
}
.m-h4 {
  font-weight: bold;
  font-size: 2rem;
}

[class*="m-btn_"] {
  font-size: 2rem;
  color: #fff;
  font-weight: bold;
  padding: 13px 0;
  max-width: 400px;
  width: 100%;
  margin: 0 auto;
  display: block;
  text-align: center;
  position: relative;
  transition: 0.3s;
  overflow: hidden;
}
[class*="m-btn_"]:after {
  content: "";
  width: 14px;
  height: 15px;
  margin-top: -8px;
  position: absolute;
  top: 50%;
  right: 4.5%;
  background: url("../img/ic_arrow_right_white.png") no-repeat top left/100%
    auto;
  transition: transform 1s;
}
[class*="m-btn_"]:hover:after {
  transform: translateX(50px);
  -webkit-transform: translateX(50px);
}
.m-btn_red {
  background: #e60012;
  border: 2px solid #e60012;
  margin-top: 40px;
}
.m-btn_red:hover {
  background: #fff;
  color: #e60012;
}
.m-btn_blue {
  background: #0a4b91;
  border: 2px solid #0a4b91;
}
.m-btn_blue:hover {
  background: #fff;
  color: #0a4b91;
}

@media (max-width: 767px) {
  .group {
    padding: 60px 0;
  }
  .m-box {
    margin-bottom: 60px;
  }
  .posAbs {
    top: -50px;
  }

  .m-h2 {
    font-size: 3rem;
    line-height: 1.5;
    margin: 0 0 20px;
  }
  .m-h3 {
    font-size: 2rem;
  }
  .m-h4 {
    font-size: 1.8rem;
  }
}

/* Outline */
.outline-list {
  margin: 0 0 0 1em;
}
.outline-list li {
  text-indent: -1.1em;
  margin-left: 1.1em;
}

.outline-tbl {
  border: 1px solid #888;
  width: 100%;
}
.outline-tbl th {
  width: 22%;
  background: #e9e9e9;
}
.outline-tbl td {
  width: 26%;
  background: #fff;
}
.outline-tbl th,
.outline-tbl td {
  border-bottom: 1px solid #888;
  border-right: 1px solid #888;
  text-align: center;
  padding: 12px 15px;
}
.outline-tbl th:nth-of-type(1) {
  text-align: left;
}
.outline-tbl td span {
  font-weight: 600;
  font-size: 1.8rem;
  font-family: "Inter", sans-serif;
}

.imglist li {
  margin-top: 4rem;
}
.imglist li.bnr {
  margin-top: 8rem;
}
.imglist li.bnr a {
  transition: opacity 0.3s;
}
.imglist li.bnr a:hover {
  opacity: 0.5;
}
.outline-list_img {
  /* margin: 40px 0 0; */
  display: flex;
  justify-content: center;
}
.outline-list_img img {
  width: 100%;
}
.outline-list_img figure:not(:last-of-type) {
  margin: 0 20px 0 0;
}

#fee {
  margin: 0 0 20px;
}
#fee h4 {
  margin: 0 0 10px 0;
}

@media (max-width: 767px) {
  .tbl-scroll {
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
  .outline-tbl {
    width: 720px;
    border-left: 0;
  }
  .outline-tbl th,
  .outline-tbl td {
    padding: 12px;
    width: 186px;
  }
  .outline-tbl tr:first-of-type th:first-of-type,
  .outline-tbl tr:not(:first-of-type) th {
    position: sticky;
    top: 0;
    left: 0;
    bottom: -1px;
    z-index: 1;
    width: 100px;
  }
  .outline-tbl tr:first-of-type th:first-of-type:before,
  .outline-tbl tr:not(:first-of-type) th:before {
    content: "";
    position: absolute;
    top: -1px;
    left: 0px;
    width: calc(100% - 1px);
    height: 100%;
    border: 1px solid #888;
  }
}

@media (max-width: 480px) {
  .outline-list_img {
    display: block;
  }
  .outline-list_img figure:not(:last-of-type) {
    margin: 0 0 10px;
  }
}

/* Program */
.program-tit {
  margin: 0 0 5px;
}
.program-tit-en {
  font-size: 1.6rem;
  font-weight: 700;
  color: #01407c;
  text-align: center;
}
.program-tit span {
  display: inline-block;
  padding-left: 0.5em;
}
.program-cap {
  text-align: center;
  margin: 0 0 40px;
}
.program-note {
  padding-top: 1em;
}

.program-nav {
  margin: 0 auto 30px;
  max-width: 620px;
  display: flex;
  justify-content: space-between;
}
.program-nav a {
  width: 48.8%;
  font-size: 1.8rem;
  font-weight: bold;
  color: #01407c;
  border: 3px solid #01407c;
  padding: 10px 0;
  text-align: center;
  position: relative;
  transition: 0.3s;
  border-radius: 50px;
}
.program-nav a:hover,
.program-nav a.is-active {
  background: #01407c;
  color: #fff;
}
.program-nav a:after {
  content: "";
  width: 14px;
  height: 13px;
  position: absolute;
  top: 50%;
  right: 5%;
  margin-top: -5px;
  background: url("../img/ic_arrow_down.png") no-repeat top left/100% auto;
}
.program-nav a:hover:after,
.program-nav a.is-active:after {
  background: url("../img/ic_arrow_down_white.png") no-repeat top left/100% auto;
}

.program-tbl {
  width: 100%;
  border: 1px solid #dddedd;
}
.program-tbl th,
.program-tbl td {
  padding: 12px 20px;
  vertical-align: top;
  border-bottom: 1px solid #dddedd;
}
.program-tbl td:last-child {
  border-left: 1px solid #dddedd;
}
.program-tbl td:last-child img {
  max-width: 120px;
}
.program-tbl th {
  width: 21%;
  background: #f5f5f5;
  border-right: 1px solid #dddedd;
  font-family: "Inter", sans-serif;
  font-weight: 600;
}
.program-tbl td {
  width: 79%;
}
.program-tbl td p:not(:first-child) {
  margin-top: 15px;
}

@media (max-width: 767px) {
  .program-tit span {
    display: block;
    padding-left: 0;
  }

  .program-nav {
    max-width: 480px;
    flex-wrap: wrap;
  }
  .program-nav a {
    width: 100%;
  }
  .program-nav a:nth-of-type(1) {
    margin: 0 0 10px;
  }

  .program-tbl,
  .program-tbl tbody,
  .program-tbl tr,
  .program-tbl th,
  .program-tbl td {
    display: block;
    width: 100%;
  }
  .program-tbl {
    border-bottom: none;
  }
  .program-tbl th {
    border-right: none;
    padding: 12px;
  }
  .program-tbl td {
    padding: 12px;
  }
}

/*モーダルを開くボタン*/
.modal-open {
  cursor: pointer;
}

/*モーダル本体の指定 + モーダル外側の背景の指定*/
.modal-container {
  position: fixed;
  top: 0;
  left: 0;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  padding: 15rem 0;
  overflow: auto;
  text-align: center;
  visibility: hidden;
  background: rgba(26, 28, 29, 0.9);
  opacity: 0;
  transition: 0.3s;
}
/* @media only screen and (max-width: 48em) {
  .modal-container {
    padding: 26.6666666667vw 0;
  }
} */
.modal-container::-webkit-scrollbar {
  display: none;
}
.modal-container:before {
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  content: "";
}
.modal-container.active {
  z-index: 9;
  visibility: visible;
  opacity: 1;
}

.modal-body {
  position: relative;
  display: inline-block;
  width: 90%;
  max-width: 800px;
  vertical-align: middle;
  /*モーダル内のコンテンツの指定*/
  /*モーダルを閉じるボタンの指定*/
}
.modal-body .modal-content {
  padding: 15px 15px 10px 15px;
  text-align: left;
  background: #ffffff;
  border-radius: 5px;
}
.modal-body .modal-content iframe {
  height: 430px;
}
@media only screen and (max-width: 48em) {
  .modal-body .modal-content {
    padding: 5px 5px 0 5px;
  }
  .modal-body .modal-content iframe {
    height: 210px;
  }
}
.modal-body .modal-close {
  position: absolute;
  top: -6rem;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
  background: #01407c;
  border: 1px solid #fff;
  border-radius: 100%;
  transition: all 0.3s;
}
.modal-body .modal-close:hover {
  background: #1a1a1a;
  border: 1px solid #fff;
}

/* Themes */
.themes-tbl {
  width: 100%;
  border: 1px solid #dedfde;
}
.themes-tbl th {
  width: 90px;
  text-align: center;
  font-weight: bold;
  vertical-align: middle;
  border-bottom: 1px solid #fff;
}
.themes-tbl .flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
/* .themes-tbl .flex .btn {
  display: none;
} */
.themes-tbl .flex .txt-blk {
  width: 680px;
  max-width: 100%;
}
.themes-tbl td {
  border-bottom: 1px solid #dedfde;
  padding: 15px 20px;
  /* max-width: 500px; */
}
.themes-tbl tr:last-of-type th,
.themes-tbl tr:last-of-type td {
  border-bottom: none;
}

.themes-txt {
  font-weight: bold;
  font-size: 1.8rem;
  line-height: 1.6;
  margin: 0 0 0.1em;
}

.themes1 .themes-tbl th {
  background: #f4b3bb;
}
.themes1 .themes-txt.c {
  color: #f57887;
}
.themes2 .themes-tbl th {
  background: #bbcce8;
}
.themes2 .themes-txt.c {
  color: #81a9ec;
}
.themes3 .themes-tbl th {
  background: #eef276;
}
.themes3 .themes-txt.c {
  color: #c9cf00;
}
.themes4 .themes-tbl th {
  background: #bfdd97;
}
.themes4 .themes-txt.c {
  color: #96cf49;
}
.themes5 .themes-tbl th {
  background: #d0b1d3;
}
.themes5 .themes-txt.c {
  color: #d0b1d3;
}
.themes6 .themes-tbl th {
  background: #a0d8e5;
}
.themes6 .themes-txt.c {
  color: #8ad7e9;
}
.themes7 .themes-tbl th {
  background: #f8c59a;
}
.themes7 .themes-txt.c {
  color: #fbae6e;
}
@media (max-width: 767px) {
  .themes-tbl th {
    width: 60px;
  }
  .themes-tbl .flex {
    display: block;
  }
  .themes-tbl .flex .txt-blk {
    width: 100%;
  }
}

/* Pagelink */
#pagelink {
  padding: 70px 0 0 0;
  text-align: center;
}
#pagelink h2 {
  margin: 0 0 10px;
}

@media (max-width: 767px) {
  #pagelink {
    padding: 50px 0 0 0;
  }
}

/* Footer */
#pagetop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  cursor: pointer;
  display: none;
}

footer {
  background: #222222;
  padding: 60px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-contact {
  font-size: 1.5rem;
  padding: 0 0 0 40px;
  margin: 0 0 0 40px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
}
.footer-contact a:hover {
  text-decoration: underline;
}

@media (max-width: 767px) {
  #pagetop {
    width: 40px;
    bottom: 10px;
    right: 10px;
  }

  footer {
    flex-wrap: wrap;
    text-align: center;
  }
  .footer-logo {
    width: 100%;
  }
  .footer-contact {
    margin: 30px 0 0 0;
    padding: 0;
    border-left: none;
  }
}

.btn {
  display: flex;
  justify-content: space-between;
}
.btn a,
.modal-btn {
  width: 172px;
  font-size: 1.8rem;
  font-weight: bold;
  background-color: #01407c;
  color: #fff;
  padding: 16px 30px;
  text-align: left;
  position: relative;
  transition: 0.3s;
  border: 2px solid #01407c;
  border-radius: 50px;
}
.btn a:hover,
.modal-btn:hover {
  background-color: #fff;
  color: #01407c;
  /* border: 2px solid #01407c; */
}
.btn a:after,
.modal-btn:after {
  content: "";
  width: 30px;
  height: 30px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 28px;
  transition: 0.3s;
  background: url("../img/ic_play.png") no-repeat top left/100% auto;
}
.btn a:hover:after,
.modal-btn:hover:after {
  background: url("../img/ic_play_hover.png") no-repeat top left/100% auto;
}

.btn.pdf a {
  padding: 20px 43px;
  width: 320px;
  margin: 0 auto 80px auto;
}

.btn.pdf a.mb {
  margin: 20px auto 0 auto;
}
.btn.pdf a:after {
  content: "";
  width: 26px;
  height: 34px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 40px;
  transition: 0.3s;
  background: url("../img/ic_pdf.png") no-repeat top left/100% auto;
}
.btn.pdf a:hover:after {
  background: url("../img/ic_pdf_hover.png") no-repeat top left/100% auto;
}

.btn.app a {
  padding: 20px 85px;
  width: 320px;
  margin: 30px auto 0 auto;
  border: 2px solid #cc0011;
  background-color: #cc0011;
}
.btn.app a:hover {
  background-color: #fff;
  color: #cc0011;
}
.btn.app a:after {
  content: "";
  width: 34px;
  height: 34px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 83px;
  transition: 0.3s;
  background: url("../img/ic_application.png") no-repeat top left/100% auto;
}
.btn.app a:hover:after {
  background: url("../img/ic_application_hover.png") no-repeat top left/100%
    auto;
}

@media (max-width: 767px) {
  .modal-btn {
    width: 160px;
    padding: 10px 20px;
    margin: 20px auto 0 auto;
  }
  .modal-btn:after {
    right: 20px;
  }
  .btn.pdf a {
    margin-bottom: 40px;
  }
  .btn {
    margin: 20px auto;
    justify-content: center;
  }
}
