@charset "UTF-8";

h1 {
  display: none;
}
/*----------------------------------------
	Card
----------------------------------------*/
.card {
  display: flex;
  flex-direction: column;
  max-width: 480px;
  padding: 20px;
  border: 1px solid #666;
  background: #fff;
  color: #545050;
  font-family: "Helvetica Neue",
    Arial,
    "Hiragino Kaku Gothic ProN",
    "Hiragino Sans",
    Meiryo,
    sans-serif;
  
}
.card__thumb {
  order: -1; /*先頭で表示*/
}
.card__title {
  margin-top: 20px;
  padding-bottom: 5px;
  border-bottom: 1px dashed;
  font-size: 1.6rem;
}
.card__body {
  margin-top: 20px;
}
/*----------------------------------------
	wrap
----------------------------------------*/
.wrap {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 600px;
	background: #e1e1ef;
}