@charset "UTF-8";
/***
    The new CSS reset - version 1.7.3 (last updated 7.8.2022)
    GitHub page: https://github.com/elad2412/the-new-css-reset
***/
/*
    Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
    - The "symbol *" part is to solve Firefox SVG sprite bug
 */
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

/* Preferred box-sizing value */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Reapply the pointer cursor for anchor tags */
a, button {
  cursor: revert;
}

/* Remove list styles (bullets/numbers) */
ol, ul, menu {
  list-style: none;
}

/* For images to not be able to exceed their container */
img {
  max-width: 100%;
}

/* removes spacing between cells in tables */
table {
  border-collapse: collapse;
}

/* Safari - solving issue when using user-select:none on the <body> text input doesn't working */
input, textarea {
  -webkit-user-select: auto;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
  white-space: revert;
}

/* minimum style to allow to style meter element */
meter {
  -webkit-appearance: revert;
  appearance: revert;
}

/* reset default text opacity of input placeholder */
::placeholder {
  color: unset;
}

/* fix the feature of 'hidden' attribute.
   display:revert; revert to element instead of attribute */
:where([hidden]) {
  display: none;
}

/* revert for bug in Chromium browsers
   - fix for the content editable attribute will work properly.
   - webkit-user-select: auto; added for Safari in case of using user-select:none on wrapper element*/
:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable=true]) {
  -webkit-user-drag: element;
}

/*------------------------------
 * mixin
------------------------------*/
.dp-none {
  display: none !important;
}

.center-y, .grid_list-item.is-navigatable .grid_list-item-header::after, .grid_list-item.is-editable .grid_list-item-header::after, .button_secondary::after, .button_primary::after, .icon_material--right::after, .button_outline--down::after, .link_icon--right::after, .list_app_setting_link a::after, .link_download::after, .link_new_window::after, .link_help::after, .link_next::after, .header-user::after, .icon_material--left_no_pdding::before, .icon_material--left::before, .property_list-item::before, .message_caution::before, .button_add::before, .button_search::before, .link_icon--left::before, .link_back::before, .link_prev::before, .section_general-header-tab li::before, .sentori_header-title::before, .sentori_header-cancel::before, .section_information-header-title::before, .form_uploader_list .form_uploader_list-file::before, .form_uploader_list .form_uploader_list-delete::before, .form_checkbox + label::before, .form_checkbox + label::after, .form_radio + label::before, .form_radio + label::after, .section_general-body--daihyo2_retire.is-retire .daihyo2_retire_header-title::after, .sentori_header-title::after, .page_step li::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.hover_opacity:hover, .data_table > li.data_table-body.is-navigatable:hover, .grid_list-item.is-navigatable:hover, .grid_list-item.is-editable:hover, .header-user:hover, a:hover, button:hover {
  opacity: 0.8;
}

a, button {
  cursor: pointer;
}
a:disabled, button:disabled {
  cursor: default;
}
a:disabled:hover, button:disabled:hover {
  opacity: 1;
}

body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  color: #333;
  line-height: 1.5;
  scroll-behavior: smooth;
}

.wrapper {
  font-size: 14px;
  min-height: 100vh;
  display: grid;
  grid-template: "header" auto "contents" 1fr "footer" auto/100%;
}

/**
	header
*/
.header {
  grid-area: header;
}

.header-logo {
  width: 1000px;
  margin-right: auto;
  margin-left: auto;
  font-weight: bold;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
}
@media only screen and (max-width: 768px) {
  .header-logo {
    width: 100%;
    padding-right: 10px;
    padding-left: 10px;
  }
}

.header-logo-inner {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  line-height: 1;
  padding: 15px 0;
}

.header-logo-nm {
  white-space: nowrap;
}
@media only screen and (max-width: 768px) {
  .header-logo-nm p {
    font-size: 10px;
  }
}

.header-logo-nm-assosiation {
  font-size: 20px;
  display: inline-block;
  width: 8em;
  text-align-last: justify;
}
@media only screen and (max-width: 768px) {
  .header-logo-nm-assosiation {
    font-size: 13px;
  }
}

.header-logo-system {
  color: #006B91;
  font-size: 16px;
  padding: 5px 8px;
  border: 1px solid #006B91;
  border-radius: 4px;
  white-space: nowrap;
}

.header-logo-nm_wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}
@media only screen and (max-width: 768px) {
  .header-logo-nm_wrapper {
    flex-direction: column;
    align-items: start;
    gap: 5px;
  }
}

.header-logo-icon {
  min-width: 48px;
  height: 48px;
}

.header-rabby {
  margin-bottom: -10px;
}

.header-user_wrapper {
  background-color: #00426D;
}

.header-user_container {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: right;
  align-items: center;
  width: 1000px;
  min-height: 40px;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .header-user_container {
    width: 100%;
    padding: 0 20px;
  }
}

.header-user {
  color: #006B91;
  background-color: #fff;
  padding: 2px 20px;
  border-radius: 10px;
  white-space: nowrap;
  overflow-x: auto;
  cursor: pointer;
}
.header-user:after {
  content: "\e5c5";
  font-size: 16px;
}

.header-user-nm {
  font-weight: bold;
}

.header-user_menu-logout {
  text-decoration: underline;
  color: #006B91;
}

.header-user_menu {
  position: absolute;
  top: 36px;
  background-color: #fff;
  border-radius: 6px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  padding: 20px;
  display: none;
  text-align: right;
}

.header-user_menu-agent {
  font-weight: bold;
  margin-bottom: 10px;
}

/**
	footer
*/
.footer {
  grid-area: footer;
  padding: 10px 0;
  background-color: #00426D;
}

.footer-copyright {
  text-align: center;
  color: #fff;
  font-size: 12px;
}

/**
	contents
*/
.contents {
  grid-area: contents;
  margin: 40px 0;
}

