@charset "UTF-8";
/* ------------------------------------------------------------------------------------------------------------------ */
/* 各種要素の基底値 */
/* ------------------------------------------------------------------------------------------------------------------ */
html, body {
  width: 100%;
  height: 100%;
  font-family: "メイリオ", "Meiryo", sans-serif;
  font-size: 14px;
  line-height: 120%;
  color: #333333;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  /*  min-width: 1200px; */
}

@media screen and (max-width: 1024px) {
  html, body {
    font-size: 13px;
  }
}

@media screen and (max-width: 767px) {
  html, body {
    font-size: 13px;
  }
}

body {
  /*  background-color: #f7f7f7; */
  background-color: #dfdfdf;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

* {
  color: inherit;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

ul {
  list-style: outside none none;
}

a {
  color: #1D6CAB;
}

a.disabled {
  color: #bbbbbb;
  cursor: not-allowed;
}

a:hover {
  color: #f39c12;
}

table {
  background-color: transparent;
  border-collapse: collapse;
  border-spacing: 0;
}

input, button, select, textarea, a {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button, input, optgroup, select, textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

input:focus, button:focus, textarea:focus, select:focus {
  outline: none;
}

fieldset {
  border: solid 1px #484741;
  margin: 0.5rem 0.2rem;
  padding: 0.25rem 0.5rem;
  border-radius: 2px;
}

legend {
  padding: 0 0.25rem;
}

/* for multiple-select.js */
.ms-drop {
  z-index: 9000;
}

.ms-drop ul > li.group {
  background-color: #bebeff;
}

.ms-choice {
  background-color: #ffffff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  -webkit-box-shadow: none;
          box-shadow: none;
  height: 2.0rem;
}

.ms-choice > span {
  top: 0.2rem;
}

/* ------------------------------------------------------------------------------------------------------------------ */
/* 共通的に使用するスタイル */
/* ------------------------------------------------------------------------------------------------------------------ */
.clearfix:before, .main-title:before, .clearfix:after, .main-title:after {
  content: " ";
  /*  display:table; */
  display: block;
}

.clearfix:after, .main-title:after {
  clear: both;
}

.align-left {
  text-align: left !important;
}

.align-center {
  text-align: center !important;
}

.align-right {
  text-align: right !important;
}

.float-left {
  float: left !important;
}

.float-right {
  float: right !important;
}

/* 文字の大きさ系 */
.large {
  font-size: 1.3rem !important;
}

.large-x {
  font-size: 1.6rem !important;
}

.normal {
  font-size: 1.0rem !important;
}

.small {
  font-size: 0.85rem !important;
}

.small-x {
  font-size: 0.7rem !important;
}

.font-bold {
  font-weight: bold !important;
}

/* 文字の色系 */
.white {
  color: #ffffff;
}

.dark_gray {
  color: #484741;
}

.gray {
  color: #d2d6de;
}

.blue {
  color: #3c8dbc;
}

.green {
  color: #00a65a;
}

.orange {
  color: #f39c12;
}

.red {
  color: #dd4b39;
}

.purple {
  color: #8e44ad;
}

.yellow {
  color: #f1c40f;
}

.pink {
  color: #EA9198;
}

.cyan {
  color: #00c0ef;
}

.theme {
  color: #00008B;
}

/* 背景の色系 */
.bg-white {
  background-color: #ffffff;
}

.bg-dark_gray {
  background-color: #484741;
}

.bg-gray {
  background-color: #d2d6de;
}

.bg-blue {
  background-color: #3c8dbc;
}

.bg-green {
  background-color: #00a65a;
}

.bg-orange {
  background-color: #f39c12;
}

.bg-red {
  background-color: #dd4b39;
}

.bg-purple {
  background-color: #8e44ad;
}

.bg-yellow {
  background-color: #f1c40f;
}

.bg-pink {
  background-color: #EA9198;
}

.bg-cyan {
  background-color: #00c0ef;
}

.bg-theme {
  background-color: #00008B;
}

/* ------------------------------------------------------------------------------------------------- */
/* Main Wrapper */
/* ------------------------------------------------------------------------------------------------- */
#main-wrapper {
  width: 100%;
}

#main-wrapper::before, #main-wrapper::after {
  content: " ";
  display: table;
}

#main-wrapper::after {
  clear: both;
}

