@charset "UTF-8";
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  border: 0;
  color: inherit;
  font: inherit;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  box-sizing: border-box;
  font-size: 62.5%;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  margin: 0;
  padding: 0;
  width: 100%;
}

*, *::before, *::after {
  box-sizing: inherit;
}

body {
  color: #343a40;
  font-family: ヒラギノ角ゴシック Pro, Hiragino Kaku Gothic Pro, メイリオ, Meiryo, Osaka, ＭＳ Ｐゴシック, MS PGothic, sans-serif;
  font-size: 1.4rem;
  line-height: 1;
  min-width: 1000px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  body {
    min-height: 100dvh;
  }
}
@media screen and (max-width: 767px) {
  body {
    min-width: 100%;
  }
}

/* PC/SP 表示切り替え
***********************/
.pc {
  display: block;
}
.sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}

/* suggest
***********************/
.suggest_list.ui-menu {
  border: 1px solid #cfcfcf; /* フォーカス中の入力欄の枠線と同色を指定 */
  border-radius: 0 0 10px 10px;
  max-height: 268px; /* 5件表示できる高さ（6件以上はスクロール表示） */
  overflow-y: auto;
  overflow-x: hidden;
  padding: 1px 0; /* 5件以下のとき、最終行選択時にスクロールバーが表示されてしまうのを防ぐ */
}

.suggest_list.ui-menu .ui-state-active {
  background: #bdd7f0;
  border: none;
  margin: 0;
  color: #555;
}

.suggest_list.ui-menu .ui-menu-item-wrapper {
  padding: 0 10px;
}

.suggest_list_item {
  border-bottom: solid 1px #eee;
  font-size: 13px;
  padding: 14px 0;
  word-break: break-all;
}

.ui-state-active .suggest_list_item {
  border-bottom: solid 1px #bdd7f0; /* 選択中は罫線が目立たないように同色にする */
}

.suggest_list.ui-menu li:last-child .suggest_list_item {
  border-bottom: none; /* リストの最終行には罫線を表示しない */
}

/* 共通header
***********************/
.ef-header {
  background: #fff;
  border-top: 2px solid #00b2b3;
  border-bottom: 1px solid #dcdcdc;
  padding: 15px 0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .ef-header {
    padding: 10px 0;
  }
}
@media screen and (max-width: 767px) and (max-height: 750px) {
  .ef-header {
    padding: 7px 0;
  }
}

.ef-header img {
  height: 45px;
  vertical-align: bottom;
  width: auto;
}
@media screen and (max-width: 767px) {
  .ef-header img {
    height: 41px;
  }
}
@media screen and (max-width: 767px) and (max-height: 750px) {
  .ef-header img {
    height: 37px;
  }
}

/* 共通footer
***********************/
.ef-footer .p-securities-wrap {
  color: #555;
  margin: 0 auto;
  padding: 30px 0 20px;
  width: 1000px;
}
@media screen and (max-width: 767px) {
  .ef-footer .p-securities-wrap {
    padding: 30px 20px 20px;
    width: 100%;
  }
}

.ef-footer .p-securities {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 0 auto;
  width: 100%;
}

.p-security__icon {
  height: auto;
  width: 84px;
}

.p-security__caption {
  font-size: 11px;
  line-height: 1.5;
}

.ef-footer .corp-info-wrap {
  font-weight: bold;
  width: 100%;
  padding: 15px 0;
  background: #f5f5f5;
}
@media screen and (max-width: 767px) {
  .ef-footer .corp-info-wrap {
    padding: 15px;
  }
}

.ef-footer .corp-info {
  display: block;
  font-size: 11px;
  text-align: left;
  margin: 0 auto;
  line-height: 1.8;
  width: 1000px;
}
@media screen and (max-width: 767px) {
  .ef-footer .corp-info {
    width: 100%;
  }
}

.ef-footer .corp-info th {
  color: #00b2b3;
  width: 60px;
}

.ef-footer .copyright {
  background: #00b2b3;
  color: #fff;
  font-size: 11px;
  padding: 25px 0;
  text-align: center;
  width: 100%;
}