@charset "utf-8";
/* CSS Document */
.main {
  background-color: #f3f3f3;
}
.flow-title {
  position: relative;
  background-image: url("../img/m-size/shinpu-yokogao.png");
  height: 50vw;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  margin-top: 100px;
  animation-name: fade;
  animation-duration: 3s;
  animation-iteration-count: 1;
}
@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 3s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.flow-flow, .day-flow-flow {
  margin: 8vw 1vw;
}
.flow-title h2, .day-flow-tilte h2, .qa-title h2 {
  color: #333;
  position: absolute;
  font-size: 2vw;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 3vw;
  background-color: rgba(255, 255, 255, 0.8);
}
.flow, .day-flow {
  padding-bottom: 2vw;
}
.flow-flow p, .day-flow p {
  font-size: 1.6vw;
  font-weight: 600;
  margin: 3vw;
  line-height: normal;
}
.down {
  display: inline-block;
  vertical-align: middle;
  color: #0e321c;
  line-height: 1;
  width: 2em;
  height: 2em;
  border: 0.1em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(-25%) rotate(135deg);
}
.day-flow-tilte {
  position: relative;
  background-image: url("../img/m-size/tebukuro.png");
  height: 50vw;
  background-repeat: no-repeat;
  background-size: cover;
  margin-bottom: 5vw;
}
.qa-title {
  position: relative;
  background-image: url("../img/m-size/udekumufutari.png");
  height: 50vw;
  background-repeat: no-repeat;
  background-size: cover;
}
.qa-list {
  list-style: none;
  text-align: left;
  line-height: normal;
  font-size: 1.6vw;
  padding: 5vw 14vw 0;
}
.qa-list li {
  margin-bottom: 3vw;
}
.list-q {
  font-weight: 600;
}
.list {
  margin-bottom: 6vw;
}
.list-a {
  margin-left: 3vw;
}
.qa {
  border-bottom: solid 1px #362d2d;
}
@media(max-width:960px) {
  .flow-title {
    margin-top: 60px;
  }
  .flow-title h2, .day-flow h2, .qa-title h2 {
    font-size: 5vw;
    line-height: normal;
  }
  .flow-flow p, .day-flow-flow p {
    font-size: 4vw;
  }
  .qa-list {
    padding: 5vw;
  }
  .qa-list li {
    font-size: 4vw;
  }
}