@charset "UTF-8";
/*OPACITY*/
/*TRANSITION*/
/*TRANSFORM*/
/*FLEXBOX*/
/*BORDER RADIUS*/
/*BOX SHADOW*/
/*BOX SIZING*/
/*FILTER*/
/*...VARIABLE...*/
/* Slideshow */
figure {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  margin: 0;
  padding: 0;
  /*animation*/
  animation: slideShow 24s linear infinite 0s;
  -o-animation: slideShow 24s linear infinite 0s;
  -moz-animation: slideShow 24s linear infinite 0s;
  -webkit-animation: slideShow 24s linear infinite 0s;
}

.pic-1 {
  animation-delay: 1s;
  -o-animation-delay: 1s;
  -moz--animation-delay: 1s;
  -webkit-animation-delay: 1s;
  background: url(../assets/img/mainvisual/slider-01.png) no-repeat center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

.pic-2 {
  animation-delay: 6s;
  -o-animation-delay: 6s;
  -moz--animation-delay: 6s;
  -webkit-animation-delay: 6s;
  background: url(../assets/img/mainvisual/slider-02.png) no-repeat center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

.pic-3 {
  animation-delay: 12s;
  -o-animation-delay: 12s;
  -moz--animation-delay: 12s;
  -webkit-animation-delay: 12s;
  background: url(../assets/img/mainvisual/slider-03.png) no-repeat center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

.pic-4 {
  animation-delay: 18s;
  -o-animation-delay: 18s;
  -moz--animation-delay: 18s;
  -webkit-animation-delay: 18s;
  background: url(../assets/img/mainvisual/slider-04.png) no-repeat center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

/* keyframes*/
@keyframes slideShow {
  0% {
    opacity: 0;
    transform: scale(1);
    -ms-transform: scale(1);
  }
  5% {
    opacity: 1;
  }
  25% {
    opacity: 1;
  }
  30% {
    opacity: 0;
    transform: scale(1.1);
    -ms-transform: scale(1.1);
  }
  100% {
    opacity: 0;
    transform: scale(1);
    -ms-transformm: scale(1);
  }
}

@-o-keyframes slideShow {
  0% {
    opacity: 0;
    -o-transform: scale(1);
  }
  5% {
    opacity: 1;
  }
  25% {
    opacity: 1;
  }
  30% {
    opacity: 0;
    -o-transform: scale(1.1);
  }
  100% {
    opacity: 0;
    -o-transformm: scale(1);
  }
}

@-moz-keyframes slideShow {
  0% {
    opacity: 0;
    -moz-transform: scale(1);
  }
  5% {
    opacity: 1;
  }
  25% {
    opacity: 1;
  }
  30% {
    opacity: 0;
    -moz-transform: scale(1.1);
  }
  100% {
    opacity: 0;
    -moz-transformm: scale(1);
  }
}

@-webkit-keyframes slideShow {
  0% {
    opacity: 0;
    -webkit-transform: scale(1);
  }
  5% {
    opacity: 1;
  }
  25% {
    opacity: 1;
  }
  30% {
    opacity: 0;
    -webkit-transform: scale(1.1);
  }
  100% {
    opacity: 0;
    -webkit-transformm: scale(1);
  }
}

#main .mainvisual {
  width: 100%;
  position: relative;
  height: 41vw;
}

@media screen and (max-width: 480px) {
  #main .mainvisual {
    height: 50vw;
  }
}

#main .mainvisual .pic-wrapper {
  position: absolute;
  width: 100%;
  height: 41vw;
  overflow: hidden;
}

@media screen and (max-width: 480px) {
  #main .mainvisual .pic-wrapper {
    height: 50vw;
  }
}

#main .content .cont .firstRow {
  margin-top: -50px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: space-between;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
  margin-bottom: 52px;
}

@media screen and (max-width: 950px) {
  #main .content .cont .firstRow {
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

@media screen and (max-width: 480px) {
  #main .content .cont .firstRow {
    margin-top: -30px;
  }
}

#main .content .cont .firstRow .notice {
  width: 750px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border: 1px solid #F0F0F0;
  background-color: #FFF;
  padding: 36px 40px;
  position: relative;
}

@media screen and (max-width: 1100px) {
  #main .content .cont .firstRow .notice {
    width: 65%;
    padding: 30px;
  }
}

