@charset "UTF-8";

.title {
   height: 310px;
   background-image: url(../img/information/bg-main.jpg);
   background-repeat: no-repeat;
   background-position: center center;
   background-size: cover;
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
   color: #ffffff;
   text-shadow: 2px 2px 6px #000000;
}

.title h1 {
   font-family: 'Montserrat', sans-ferif;
   font-size: 32px;
   font-weight: bold;
}

.title p {
   font-size: 14px;
   margin-top: 15px;
}
.information-list {
   background-image: url(../img/information/bg-main2.jpg);
   background-color: rgba(255,255,255, 0.5);
   background-blend-mode: lighten;
   background-repeat: no-repeat;
   background-position: center center;
   background-size: cover;
   display: flex;
   margin-top: 20px;
   align-items: center;
}

.information-item {
   max-width: 90%;
   margin-top: 30px;
   margin-bottom: 30px;
   margin-left: auto;
   margin-right: auto;
   display: grid;
   grid-template-columns: repeat(auto-fit,350px);
   column-gap: 95px;
}

.information-item dt {
   font-size: 20px;
   font-weight: bold;
   margin-top: 18px;
   color: yellow;
   text-shadow: 3px 3px 3px #000000;
}

.information-item dd {
   font-size: 18px;
   font-weight: bold;
   margin-top: 8px;
   color: blue;
   text-shadow: 1px 1px 3px #000000;
}

.footer {
   margin-top: 100px;
}

@media (max-width: 800px) {

   .information-item {
      margin-top: 10px;
      row-gap: 10px;
   }

   .information-item dt {
      font-size: 16px;
      margin-top: 14px;
   }

   .information-item dd {
      font-size: 14px;
      margin-top: 4px;
   }

   .footer {
      margin-top: 50px;
   }
}