/*文字間詰め*/
p,
h1,
h2,
h3,
a,
label,
.title {
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
}

#bnr {
  display: none;
}

.download {
  position: absolute;
  right: 3%;
  top: 5vh;
  background: hwb(0deg 100% 0% / 80%);
  width: 64%;
  padding: 5em 3em;
  height: 90vh;
}

.dl_ttl {
  margin-top: 1em;
}

.dlbtn_ttl {
  margin: 1em 0 1em 0;
}

.field_set {
  width: 80%;
  margin: auto;
  text-align: center;
}

#field_link {
}

.flex_box2 {
  flex-wrap: wrap;
  display: flex;
  justify-content: space-between;
}

.field_box {
  width: 35%;
  margin: 0.5em auto;
}

.field_box a {
  border: 1px solid #000;
  font-size: 140%;
  height: 100%;
  width: 100%;
  padding: 5%;
  display: flex;
  align-items: center;
  justify-content: center;
  webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

.field_box a h5 {
  font-size: 100%;
}

.field_box a:hover {
  transform: scale(1.05);
  background: #002665;
  color: #fff;
  filter: drop-shadow(1px 1px 2px #555);
  webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

.list_bk {
  width: 40%;
  margin: 3em auto 0 auto;
  font-size: 120%;
  line-height: 140%;
}

.list_bk a {
  width: 100%;
  height: 5em;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #555;
  webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

.list_bk a:hover {
  transform: scale(1.05);
  background: #002665;
  color: #fff;
  filter: drop-shadow(1px 1px 2px #555);
  webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

#sub_mark h1 {
  width: 80%;
  text-align: center;
}
/***********************************************************************/

/* --- レスポンシブ切替 ELITEBOOK --- */
@media screen and (max-width: 1532px) {
  .field_set {
    width: 100%;
  }

  .pc {
    display: none;
  }
  .dlbtn_ttl {
    font-size: 140%;
  }
  .list_bk {
    margin-top: 2em;
  }
  .list_bk a {
    height: 3em;
  }
}
/***********************************************************************/
/* --- レスポンシブ切替 Tablet --- */
@media (min-width: 1025px) {
  #sub_mark p {
    font-size: 4em;
    color: #097fe3;
  }
}
/***********************************************************************/
/* --- レスポンシブ切替 スマホ --- */
@media (max-width: 480px) {
  #field_link {
    padding: 10% 5%;
    margin: 20% 0;
  }

  .field_box {
    width: 100%;
    height: 25vw;
    line-height: 210%;
  }

  .field_box a {
    padding: 5%;
  }
}

/*DL_FILE設定*/
#downloadPdfBtn {
  background-color: #4dc4ff;
  /* 水色 */
  color: #ffffff;
  /* 文字色 */
  border: none;
  /* 枠線なし */
  padding: 12px 24px;
  /* 余白 */
  font-size: 16px;
  /* 文字サイズ */
  border-radius: 6px;
  /* 角丸 */
  cursor: pointer;
  /* カーソルをポインタに */
  transition: background-color 0.3s ease, opacity 0.3s ease;
  display: inline-block;
  filter: drop-shadow(2px 2px 3px #999);
}

#downloadPdfBtn:hover {
  background-color: #26b3f5;
  filter: drop-shadow(1px 1px 2px #777);
  /* ホバー時濃い水色 */
}

#downloadPdfBtn:active {
  opacity: 0.7;
  /* 押した時に少し透明 */
}