@media screen and (max-width: 950px) {
  #main .content .cont .firstRow .notice {
    width: 100%;
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 480px) {
  #main .content .cont .firstRow .notice {
    padding: 15px;
  }
}

#main .content .cont .firstRow .notice .head {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: space-between;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  margin-bottom: 24px;
}

@media screen and (max-width: 1100px) {
  #main .content .cont .firstRow .notice .head {
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 480px) {
  #main .content .cont .firstRow .notice .head {
    margin-bottom: 10px;
  }
}

#main .content .cont .firstRow .notice .head h2 {
  border-left: 5px solid #0584C5;
  font-weight: bold;
  font-size: 24px;
  padding-left: 15px;
  line-height: 1.5;
}

@media screen and (max-width: 480px) {
  #main .content .cont .firstRow .notice .head h2 {
    font-size: 20px;
  }
}

#main .content .cont .firstRow .notice .head a {
  width: 103px;
  height: 35px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  font-size: 16px;
  font-weight: bold;
}

#main .content .cont .firstRow .notice .head a i {
  margin-left: 15px;
  color: #0584C5;
  font-size: 14px;
}

#main .content .cont .firstRow .notice .head a:hover i {
  color: #FFF;
}

@media screen and (max-width: 480px) {
  #main .content .cont .firstRow .notice .head a {
    display: none;
  }
}

#main .content .cont .firstRow .notice .list li {
  border-top: 1px solid #F0F0F0;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  padding: 10px 0;
  font-family: "メイリオ", Meiryo, sans-serif;
}

@media screen and (max-width: 480px) {
  #main .content .cont .firstRow .notice .list li {
    padding: 7px 0;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

#main .content .cont .firstRow .notice .list li .date {
  margin-right: 29px;
  width: 130px;
  font-size: 15px;
}

@media screen and (max-width: 1100px) {
  #main .content .cont .firstRow .notice .list li .date {
    margin-right: 20px;
  }
}

@media screen and (max-width: 767px) {
  #main .content .cont .firstRow .notice .list li .date {
    margin-right: 10px;
  }
}

@media screen and (max-width: 480px) {
  #main .content .cont .firstRow .notice .list li .date {
    font-size: 14px;
    margin-right: 5px;
  }
}

#main .content .cont .firstRow .notice .list li .category {
  width: 112px;
  height: 26px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  font-size: 11px;
  color: #FFF;
  margin-right: 29px;
}

#main .content .cont .firstRow .notice .list li .category.pink {
  background-color: #FFB6BA;
}

#main .content .cont .firstRow .notice .list li .category.blue {
  background-color: #0584C5;
}

#main .content .cont .firstRow .notice .list li .category.green {
  background-color: #39B54A;
}

@media screen and (max-width: 1100px) {
  #main .content .cont .firstRow .notice .list li .category {
    width: 100px;
    margin-right: 20px;
  }
}

@media screen and (max-width: 767px) {
  #main .content .cont .firstRow .notice .list li .category {
    margin-right: 10px;
  }
}

@media screen and (max-width: 480px) {
  #main .content .cont .firstRow .notice .list li .category {
    margin-right: 5px;
    width: 80px;
    height: 26px;
  }
}

#main .content .cont .firstRow .notice .list li a {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  font-size: 16px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

@media screen and (max-width: 1100px) {
  #main .content .cont .firstRow .notice .list li a {
    font-size: 15px;
  }
}

@media screen and (max-width: 480px) {
  #main .content .cont .firstRow .notice .list li a {
    -webkit-box-flex: unset;
    -moz-box-flex: unset;
    -webkit-flex: unset;
    -ms-flex: unset;
    flex: unset;
    width: 100%;
    -webkit-align-items: flex-start;
    -moz-align-items: flex-start;
    -ms-align-items: flex-start;
    align-items: flex-start;
    font-size: 15px;
    margin: 7px 0;
  }
}

#main .content .cont .firstRow .notice .list li a i {
  color: #0584C5;
  font-size: 14px;
  margin-right: 5px;
}

@media screen and (max-width: 480px) {
  #main .content .cont .firstRow .notice .list li a i {
    font-size: 12px;
    position: relative;
    top: 5px;
  }
}

#main .content .cont .firstRow .notice .list li a:hover span {
  text-decoration: underline;
}

#main .content .cont .firstRow .notice .btnSp {
  display: none;
}

