@charset "utf-8";


.bookmark_area {
  width: 800px;
  padding: 20px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  border: 2px solid #333;
}

.headline {  
  margin-top: 10px;
  margin-bottom: 20px;
  font-family: "Montserrat", sans-serif;  
  font-weight: bold;
  font-size: 20px;
}

.bkm {
  margin-top: 30px;  
  margin-bottom: 30px;  
  font-family: "Montserrat", sans-serif;  
}

.bkm a {
    border-bottom: 2px dotted #333;
}
.text {
  text-align: center;
  font-size: 14px;
  line-height: 20px;
}

.text a {
    border-bottom: 2px dotted #333;
}

.attention {
  margin-top: 20px;  
  font-size: 14px;
  font-weight: bold;
  color: #da6a29;
}

.favorite_area {
  text-align: center;  
}
 .favorite {
  justify-content: center;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 50px;
  width: 700px;
  display: flex;
  flex-wrap: wrap;
 }

.favorite li {
  margin: 5px;

}

.favorite img{
    width: 200px;

}

.favorite a{
    display: block;
    transition: all .3s ease-in-out;
    transform: translateY(0);
    box-shadow: 0 5px 5px rgba(0,0,0,.1);
}
favorite img{
    width: 100%;
    vertical-align: middle;
}
.favorite a:hover{
    transform: translateY(-5px);
    box-shadow: 0 10px 10px rgba(0,0,0,.2);
}


@media (max-width: 800px){


.text {
  text-align: center;
  font-size: 10px;
}
}