#main-wrapper {
  position: relative;
  width: 100%;
  height: auto !important;
  height: 100%;
  min-height: 100%;
}

/* ------------------------------------------------------------------------------------------------- */
/* Footer */
/* ------------------------------------------------------------------------------------------------- */
#main-footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 4.5rem;
}

#main-footer #footer-area {
  margin-top: 1.0rem;
  height: 3.5rem;
  background: #005EAE;
  color: #fff;
  padding: 0.5rem;
  font-size: 0.9rem;
  text-align: center;
}

#main-footer #kiyaku {
  margin-bottom: 0.35rem;
}

#main-footer #kiyaku a {
  font-size: 0.9rem;
  color: #fff;
  text-decoration: none;
}

/* ------------------------------------------------------------------------------------------------- */
/* Header */
/* ------------------------------------------------------------------------------------------------- */
#main-header {
  /* MARK */
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  /*
  position: relative;
*/
  z-index: 2900;
  height: 3rem;
  background: #005EAE;
  color: #ffffff;
}

#main-header .title {
  display: inline-block;
  height: 100%;
  /*    background-color: darken($theme_color, 10%); */
  background-color: #ffffff;
  /*    padding-bottom: 1px; */
  font-size: 1.2rem;
  /* margin-right: 1.0rem; */
}

#main-header .title img {
  float: left;
  height: inherit;
}

#main-header .title .company_abbreviation_area {
  float: left;
  display: block;
  background-color: #005EAE;
  height: inherit;
  padding: 0.25rem 0.25rem;
}

#main-header .title .company_abbreviation_area div {
  color: #fff;
  background-color: #00427b;
  /*
        color: darken($header_color, 10%);
        background-color: #fff;
*/
  padding: 0.6rem 0.5rem;
  border: solid 1px #fff;
  border-radius: 0.5rem;
  font-size: 1.6rem;
  font-weight: bold;
}

#main-header a {
  color: inherit;
}

.mode_label {
  display: inline-block;
  padding: 0.2rem 0.4rem;
  font-size: 0.9rem;
}

.mode_label.mail_on {
  background: #dd4b39;
}

.mode_label.maintenance_on {
  background: #00a65a;
}

/* ------------------------------------------------------------------------------------------------- */
/* NavBar Menu */
/* ------------------------------------------------------------------------------------------------- */
.navbar_menu {
  height: 100%;
  float: right;
  background-color: inherit;
}

.navbar_menu ul {
  list-style: outside none none;
  float: left;
  height: 100%;
}

.navbar_menu ul li {
  float: left;
  display: block;
  height: 100%;
  width: auto;
  position: relative;
}

.navbar_menu ul li a {
  width: 100%;
  display: block;
  height: 100%;
  padding: 1.0rem 1.0rem;
  font-size: 1.0rem;
  color: #ffffff;
  position: relative;
  text-decoration: none;
}

.navbar_menu ul li a:hover {
  background-color: #0000f1;
}

#nav_left {
  float: left;
}

#nav_right {
  float: right;
}

.btn-global-navi {
  display: none;
}

/* スマホ画面でハンバーガーメニューの形にする */
@media screen and (max-width: 767px) {
  #nav_left {
    float: initial;
    position: fixed;
    top: 0;
    right: -767px;
    width: 100%;
    height: 100%;
    padding-top: 3rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  #nav_left > ul {
    float: initial;
    height: auto;
  }
  #nav_left > ul > li {
    float: initial;
    height: auto;
    display: block;
    border-bottom: solid 1px #ffffff;
  }
  #nav_left > ul > li:nth-child(1) {
    border-top: solid 1px #ffffff;
  }
  #nav_right {
    margin-right: 3.5rem;
  }
  #nav_right span {
    display: none;
  }
  .btn-global-navi {
    display: block;
    position: fixed;
    top: 0.5rem;
    right: 0.4rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    cursor: pointer;
  }
  .btn-global-navi .icon-menu, .btn-global-navi .icon-cancel {
    font-size: 2.0rem;
  }
  .btn-global-navi .icon-cancel {
    display: none;
  }
  .btn-global-navi.open .icon-menu {
    display: none;
  }
  .btn-global-navi.open .icon-cancel {
    display: block;
  }
}