.contents-body {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.contents-body form {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/**
	section_page_title
*/
.section_page_title {
  background-color: #E5F0F4;
}

.section_page_title-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 180px;
  width: 1000px;
  margin: -20px auto;
  padding: 40px 20px 40px 160px;
  background-image: url(../img/rabby--shinsei.svg);
  background-repeat: no-repeat;
}
.section_page_title-inner.is-complete {
  padding-right: 180px;
  background-image: url(../img/rabby--ok.svg);
}
@media only screen and (max-width: 768px) {
  .section_page_title-inner {
    width: 100%;
    padding-left: 20px;
    background-image: none;
  }
  .section_page_title-inner.is-complete {
    width: 100%;
    padding-right: 20px;
    padding-left: 20px;
    background-image: none;
  }
}

.page_title {
  color: #00426D;
  font-size: 24px;
  font-weight: bold;
}

.page_step {
  display: flex;
  gap: 20px;
}
@media only screen and (max-width: 768px) {
  .page_step {
    overflow-x: auto;
  }
  .page_step::-webkit-scrollbar {
    height: 5px;
  }
  .page_step::-webkit-scrollbar-track {
    background-color: #aaa;
    border-radius: 3px;
  }
  .page_step::-webkit-scrollbar-thumb {
    background-color: #006B91;
    border-radius: 3px;
  }
}
.page_step li {
  position: relative;
  padding: 5px 20px;
  border-radius: 3px;
  color: #fff;
  background-color: #aaa;
  border: 1px solid #aaa;
  font-size: 12px;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .page_step li {
    margin-bottom: 15px;
  }
}
.page_step li::after {
  content: "\e5df";
  position: absolute;
  right: -20px;
  color: #bbb;
  font-size: 14px;
}
.page_step li:last-child::after {
  content: "";
}
.page_step li.is-active {
  background-color: #006B91;
  border: solid 1px #006B91;
}
.page_step li.is-past {
  background-color: #fff;
  color: #006B91;
  border: solid 1px #006B91;
}
.page_step li.is-past::after {
  color: #006B91;
}
@media only screen and (max-width: 768px) {
  .page_step li {
    white-space: nowrap;
  }
}

.page_step-box {
  padding: 5px 20px;
  border-radius: 3px;
  color: #fff;
  background-color: #aaa;
  border: 1px solid #aaa;
  font-size: 12px;
  font-weight: bold;
  width: 90px;
  display: inline-block;
}

.page_description {
  color: #006B91;
}
@media only screen and (max-width: 768px) {
  .page_description {
    word-break: break-all;
  }
}

/**
	section_general
*/
.section_general {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.section_general-header {
  border-bottom: solid 2px #eee;
}

.section_general-header-inner {
  width: 1000px;
  margin: 0 auto;
  margin-bottom: -2px;
}
@media only screen and (max-width: 768px) {
  .section_general-header-inner {
    width: 100%;
    padding: 0 20px;
  }
}

.section_general-header-title {
  color: #006B91;
  display: inline-block;
  padding: 0 10px 10px 10px;
  border-bottom: solid 2px #006B91;
  font-size: 16px;
  font-weight: bold;
}

.section_general-header-tab {
  display: flex;
  flex-direction: row;
  overflow-x: auto;
}
.section_general-header-tab li {
  color: #006B91;
  padding: 0 10px 10px calc(1em + 10px);
  font-size: 16px;
  font-weight: bold;
  white-space: nowrap;
}
.section_general-header-tab li::before {
  content: "\e92d";
  color: #eee;
  font-weight: normal;
  margin-top: -6px;
}
.section_general-header-tab li.is-active {
  border-bottom: solid 2px #006B91;
}
.section_general-header-tab li.is-past::before {
  color: #006B91;
}

.section_general-tabarea {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}
@media only screen and (max-width: 768px) {
  .section_general-tabarea {
    display: block;
    width: 100%;
  }
}

.section_general-tabarea-form {
  position: relative;
}

.section_general-tabarea-button {
  position: absolute;
  top: 18px;
  left: 15px;
  display: flex;
  align-items: center;
  height: 16px;
  width: 16px;
}
.section_general-tabarea-button::after {
  content: "\e8b6";
  font-size: 16px;
}

@media only screen and (max-width: 768px) {
  .section_general-tabarea-switch {
    margin-top: 20px;
  }
}

.section_general-body, .section_general-body--nonbg {
  width: 1000px;
  margin: 0 auto;
  padding: 20px;
  background-color: #f8f8f8;
}
.section_general-body.section_general-body--type01, .section_general-body--type01.section_general-body--nonbg {
  margin-top: -20px;
}
@media only screen and (max-width: 768px) {
  .section_general-body, .section_general-body--nonbg {
    width: 100%;
  }
}

/**
	sentori_header
*/
.sentori_header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.sentori_header-title {
  color: #006B91;
  font-size: 16px;
  font-weight: bold;
  min-height: 16px;
  padding-right: 20px;
}
.sentori_header-title::before {
  content: "\e146";
}
.sentori_header-title::after {
  width: 60px;
  text-align: center;
  padding: 2px 6px;
  font-size: 12px;
  font-weight: bold;
  background-color: #fff;
  border: 1px solid #006B91;
  border-radius: 10px;
  right: -60px;
}

.sentori_header-cancel {
  color: #006B91;
  font-size: 16px;
  font-weight: bold;
}
.sentori_header-cancel::before {
  content: "\e888";
}

.section_general-body--sentori {
  border-bottom: 1px solid #006B91;
}
.section_general-body--sentori .sentori_header-cancel {
  display: none;
}
.section_general-body--sentori .sentori_body {
  display: none;
  padding-top: 20px;
}
.section_general-body--sentori:first-child {
  margin-top: 40px;
  border-top: 1px solid #006B91;
}
.section_general-body--sentori.is-open .sentori_header-title::before {
  content: "\e909";
}
.section_general-body--sentori.is-open .sentori_header-title::after {
  content: "操作中";
}
.section_general-body--sentori.is-open .sentori_header-cancel {
  display: block;
}
.section_general-body--sentori.is-open .sentori_body {
  display: block;
}
.section_general-body--sentori.is-confirm .sentori_header-title {
  padding-left: unset;
}
.section_general-body--sentori.is-confirm .sentori_header-title::before {
  content: none;
}
.section_general-body--sentori.is-confirm .sentori_body {
  display: block;
}
.section_general-body--sentori.is-confirm:first-child {
  margin-top: unset;
}
.section_general-body--sentori.is-add .sentori_header-title::after {
  content: "追加";
}
.section_general-body--sentori.is-edit .sentori_header-title::after {
  content: "変更";
}
.section_general-body--sentori.is-remove .sentori_header-title::after {
  content: "削除";
}
.section_general-body--sentori.is-cancel {
  display: none;
}

.daihyo2_retire_header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.section_general-body--daihyo2_retire {
  color: #006B91;
  font-size: 16px;
  font-weight: bold;
  min-height: 16px;
  padding-right: 20px;
}
.section_general-body--daihyo2_retire.is-retire .daihyo2_retire_header-title {
  position: relative;
  padding-right: 20px;
}
.section_general-body--daihyo2_retire.is-retire .daihyo2_retire_header-title::after {
  content: "退任";
  width: 60px;
  text-align: center;
  padding: 2px 6px;
  font-size: 12px;
  font-weight: bold;
  background-color: #fff;
  border: 1px solid #006B91;
  border-radius: 10px;
  right: -60px;
}

.section_general-body-text, .section_general-body-text--pre {
  color: #006B91;
}

.section_general-body-text--pre {
  white-space: pre-wrap;
}
@media only screen and (max-width: 768px) {
  .section_general-body-text--pre {
    white-space: pre-line;
  }
}

.section_general-body--nonbg {
  padding: 0;
  background-color: transparent;
}
@media only screen and (max-width: 768px) {
  .section_general-body--nonbg.section_general-body, .section_general-body--nonbg {
    padding: 0 20px;
  }
}

.section_link, .section_link--right {
  width: 1000px;
  margin: 0 auto;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .section_link, .section_link--right {
    width: 100%;
  }
}

.section_link--right {
  text-align: right;
  padding-right: 20px;
}

/**
	section_button
*/
.section_button {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
@media only screen and (max-width: 768px) {
  .section_button {
    padding: 0 20px;
  }
}

.section_button--margin {
  display: block;
  margin: auto;
}

.section_button_text {
  text-align: center;
  margin-top: 10px;
}

/**
	section_button_primary
*/
.section_button_primary {
  padding: 40px 0;
  background-color: #f8f8f8;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

/**
	section_register_button
*/
.section_register_button {
  width: 1000px;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .section_register_button {
    width: 100%;
  }
}

/**
	section_information
*/
.section_information {
  border: 1px solid #00B2B2;
  border-radius: 3px;
  width: 1000px;
  margin: 0 auto;
  padding: 20px;
  color: #00B2B2;
}
@media only screen and (max-width: 768px) {
  .section_information {
    width: calc(100% - 40px);
  }
}

.section_information-header-title {
  font-weight: bold;
}
.section_information-header-title:before {
  content: "\e88e";
}

.section_information-body {
  margin-top: 10px;
}

/**
	section_information_item
*/
.section_information_item {
  display: flex;
}
@media only screen and (max-width: 768px) {
  .section_information_item {
    display: block;
  }
}

.section_information_item-title {
  margin-right: 10px;
  color: #00B2B2;
  font-size: 14px;
  font-weight: bold;
}

.section_information_item-text {
  margin-right: 10px;
  color: #555555;
  font-size: 14px;
}

.section_information_item-comment {
  color: #008080;
  font-size: 14px;
}

/**
	section_message_caution
*/
.section_message_caution {
  width: 1000px;
  margin: 0 auto;
  padding: 20px;
  border: 1px solid #006B91;
  border-radius: 3px;
  color: #006B91;
  background-color: #E5F0F4;
}
@media only screen and (max-width: 768px) {
  .section_message_caution {
    width: calc(100% - 40px);
  }
}

/**
	section_message_sendback
*/
.section_message_sendback {
  width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

/**
	section_modal
*/
.section_modal-content {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 101;
  transform: translate(-50%, -50%);
  width: 1000px;
  padding: 20px;
  margin: 0 auto;
  background-color: #FFFFFF;
}
@media only screen and (max-width: 768px) {
  .section_modal-content {
    width: 90%;
    max-height: 90%;
    overflow: auto;
    padding: 0 0 20px 0;
  }
}

.section_modal-backlayer {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.6);
}

/**
	modal_content
*/
.modal_content-header-title {
  padding: 22px 20px;
  color: #006B91;
  font-size: 14px;
  font-weight: bold;
  background-color: rgba(0, 107, 145, 0.05);
  border: 1px solid #006B91;
  border-radius: 3px;
}
@media only screen and (max-width: 768px) {
  .modal_content-header-title {
    border-width: 0 0 1px 0;
    border-radius: 0;
  }
}

.modal_content-header-day {
  margin-top: 12px;
  padding-right: 20px;
  color: #333333;
  font-size: 14px;
  text-align: right;
}

.modal_content-body {
  margin-top: 40px;
}

.modal_content-body-inner {
  padding: 20px;
  background-color: #f8f8f8;
}

.modal_content-body-text {
  display: inline-block;
  color: #333333;
  font-size: 14px;
}
.modal_content-body-text.modal_content-body-text--notice {
  display: flex;
  justify-content: center;
}

.modal_content-body-close {
  position: relative;
  display: flex;
  margin: 40px auto 0;
  color: #006B91;
  font-size: 16px;
  font-weight: bold;
}
.modal_content-body-close::before {
  content: "\e888";
  position: absolute;
  left: 0;
  transform: translateX(-100%);
}

/**
	form
*/
.form_container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form_group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.form_group_flex {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  .form_group_flex {
    flex-direction: column;
    gap: 20px;
  }
}

.form_group-header-title {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: bold;
}
.form_group-header-title::before {
  content: "任意";
  font-size: 12px;
  color: #fff;
  background-color: #888;
  padding: 2px 6px;
  border-radius: 3px;
  min-width: 36px;
}
.form_group-header-title.is-required:before {
  content: "必須";
  background-color: #006B91;
}
.form_group-header-title.is-nolabel:before {
  content: none;
}

.form_group-body, .form_group-body--half {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 10px;
}

.form_group-body--half {
  width: calc(50% - 20px);
  flex-direction: row;
}
.form_group-body--half .form_item, .form_group-body--half .form_item--between {
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .form_group-body--half {
    width: 100%;
    flex-direction: column;
  }
}

.form_item, .form_item--between {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.form_item--between {
  justify-content: space-between;
}

.form_item-header-title {
  color: #888;
  font-size: 14px;
  font-weight: bold;
}
.form_item-header-title.is-required {
  color: #006B91;
}

.form_item-header-caution {
  display: inline-block;
  padding-left: 1em;
  color: #666;
  font-size: 12px;
  text-indent: -1em;
}
.form_item-header-caution:before {
  content: "※";
}

@media only screen and (max-width: 768px) {
  .form_item-header-caution--tel {
    display: none !important;
  }
}

.form_item-header-text {
  color: #666;
  font-size: 12px;
}

.form_item-group {
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-content: flex-start;
}
@media only screen and (max-width: 768px) {
  .form_item-group {
    flex-direction: column;
    gap: 10px;
  }
}

.form_item-body--flex {
  display: flex;
  gap: 10px;
}

.form_item-body-group {
  display: flex;
  flex-direction: row;
  gap: 5px;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .form_item-body-group {
    flex-wrap: wrap;
  }
}

.form_item-body--license input:not(:first-child) {
  margin-left: 5px;
}

.form_item-body--password {
  position: relative;
}

/**
	form_elem
*/
.form_input, .form_input--auto, .form_input--half, .form_input--branck_count, .form_input--license_no, .form_input--license_count, .form_input--email, .form_input--tel, .form_input--zip, .form_input--usercd, .form_input--wa,
.form_select {
  color: #333;
  background-color: #fff;
  border: 1px solid #999;
  border-radius: 3px;
  padding: 10px;
  display: inline-block;
}
.form_input:disabled, .form_input--auto:disabled, .form_input--half:disabled, .form_input--branck_count:disabled, .form_input--license_no:disabled, .form_input--license_count:disabled, .form_input--email:disabled, .form_input--tel:disabled, .form_input--zip:disabled, .form_input--usercd:disabled, .form_input--wa:disabled,
.form_select:disabled {
  background-color: #eee;
  color: #888;
}
.form_input option:disabled, .form_input--auto option:disabled, .form_input--half option:disabled, .form_input--branck_count option:disabled, .form_input--license_no option:disabled, .form_input--license_count option:disabled, .form_input--email option:disabled, .form_input--tel option:disabled, .form_input--zip option:disabled, .form_input--usercd option:disabled, .form_input--wa option:disabled,
.form_select option:disabled {
  background-color: #eee;
  color: #888;
}

.form_input, .form_input--auto, .form_input--half, .form_input--branck_count, .form_input--license_no, .form_input--license_count, .form_input--email, .form_input--tel, .form_input--zip, .form_input--usercd, .form_input--wa {
  width: 100%;
}
.form_input::placeholder, .form_input--auto::placeholder, .form_input--half::placeholder, .form_input--branck_count::placeholder, .form_input--license_no::placeholder, .form_input--license_count::placeholder, .form_input--email::placeholder, .form_input--tel::placeholder, .form_input--zip::placeholder, .form_input--usercd::placeholder, .form_input--wa::placeholder {
  color: #ccc;
}
.form_input:read-only, .form_input--auto:read-only, .form_input--half:read-only, .form_input--branck_count:read-only, .form_input--license_no:read-only, .form_input--license_count:read-only, .form_input--email:read-only, .form_input--tel:read-only, .form_input--zip:read-only, .form_input--usercd:read-only, .form_input--wa:read-only {
  background-color: #E4E4E4;
}
.form_input.form_input--wa, .form_input--wa {
  width: auto;
}
.form_input.form_input--usercd, .form_input--usercd {
  max-width: 10em;
}
.form_input.form_input--zip, .form_input--zip {
  max-width: 8em;
}
.form_input.form_input--tel, .form_input--tel {
  max-width: 13em;
}
.form_input.form_input--email, .form_input--email {
  max-width: 50em;
}
.form_input.form_input--license_count, .form_input--license_count {
  max-width: 4em;
}
.form_input.form_input--license_no, .form_input--license_no {
  max-width: 6em;
}
.form_input.form_input--branck_count, .form_input--branck_count {
  max-width: 4em;
}
.form_input.form_input--tou_cd, .form_input--tou_cd.form_input--auto, .form_input--tou_cd.form_input--half, .form_input--tou_cd.form_input--branck_count, .form_input--tou_cd.form_input--license_no, .form_input--tou_cd.form_input--license_count, .form_input--tou_cd.form_input--email, .form_input--tou_cd.form_input--tel, .form_input--tou_cd.form_input--zip, .form_input--tou_cd.form_input--usercd, .form_input--tou_cd.form_input--wa {
  max-width: 5em;
}
.form_input.form_input--stn_cd, .form_input--stn_cd.form_input--auto, .form_input--stn_cd.form_input--half, .form_input--stn_cd.form_input--branck_count, .form_input--stn_cd.form_input--license_no, .form_input--stn_cd.form_input--license_count, .form_input--stn_cd.form_input--email, .form_input--stn_cd.form_input--tel, .form_input--stn_cd.form_input--zip, .form_input--stn_cd.form_input--usercd, .form_input--stn_cd.form_input--wa {
  max-width: 4em;
}
.form_input::-webkit-inner-spin-button, .form_input--auto::-webkit-inner-spin-button, .form_input--half::-webkit-inner-spin-button, .form_input--branck_count::-webkit-inner-spin-button, .form_input--license_no::-webkit-inner-spin-button, .form_input--license_count::-webkit-inner-spin-button, .form_input--email::-webkit-inner-spin-button, .form_input--tel::-webkit-inner-spin-button, .form_input--zip::-webkit-inner-spin-button, .form_input--usercd::-webkit-inner-spin-button, .form_input--wa::-webkit-inner-spin-button, .form_input::-webkit-outer-spin-button, .form_input--auto::-webkit-outer-spin-button, .form_input--half::-webkit-outer-spin-button, .form_input--branck_count::-webkit-outer-spin-button, .form_input--license_no::-webkit-outer-spin-button, .form_input--license_count::-webkit-outer-spin-button, .form_input--email::-webkit-outer-spin-button, .form_input--tel::-webkit-outer-spin-button, .form_input--zip::-webkit-outer-spin-button, .form_input--usercd::-webkit-outer-spin-button, .form_input--wa::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
  -moz-appearance: textfield;
}

.form_input--wa {
  width: auto;
}

.form_input--usercd {
  max-width: 10em;
}

.form_input--zip {
  max-width: 8em;
}

.form_input--tel {
  max-width: 13em;
}

.form_input--email {
  max-width: 50em;
}

.form_input--license_count {
  max-width: 4em;
}

.form_input--license_no {
  max-width: 6em;
}

.form_input--branck_count {
  max-width: 4em;
}

.form_input--search {
  padding: 15px 15px 15px 35px;
  width: 500px;
}
@media only screen and (max-width: 768px) {
  .form_input--search {
    width: 100%;
  }
}

.form_input--half {
  width: calc(50% - 4px);
}

.form_input--auto {
  width: auto;
}

.password_icon {
  position: absolute;
  right: 10px;
  top: 10px;
  cursor: pointer;
}

.form_select {
  padding-right: 20px;
  height: 43px;
  box-sizing: border-box;
}

.form_select--next {
  margin-left: 10px;
}

.form_literal {
  display: inline-block;
  padding: 10px 0;
}
.form_literal.is-alert {
  color: #ff0000;
}

.form_uploader--image {
  display: grid;
  grid-template-columns: auto 160px;
  gap: 10px;
}
@media only screen and (max-width: 768px) {
  .form_uploader--image {
    grid-template-columns: auto;
  }
}

.form_dropbox {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  text-align: center;
  padding: 10px;
  color: #006B91;
  border: 2px dashed #006B91;
  border-radius: 4px;
  cursor: pointer;
  background-color: #fff;
}
.form_dropbox.is-hover {
  font-weight: bold;
}
.form_dropbox .form_dropbox-massage {
  font-weight: bold;
}
.form_dropbox .form_dropbox-button {
  font-weight: bold;
  color: #fff;
  padding: 10px 15px;
  background-color: #006B91;
  border-radius: 4px;
}
.form_dropbox .form_dropbox-caution {
  font-size: 12px;
  line-height: 1.2;
}

.form_uploader_list {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  padding: 10px 15px;
  background-color: #eee;
}
.form_uploader_list .form_uploader_list-file {
  color: #006B91;
}
.form_uploader_list .form_uploader_list-file:before {
  content: "\ea0e";
  font-size: 20px;
}
.form_uploader_list .form_uploader_list-delete {
  font-size: 12px;
  background-color: #999;
  color: #fff;
  border-radius: 4px;
  padding: 2px 5px;
  white-space: nowrap;
}
.form_uploader_list .form_uploader_list-delete:before {
  content: "\e872";
  font-size: 16px;
}

.radio_wrapper, .radio_wrapper--block,
.checkbox_wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0 20px;
}
.radio_wrapper li, .radio_wrapper--block li,
.checkbox_wrapper li {
  padding: 11px 0;
  display: flex;
  flex-wrap: wrap;
}
.radio_wrapper.direction_column, .direction_column.radio_wrapper--block,
.checkbox_wrapper.direction_column {
  flex-direction: column;
}

.radio_wrapper--block {
  display: block;
}

.radio_wrapper--inline,
.checkbox_wrapper--inline,
.checkbox_wrapper--document_all {
  display: inline-block;
  padding: 11px 0;
}

.checkbox_wrapper--document_all {
  color: #333;
  font-weight: bold;
  background-color: #fff;
  border: 2px solid #333;
  border-radius: 3px;
  padding: 15px 20px;
}

.form_radio:disabled + label::before {
  background-color: #eee;
}
.form_radio + label {
  position: relative;
  cursor: pointer;
  padding-left: 30px;
  display: inline-block;
}
.form_radio + label::before, .form_radio + label::after {
  content: "";
  display: block;
  border-radius: 50%;
}
.form_radio + label::before {
  background-color: #fff;
  border: 1px solid #999;
  width: 20px;
  height: 20px;
  left: 0;
}
.form_radio + label::after {
  background-color: #006B91;
  border-radius: 50%;
  opacity: 0;
  width: 12px;
  height: 12px;
  left: 4px;
}
.form_radio:checked + label::after {
  opacity: 1;
}

.form_checkbox + label {
  position: relative;
  cursor: pointer;
  padding-left: 30px;
}
.form_checkbox + label::before, .form_checkbox + label::after {
  display: block;
}
.form_checkbox + label::before {
  content: "";
  background-color: #fff;
  border: 1px solid #999;
  border-radius: 3px;
  width: 20px;
  height: 20px;
  left: 0;
}
.form_checkbox + label::after {
  content: "\e5ca";
  font-size: 16px;
  color: #006B91;
  font-weight: bold;
  opacity: 0;
  left: 2px;
}
.form_checkbox:checked + label::after {
  opacity: 1;
}
.form_checkbox:disabled + label {
  color: #888;
}
.form_checkbox:disabled + label::before {
  background-color: #eee;
}
.form_checkbox:disabled + label::after {
  color: #888;
}

.input_with_button {
  display: flex;
  flex-direction: row;
}
.input_with_button .form_input, .input_with_button .form_input--wa, .input_with_button .form_input--usercd, .input_with_button .form_input--zip, .input_with_button .form_input--tel, .input_with_button .form_input--email, .input_with_button .form_input--license_count, .input_with_button .form_input--license_no, .input_with_button .form_input--branck_count, .input_with_button .form_input--half, .input_with_button .form_input--auto {
  border-radius: 3px 0 0 3px;
}
.input_with_button .form_input + *, .input_with_button .form_input--wa + *, .input_with_button .form_input--usercd + *, .input_with_button .form_input--zip + *, .input_with_button .form_input--tel + *, .input_with_button .form_input--email + *, .input_with_button .form_input--license_count + *, .input_with_button .form_input--license_no + *, .input_with_button .form_input--branck_count + *, .input_with_button .form_input--half + *, .input_with_button .form_input--auto + * {
  border-radius: 0 3px 3px 0;
  border-left: none;
}

/**
	icon
*/
.icon_material, .pager-item.pager-item--next:after, .pager-item.pager-item--prev:before, .grid_list-item.is-navigatable .grid_list-item-header::after, .grid_list-item.is-editable .grid_list-item-header::after, .switchtab_item::before, .agent_modal_content-item-close::before, .button_secondary::after, .button_primary::after, .icon_material--right::after, .button_outline--down::after, .link_icon--right::after, .list_app_setting_link a::after, .link_download::after, .link_new_window::after, .link_help::after, .link_next::after, .header-user::after, .icon_material--left_no_pdding::before, .icon_material--left::before, .property_list-item::before, .message_caution::before, .button_add::before, .button_search::before, .link_icon--left::before, .link_back::before, .link_prev::before, .section_general-header-tab li::before, .sentori_header-title::before, .sentori_header-cancel::before, .section_information-header-title::before, .form_uploader_list .form_uploader_list-file::before, .form_uploader_list .form_uploader_list-delete::before, .page_step li::after, .section_general-tabarea-button::after, .modal_content-body-close::before, .form_checkbox + label::after {
  font-family: "Material Icons Outlined";
  font-weight: 400;
}

.icon_material--left, .property_list-item, .message_caution, .button_add, .button_search, .link_icon--left, .link_back, .link_prev, .section_general-header-tab li, .sentori_header-title, .sentori_header-cancel, .section_information-header-title, .form_uploader_list .form_uploader_list-file, .form_uploader_list .form_uploader_list-delete {
  position: relative;
  padding-left: 1.5em;
}
.icon_material--left::before, .property_list-item::before, .message_caution::before, .button_add::before, .button_search::before, .link_icon--left::before, .link_back::before, .link_prev::before, .section_general-header-tab li::before, .sentori_header-title::before, .sentori_header-cancel::before, .section_information-header-title::before, .form_uploader_list .form_uploader_list-file::before, .form_uploader_list .form_uploader_list-delete::before {
  left: 0;
}

.icon_material--left_no_pdding {
  position: relative;
}
.icon_material--left_no_pdding::before {
  left: 0;
}

.icon_material--right, .button_outline--down, .link_icon--right, .list_app_setting_link a, .link_download, .link_new_window, .link_help, .link_next, .header-user {
  position: relative;
  padding-right: 1.5em;
}
.icon_material--right::after, .button_outline--down::after, .link_icon--right::after, .list_app_setting_link a::after, .link_download::after, .link_new_window::after, .link_help::after, .link_next::after, .header-user::after {
  right: 0;
}

/**
	text
*/
.text_bold {
  font-weight: bold;
}

.text_bold_padding {
  font-weight: bold;
  padding-left: 0.5em;
  padding-right: 0.5em;
}

.text_complete_cd {
  font-weight: bold;
  font-size: 24px;
  padding-left: 0.5em;
  padding-right: 0.5em;
  white-space: nowrap;
}

.text_pre {
  white-space: pre-wrap;
}

/**
	link
*/
.link, .list_app_setting_link a, .link_icon--right, .link_download, .link_new_window, .link_help, .link_next, .link_icon--left, .link_back, .link_prev {
  color: #006B91;
  font-weight: bold;
  cursor: pointer;
}

.link_next::after {
  content: "\e409";
}

.link_prev::before {
  content: "\e408";
}

span.link_next,
span.link_prev {
  color: #ccc;
  cursor: default;
}

.link_back::before {
  content: "\eac3";
}

.link_help::after {
  content: "\e8fd";
}

.link_new_window::after {
  content: "\e89e";
}

.link_download::after {
  content: "\e2c4";
}

/**
	button
*/
.button:disabled, .button_search:disabled, .button_outline:disabled, .button_secondary:disabled, .button_primary:disabled {
  background-color: #ccc;
}

a.button, a.button_search, a.button_outline, a.button_secondary, a.button_primary {
  display: flex;
  align-items: center;
  justify-content: center;
}

.button_primary {
  padding: 0 20px;
  background-color: #00426D;
  height: 60px;
  width: 350px;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  border-radius: 3px;
  position: relative;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}
@media only screen and (max-width: 768px) {
  .button_primary {
    width: 100%;
    max-width: calc(100vw - 40px);
  }
}
.button_primary--large {
  width: 350px;
}
.button_primary--small {
  height: 50px;
  width: 188px;
  background-color: #006B91;
}
.button_primary::after {
  content: "\e409";
  right: 10px;
}
.button_primary--nonafter::after {
  content: none;
}
.button_primary--update {
  height: 51px;
  width: 124px;
  background-color: #006B91;
}
.button_primary--update::after {
  content: none;
}

.button_secondary {
  background-color: #006B91;
  padding: 15px 50px 15px 40px;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  border-radius: 3px;
  position: relative;
  border: 2px solid #006B91;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}
.button_secondary::after {
  content: "\e409";
  right: 10px;
}
.button_secondary--down::after {
  content: "\e313";
}
.button_secondary--save::after {
  content: "\eb60";
}

.button_outline {
  padding: 13px 30px;
  color: #006B91;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  border-radius: 3px;
  border: 2px solid #006B91;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}
.button_outline.button_outline--delete {
  height: 51px;
  width: 124px;
  padding: 0;
  box-sizing: border-box;
}
.button_outline--down {
  padding: 15px 50px 15px 40px;
}
.button_outline--down::after {
  content: "\e313";
  right: 10px;
}

.button_search {
  background-color: #eee;
  border: 1px solid #999;
  font-size: 12px;
  font-weight: bold;
  color: #888;
  height: 43px;
  padding: 0 10px 0 30px;
  word-break: keep-all;
}
@media only screen and (max-width: 768px) {
  .button_search {
    height: auto;
    word-break: break-word;
  }
}
.button_search::before {
  content: "\e8b6";
  padding-left: 10px;
}

.button_add {
  color: #006B91;
  font-weight: bold;
  cursor: pointer;
}
.button_add::before {
  content: "\e147";
}

.button_help {
  height: 24px;
  width: 24px;
  font-weight: bold;
  color: #125858;
  font-size: 14px;
  text-align: center;
  background-color: #fff;
  border: 2px solid #125858;
  border-radius: 50%;
}

/**
	list
*/
.list_column {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}
.list_column--l {
  font-size: 16px;
}

.list_dashboard_menu {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
}

.list_dashboard_menu-item {
  width: calc(50% - 10px);
  background-color: #f8f8f8;
  padding: 20px;
  cursor: pointer;
}
@media only screen and (max-width: 768px) {
  .list_dashboard_menu-item {
    width: 100%;
  }
}
.list_dashboard_menu-item:hover {
  background-color: #fff;
  border: 2px solid #008DBF;
  padding: 18px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}
.list_dashboard_menu-item:hover a {
  color: #008DBF;
}
.list_dashboard_menu-item a {
  font-weight: bold;
  color: #006B91;
  text-decoration: underline;
}
.list_dashboard_menu-item p {
  margin-top: 10px;
}

.list_dashboard_menu-item--change {
  width: 100%;
}

.list_app_setting_step {
  display: flex;
  flex-direction: column;
  gap: 20px;
  counter-reset: li;
}
.list_app_setting_step > li::before {
  counter-increment: li;
  content: "STEP" counter(li);
  color: #006B91;
  font-size: 12px;
  font-weight: bold;
  padding: 2px 6px;
  border: 2px solid #006B91;
  border-radius: 3px;
}

.list_app_setting_step-title {
  color: #333;
  font-weight: bold;
  font-size: 16px;
  display: inline;
}

.list_app_setting_step-body {
  margin-top: 10px;
  white-space: pre-wrap;
  color: #006B91;
}

.list_app_setting_link {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.list_app_setting_link a::before {
  content: "・";
}
.list_app_setting_link a::after {
  content: "\e89e";
}

.list_register_button, .list_register_button--first {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.list_register_button > li, .list_register_button--first > li {
  width: 33%;
}
.list_register_button > li.list_register_button-item--next, .list_register_button--first > li.list_register_button-item--next {
  text-align: center;
}
.list_register_button > li.list_register_button-item--temp, .list_register_button--first > li.list_register_button-item--temp {
  text-align: right;
}
.list_register_button > li.list_register_button-item--back_long, .list_register_button--first > li.list_register_button-item--back_long {
  width: 35%;
}
@media only screen and (max-width: 768px) {
  .list_register_button, .list_register_button--first {
    flex-direction: column;
  }
  .list_register_button > li, .list_register_button--first > li {
    width: auto;
  }
  .list_register_button > li.list_register_button-item--next, .list_register_button--first > li.list_register_button-item--next {
    order: 1;
  }
  .list_register_button > li.list_register_button-item--temp, .list_register_button--first > li.list_register_button-item--temp {
    order: 2;
    text-align: center;
  }
  .list_register_button > li.list_register_button-item--back, .list_register_button--first > li.list_register_button-item--back {
    order: 3;
    text-align: center;
    width: calc(100% - 40px);
  }
}

.list_register_button--first::before {
  content: "";
  display: block;
  width: 33%;
}

/**
	message_caution
*/
.message_caution {
  font-weight: bold;
}
.message_caution::before {
  content: "\e86c";
}

/**
	message_sendback
*/
.message_sendback {
  white-space: pre-wrap;
}

/**
	login
*/
.section_login {
  width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
  justify-content: center;
}
@media only screen and (max-width: 768px) {
  .section_login {
    width: 100%;
  }
}

.section_login-header-title {
  color: #00426D;
  font-weight: bold;
  font-size: 24px;
}
@media only screen and (max-width: 768px) {
  .section_login-header-title {
    padding: 0 20px;
  }
}

.section_login-body {
  padding: 20px;
  background-color: #f8f8f8;
}

.section_buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}
.section_buttons--sentori {
  margin-top: 20px;
}

/**
	error
*/
.section_error {
  margin: 0 auto;
  padding-top: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: url(../img/rabby--error.svg) no-repeat top center;
}
@media only screen and (max-width: 768px) {
  .section_error {
    width: 100%;
  }
}

.section_error-header-title {
  color: #00426D;
  font-weight: bold;
  font-size: 24px;
}
@media only screen and (max-width: 768px) {
  .section_error-header-title {
    padding: 0 20px;
  }
}

.section_login-body {
  padding: 20px;
  background-color: #f8f8f8;
}

.section_buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}
.section_buttons--sentori {
  margin-top: 20px;
}

/**
	validation
*/
.field-validation-error {
  color: #FF0000;
  font-size: 12px;
  font-weight: bold;
  display: block;
  margin-top: 5px;
}

/**
	swal2
*/
.swal2-html-container {
  white-space: pre-wrap;
}

/**
	action
*/
@keyframes hideop {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    display: none;
  }
}
.hide {
  animation: hideop 100ms linear 0s;
  animation-fill-mode: forwards;
}

/**
	propaties
*/
.font-bold {
  font-weight: bold;
}

.flex {
  display: flex;
}

.ml-10 {
  margin-left: 10px;
}

/**
	upload
*/
.uploader_container--photo .upload_image {
  max-width: 160px;
}

.uploader_container--license .upload_image {
  max-width: 160px;
}

/**
	agent_modal_content
*/
.agent_modal_content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.agent_modal_content-item {
  display: flex;
  justify-content: center;
}

.agent_modal_content-item-close {
  display: flex;
  margin: 0 auto;
  color: #006B91;
  font-size: 16px;
  font-weight: bold;
}
.agent_modal_content-item-close::before {
  content: "\e888";
  margin-right: 10px;
}

/**
	modal_content_list
*/
.modal_content_list {
  display: flex;
  width: 100%;
  padding: 20px;
  background-color: #f8f8f8;
}
@media only screen and (max-width: 768px) {
  .modal_content_list {
    display: block;
  }
}

.modal_content_list-item {
  flex: 1;
  border-left: 2px solid #EEEEEE;
}
.modal_content_list-item:first-child {
  border-left: none;
}
@media only screen and (max-width: 768px) {
  .modal_content_list-item {
    border-left: none;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid #EEEEEE;
  }
  .modal_content_list-item:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
  }
}

/**
	modal_info
*/
.modal_info.modal_info--margin {
  margin-top: 20px;
}
.modal_info.modal_info--padding {
  padding-left: 20px;
}
@media only screen and (max-width: 768px) {
  .modal_info.modal_info--padding {
    padding-left: 0;
  }
}

.modal_info-title {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  color: #333333;
  font-size: 16px;
  font-weight: bold;
}
.modal_info-title::before {
  content: "任意";
  font-size: 12px;
  color: #fff;
  background-color: #888;
  padding: 2px 6px;
  border-radius: 3px;
}
.modal_info-title.is-required:before {
  content: "必須";
  background-color: #006B91;
}

.modal_info-body {
  margin-top: 10px;
}
.modal_info-body.modal_info-body--width {
  max-width: 299px;
}

.modal_info-body-check {
  display: flex;
  align-items: center;
  height: 48px;
}

/**
	agent_info_list
*/
.agent_info_list {
  margin-top: 12px;
}

.agent_info_list-item {
  margin-top: 14px;
}
.agent_info_list-item:first-child {
  margin-top: 0;
}

/**
	agent_info_item
*/
.agent_info_item-title {
  color: #006D6D;
  font-size: 14px;
  font-weight: bold;
}

.agent_info_item-body {
  margin-top: 10px;
  color: #333333;
  font-size: 14px;
}

/**
	modal_content_button
*/
.modal_content_button {
  display: flex;
}

.modal_content_button-item {
  margin-left: 20px;
}
.modal_content_button-item:first-child {
  margin-left: 0;
}

/**
	switchtab
*/
.switchtab {
  display: flex;
  gap: 20px;
}

/**
	switchtab_item
*/
.switchtab_item {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #006B91;
  font-size: 14px;
  font-weight: bold;
  box-sizing: border-box;
}
.switchtab_item::before {
  margin-right: 5px;
  color: #00426D;
  font-size: 18px;
}
.switchtab_item.is-active {
  border-bottom: 2px solid #00426D;
}
.switchtab_item.switchtab_item--grid::before {
  content: "\e9b0";
}
.switchtab_item.switchtab_item--table::before {
  content: "\e241";
}

/**
	grid_list
*/
.grid_list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.grid_list--col3 .grid_list-item {
  width: calc((100% - 40px) / 3);
}
@media only screen and (max-width: 768px) {
  .grid_list {
    justify-content: center;
  }
  .grid_list .grid_list-item {
    width: 100%;
  }
}

/**
	grid_list-item
*/
.grid_list-item {
  background-color: #fff;
  border-bottom: 2px solid #00426D;
}
.grid_list-item.is-navigatable, .grid_list-item.is-editable {
  cursor: pointer;
}
.grid_list-item.is-navigatable .grid_list-item-header::after, .grid_list-item.is-editable .grid_list-item-header::after {
  right: 10px;
  content: "\e5e1";
  color: #00426D;
  font-size: 14px;
}
.grid_list-item.is-navigatable .grid_list-item-header::after {
  content: "\e5e1";
}
.grid_list-item.is-editable .grid_list-item-header::after {
  content: "\e150";
}
.grid_list-item--command {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: unset;
  border: none;
}
@media only screen and (max-width: 768px) {
  .grid_list-item--command {
    min-height: auto;
  }
}

.grid_list-item-header {
  position: relative;
  padding: 20px;
}

.grid_list-item-header-title {
  color: #333;
  font-size: 14px;
  text-align: center;
}

.grid_list-item-header-body {
  color: #00426D;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
}

.grid_list-item-body {
  padding: 20px;
  border-top: 1px solid #EEEEEE;
}

.grid_list-item-footer {
  padding: 20px;
  text-align: center;
  border-top: 1px solid #EEEEEE;
}

.grid_list-item-footer-title {
  color: #00426D;
  font-size: 14px;
  font-weight: bold;
}

.grid_list-item-footer-text {
  margin-top: 10px;
  color: #333333;
  font-size: 14px;
}

/**
	property_list
*/
.property_list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.property_list-item {
  color: #333;
  font-size: 14px;
  padding-left: 2em;
}
.property_list-item::before {
  color: #00426D;
  font-size: 20px;
}
.property_list-item--address::before {
  content: "\e0c8";
}
.property_list-item--email::before {
  content: "\e0be";
}
.property_list-item--office:before {
  content: "\ea40";
}
.property_list-item--tel:before {
  content: "\e0b0";
}
.property_list-item--license:before {
  content: "\e867";
}
.property_list-item--person:before {
  content: "\e7fd";
}

/**
	data_table
*/
.data_table {
  display: table;
  border-collapse: collapse;
  min-width: 960px;
  width: auto;
  table-layout: fixed;
}
.data_table > li {
  display: table-row-group;
  white-space: nowrap;
}
.data_table > li > ul {
  display: table-row;
  width: 100%;
}
.data_table > li > ul > li {
  display: table-cell;
  line-height: 40px;
  padding-left: 10px;
}
.data_table > li.data_table-header {
  font-weight: bold;
  border-bottom: 2px solid #006B91;
  font-size: 16px;
}
.data_table > li.data_table-body.is-navigatable {
  cursor: pointer;
}
.data_table > li.data_table-body ul li {
  background-color: #ffffff;
  border-bottom: 1px solid #EEEEEE;
}
@media only screen and (max-width: 768px) {
  .data_table {
    min-width: auto;
  }
}

.data_table_wrapper {
  overflow-x: auto;
}

/**
	pager
*/
.pager {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 22px;
}

.pager-item {
  display: flex;
  align-items: center;
  color: #00426D;
  font-size: 16px;
  font-weight: bold;
}
.pager-item.pager-item--prev:before {
  content: "\e5e0";
  margin-left: 5px;
  color: #00426D;
  font-size: 14px;
}
.pager-item.pager-item--next:after {
  content: "\e5e1";
  margin-right: 5px;
  color: #00426D;
  font-size: 14px;
}

/**
	office_list
*/
.office_list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
}
@media only screen and (max-width: 768px) {
  .office_list {
    justify-content: center;
  }
}

.office_list-item {
  width: calc(50% - 10px);
  background-color: #fff;
  border-bottom: 2px solid #00426D;
}
@media only screen and (max-width: 768px) {
  .office_list-item {
    width: 100%;
  }
}

.office_list-item-header {
  text-align: center;
  padding: 20px;
}

.office_list-item-header-title {
  color: #00426D;
  font-size: 16px;
  font-weight: bold;
}

.office_list-item-body {
  border-top: 1px solid #eee;
  padding: 20px;
}

.office_list-item-body-text {
  white-space: pre-wrap;
}

.office_list-item-footer {
  border-top: 1px solid #eee;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

/**
	environment
*/
.environment_section {
  background-color: rgba(0, 0, 0, 0.4);
  color: #fff;
  font-weight: bold;
  font-size: 20px;
  text-align: center;
  text-shadow: 1px 1px 1px #000;
  padding: 10px;
  position: sticky;
  top: 0;
  z-index: 50;
}

/**
	help
*/
.section_help {
  white-space: normal;
}

.section_help-body {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 20px;
  text-align: left;
}

/**
	maintenance
*/
.section_maintenance {
  margin: 0 auto;
  padding-top: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 20px;
}
@media only screen and (max-width: 768px) {
  .section_maintenance {
    width: 100%;
  }
}

.section_maintenance-header-title {
  color: #00426D;
  font-weight: bold;
  font-size: 24px;
}
@media only screen and (max-width: 768px) {
  .section_maintenance-header-title {
    padding: 0 20px;
  }
}

.section_maintenance-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.maintenance-time {
  color: #006B91;
  font-weight: bold;
  font-size: 20px;
}
