@charset "utf-8";

.content h2 {
  margin: 40px 0 0;
  font-size: 30px;
}

.content h3 {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 30px;
  font-weight: bold;
  color: #4788e1;
  margin: 30px 0 20px;
  text-align: center;
  position: relative;
  z-index: 2;
}

/*----- タクシーの乗り方 ----- */

.flow-area .flow-unit {
  display: inline-block;
  width: 220px;
  margin-top: 45px;
  background: #F5F5F5;
  vertical-align: top;
  position: relative;
  padding-bottom: 135px;
  box-sizing: content-box;
}

.flow-area .flow-unit:not(:last-child) {
  margin-right: 18px;
}

.flow-area .flow-unit h3 {
  position: relative;
  font-size: 150%;
  margin: 30px 0 0;
}

.flow-area .flow-unit span {
  display: inline-block;
  width: 45px;
  height: 45px;
  line-height: 45px;
  background: #4788e1;
  position: absolute;
  top: -55px;
  left: 50%;
  border-radius: 23px;
  margin-left: -22px;
  font-size: 100%;
  color: #fff;
  text-align: center;
}

.flow-area .flow-unit p {
  margin: 10px 0 0;
  padding: 0 15px 15px;
}

.flow-area .flow-unit img {
  width: 100%;
  position: absolute;
  bottom: 0;
}

.layout-unit img {
  max-width: 100%;
}



/* --- sheet --- */

.sheet {
  margin-top: 50px;
}

.sheet h2 {
  margin-top: 0;
}


/* --- btns --- */
.btns {
  display: flex;
  gap: 40px;
  margin-block: 30px 60px;
}

.btns ._flexbw {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}

.btns::after,
.btns div::after {
  display: none;
}


/* --- app --- */
.app {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  gap: 20px;
  border: 2px solid #353536;
  padding: 15px;
}

.app__infos {
  display: flex;
  flex-direction: column;
}

.app .app__detail {
  margin: 0;
}

.app__info {
  font-size: 80%;
}

.app__name {
  font-weight: bold;
}

.app__links {
  display: flex;
  gap: 10px;
}

.app__links a {
  flex: 1 1 0;
}

.app__links a:hover {
  opacity: .8;
}

.app__links img {
  max-width: 100%;
  width: 100%;
  height: auto;
}

.app__icon img {
  width: 115px;
  height: auto;
}


@media screen and (max-width: 768px) {
  .btns {
    flex-direction: column;
    gap: 20px;
  }

  .app {
    width: 94%;
    margin: 0 auto;
    padding: 10px;
    gap: 10px;
  }

  .app__infos {
    justify-content: space-between;
  }

  .app__icon img {
    width: 90px;
  }
}