/* ------------------------------------------------------------------------------------------------- */
/* Screen Title */
/* ------------------------------------------------------------------------------------------------- */
.main-title {
  font-size: 2.0rem;
  line-height: 2.4rem;
  border-top: solid 1px #005EAE;
  background: #fff;
  /* MARK */
  margin-top: 3rem;
  /*    margin-top: 0rem; */
  margin-bottom: 0rem;
  padding: 0.5rem 0.5rem;
  /*  height: 3.6rem; */
  /* mark2 */
}

.main-title span {
  line-height: 2.4rem;
}

.main-title small {
  display: inline-block;
  font-size: 1.4rem;
  padding-left: 0.75rem;
}

.main-title button {
  float: right;
  margin-top: 0rem;
  margin-bottom: 0rem;
}

/* ------------------------------------------------------------------------------------------------- */
/* Container */
/* ------------------------------------------------------------------------------------------------- */
#main-container {
  padding: 1.0rem;
  /*  margin-bottom: 1.0rem; */
}

@media screen and (max-width: 767px) {
  #main-container {
    padding: 1.0rem 0.5rem;
  }
}

/* ------------------------------------------------------------------------------------------------- */
/* Grid layout */
/* ------------------------------------------------------------------------------------------------- */
.grid-parent {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(300px, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-auto-rows: 1fr;
  grid-gap: 0.5rem;
}

.grid-parent > .grid-child {
  overflow: auto;
  min-width: 0;
}

@media screen and (max-width: 767px) {
  .grid-parent {
    -ms-grid-columns: (minmax(300px, 1fr))[auto-fit] !important;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
  }
}

/* ------------------------------------------------------------------------------------------------- */
/* Flex Layout */
/* ------------------------------------------------------------------------------------------------- */
.flex-parent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  /* align-items: center; */
}

.flex-parent > .flex-child {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-preferred-size: auto;
      flex-basis: auto;
}

.flex-parent > .flex-child.horizontal > dt {
  padding-right: 0rem;
  display: inline;
}

.flex-parent > .flex-child.horizontal > dd {
  padding-right: 0.5rem;
  display: inline;
  font-weight: bold;
}

