@charset "UTF-8";
/*BASE*/
@import url(base/css-wipe.css);
@import url(base/iconmonstr-iconic-font.min.css);
* {
  box-sizing: border-box;
}

*:after,
*:before {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

*:hover {
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

html {
  font-size: 62.5%;
  -ms-overflow-style: transparent;
  -webkit-tap-highlight-color: transparent;
  background: #FFF;
  color: #11202C;
}

body {
  margin: 0;
  padding: 0;
  min-width: 320px;
  height: 100%;
  position: relative;
  scroll-behavior: smooth;
  background: #FFF;
  font-family: 'ヒラギノ角ゴ ProN W3', HiraKakuPro-W3, 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', sans-serif;
  font-size: 1.5rem;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  font-weight: 300;
  letter-spacing: .5px;
  color: #2E2E27;
  word-break: break-all;
}

@-ms-viewport {
  width: device-width;
}
p {
  line-height: 1.75;
}

a {
  text-decoration: none;
}

a:link,
a:visited {
  color: #0099EF;
}

a:hover {
  color: rgba(0, 153, 239, 0.5);
  cursor: pointer;
}

input,
button,
optgroup,
textarea,
select {
  margin: 0;
  font-family: 'メイリオ', Meiryo, 'ヒラギノ角ゴ ProN W3', HiraKakuPro-W3, 'ＭＳ Ｐゴシック', sans-serif;
  font-size: 1.5rem;
  line-height: 1;
}

input,
button,
textarea,
select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
  border: 0;
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 0.1rem dotted ButtonText;
}

progress {
  display: inline-block;
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[role="button"] {
  cursor: pointer;
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  cursor: pointer;
}

[hidden] {
  display: none !important;
}

::placeholder {
  color: #989898;
}

/* text-align */
.tx_left {
  text-align: left;
}

.tx_right {
  text-align: right;
}

.tx_center {
  text-align: center;
}

/* Hide and display   */
.hidden {
  display: none !important;
}

.display {
  display: block !important;
}

@media screen and (max-width: 1023px) {
  .hidden_pc {
    display: block;
  }
}
@media screen and (min-width: 1024px) {
  .hidden_pc {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  .hidden_sp {
    display: none !important;
  }
}
@media screen and (min-width: 768px) {
  .hidden_sp {
    display: block;
  }
}

/* Alignment adjustment */
.anchor {
  margin-top: -100px;
  padding-top: 100px;
}

@media screen and (max-width: 1023px) {
  .hidden_left {
    animation-name: RightToLeftHide;
    animation-duration: .5s;
  }
}

@keyframes RightToLeft {
  0% {
    transform: translateX(20rem);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes RightToLeftHide {
  0% {
    transform: translateX(20rem);
    opacity: 1;
  }
  100% {
    transform: translateX(0);
    opacity: 0;
  }
}
@keyframes LeftToRight {
  0% {
    transform: translateX(-20rem);
  }
  100% {
    transform: translateX(0);
  }
}
/* margin */
.mt2 {
  margin-top: 2rem !important;
}

/*LAYOUT*/
/*
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::

outline

:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
*/
/*
---------------------------

header

---------------------------
*/
.col_header {
  width: 100%;
  position: fixed;
  z-index: 99999;
  background: #0099EF;
  border-bottom: 1px solid #0089d6;
  box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.25);
}
.col_header .header {
  min-width: 320px;
  max-width: 1200px;
  padding-left: 1rem;
  padding-right: 1rem;
  margin: 0 auto;
  height: 5rem;
  position: relative;
}
.col_header.header--unpinned {
  -webkit-transform: translateY(-150%);
  transform: translateY(-150%);
  transition: .3s;
}
.col_header.header--fix {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  transition: .3s;
}

/*
---------------------------

contents

---------------------------
*/
.col_body {
  min-width: 320px;
  max-width: 1200px;
  padding-left: 1rem;
  padding-right: 1rem;
  margin: 0 auto;
  height: 100%;
  padding-top: 5rem;
  padding-bottom: 5rem;
  text-align: left;
}

/*
::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::

col block

::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
*/
.col2, .col3 {
  display: flex !important;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.li.col2, .li.col3 {
  display: flex;
  align-items: center;
  margin-right: 0;
}

.col2 .li {
  flex-basis: 49%;
}

.col3 .li {
  flex-basis: 33%;
}

/*
-------------------------------------

logo

-------------------------------------
*/
.header_logo {
  display: inline-block;
  padding-top: 1rem;
  font-family: 'Sulphur Point', sans-serif;
  font-size: 3.6rem;
  letter-spacing: 0.1rem;
  color: #FFF;
}
.header_logo .header_logo_img {
  display: block;
  margin: 0 auto;
  width: auto;
  height: 2.25rem;
}
@media screen and (min-width: 768px) {
  .header_logo .header_logo_img {
    height: 2.5rem;
  }
}
@media screen and (min-width: 1024px) {
  .header_logo .header_logo_img {
    margin-left: 0 !important;
  }
}
@media screen and (min-width: 1200px) {
  .header_logo .header_logo_img {
    height: 3rem;
  }
}

/*
-------------------------------------

global navigation button

-------------------------------------
*/
.header_nav_ico {
  width: 5rem;
  height: 5rem;
  position: absolute;
  top: 0;
  right: 0;
}
.header_nav_ico .im {
  position: absolute;
  margin: 0;
  padding: 1.25rem 0 0 1.25rem;
  color: #FFF;
  font-size: 2.8rem;
  line-height: 1;
}
.header_nav_ico:hover {
  transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  background-color: #56c2ff;
}
@media screen and (min-width: 1024px) {
  .header_nav_ico {
    cursor: pointer;
    display: none;
  }
}

/*
--------------------------------------------------------------------------

pulldown menu : smartphone / tablet

--------------------------------------------------------------------------
*/
@media screen and (max-width: 1023px) {
  .header_right {
    width: 28rem;
    height: 100vh;
    background: #0089d6;
    position: fixed;
    top: 5rem;
    right: 0;
    animation-name: RightToLeft;
    animation-duration: .2s;
  }
  .header_right * {
    color: #FFF !important;
  }
  .header_right .header_link li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  }
  .header_right .header_link li .header_link_inner {
    display: block;
    width: 100%;
    height: 4.75rem;
    line-height: 1;
    padding-left: 2rem;
    padding-top: 1.25rem;
    font-size: 1.8rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .header_right .header_link li .header_link_inner .im.im-angle-down,
  .header_right .header_link li .header_link_inner .im.im-angle-up {
    display: none;
  }
  .header_right .header_link li .header_link_inner::before {
    padding-right: 1.5rem;
    font-size: 3rem;
  }
  .header_right .header_link li .header_link_inner.link_client::before {
    font-family: 'iconmonstr-iconic-font';
    content: '\e092';
    vertical-align: -0.65rem;
  }
  .header_right .header_link li .header_link_inner.link_account::before {
    font-family: 'iconmonstr-iconic-font';
    content: '\e05b';
    vertical-align: -0.75rem;
  }
  .header_right .header_link li .header_link_inner.link_user::before {
    font-family: 'iconmonstr-iconic-font';
    content: '\e091';
    vertical-align: -0.75rem;
  }
  .header_right .header_link li .header_link_sub {
    display: block;
    width: 100%;
    height: 4.75rem;
    line-height: 1;
    padding-left: 4.1rem;
    padding-top: 1.5rem;
    font-size: 1.6rem;
  }
  .header_right .header_link li .header_link_sub::before {
    font-family: 'iconmonstr-iconic-font';
    content: '\e001';
    padding-right: 1.5rem;
    font-size: 1rem;
  }
  .header_right .header_link li.header_pulldown li:last-of-type {
    border-bottom: 0;
  }
}
/*
--------------------------------------------------------------------------

pulldown menu : pc

--------------------------------------------------------------------------
*/
@media screen and (min-width: 1024px) {
  .header_right {
    display: block;
    width: 42.5rem;
    height: 5rem;
    position: absolute;
    top: 0;
    right: 0;
  }
  .header_right * {
    color: #FFF !important;
  }
  .header_right .header_link {
    width: 41.5rem;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    /* サブメニューは非表示 */
  }
  .header_right .header_link li .header_link_sub:not(.pulldown) {
    display: none;
  }
  .header_right .header_link li .header_link_inner:not(.link_user) {
    position: relative;
    display: inline-block;
    height: 3.75rem;
    line-height: 1;
    margin-top: 0;
    padding: 1.75rem 0.25rem 0 0.1rem;
    text-align: center;
  }
  .header_right .header_link .link_client {
    width: 6.75rem;
    margin-right: 1rem;
  }
  .header_right .header_link .link_account {
    width: 11.5rem;
    margin-right: 1rem;
  }
  .header_right .header_link .link_download {
    width: 10rem;
    margin-right: 3rem;
  }
  .header_right .header_link .link_user {
    display: block;
    width: 19.5rem;
    margin-top: 1.25rem;
    padding: 0.2rem 2rem 0 0.1rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    position: relative;
    cursor: pointer;
  }
  .header_right .header_link .link_user:hover {
    opacity: 0.5;
  }
  .header_right .header_link .link_user::before {
    font-family: 'iconmonstr-iconic-font';
    content: '\e091';
    vertical-align: -0.5rem;
    padding-right: 0.65rem;
    font-size: 2.1rem;
    line-height: 1;
  }
  .header_right .header_link .link_user .im {
    font-size: 1.2rem;
    position: absolute;
    right: 0;
    top: 0.65rem;
  }
  .header_right .header_link .header_pulldown {
    display: block;
    width: 20.5rem;
    padding: 0.5rem 2rem 0.75rem;
    position: absolute;
    top: 5rem;
    right: 1rem;
    background: #0099EF;
  }
  .header_right .header_link .header_pulldown li {
    padding-top: 0.25rem;
    padding-bottom: 0.5rem;
    line-height: 1.5;
  }
  .header_right .header_link .header_pulldown li .header_link_sub {
    color: #FFF;
    text-decoration: none;
    font-size: 1.5rem;
  }
  .header_right .header_link .header_pulldown li .header_link_sub:hover {
    opacity: 0.5;
  }
  .header_right .header_link .header_pulldown li .header_link_sub::before {
    font-family: 'iconmonstr-iconic-font';
    content: '\e001';
    padding-right: 1rem;
    font-size: 1rem;
    color: #FFF;
  }
  .header_right .header_link .header_pulldown li .header_link_sub:hover {
    color: #56c2ff;
    transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
  }
  .header_right .header_link .header_pulldown li .header_link_sub:hover .im-angle-right {
    color: #56c2ff;
  }
  .header_right .header_link .hidden {
    display: block !important;
    opacity: 0;
    animation-name: BtmToTop;
    animation-duration: .2s;
    pointer-events: none;
  }
  .header_right .header_link .display {
    display: block;
    animation-name: TopToBtm;
    animation-duration: .2s;
    pointer-events: auto;
  }
  .header_right .nav_underline {
    background: #FFF;
    height: 2px;
    display: block;
    position: absolute;
    left: 0;
  }
}
@keyframes TopToBtm {
  0% {
    transform: translateY(-5rem);
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes BtmToTop {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    transform: translateY(-5rem);
    opacity: 0;
  }
}
/*MODULE*/
/*
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::

title

:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
*/
.heading_type1 {
  display: block;
  margin-bottom: 1.75rem;
  padding-top: 2.5rem;
  position: relative;
  vertical-align: bottom;
  font-size: 2.6rem;
  color: #11202C;
}

/*
--------------------------------------------------

second title

--------------------------------------------------
*/
.heading_type2 {
  width: 100%;
  border-top: 0.5rem solid #2d3033;
  color: #2d3033;
  margin: 3rem 0 0;
  padding: 2.25rem 0.25rem 2.5rem;
  font-size: 2.1rem;
}

/*
--------------------------------------------------

modal title

--------------------------------------------------
*/
.heading_type3 {
  display: block;
  width: 100%;
  margin-bottom: 2rem;
  color: #2d3033;
  font-size: 2.1rem;
  text-align: center;
}

/*
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::

フォーム

::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
*/
.tbl_form {
  border-collapse: separate;
  border-spacing: 0 0.5rem;
  width: 100%;
  max-width: 100%;
}
.tbl_form th,
.tbl_form td {
  display: block;
  vertical-align: middle;
  text-align: left;
  line-height: 1;
  font-size: 1.6rem;
}
@media screen and (min-width: 768px) {
  .tbl_form th,
  .tbl_form td {
    display: table-cell;
    height: 3.5rem;
    padding-left: 1rem;
    font-size: 1.5rem;
  }
}
.tbl_form th {
  width: 100%;
  padding: 0.65rem 0.25rem 0 0;
}
@media screen and (min-width: 768px) {
  .tbl_form th {
    width: 24rem;
    background: #E7EDF1;
    border: 1px solid #c0d0da;
    padding: 1.35rem 0.25rem 1.25rem 1rem;
    vertical-align: top;
    letter-spacing: 0;
    font-feature-settings: "palt";
  }
}
.tbl_form td {
  padding: 1rem 0 1.5rem;
}
@media screen and (min-width: 768px) {
  .tbl_form td {
    padding: 0.5rem 0 0.5rem 1.25rem;
  }
}
.tbl_form td .tx_note {
  position: relative;
  padding: 0 0 0.75rem 1.75rem;
  font-size: 1.2rem;
  line-height: 1.25;
}
.tbl_form td .tx_note::before {
  display: block;
  position: absolute;
  top: -0.15rem;
  left: 0;
  content: "※";
  font-size: 1.5rem;
}
@media screen and (min-width: 768px) {
  .tbl_form td .tx_note::before {
    top: 0;
  }
}
.tbl_form td .tbl_form_inner {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-flow: row wrap;
}
.tbl_form td .tbl_form_inner dt {
  padding-top: 1.75rem;
  padding-right: 1rem;
  text-align: right;
}
.tbl_form td .tbl_form_inner dd {
  margin-top: 0.5rem;
}
.tbl_form td .w13 dt {
  flex-basis: 13rem;
}
.tbl_form td .w13 dd {
  flex-basis: calc(100% - 13rem);
}
.tbl_form td .w7 dt {
  flex-basis: 7rem;
}
.tbl_form td .w7 dd {
  flex-basis: calc(100% - 7rem);
}

/*
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::

検索フォーム

::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
*/
.tbl_form_search {
  border-collapse: separate;
  border-spacing: 0 0.5rem;
  width: 100%;
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .tbl_form_search {
    width: 65%;
  }
}
.tbl_form_search th,
.tbl_form_search td {
  height: 3.5rem;
  padding-left: 1rem;
  font-size: 1.5rem;
}
@media screen and (min-width: 768px) {
  .tbl_form_search th,
  .tbl_form_search td {
    height: 4rem;
    padding-left: 1.5rem;
  }
}
.tbl_form_search th {
  width: 13.25rem;
  background: #E7EDF1;
  border: 1px solid #c0d0da;
  padding-top: 1.1rem;
  font-weight: normal;
}
@media screen and (min-width: 768px) {
  .tbl_form_search th {
    width: 17rem;
  }
}
.tbl_form_search td {
  width: calc(100% - 13rem);
  padding-left: 1rem;
}
@media screen and (min-width: 768px) {
  .tbl_form_search td {
    vertical-align: middle;
  }
}

/*
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::

表示

::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
*/
/*
--------------------------------------------------

カード展開したときに項目と線がある

--------------------------------------------------
*/
.tbl_display_line {
  border-collapse: collapse;
  background: #FFF;
  width: 100%;
  max-width: 100%;
  /* PC */
}
.tbl_display_line th, .tbl_display_line td:not(.td_pagination) {
  font-size: 1.5rem;
}
.tbl_display_line .td_pagination {
  text-align: right;
}
@media screen and (min-width: 768px) {
  .tbl_display_line tr:nth-child(2n) {
    background: #f7f9fa;
  }
  .tbl_display_line th, .tbl_display_line td:not(.td_pagination) {
    border: 1px solid #989898;
    text-align: left;
  }
  .tbl_display_line th {
    background: #E7EDF1;
    padding: 1rem 0.25rem;
    text-align: center;
  }
  .tbl_display_line td:not(.td_pagination) {
    padding: 1.15rem 0.25rem 1.25rem 0.5rem;
  }
  .tbl_display_line td:not(.td_pagination).td_tel {
    width: 13.5rem;
    text-align: center;
  }
  .tbl_display_line td:not(.td_pagination).td_btn {
    width: 10.5rem;
    padding: 0.25rem;
    text-align: center;
  }
  .tbl_display_line td:not(.td_pagination).td_btn_single {
    width: 5rem;
    padding: 0.25rem;
    text-align: center;
  }
  .tbl_display_line td:not(.td_pagination) .card_tag {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .tbl_display_line .thead {
    display: none;
  }
  .tbl_display_line tr {
    display: block;
    border-bottom: 1rem solid #FFF;
  }
  .tbl_display_line tr:not(.tr_pagination) {
    border-top: 1px solid #989898;
  }
  .tbl_display_line tr td {
    display: block;
    width: 100%;
  }
  .tbl_display_line tr td:not(.td_pagination):not(.td_btn) {
    min-height: 3.5rem;
    border-top: 1px solid #FFF;
    border-right: 1px solid #989898;
    border-left: 1px solid #989898;
    border-bottom: 1px solid #989898;
    background-color: #E7EDF1;
    line-height: 1;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
  }
  .tbl_display_line tr td:not(.td_pagination):not(.td_btn) .card_tag {
    display: inline-block;
    flex-basis: 32%;
    padding: 1rem 0.5rem 1rem 0.75rem;
    letter-spacing: 0;
    font-feature-settings: "palt";
  }
  .tbl_display_line tr td:not(.td_pagination):not(.td_btn) .card_val {
    display: inline-block;
    flex-basis: 68%;
    padding: 1rem 0.5rem 1rem 0.75rem;
    background: #FFF;
    border-left: 1px solid #989898;
  }
  .tbl_display_line tr td.td_btn {
    background: #FFF;
    padding-top: 1rem;
    padding-bottom: 1rem;
    text-align: right;
  }
}

/*
--------------------------------------------------

カード展開したときに項目と線がない

--------------------------------------------------
*/
.tbl_display_noline {
  border-collapse: collapse;
  background: #FFF;
  width: 100%;
  max-width: 100%;
  /* PC */
}
.tbl_display_noline th, .tbl_display_noline td:not(.td_pagination) {
  font-size: 1.5rem;
}
.tbl_display_noline .td_pagination {
  text-align: right;
}
@media screen and (min-width: 768px) {
  .tbl_display_noline tr:nth-child(2n) {
    background: #f7f9fa;
  }
  .tbl_display_noline th, .tbl_display_noline td:not(.td_pagination) {
    border: 1px solid #989898;
    text-align: left;
  }
  .tbl_display_noline th {
    background: #E7EDF1;
    padding: 1rem 0.25rem;
    text-align: center;
  }
  .tbl_display_noline td:not(.td_pagination) {
    padding: 1.15rem 0.25rem 1.25rem 0.5rem;
  }
  .tbl_display_noline td:not(.td_pagination).td_tel {
    width: 13.5rem;
    text-align: center;
  }
  .tbl_display_noline td:not(.td_pagination).td_btn {
    width: 10.5rem;
    padding: 0.25rem;
    text-align: center;
  }
  .tbl_display_noline td:not(.td_pagination).td_btn_single {
    width: 5rem;
    padding: 0.25rem;
    text-align: center;
  }
  .tbl_display_noline td:not(.td_pagination) .card_tag {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .tbl_display_noline .thead {
    display: none;
  }
  .tbl_display_noline tr {
    display: block;
    border-bottom: 1rem solid #FFF;
  }
  .tbl_display_noline tr td {
    display: block;
    width: 100%;
  }
  .tbl_display_noline tr td:not(.td_pagination):not(.td_btn):not(:empty) {
    line-height: 1.25;
    border-left: 1px solid #989898;
    border-right: 1px solid #989898;
    padding-top: 0.5rem;
    padding-right: 0.5rem;
    padding-bottom: 0.5rem;
    padding-left: 1rem;
  }
  .tbl_display_noline tr td:not(.td_pagination):not(.td_btn):not(:empty):first-of-type {
    padding-top: 1.5rem;
    border-top: 1px solid #989898;
  }
  .tbl_display_noline tr td.td_btn {
    padding-top: 1rem;
    padding-bottom: 1rem;
    text-align: right;
  }
  .tbl_display_noline tr td.border_bottom {
    padding-bottom: 1.5rem !important;
    border-left: 1px solid #989898;
    border-right: 1px solid #989898;
    border-bottom: 1px solid #989898;
  }
}

/*
--------------------------------------------------

展開しない

--------------------------------------------------
*/
.tbl_display_changeless {
  border-collapse: collapse;
  background: #FFF;
  width: 100%;
  max-width: 100%;
  /* PC */
}
.tbl_display_changeless th, .tbl_display_changeless td:not(.td_pagination) {
  font-size: 1.5rem;
}
.tbl_display_changeless .td_pagination {
  text-align: right;
}
@media screen and (min-width: 768px) {
  .tbl_display_changeless tr:nth-child(2n) {
    background: #f7f9fa;
  }
  .tbl_display_changeless th, .tbl_display_changeless td:not(.td_pagination) {
    border: 1px solid #989898;
    text-align: left;
  }
  .tbl_display_changeless th {
    background: #E7EDF1;
    padding: 1rem 0.25rem;
    text-align: center;
  }
  .tbl_display_changeless td:not(.td_pagination) {
    padding: 1.15rem 0.25rem 1.25rem 0.5rem;
  }
  .tbl_display_changeless td:not(.td_pagination).td_tel {
    width: 13.5rem;
    text-align: center;
  }
  .tbl_display_changeless td:not(.td_pagination).td_btn {
    width: 10.5rem;
    padding: 0.25rem;
    text-align: center;
  }
  .tbl_display_changeless td:not(.td_pagination).td_btn_single {
    width: 5rem;
    padding: 0.25rem;
    text-align: center;
  }
  .tbl_display_changeless td:not(.td_pagination) .card_tag {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .tbl_display_changeless tr:nth-child(2n) {
    background: #f7f9fa;
  }
  .tbl_display_changeless th, .tbl_display_changeless td:not(.td_pagination) {
    border: 1px solid #989898;
    text-align: left;
  }
  .tbl_display_changeless th {
    background: #E7EDF1;
    padding: 1rem 0.25rem;
    text-align: center;
  }
  .tbl_display_changeless td:not(.td_pagination) {
    padding: 1.15rem 0.25rem 1.25rem 0.5rem;
  }
  .tbl_display_changeless td:not(.td_pagination).td_btn_single {
    width: 5rem;
    padding: 0.25rem;
    text-align: center;
  }
}

/*
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::

左に項目名がある表示テーブル（2カラム）

::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
*/
.tbl_dl_2col {
  border-left: 1px solid #989898;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.tbl_dl_2col > dt:nth-of-type(-n+2), .tbl_dl_2col > dd:nth-of-type(-n+2) {
  border-top: 1px solid #989898;
}
@media screen and (max-width: 767px) {
  .tbl_dl_2col > dt:nth-of-type(2), .tbl_dl_2col > dd:nth-of-type(2) {
    border-top: none;
  }
  .tbl_dl_2col > dt:empty, .tbl_dl_2col > dd:empty {
    border-top: none;
    border-bottom: none;
  }
}
.tbl_dl_2col > dt, .tbl_dl_2col > dd {
  border-bottom: 1px solid #989898;
}
.tbl_dl_2col > dt:not(:empty), .tbl_dl_2col > dd:not(:empty) {
  border-right: 1px solid #989898;
  padding: 1rem 0.5rem 1.25rem 0.75rem;
}
@media screen and (min-width: 768px) {
  .tbl_dl_2col > dt:not(:empty), .tbl_dl_2col > dd:not(:empty) {
    padding: 1.5rem 0.5rem 1.5rem 1rem;
  }
}
.tbl_dl_2col > dt {
  width: 32%;
  letter-spacing: 0;
  font-feature-settings: "palt";
}
@media screen and (min-width: 768px) {
  .tbl_dl_2col > dt {
    width: 17rem;
  }
}
.tbl_dl_2col > dt:not(:empty) {
  background-color: #E7EDF1;
}
.tbl_dl_2col > dd {
  width: 68%;
}
@media screen and (min-width: 768px) {
  .tbl_dl_2col > dd {
    width: calc(50% - 17rem);
  }
  .tbl_dl_2col > dd.dd_wide {
    width: calc(100% - 17rem);
  }
}
.tbl_dl_2col > dd .tbl_display_inner {
  margin: -1rem -0.5rem -1.25rem -0.75rem;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-flow: row wrap;
}
@media screen and (min-width: 768px) {
  .tbl_dl_2col > dd .tbl_display_inner {
    margin: -1.5rem -0.5rem -1.5rem -1rem;
  }
}
.tbl_dl_2col > dd .tbl_display_inner dt, .tbl_dl_2col > dd .tbl_display_inner dd {
  padding: 0.75rem;
  letter-spacing: 0;
  font-feature-settings: "palt";
}
@media screen and (min-width: 768px) {
  .tbl_dl_2col > dd .tbl_display_inner dt, .tbl_dl_2col > dd .tbl_display_inner dd {
    padding: 1rem;
    letter-spacing: .5px;
    font-feature-settings: "initial";
  }
}
.tbl_dl_2col > dd .tbl_display_inner dt:not(:last-of-type), .tbl_dl_2col > dd .tbl_display_inner dd:not(:last-of-type) {
  border-bottom: 1px solid #989898;
}
.tbl_dl_2col > dd .tbl_display_inner dt {
  flex-basis: 10rem;
  border-right: 1px solid #989898;
  background: #E7EDF1;
}
@media screen and (min-width: 768px) {
  .tbl_dl_2col > dd .tbl_display_inner dt {
    flex-basis: 15rem;
  }
}
.tbl_dl_2col > dd .tbl_display_inner dd {
  flex-basis: calc(100% - 10rem);
}
@media screen and (min-width: 768px) {
  .tbl_dl_2col > dd .tbl_display_inner dd {
    flex-basis: calc(100% - 15rem);
  }
}

/*
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::

左に項目名がある表示テーブル（1カラム）

::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
*/
.tbl_display_1c {
  margin-top: 2rem;
  border-collapse: collapse;
  width: 100%;
  max-width: 100%;
}
.tbl_display_1c th,
.tbl_display_1c td {
  border: 1px solid #989898;
  padding: 1.5rem 0.5rem 1.5rem 1rem;
  text-align: left;
}
.tbl_display_1c th {
  width: 16.5rem;
  background: #E7EDF1;
}
.tbl_display_1c td {
  vertical-align: bottom;
}

/*
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::

ドットリスト

::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
*/
.list_disc {
  margin-top: 2rem;
  margin-left: 0.25rem;
}
.list_disc li {
  position: relative;
  padding-left: 2.25rem;
  line-height: 2em;
}
.list_disc li:before {
  font-family: 'iconmonstr-iconic-font';
  content: '\e050';
  font-size: 1.65rem;
  position: absolute;
  top: 0.1rem;
  left: 0;
  color: #0099ef;
}

/*
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::

コントロール

::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
*/
.form_control_xxs,
.form_control_xs,
.form_control_s,
.form_control_m,
.form_control_l, .form_control_textarea {
  display: inline-block;
  height: 4rem;
  background-color: #FFF;
  background-image: none;
  border: 1px solid #989898;
  box-shadow: 0;
  padding: 0.3em 0.75em;
  color: #11202C;
  line-height: 1.42857;
  transition: border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s;
  width: auto;
  font-size: 1.5rem;
}
[readonly].form_control_xxs,
[readonly].form_control_xs,
[readonly].form_control_s,
[readonly].form_control_m,
[readonly].form_control_l, [readonly].form_control_textarea {
  background: none;
  border-color: #FFF;
  opacity: 1;
  box-shadow: none;
  padding-left: 0;
}
[disabled].form_control_xxs,
[disabled].form_control_xs,
[disabled].form_control_s,
[disabled].form_control_m,
[disabled].form_control_l, [disabled].form_control_textarea {
  cursor: not-allowed;
  background-color: #E7EDF1;
  border-color: #989898;
  color: #989898;
  opacity: 1;
}

.form_control_xxs,
.form_control_xs,
.form_control_s,
.form_control_m,
.form_control_l {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .form_control_xxs {
    width: 6.5rem;
  }

  .form_control_xs {
    width: 20%;
  }

  .form_control_s {
    width: 40%;
  }

  .form_control_m {
    width: 80%;
  }
}
.is_hankaku {
  ime-mode: disabled;
}

.is_password {
  vertical-align: 0.65rem;
  margin-right: -4rem;
}

/*
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::

label

:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
*/
.label, .radio_wrap, .check_wrap {
  display: inline-block;
  padding: 0.5rem 1.25rem 0 0;
  cursor: pointer;
}

/*
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::

radio

:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
*/
.radio_icon {
  display: inline-block;
  vertical-align: middle;
}

.radio_icon:before {
  font-family: iconmonstr-iconic-font;
  content: "\e02b";
  color: #5d6369;
  font-size: 2.1rem;
  margin-right: 0.25rem;
}

input[type=radio] {
  display: none;
}

input[type=radio]:checked + .radio_icon:before {
  font-family: iconmonstr-iconic-font;
  content: "\e029";
  color: #0099EF;
  font-size: 2.1rem;
  margin-right: 0.25rem;
}

/*
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::

checkbox

:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
*/
.chk_icon {
  display: inline-block;
  vertical-align: -1rem;
}

input[type=checkbox] {
  display: none;
}

.chk_icon:before {
  font-family: iconmonstr-iconic-font;
  content: "\e028";
  font-size: 3rem;
  color: #5d6369;
  margin-right: 1rem;
}

input[type=checkbox]:checked + .chk_icon:before {
  font-family: iconmonstr-iconic-font;
  content: "\e026";
  color: #0099EF;
  font-size: 3rem;
  margin-right: 1rem;
}

/*
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::

textarea

:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
*/
.form_control_textarea {
  width: 100%;
  min-height: 10rem;
  resize: none;
}

/*
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::

select

:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
*/
.form_control_select {
  background-color: #FFF;
  background-image: none;
  border: 1px solid #989898;
  border-radius: 0;
  min-width: 8rem;
  height: 4.5rem;
  line-height: 4.5rem;
  padding: 0 3rem 0 0.75rem;
  text-align: left;
  color: #11202C;
}

.form_control_select[multiple] {
  height: auto !important;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.form_control_select[disabled] {
  background-color: #E7EDF1;
  color: #989898;
}

select::-ms-expand {
  display: none;
}

/*
---------------------------

select single

---------------------------
*/
.form_control_selectwrap:after {
  font-family: iconmonstr-iconic-font;
  content: "\e003";
  font-size: 1rem;
  position: relative;
  color: #5d6369;
  margin-left: -2.5rem;
  padding-top: 0.8rem;
  display: inline-block;
}

/*
---------------------------

select multiple

---------------------------
*/
.select2-container--default .select2-selection--single {
  border-radius: 0 !important;
  background-color: #FFF !important;
  border: 1px solid #5d6369 !important;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset !important;
  color: #11202C !important;
  height: 4.5rem !important;
  vertical-align: middle !important;
  padding-top: 0.75rem !important;
}

.select2-results__options {
  text-align: left;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border: none !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b:after {
  font-family: iconmonstr-iconic-font;
  content: "\e003";
  font-size: 1rem;
  line-height: 2.5rem !important;
  color: #5d6369;
  margin-left: -0.5rem;
}

.js_select2_multi .select2.select2-container.select2-container--default {
  width: 100% !important;
}

.select2-container--default .select2-selection--multiple {
  border-radius: 0 !important;
  border: 1px solid #5d6369 !important;
  font-size: 1.5rem;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered {
  padding-bottom: 0.3em !important;
}

.select2-selection__choice {
  padding: 0.3em 0.4em !important;
}

/*
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::

error

:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
*/
.has_error input,
.has_error .select2-container--default .select2-selection--single {
  border: 2px solid #FF3B3B !important;
}

.has_error input[type=checkbox]:checked + .chk_icon:before,
.has_error input[type=checkbox] + .chk_icon:before,
.has_error input[type=radio]:checked + .radio_icon:before,
.has_error input[type=radio] + .radio_icon:before {
  color: #FF3B3B;
}

/*
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::

subtext

:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
*/
.error_subtx {
  display: block;
  padding-top: 0.75rem;
  font-size: 1.2rem;
  line-height: 1;
  color: #FF3B3B;
}

.has_error .label + .error_subtx, .has_error .radio_wrap + .error_subtx, .has_error .check_wrap + .error_subtx {
  margin-top: -0.6em !important;
}

/*
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::

必須・任意アイコン

:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
*/
.item_req::before, .item_opt::before {
  display: inline-block;
  width: 3rem;
  height: 1.85rem;
  padding-top: 0.3rem;
  padding-left: 0.3rem;
  margin-right: 1rem;
  color: #FFF;
  font-size: 1.2rem;
  text-style: normal;
  vertical-align: 0.35rem;
}
@media screen and (min-width: 768px) {
  .item_req::before, .item_opt::before {
    vertical-align: 0.2rem;
  }
}

.item_req::before {
  background-color: #FF3B3B;
  content: '必須';
}

.item_opt::before {
  background-color: #0099EF;
  content: '任意';
}

/*
::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::

button

::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
*/
.btn_search, .btn_new, .btn_insert, .btn_update, .btn_tbl_update, .btn_dt, .btn_tbl_dt, .btn_delete, .btn_tbl_delete, .btn_not_delete {
  display: inline-block;
  text-align: center;
  line-height: 1;
  font-weight: normal;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  text-decoration: none;
  white-space: nowrap;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border-radius: 0;
}
.btn_search:disabled, .btn_new:disabled, .btn_insert:disabled, .btn_update:disabled, .btn_tbl_update:disabled, .btn_dt:disabled, .btn_tbl_dt:disabled, .btn_delete:disabled, .btn_tbl_delete:disabled, .btn_not_delete:disabled {
  cursor: not-allowed;
  opacity: 0.65;
}
.btn_search:hover, .btn_new:hover, .btn_insert:hover, .btn_update:hover, .btn_tbl_update:hover, .btn_dt:hover, .btn_tbl_dt:hover, .btn_delete:hover, .btn_tbl_delete:hover, .btn_not_delete:hover {
  opacity: 0.85;
}

/* 基本的な送信ボタン */
.btn_search, .btn_new, .btn_insert, .btn_update, .btn_dt, .btn_delete, .btn_not_delete {
  width: 100%;
  font-size: 1.8rem;
  padding-top: 1.75rem;
  padding-bottom: 1.75rem;
}
@media screen and (min-width: 768px) {
  .btn_search, .btn_new, .btn_insert, .btn_update, .btn_dt, .btn_delete, .btn_not_delete {
    width: 17rem;
    padding-top: 1.35rem;
    padding-bottom: 1.25rem;
    font-size: 1.8rem;
  }
}

/* テーブル内の更新・削除・詳細ボタン */
.btn_tbl_update, .btn_tbl_dt, .btn_tbl_delete {
  display: inline-block;
  width: auto;
  padding: 1rem 2rem;
  font-size: 1.5rem;
  color: #FFF;
}
@media screen and (min-width: 768px) {
  .btn_tbl_update, .btn_tbl_dt, .btn_tbl_delete {
    font-size: 1.2rem;
    padding: 0.7rem 0.85rem 0.65rem 1rem;
  }
}

/* 検索 */
.btn_search {
  background-color: #2d3033;
  color: #F0F0F0;
}

/* 新規 */
.btn_new {
  background-color: #0099EF;
  color: #FFF;
}

/* 登録 */
.btn_insert {
  background-color: #054990;
  color: #FFF;
}

/* 更新 */
.btn_update {
  background-color: #054990;
  color: #FFF;
}

/* 更新（テーブル内） */
.btn_tbl_update {
  background-color: #054990;
  color: #FFF;
}

/* 詳細 */
.btn_dt {
  background-color: #05905A;
  color: #FFF;
}

/* 詳細（テーブル内） */
.btn_tbl_dt {
  background-color: #05905A;
  color: #FFF;
}

/* 削除 */
.btn_delete {
  background-color: #2d3033;
  color: #F0F0F0;
}

/* 削除（テーブル内） */
.btn_tbl_delete {
  background-color: #2d3033;
  color: #F0F0F0;
}

/* 削除しない（モーダル内） */
.btn_not_delete {
  background-color: #abb0b4;
  color: #FFF;
}

/*
--------------------------------------------

button container

--------------------------------------------
*/
.sec {
  display: block;
  position: relative;
  /* 新規登録 ←→ 検索 */
  /* POS追加 */
  /* 検索 */
  /* 送信 */
}
.sec .container_btn_nav01, .sec .container_btn_nav02 {
  display: none;
}
@media screen and (min-width: 768px) {
  .sec .container_btn_nav01, .sec .container_btn_nav02 {
    display: block;
    position: absolute;
    top: 1.5rem;
    right: 0;
  }
  .sec .container_btn_nav01::before, .sec .container_btn_nav02::before {
    font-family: iconmonstr-iconic-font;
    content: "\e072";
    color: #FFF;
    position: absolute;
    z-index: 9;
  }
  .sec .container_btn_nav01 input[type=submit], .sec .container_btn_nav02 input[type=submit] {
    padding-left: 1.5rem;
  }
}
@media screen and (min-width: 768px) {
  .sec .container_btn_nav01::before {
    content: "\e072";
    font-size: 1.5rem;
    top: 1.6rem;
    right: 14.5rem;
  }
}
@media screen and (min-width: 768px) {
  .sec .container_btn_nav02::before {
    content: "\e07a";
    font-size: 2.1rem;
    top: 1.2rem;
    right: 13.75rem;
  }
  .sec .container_btn_nav02.account::before {
    right: 14.15rem;
  }
  .sec .container_btn_nav02.account .btn_search {
    letter-spacing: 0;
    font-feature-settings: "palt";
    padding-left: 2.25rem;
  }
}
.sec .container_btn_pos {
  display: block;
  position: absolute;
}
.sec .container_btn_pos::before {
  font-family: iconmonstr-iconic-font;
  content: "\e072";
  color: #FFF;
  position: absolute;
  z-index: 9;
}
@media screen and (max-width: 767px) {
  .sec .container_btn_pos {
    top: 2.1rem;
    right: 0;
    width: 40%;
    max-width: 13rem;
  }
  .sec .container_btn_pos::before {
    top: 1.15rem;
    right: 10.5rem;
  }
  .sec .container_btn_pos input[type=submit] {
    height: 3.5rem;
    padding-top: 0.9rem;
    padding-left: 1.75rem;
  }
}
@media screen and (min-width: 768px) {
  .sec .container_btn_pos {
    display: block;
    position: absolute;
    top: 1.7rem;
    right: 0;
  }
  .sec .container_btn_pos::before {
    top: 1.6rem;
    right: 14.5rem;
  }
  .sec .container_btn_pos input[type=submit] {
    padding-left: 1.5rem;
  }
}
.sec .container_btn_search {
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .sec .container_btn_search {
    position: absolute;
    right: 0;
    bottom: 0;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
  }
}
.sec .container_btn_search .box_btn_search {
  display: block;
}
@media screen and (min-width: 768px) {
  .sec .container_btn_search .box_btn_search {
    margin-top: auto;
    margin-bottom: 0;
    margin-right: 2.5rem;
  }
}
.sec .container_btn_submit {
  padding-top: 2rem;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .sec .container_btn_submit .btn_insert {
    margin-bottom: 0.5rem;
  }
}

/*
-------------------------------------------

csv download

-------------------------------------------
*/
.container_btn_csv {
  margin-top: 1.5rem;
}
.container_btn_csv .box_btn_csv {
  display: block;
}
.container_btn_csv .box_btn_csv::before {
  font-family: 'iconmonstr-iconic-font';
  content: '\e02e';
  font-size: 2.1rem;
  color: #0099EF;
  vertical-align: -0.95rem;
}
@media screen and (min-width: 768px) {
  .container_btn_csv .box_btn_csv::before {
    font-size: 2.5rem;
    vertical-align: -1.05rem;
  }
}
@media screen and (max-width: 767px) {
  .container_btn_csv .box_btn_csv {
    margin-top: 0.25rem;
  }
}
.container_btn_csv .box_btn_csv .btn_csv {
  display: inline-block;
  margin-left: 0.1rem;
  border-bottom: 1px solid #0099EF;
  color: #0099EF;
  padding-top: 0.75rem;
  padding-bottom: 0.15rem;
}
@media screen and (min-width: 768px) {
  .container_btn_csv .box_btn_csv .btn_csv {
    margin-left: 0.25rem;
    padding-bottom: 0.25rem;
    letter-spacing: 0;
  }
}

/*
-------------------------------------------

戻る

-------------------------------------------
*/
.container_link_back {
  display: block;
}
@media screen and (min-width: 768px) {
  .container_link_back {
    margin-top: 2.5rem;
  }
}
.container_link_back::before {
  font-family: 'iconmonstr-iconic-font';
  content: '\e002';
  font-size: 1.2rem;
  color: #0099EF;
  vertical-align: -0.5rem;
}
.container_link_back .link_back {
  display: inline-block;
  margin-left: 0.1rem;
  border-bottom: 1px solid #0099EF;
  color: #0099EF;
  padding-top: 0.75rem;
  padding-bottom: 0.15rem;
}
@media screen and (min-width: 768px) {
  .container_link_back .link_back {
    margin-left: 0.25rem;
    padding-bottom: 0.25rem;
    letter-spacing: 0;
  }
}

/*
-------------------------------------------

pagetop

-------------------------------------------
*/
.btn_pagetop {
  width: 8rem;
  height: 3rem;
  background-color: #054990;
  position: fixed;
  right: 1rem;
  bottom: 0;
  z-index: 9;
  display: flex;
  justify-content: center;
  align-items: center;
}
.btn_pagetop::before {
  display: block;
  padding-top: 0.5rem;
  font-family: 'iconmonstr-iconic-font';
  content: '\e004';
  font-size: 1.5rem;
  color: #FFF;
}
.btn_pagetop:hover {
  opacity: 0.85;
}

.fadein {
  opacity: 0;
  transform: translate(0, 175px);
  transition: all 500ms;
}

.fadein.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}

/*
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::

pagination

:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
*/
.tx_num_results {
  display: block;
  margin-top: 3rem;
  margin-bottom: 0.5rem;
  font-size: 1.6rem;
}
@media screen and (min-width: 768px) {
  .tx_num_results {
    margin-top: 5rem;
  }
}

.pagination {
  display: block;
}
@media screen and (min-width: 768px) {
  .pagination {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
}
.pagination li {
  display: inline;
}
.pagination li a,
.pagination li .page_active_num {
  display: inline-block;
  background-color: #2d3033;
  font-size: 1.4rem;
  border: 1px solid #2d3033;
  color: #F0F0F0;
  width: 3rem;
  height: 3rem;
  line-height: 2.75rem;
  text-align: center;
  text-decoration: none;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.pagination li a:hover {
  background: rgba(45, 48, 51, 0.35);
  color: #F0F0F0;
  border: 1px solid rgba(45, 48, 51, 0.35);
}
.pagination li.page_go_prev a .im, .pagination li.page_go_next a .im, .pagination li.page_go_first a .im, .pagination li.page_go_last a .im {
  font-size: 1rem;
  color: #F0F0F0;
}
.pagination li.page_active .page_active_num {
  background: #F0F0F0;
  color: #2d3033;
  border: 1px solid #2d3033;
}

/*
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::

modal

::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
*/
.overlay {
  position: fixed;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  overflow: hidden;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow-x: auto;
  overflow-y: auto;
  background-color: rgba(0, 0, 0, 0.85);
  z-index: 99999999;
  cursor: pointer;
  text-align: center;
}

.container_delete {
  width: 40rem;
  max-width: 90%;
  height: 15rem;
  padding: 2rem;
  background: #FFF;
  border: 0.5rem solid #989898;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 99999;
  transform: translate(-50%, -50%);
}
.container_delete .col2 li {
  width: 49%;
}
