/*
  Theme Name: mazeumのテーマ
  Theme URI: http://
  Description: mazeumのテーマ
  Version: 1.0.0

  The CSS, XHTML and design is released under GPL:
  http://www.opensource.org/licenses/gpl-license.php

*/

a:hover {
  opacity: 0.7;
}

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

.inner h1 {
  text-align: center;
  margin-bottom: 20px;
}

.inner a.link-btn {
  display: inline-block;
  margin: 0 5px;
}

.inner img {
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}

.inner .photo {
  margin-bottom: 20px;
  text-align: center;
}

.footer_menu,
.footer_menu a {
  font-size: 13px;
  color: #999;
  margin: 0 8px;
  text-decoration: none;
}


.cards {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}
.cards__item {
  display: flex;
  padding: 1rem;
  width: 33%;
}
.card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  width: 100%;
  border: 0.5px solid #ddd;
}
.card:hover .card__image {
  filter: contrast(100%);
}

.card__content {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 1rem;
}

.card__image {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  filter: contrast(95%);
  overflow: hidden;
  position: relative;
  transition: filter 0.5s cubic-bezier(.43,.41,.22,.91);
  height: 200px;
}

.card__title {
  font-size: 1.25rem;
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
}

@media screen and (max-width:600px) {
  .cards__item {
    width: 50%;
  }
  .card__image {
    height: 150px;
  }
}