.flex-parent.align_left {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.flex-parent.align_left > .flex-child {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-preferred-size: auto;
      flex-basis: auto;
}

@media screen and (max-width: 767px) {
  .flex-parent {
    display: block;
    width: 100% !important;
  }
  .flex-parent > .flex-child {
    width: auto !important;
    margin: 0;
    margin-bottom: 1.0rem;
    padding: 0.5rem 0;
  }
  .flex-parent > dl.flex-child {
    border-bottom: solid 1px #aaa;
  }
  .flex-parent > dl.flex-child.horizontal {
    border-bottom: none;
    margin-bottom: 0rem;
  }
}

/* ------------------------------------------------------------------------------------------------- */
/* 画面共通の構成要素 */
/* ------------------------------------------------------------------------------------------------- */
/* Display None */
.disp_none {
  display: none !important;
}

/* セクションタイトル */
.section_title {
  font-size: 1.3rem;
  margin: 0rem;
  padding: 0.5rem 0.5rem;
}

.section_title small {
  display: inline-block;
  font-size: 1.0rem;
  padding-left: 0.75rem;
}

/* CakePHP3 FormValidation Error Meesage */
.error-message {
  display: inline-block;
  color: #dd4b39;
  font-weight: bold;
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}

.error-message::before {
  content: "\e818";
  /* icon-attention-circle */
  margin-right: 0.5rem;
  font-family: "fontello";
}

.error-message li {
  color: #dd4b39;
  font-weight: bold;
}

/* CakePHP3 Form wrapper div element */
div.input {
  display: inline-block;
}

td.block-area div.input {
  display: block;
}

div.inline-block {
  display: inline-block;
}

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

div.input > input[type="radio"], div.input input[type="checkbox"], div.input label {
  position: relative;
  bottom: -0.1rem;
  margin-right: 1.0rem;
}

/* ページングエリア */
.paginator_area {
  margin: 0.5rem 0;
}

.paginator_area .paginator_info {
  padding-left: 0.25rem;
}

.paginator_area > .paging > li {
  display: inline-block;
  margin: 0 0.1rem;
}

.paginator_area > .paging > li > a {
  display: inline-block;
  border: solid 1px #aaa;
  border-radius: 4px;
  padding: 0.25rem 0.75rem;
}

.paginator_area > .paging > li > a:hover {
  background: #fef7ec;
}

.paginator_area > .paging > li.active > a {
  background: #a5a5ff;
  text-decoration: none;
  color: #555;
  cursor: default;
}

.paginator_area > .paging > span, .paginator_area > .paging > a {
  display: inline-block;
  border: solid 1px #aaa;
  border-radius: 4px;
  padding: 0.25rem 0.75rem;
}

.paginator_area > .paging > span:hover, .paginator_area > .paging > a:hover {
  background: #fef7ec;
}

.paginator_area > .paging .disabled {
  display: none;
}

@media screen and (max-width: 767px) {
  .paginator_area .paginator_info, .paginator_area .paginator_ope {
    display: block;
    float: initial !important;
  }
  .paginator_area .paginator_info {
    margin-bottom: 0.5rem;
  }
}

/* フラッシュメッセージ */
.flash_message {
  position: fixed;
  height: auto;
  min-height: 3rem;
  left: 0;
  right: 0;
  top: 0;
  z-index: 2910;
  background: #d2d6de;
  padding: 0.6rem 1.0rem;
  font-size: 1.3rem !important;
  line-height: 1.5rem;
}

.flash_message > i {
  cursor: pointer;
}

.flash_message.success {
  position: fixed;
  height: auto;
  min-height: 3rem;
  left: 0;
  right: 0;
  top: 0;
  z-index: 2910;
  background: #00a65a;
  padding: 0.6rem 1.0rem;
  font-size: 1.3rem !important;
  line-height: 1.5rem;
  color: #ffffff;
}

.flash_message.error {
  position: fixed;
  height: auto;
  min-height: 3rem;
  left: 0;
  right: 0;
  top: 0;
  z-index: 2910;
  background: #dd4b39;
  padding: 0.6rem 1.0rem;
  font-size: 1.3rem !important;
  line-height: 1.5rem;
  color: #ffffff;
}

.flash_message.warning {
  position: fixed;
  height: auto;
  min-height: 3rem;
  left: 0;
  right: 0;
  top: 0;
  z-index: 2910;
  background: #f39c12;
  padding: 0.6rem 1.0rem;
  font-size: 1.3rem !important;
  line-height: 1.5rem;
  color: #ffffff;
}

.flash_message > ul > li {
  padding: 0.2rem 0;
}

/* 検索ボックス */
.condition_box > i.condition_box_toggle {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
  margin-top: 0rem;
  margin-right: 0.4rem;
}

.condition_box > i.condition_box_toggle::before, .condition_box > i.condition_box_toggle.open::before {
  content: '\e803';
  /* = icon-down-open */
  font-family: "fontello";
  font-size: 1.25rem;
}

.condition_box > i.condition_box_toggle.close::before {
  content: '\e801';
  /* = icon-up-open */
  font-family: "fontello";
  font-size: 1.2rem;
}

.condition_box > div {
  width: calc(100% - 24px);
}

.condition_box_toggle_responsive_open,
.condition_box_toggle_responsive_close {
  display: none !important;
}

@media screen and (max-width: 767px) {
  .condition_box_toggle_responsive_open {
    display: block !important;
    margin-top: -0.25rem !important;
  }
  .condition_box_toggle_responsive_close {
    display: block !important;
    float: right;
    font-size: 1.5rem;
  }
  .condition_box {
    display: none;
    z-index: 2800;
    position: fixed !important;
    top: 3rem;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0 !important;
    overflow: auto;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
  }
  .condition_box > i.condition_box_toggle {
    display: none;
  }
  .condition_box > div {
    width: 100%;
  }
  .condition_box div.flex-child {
    text-align: center;
    margin: auto !important;
  }
  .condition_box.close {
    -webkit-transform: translate(-1000px, 0);
            transform: translate(-1000px, 0);
  }
}

/* For floatThead Table */
.fth_wrap, .fth_wrap_for_load {
  width: 100%;
  min-height: 10px;
  height: auto;
  overflow: auto;
  position: relative;
  background: #eeeeee;
}

.fth_table, .fth_table_for_load {
  min-width: 1024px;
}

@media screen and (max-width: 767px) {
  .fth_table, .fth_table_for_load {
    min-width: 1400px;
  }
}

.marginlist {
  list-style: square;
  line-height: 2em;
}

.marginlist li {
  margin-left: 2em;
}

/* ヘルプツールチップアイコン */
.help_tooltip {
  font-size: 1.2rem !important;
  color: #f39c12 !important;
  text-decoration: none;
}

/* トップへ戻るリンク */
#goto_top {
  position: fixed;
  right: 1.0rem;
  bottom: 6.0rem;
  background-color: rgba(0, 0, 0, 0.65);
  color: #fff;
  padding: 1.0rem;
  font-size: 3.0rem;
  text-decoration: none;
  border-radius: 4px;
  display: none;
  z-index: 9999;
}