@media screen and (max-width: 480px) {
  #main .content .cont .firstRow .notice .btnSp {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    -ms-flex-pack: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
    width: 243px;
    height: 37px;
    position: relative;
    font-weight: bold;
    font-size: 16px;
    margin: auto;
  }
  #main .content .cont .firstRow .notice .btnSp i {
    position: absolute;
    right: 18px;
    color: #0584C5;
    font-size: 14px;
  }
  #main .content .cont .firstRow .notice .btnSp:hover i {
    color: #FFF;
  }
}

#main .content .cont .firstRow .event {
  width: 330px;
  position: relative;
}

@media screen and (max-width: 1100px) {
  #main .content .cont .firstRow .event {
    width: 33%;
  }
}

@media screen and (max-width: 950px) {
  #main .content .cont .firstRow .event {
    width: 100%;
  }
}

#main .content .cont .firstRow .event .head {
  width: 100%;
  height: 63px;
  background-color: #0584C5;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  border-radius: 5px 5px 0 0;
  -webkit-border-radius: 5px 5px 0 0;
  -moz-border-radius: 5px 5px 0 0;
}

#main .content .cont .firstRow .event .head p {
  font-size: 20px;
  font-weight: bold;
  margin-right: 8px;
  color: #FFFFFF;
}

#main .content .cont .firstRow .event .head img {
  width: 30px;
}

#main .content .cont .firstRow .event .inner {
  background-color: #FFF;
  border: 1px solid #F0F0F0;
  border-radius: 0 0 5px 5px;
  -webkit-border-radius: 0 0 5px 5px;
  -moz-border-radius: 0 0 5px 5px;
  height: 306px;
  overflow: hidden;
}

#main .content .cont .firstRow .event .inner ul {
  overflow: auto;
  height: 250px;
  padding: 3px 0;
}

#main .content .cont .firstRow .event .inner ul li {
  padding: 8px 15px;
  padding-right: 5px;
}

#main .content .cont .firstRow .event .inner ul li a {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
}

#main .content .cont .firstRow .event .inner ul li a .date {
  width: 55px;
  margin-right: 10px;
}

#main .content .cont .firstRow .event .inner ul li a .date .headDate {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  color: #FFF;
  font-size: 14px;
  font-weight: bold;
  background-color: #0584C5;
  border-radius: 5px 5px 0 0;
  -webkit-border-radius: 5px 5px 0 0;
  -moz-border-radius: 5px 5px 0 0;
}

#main .content .cont .firstRow .event .inner ul li a .date .box {
  border: 1px solid #F0F0F0;
  background-color: #FFF;
  border-radius: 0 0 3px 3px;
  -webkit-border-radius: 0 0 3px 3px;
  -moz-border-radius: 0 0 3px 3px;
  height: 47px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  color: #0584C5;
  font-weight: bold;
}

#main .content .cont .firstRow .event .inner ul li a .date .box .month {
  font-size: 32px;
  line-height: 1;
}

@media screen and (max-width: 480px) {
  #main .content .cont .firstRow .event .inner ul li a .date .box .month {
    font-size: 28px;
  }
}

#main .content .cont .firstRow .event .inner ul li a .date .box .day {
  font-size: 11px;
  line-height: 1;
}

@media screen and (max-width: 480px) {
  #main .content .cont .firstRow .event .inner ul li a .date .box .day {
    font-size: 10px;
  }
}

#main .content .cont .firstRow .event .inner ul li a .text {
  font-family: "メイリオ", Meiryo, sans-serif;
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

#main .content .cont .firstRow .event .inner ul li a .text:hover {
  text-decoration: underline;
}

#main .content .cont .firstRow .event .inner .eventMore {
  width: 243px;
  height: 37px;
  margin: 7px auto 0;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  position: relative;
  font-weight: bold;
  font-size: 16px;
}

@media screen and (max-width: 950px) {
  #main .content .cont .firstRow .event .inner .eventMore {
    margin: 5px auto 0;
  }
}

#main .content .cont .firstRow .event .inner .eventMore i {
  position: absolute;
  right: 18px;
  color: #0584C5;
  font-size: 14px;
}

#main .content .cont .firstRow .event .inner .eventMore:hover i {
  color: #FFFFFF;
}

