@charset "UTF-8";

@media screen and (max-width: 1100px) {
    .app {
        width: 100%;
    }
    
    .app .media .icon {
        width: 80px;
        height: 80px;
        border-radius: 10px;
    }
    
    .app .title .news {
        width: 80%;
        margin-left: 10%;
    }
    
    .app .title .news {
        height: 110px;
    } 
}

@media screen and (min-width: 1100px) {
    .app {
        width: 60%;
        margin-left: 20%;
    }
    
    .app .media .icon {
        width: 150px;
        height: 150px;
        border-radius: 20px;
    }
    
    .app .title .news {
        width: 100%;
    }
    
    .app .title .news {
        height: 170px;
    }
}

a:link,
a:visited,
a:hover,
a:active {
    color: #000000;
}

::-webkit-selection {
    background-color: #000000;
    color: #ffffff;
}
::-moz-selection {
    background-color: #000000;
    color: #ffffff;
}
::selection {
    background-color: #000000;
    color: #ffffff;
}

h2 {
    text-align : center;
    line-height: 2em;
    margin-bottom: 10px;
}

#header_wrap {
    width: 100%;
}

#header_wrap #header {
    width: 100%;
    text-align: center;
    margin-top: 50px;
    margin-bottom: 50px;
    font-size: 300%;
}

.app {
    margin-top: 80px;
}

.app .media {
    float: left;
    width: 40%;
    font-size: 70%;
    text-align: center;
}

.app .media .icon {
    text-align: center;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    margin-top: 40px;
    margin-left: auto;
    margin-right: auto;
}

.app .media table {
    width: 80%;
    margin-left: 10%;
    margin-top: 10px;
    height: 30px;
}
.app .media table td {
    border: none;
    text-align: center;
    vertical-align: middle;
}

.app .title {
    float: left;
    width: 60%;
}

.app .title .news {
    overflow: scroll;
    border: solid 1px #000000;;
}

.app .title .news table {
    width: 100%;
    font-size: 70%;
}

.app .title .news table th,
.app .title .news table td {
    text-indent: 1em;
    height: 2em;
    vertical-align: middle;
    border-bottom: 1px solid #354b60;
}

.app .title .news table tr:last-child {
    border-bottom: none;
}

.icon {
    position: relative;
}

.app .description {
    width: 70%;
    margin-left: 15%;
    font-size: 90%;
    padding: 10px;
    padding-top: 20px;
    padding-bottom: 20px;
    line-height: 150%;
}

.icon::before, .icon::after
{
  z-index: -1;
  position: absolute;
  content: "";
  bottom: 15px;
  left: 10px;
  width: 50%;
  top: 80%;
  max-width:300px;
  background: #777;
  -webkit-box-shadow: 0 15px 10px #777;
  -moz-box-shadow: 0 15px 10px #777;
  box-shadow: 0 15px 10px #777;
  -webkit-transform: rotate(-3deg);
  -moz-transform: rotate(-3deg);
  -o-transform: rotate(-3deg);
  -ms-transform: rotate(-3deg);
  transform: rotate(-3deg);
}
.icon::after
{
  -webkit-transform: rotate(3deg);
  -moz-transform: rotate(3deg);
  -o-transform: rotate(3deg);
  -ms-transform: rotate(3deg);
  transform: rotate(3deg);
  right: 10px;
  left: auto;
}