/* For responsive */
@media screen and (max-width: 767px) {
  #goto_top {
    right: 0.7rem;
    padding: 0.6rem;
    font-size: 2.0rem;
  }
}

.top-border {
  margin-top: 0.2rem;
  padding-top: 0.2rem;
  border-top: solid 1px #aaa;
}

.mock_description {
  /*  color : $color_red; */
  color: #c23321;
  font-weight: bold;
}

/* For jQuery select2 */
.select2-container--open span, .select2-container--focus span {
  border-color: #f39c12 !important;
}

/* ------------------------------------------------------------------------------------------------- */
/* 各画面 */
/* ------------------------------------------------------------------------------------------------- */
/* ログイン画面 */
.login_form th {
  background: none !important;
}

.login_form .system-title {
  text-align: center;
  font-weight: bold;
  font-size: 1.75rem;
  line-height: 1.95rem;
  margin-bottom: 1.5rem;
  color: #005EAE;
}

@media screen and (max-width: 1024px) {
  .login_form {
    width: 80% !important;
  }
  .login_form .input.radio label {
    display: block !important;
    text-align: left;
  }
  .login_form .system-title {
    font-size: 1.35rem;
    line-height: 1.5rem;
  }
}

/* 被災状況詳細・回答 */
.textarea_field {
  border: solid 1px #aaa;
  margin: 0.4rem 0;
  margin-right: 0.25rem;
  padding: 0.4rem;
  border-radius: 0.15rem;
}

.damage_report_dtl span._c.m_label {
  width: 10.0rem;
  text-align: left;
  margin: 0.25rem 0;
  border-radius: 0;
}

/* 被災状況確認依頼送信先選択 */
.ui-dialog-content ._cm_box-solid {
  background-color: #dfdfdf;
}

.ui-dialog-content ._cm_box-solid ._cm_box-body {
  height: calc(100% - 7.3rem);
  /*      background-color: #ffcccc !important; */
}

.ui-dialog-content ._cm_box-solid ._cm_box-footer {
  border-top: none;
}

.ui-dialog-content ._cm_tabs {
  height: calc(100% - 0.5rem);
}

.ui-dialog-content ._cm_tabs.vertical ._cm_tabs-menu {
  width: 10.0rem;
}

.ui-dialog-content ._cm_tabs.vertical ._cm_tabs-content {
  width: calc(100% - 10.0rem);
}

.ui-dialog-content .child_box {
  /*
    border: solid 1px #999;
    border-radius: 0.25rem;
*/
  border-bottom: solid 1px #00008B;
  padding: 0.8rem 0.8rem;
}

.ui-dialog-content .child_box select {
  width: 10rem;
}

#select_supplier_dialog_box {
  position: fixed;
  top: 1.5rem;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
}

