@charset "UTF-8";

body {
  font-family: "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  min-width: 1080px;
}

section+section {
  margin-top: 50px;
}

.inner {
  width: 950px;
  margin: 0 auto;

}

.card {
  width: 100%;
  margin: 0 auto;
  padding: 40px 30px;
  background-color: #fff;
  background-color: #fafafb;
  box-shadow: 0 1px 4px rgba(9, 0, 0, .3);
  text-align: center;
}

h2 {
  font-size: 20px;
  font-weight: bold;
  border-left: 4px solid red;
  padding-left: 15px;
  margin-bottom: 20px;
}

p {
  font-size: 15px;
  line-height: 1.65;
  text-align: center;
  margin-bottom: 1.5em;
}

.image {
  max-width: 100%;
  margin-bottom: 50px;
  border: 1px solid #d3d3d3;
}

.image:last-child {
  margin-bottom: 0;
}

.image.noborder {
  border-color: transparent;
}

header {
  margin-bottom: 20px;
}

header .inner {
  height: 80px;
  display: flex;
  align-items: center;
  padding: 0;
}

header img {
  width: 185px;
  margin-left: 15px;
}

footer {
  position: relative;
  z-index: 1;
}

footer .inner {
  height: 80px;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;

}

footer .inner::after {
  display: none;
}

footer p {
  font-size: 14px;
  letter-spacing: 0.05em;
  margin: 0;
}

.back {
  position: fixed;
  right: 10px;
  bottom: 20px;
  z-index: 1;
  padding: 15px 10px;
  background-color: #fff;
  border: 1px solid #ccc;
  font-size: 14px;
  color: #00aaeb;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: underline;

}

@media (hover:hover) {
  .back:hover {
    text-decoration: none;
  }
}

@media screen and (min-width: 768px) {
  .sp {
    display: none;
  }

  .for_sp .image,
  .for_app .image {
    max-width: 312px;
  }

}

@media screen and (max-width: 767px) and (orientation: portrait) {
  body {
    min-width: auto;
  }

  p {
    margin-bottom: 1em;
  }

  .inner {
    width: 100%;
    padding: 0 15px;

  }

  .card {
    padding: 20px 20px 20px;
  }

  .image {
    width: 100%;
  }

  header .inner {
    height: calc(120 / 750 * 375px);
  }

  header img {
    width: calc(246 / 750 * 375px);
  }


  footer .inner {
    height: calc(100 / 750 * 100vw);
  }

  footer p {
    font-size: calc(22 / 750 * 100vw);
  }
}