#main .content .cont .secondRow {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-around;
  -moz-justify-content: space-around;
  -ms-justify-content: space-around;
  justify-content: space-around;
  -ms-flex-pack: space-around;
  margin-bottom: 50px;
}

@media screen and (max-width: 800px) {
  #main .content .cont .secondRow {
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-around;
    -moz-justify-content: space-around;
    -ms-justify-content: space-around;
    justify-content: space-around;
    -ms-flex-pack: space-around;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 480px) {
  #main .content .cont .secondRow {
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    -ms-flex-pack: space-between;
    margin-bottom: 20px;
  }
}

#main .content .cont .secondRow .item {
  width: 240px;
  background-color: #FFF;
  border: 1px solid #C6C9D3;
  border-bottom: 4px solid #C6C9D3;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 40px;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
}

@media screen and (max-width: 1100px) {
  #main .content .cont .secondRow .item {
    width: 23%;
  }
}

@media screen and (max-width: 800px) {
  #main .content .cont .secondRow .item {
    width: 251px;
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 767px) {
  #main .content .cont .secondRow .item {
    width: 240px;
  }
}

@media screen and (max-width: 767px) {
  #main .content .cont .secondRow .item {
    width: 48%;
  }
}

#main .content .cont .secondRow .item a {
  width: 100%;
  height: 240px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media screen and (max-width: 1100px) {
  #main .content .cont .secondRow .item a {
    height: 220px;
  }
}

@media screen and (max-width: 480px) {
  #main .content .cont .secondRow .item a {
    height: 180px;
  }
}

@media screen and (max-width: 360px) {
  #main .content .cont .secondRow .item a {
    height: 160px;
  }
}

#main .content .cont .secondRow .item a p {
  text-align: center;
  color: #0584C5;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.3;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media screen and (max-width: 480px) {
  #main .content .cont .secondRow .item a p {
    font-size: 20px;
  }
}

#main .content .cont .secondRow .item a .hvr {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: none;
}

#main .content .cont .secondRow .item.about a img {
  width: 106px;
  margin-bottom: 30px;
}

@media screen and (max-width: 480px) {
  #main .content .cont .secondRow .item.about a img {
    width: 79px;
  }
}

#main .content .cont .secondRow .item.organization a img {
  width: 102px;
  margin-bottom: 30px;
}

@media screen and (max-width: 480px) {
  #main .content .cont .secondRow .item.organization a img {
    width: 76px;
  }
}

#main .content .cont .secondRow .item.facility a img {
  width: 78px;
  margin-bottom: 40px;
}

@media screen and (max-width: 480px) {
  #main .content .cont .secondRow .item.facility a img {
    width: 58px;
  }
}

@media screen and (max-width: 360px) {
  #main .content .cont .secondRow .item.facility a img {
    margin-bottom: 15px;
  }
}

#main .content .cont .secondRow .item.download a img {
  width: 78px;
  margin-bottom: 23px;
}

@media screen and (max-width: 480px) {
  #main .content .cont .secondRow .item.download a img {
    width: 58px;
  }
}

@media screen and (max-width: 360px) {
  #main .content .cont .secondRow .item.download a img {
    margin-bottom: 15px;
  }
}

@media screen and (min-width: 768px) {
  #main .content .cont .secondRow .item:hover {
    background-color: #0584C5;
    border: 1px solid #0584C5;
  }
  #main .content .cont .secondRow .item:hover a p {
    color: #FFF;
  }
  #main .content .cont .secondRow .item:hover a .noHvr {
    display: none;
  }
  #main .content .cont .secondRow .item:hover a .hvr {
    display: block;
  }
}

#main .content .cont .thirdRow {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
}

@media screen and (max-width: 480px) {
  #main .content .cont .thirdRow {
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

#main .content .cont .thirdRow a {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  width: 540px;
  color: #808080;
  font-weight: bold;
  font-size: 24px;
  background-color: #FFF;
}

@media screen and (max-width: 1100px) {
  #main .content .cont .thirdRow a {
    width: 48%;
  }
}

@media screen and (max-width: 640px) {
  #main .content .cont .thirdRow a {
    font-size: 20px;
    text-align: center;
  }
}

@media screen and (max-width: 480px) {
  #main .content .cont .thirdRow a {
    width: 100%;
  }
  #main .content .cont .thirdRow a:first-child {
    margin-bottom: 30px;
  }
}

/*# sourceMappingURL=index.css.map */