body,
html {
  font-family: "Varela Round", sans-serif;

  background-color: #a82743;
  color: #f1eddc;
}

h1 {
  position: relative;
  text-align: center;
  color: whitesmoke;
  font-size: 50px;
  font-family: "Cormorant Garamond", serif;
}
h1:before {
  position: absolute;
  content: "";
  bottom: -20px;
  width: 150px;
  height: 2px;
  background: wheat;
}
p {
  font-family: "Open Sans", sans-serif;
  font-weight: 300;
  text-align: center;
  color: whitesmoke;
}

.skelton_btn {
  display: block;
  position: relative;
  width: 100px;
  padding: 0.3em;
  margin-left: 3em;
  text-align: center;
  text-decoration: none;
  color: #1b1b1b;
  border-radius: 10%;
  background-color: #fff;
  border: 1px solid #fff;
}
.skelton_btn:hover {
  background: #f2f2f2;
  cursor: pointer;
  text-decoration: none;
}
.title {
  text-align: center;
}

.flex-container1 {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.flip {
  width: 200px;
  height: 200px;
  margin-bottom: 200px;
  margin-right: 10px;
}
.flex-container {
  display: flex;
  justify-content: center;
}
.fade_image {
  margin: 5px;
}
.flip .fade_image img {
  width: 80%;
  height: 200px;
  margin: 12px;
  -o-object-fit: cover;
  object-fit: cover;
}
.fade_image img:last-child {
  margin: 0;
}
.element {
  opacity: 0;
}

.hidden_box {
  margin: 0.3em 0;
  padding: 0;
}
.name {
  text-align: center;
}

/*ボタン装飾*/
.hidden_box label {
  padding: 10px;
  font-weight: bold;
  background: wheat;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.5s;
  margin-bottom: 20px;
  margin-left: 30px;
  color: #1b1b1b;
}

/*アイコンを表示*/
.hidden_box label:before {
  display: inline-block;
  content: "\f078";
  font-family: "FontAwesome";
  padding-right: 8px;
  transition: 0.2s;
}

/*ボタンホバー時*/
.hidden_box label:hover {
  background: silver;
}

/*アイコンを切り替え*/
.hidden_box input:checked ~ label:before {
  content: "\f00d";
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
  color: orange;
}

/*チェックは見えなくする*/
.hidden_box input {
  display: none;
}

/*中身を非表示にしておく*/
.hidden_box .hidden_show {
  height: 0;
  padding: 0;
  overflow: hidden;
  opacity: 0;
  transition: 0.8s;
}

/*クリックで中身表示*/
.hidden_box input:checked ~ .hidden_show {
  padding: 5px 0;
  height: auto;
  opacity: 1;
}
@media screen and (max-width: 640px) {
  .fade_image {
    flex-direction: column;
  }
  .fade_image img {
    width: 100%;
    margin: 0 0 10px 0;
  }
  .fade_image img:last-child {
    margin: 0;
  }
}
