@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;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* global
***********************/
html {
  box-sizing: border-box;
  font-size: 10px;
  height: 100%;
  overscroll-behavior: none;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

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

body {
  color: #555;
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 10px;
  margin: 0;
  min-height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  overflow-y: scroll;
  overscroll-behavior: none;
}

input, textarea, select, fieldset {
  font-family: inherit;
}

/* 汎用クラス
***********************/
.bold {
  font-weight: 700 !important;
}

.underline {
  text-decoration: underline !important;
  text-underline-offset: 3px !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-30 {
  margin-top: 30px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.mb-40 {
  margin-bottom: 40px !important;
}

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

.sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp {
    display: block;
  }
}

.sp-inline {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp-inline {
    display: inline;
  }
}

/* ef-container
***********************/
.ef-container {
  flex: 1;
  font-size: 14px;
  font-weight: 400;
  height: 100%;
  line-height: 1.7;
  min-width: 1000px;
}

.ef-container a,
.ef-container a:visited {
  color: #005ead;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.ef-container button {
  appearance: none;
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
  font: inherit;
  outline: none;
}

.ef-container img {
  border: none;
  height: auto;
  max-width: 100%;
  vertical-align: bottom;
}

.ef-container input[type=checkbox],
.ef-container input[type=radio] {
  display: none;
}

.ef-container table {
  width: 100%;
}

.ef-main {
  background: #fff;
  margin: 0 auto;
  padding: 10px 30px 45px;
  width: 1000px;
}

.p-header {
  background: #005ead;
  border-radius: 6px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;
  text-align: left;
  text-decoration: none;
  padding: 8px 15px;
  position: relative;
}

.p-header > .icon__pen {
  background: url('/entry/assets/img/icon-pen.png');
  display: inline-block;
  margin-right: 10px;
  height: 22px;
  width: 22px;
  vertical-align: middle;
}

.p-main-area {
  background: #fff;
  margin: 10px 0 0;
  padding: 40px 50px 50px;
}

.p-main-area.bordered {
  border-top: 3px solid #005ead;
  border-right: 1px solid #e5e5e5;
  border-left: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  padding: 37px 49px 49px;
}

.p-main-area__title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

.p-main-area__title > .icon__mail {
  background: url('/entry/assets/img/icon-mail.png') center / contain;
  display: inline-block;
  margin-right: 8px;
  height: 26px;
  width: 26px;
  vertical-align: middle;
}

.p-main-area__description {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 25px 0;
  text-align: center;
}

.p-main-area__description .lead {
  font-size: 18px;
  font-weight: 700;
}

/* フォーム内　設問のタイトル */
.panel-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 40px;
  text-align: center;
  position: relative;
}

.panel-title .question::before {
  background: url('/entry/assets/img/icon-hatena.png') no-repeat center / contain;
  content: '';
  display: inline-block;
  height: 31px;
  width: 31px;
  margin-right: 2px;
  position: relative;
  top: 0.4em;
}

.panel-title .highlight {
  color: #005cb0;
  font-size: 22px;
  margin-right: 5px;
}

.panel-title .note {
  font-size: 14px;
  font-weight: 400;
  margin-top: 10px;
}

/* 入力欄下部　注釈 */
.field-note {
  font-size: 12px;
  line-height: 1.4;
  margin: 10px 0;
}

.p-input-block {
  position: relative;
}

/* テキストボックス */
.input-text {
  appearance: none;
  color: #555;
  font-size: 16px;
  font-weight: 700;
  padding: 0 10px;
  height: 50px;
  width: 100%;
}

.input-text::placeholder {
  font-size: 14px;
}

.input-text-wrap {
  position: relative;
}

.input-text-wrap .focus-input-title {
  display: none;
  color: #005ead;
  font-size: 13px;
  font-weight: 700;
  text-align: justify;
  text-justify: inter-ideograph;
  position: absolute;
  top: 5px;
  left: 12px;
}

.input-text-wrap .input-text {
  border: 2px solid #e5e5e5;
  border-bottom: 4px solid #e5e5e5;
}

.input-text-wrap .input-text:focus {
  border-bottom: 4px solid #005cb0;
  outline: 0;
  padding-top: 20px;
  padding-bottom: 5px;
}

.input-text-wrap .input-text:focus::placeholder {
  padding-left: 1em;
}

/* 「>」付きリンク */
.arrow-link > a {
  padding: 0 0 0 15px;
  position: relative;
}

.arrow-link > a::before,
.arrow-link > a::after {
  background: #555;
  content: '';
  height: 1px;
  left: 0;
  position: absolute;
  top: 50%;
  transform-origin: right;
  width: 9px;
}

.arrow-link > a::before {
  transform: translateY(-50%) rotate(-35deg);
}

.arrow-link > a::after {
  transform: translateY(-50%) rotate(35deg);
}

/* 枠線 +「>」付きリンク */
.outlined-link {
  text-align: center;
}

.outlined-link > a {
  border: 1px solid #005ead;
  border-radius: 16px;
  display: inline-block;
  line-height: 1;
  padding: 10px 40px;
  position: relative;
  text-align: center;
  text-decoration: none;
}

.outlined-link > a::before,
.outlined-link > a::after {
  background: #005ead;
  content: '';
  position: absolute;
  height: 1px;
  width: 9px;
  top: 50%;
  right: 15px;
  transform-origin: right;
}

.outlined-link > a::before {
  transform: translateY(-50%) rotate(-35deg);
}

.outlined-link > a::after {
  transform: translateY(-50%) rotate(35deg);
}

/* ===== suggest ===== */
.suggest_list.ui-menu {
  border-radius: 0 0 10px 10px;
  max-height: 265px; /* 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; /* リストの最終行には罫線を表示しない */
}

.suggest_match {
  color: #005cb0;
}

/* ===== error ===== */
.p-error {
  color: #f34d47;
  display: none;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  margin: 10px 0;
  text-align: center;
}

.p-error:empty {
  display: none;
}

.is-error {
  background-color: #ffe5e5 !important;
}

/* ローディング表示・モーダル表示時のオーバーレイ
***********************/
body:has(.overlay.is-show) {
  overflow: hidden;
}

.overlay {
  background-color: rgba(68, 68, 68, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  visibility: hidden;
  z-index: 1000;
}

.overlay.is-show {
  opacity: 1;
  visibility: visible;
}

/* モーダル共通
***********************/
.modal-content {
  display: flex;
  flex-direction: column;
  background: #fff;
  color: #555;
  font-weight: 400;
  overflow-y: auto;
  position: relative;
  width: 820px;
  height: auto;
  max-height: min(500px, 100dvh);
}

.modal-header {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f5f5f5;
  border-bottom: 1px solid #ccc5c5;
  height: 40px;
  padding: 0 15px 0 18px;
}

.modal-header .modal-title {
  font-weight: 700;
  text-align: left;
  width: 100%;
}

.modal-header .modal-close-button {
  background-color: #e5e5e5;
  border: 1px solid #ccc5c5;
  border-radius: 3px;
  height: 20px;
  width: 20px;
  position: relative;
}

.modal-header .modal-close-button::before,
.modal-header .modal-close-button::after {
  background-color: currentColor;
  content: '';
  position: absolute;
  top: 8px;
  left: 2px;
  width: 14px;
  height: 2px;
}

.modal-header .modal-close-button::before {
  transform: rotate(-45deg);
}

.modal-header .modal-close-button::after {
  transform: rotate(45deg);
}

.modal-body {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: scroll;
}

/* header
***********************/
#ef-header {
  border-bottom: 3px solid #005ead;
  margin-bottom: 5px;
  min-width: 1000px;
  padding: 5px 0 10px;
  position: relative;
}

#ef-header h1 {
  margin: 0 auto;
  padding-left: 30px;
  width: 1000px;
}

#ef-header h1 img {
  border: none;
  height: auto;
  width: auto;
  max-width: 100%;
  margin: 0;
  vertical-align: bottom;
}

/* footer
***********************/
#ef-footer {
  font-size: 11px;
  line-height: 1.7;
  min-width: 1000px;
}

#ef-footer .security-block {
  display: flex;
  align-items: center;
  margin: 0 auto;
  padding: 0 20px;
  width: 1000px;
}

#ef-footer .icon-privacy {
  border: none;
  flex: 0 0 auto;
  height: auto;
  max-width: 84px;
  overflow: hidden;
  vertical-align: bottom;
}

#ef-footer .p-security_caption {
  flex: 1 1 auto;
  padding-left: 15px;
}

#ef-footer .addressArea {
  margin: 0 auto;
  padding: 10px 0 10px 32px;
  width: 1000px;
}

#ef-footer .copyright-block {
  background: #115fad;
  color: #fff;
  font-size: 11px;
  width: 100%;
}

#ef-footer .copyright {
  margin: 0 auto;
  padding: 5px 20px;
  width: 1000px;
}