@charset "UTF-8";

* {
  box-sizing: border-box;
  color: #121728;
  font-family: 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro W3', 'メイリオ', 'Meiryo','MS ゴシック', sans-serif;
  line-height: 1.5;
}

.header {
  background-color: #353C51;
  padding: 40px 16px;
  display: grid;
  place-content: center;
}

.main {
  max-width: 960px;
  margin: 0 auto;
  padding: 80px 16px;
  display: grid;
  place-content: center;
  gap: 40px 0;
}

.title {
  color: #353C51;
  border-bottom: 2px solid #FD7748;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.8;
  width: max-content;
  margin: 0 auto;
}

.titlePoint {
  color: #39B2AB;
  font-family: 'Hiragino Kaku Gothic stdN', sans-serif;
  font-weight: 700;
}

.message {
  display: grid;
  gap: 24px 0;
  font-size: 16px;
  text-align: center;
}

.message::after {
  content: '';
  background: url("../img/fj_illust_ojigi.png") center no-repeat;
  background-size: 130px 182px;
  display: block;
  width: 130px;
  height: 182px;
  margin: 16px auto 0;
}

.info {
  font-size: 14px;
  text-align: center;
  background-color: #EBF7F7;
  border-radius: 12px;
  padding: 40px 80px;
  display: grid;
  gap: 20px 0;
}

.infoLink {
  color: #39B2AB;
  font-weight: 600;
  text-decoration: underline;
  display: flex;
  align-items: center;
  gap: 0 8px;
  width: max-content;
  margin: 0 auto;
}

.infoLink:hover {
  text-decoration: none;
}

.infoLink::after {
  content: '';
  background: url("../img/external_link.svg") center no-repeat;
  background-size: 20px 20px;
  display: inline-block;
  width: 20px;
  height: 20px;
}

.footer {
  background-color: #F1F4FD;
  padding: 12px 16px;
  display: grid;
  place-content: center;
}

.copyright {
  color: #353C51;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 14px;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

@media screen and (max-width: 769px) {
  .header {
    padding: 28px 16px;
  }

  .logo {
    max-width: 160px;
    height: auto;
  }

  .main {
    padding: 48px 16px;
    gap: 32px 0;
  }

  .title {
    font-size: 20px;
  }

  .message {
    font-size: 14px;
    text-align: left;
    gap: 16px 0;
  }

  .message::after {
    background-size: 107px 151px;
    width: 107px;
    height: 151px;
  }

  .info {
    text-align: center;
    padding: 20px 16px;
  }

  .pc {
    display: none;
  }

  .sp {
    display: block;
  }
}