#select_supplier_dialog_box .fth_for_tab {
  height: calc(100% - 1.0rem);
}

#select_supplier_dialog_box .fth_for_tab .fth_for_tab_inner {
  height: calc(100% - 2.0rem);
}

#select_supplier_dialog_box .fth_wrap {
  height: calc(100%);
}

#select_supplier_dialog_box .fth_wrap_for_load {
  height: calc(100%);
  border-bottom: 1px solid #ccc;
  /*
    border-top: 1px solid #ccc;
*/
}

.terms_page section,
.privacy_page section {
  margin: 0.5rem;
  margin-bottom: 1.5rem;
}

.terms_page section h3,
.privacy_page section h3 {
  font-weight: bold;
  margin-top: 0.75rem;
  margin-bottom: 0.35rem;
  font-size: 1.20rem;
  line-height: 125%;
}

.terms_page section p,
.privacy_page section p {
  line-height: 1.5rem;
}

.terms_page section ul, .terms_page section ol,
.privacy_page section ul,
.privacy_page section ol {
  list-style-type: decimal;
  padding-left: 1.5rem;
}

.terms_page section ul > li, .terms_page section ol > li,
.privacy_page section ul > li,
.privacy_page section ol > li {
  line-height: 1.5rem;
}

.terms_page section ul.parentheses_number, .terms_page section ol.parentheses_number,
.privacy_page section ul.parentheses_number,
.privacy_page section ol.parentheses_number {
  padding-left: 0.25rem;
}

.terms_page section ul.parentheses_number > li, .terms_page section ol.parentheses_number > li,
.privacy_page section ul.parentheses_number > li,
.privacy_page section ol.parentheses_number > li {
  padding-left: 1.5rem;
  text-indent: -1.5rem;
  list-style-type: none;
  list-style-position: outside;
  counter-increment: cnt;
}

.terms_page section ul.parentheses_number > li::before, .terms_page section ol.parentheses_number > li::before,
.privacy_page section ul.parentheses_number > li::before,
.privacy_page section ol.parentheses_number > li::before {
  display: marker;
  content: "(" counter(cnt) ")";
}

.privacy_page section h2 {
  font-weight: bold;
  margin-top: 0.75rem;
  margin-bottom: 1.75rem;
  font-size: 1.50rem;
  padding: 1.0rem;
  background-color: #eee;
  border-left: solid 0.5rem #005EAE;
  line-height: 125%;
}

.privacy_page section .subsec h3 {
  margin: 1.0rem 0;
  color: #005EAE;
}

.privacy_page section .subsec p {
  margin-top: 1.0rem;
  margin-bottom: 0.6rem;
}

.privacy_page section sup {
  font-size: 0.3rem;
  margin-left: 0.4rem;
  top: -1.00em;
  position: relative;
  vertical-align: baseline;
}

.privacy_page section a {
  text-decoration: none;
  color: initial;
}

.privacy_page section a::before {
  font-size: 0.5rem;
  padding: 0.2rem;
  margin-right: 0.5rem;
  color: #fff;
  background-color: #005EAE;
  width: auto;
  top: -0.2em;
  position: relative;
  vertical-align: baseline;
}

.privacy_page section a:hover {
  text-decoration: underline;
}

.privacy_page section a.pdf_link::after {
  content: '';
  background: url("./images/icon_pdf.svg") top left no-repeat;
  line-height: 1;
  display: inline-block;
  width: 18px;
  height: 20px;
  margin-bottom: 4px;
  margin-left: 8px;
  margin-right: 2px;
  vertical-align: middle;
  text-indent: 0;
  background-size: 100% auto;
}

/* ダッシュボード */
.no_data_msg {
  width: 100%;
  height: 100%;
  font-size: 1.3rem;
  padding: 2.0rem 0;
  text-align: center;
  vertical-align: middle;
  color: #888;
}

.dashboard_selector {
  margin-left: 1.0rem;
  display: inline-block;
}

/* For responsive */
@media screen and (max-width: 767px) {
  .dashboard_selector {
    margin-left: 0;
    margin-top: 0.5rem;
    display: block;
  }
}
