@charset "UTF-8";
/**************************\
  Basic Modal Styles
\**************************/
.modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 9999999;
}
/*.modal__container {*/
/*  background-color: #fff;*/
/*  padding: 30px;*/
/*  max-width: min(500px, 100vw - 2rem);*/
/*  max-height: calc(100vh - 2rem);*/
/*  border-radius: 16px;*/
/*  overflow-y: auto;*/
/*  -webkit-box-sizing: border-box;*/
/*          box-sizing: border-box;*/
/*}*/

.modal__container {
  background-color: #fff;
  padding: 45px 50px 65px 65px;
  width: 680px;
  border-radius: 15px;
  overflow-y: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media (max-width: 640px) {
  .modal__container {
    padding: 1rem 1rem;
  }
}
.modal__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.modal__header .modal__close::before {
  content: "✕";
}
.modal__title {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.25;
  color: #00449e;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.modal__mini-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.25em;
  color: #2f303a;
}
.modal__data {
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 1.5em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 0.5em;
}
.modal__txt {
  font-size: 0.875rem;
  line-height: 1.7;
}
.modal__close {
  background: transparent;
  border: 0;
}
.modal__content {
  margin-top: 2rem;
  margin-bottom: 2rem;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.8);
}
.modal__btn {
  font-size: 0.875rem;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  background-color: #e6e6e6;
  color: rgba(0, 0, 0, 0.8);
  border-radius: 0.25rem;
  border-style: none;
  border-width: 0;
  cursor: pointer;
  -webkit-appearance: button;
  text-transform: none;
  overflow: visible;
  line-height: 1.15;
  margin: 0;
  will-change: transform;
  -moz-osx-font-smoothing: grayscale;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  transition: -webkit-transform 0.25s ease-out;
  -webkit-transition: -webkit-transform 0.25s ease-out;
  transition: transform 0.25s ease-out;
  transition: transform 0.25s ease-out, -webkit-transform 0.25s ease-out;
}
.modal__btn:focus, .modal__btn:hover {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.modal__btn-primary {
  background-color: #00449e;
  color: #fff;
}

/**************************\
  Demo Animation Style
\**************************/
@-webkit-keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@-webkit-keyframes mmslideIn {
  from {
    -webkit-transform: translateY(15%);
            transform: translateY(15%);
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes mmslideIn {
  from {
    -webkit-transform: translateY(15%);
            transform: translateY(15%);
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes mmslideOut {
  from {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-10%);
            transform: translateY(-10%);
  }
}
@keyframes mmslideOut {
  from {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-10%);
            transform: translateY(-10%);
  }
}
.micromodal-slide {
  display: none;
}
.micromodal-slide.is-open {
  display: block;
}

.micromodal-slide[aria-hidden=false] .modal__overlay {
  -webkit-animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
          animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=false] .modal__container {
  -webkit-animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
          animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal__overlay {
  -webkit-animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
          animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal__container {
  -webkit-animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
          animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
  will-change: transform;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

:where([hidden]:not([hidden=until-found])) {
  display: none !important;
}

:where(html) {
  -webkit-text-size-adjust: none;
  color-scheme: dark light;
}

@media (prefers-reduced-motion: no-preference) {
  :where(html:focus-within) {
    scroll-behavior: smooth;
  }
}
:where(body) {
  line-height: 1.5;
  font-family: system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

:where(input, button, textarea, select) {
  font: inherit;
  color: inherit;
}

:where(textarea) {
  resize: vertical;
  resize: block;
}

:where(button, label, select, summary, [role=button], [role=option]) {
  cursor: pointer;
}

:where(:disabled) {
  cursor: not-allowed;
}

:where(label:has(> input:disabled), label:has(+ input:disabled)) {
  cursor: not-allowed;
}

:where(button) {
  border-style: solid;
}

:where(a) {
  color: inherit;
  text-underline-offset: 0.2ex;
}

:where(ul, ol) {
  list-style: none;
}

:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
}

:where(img, picture, svg) {
  max-inline-size: 100%;
  block-size: auto;
}

:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}

:where(h1, h2, h3) {
  line-height: calc(1em + 0.5rem);
}

:where(hr) {
  border: none;
  -webkit-border-before: 1px solid;
          border-block-start: 1px solid;
  color: inherit;
  block-size: 0;
  overflow: visible;
}

:where(:focus-visible) {
  outline: 3px solid Highlight;
  outline-offset: 2px;
  scroll-margin-block: 10vh;
}

:where(.visually-hidden:not(:focus-within, :active)) {
  -webkit-clip-path: inset(50%) !important;
          clip-path: inset(50%) !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden !important;
  position: absolute !important;
  white-space: nowrap !important;
  border: 0 !important;
}

@font-face {
  font-family: "icomoon";
  src: url("fonts/icomoon.ttf?43mk3s") format("truetype"), url("fonts/icomoon.woff?43mk3s") format("woff"), url("fonts/icomoon.svg?43mk3s#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
[class^=icon-], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "icomoon" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}


.icon-paperplane:before {
  content: "\e91d";
}

.icon-setting:before {
  content: "\e900";
}

.icon-alert:before {
  content: "\e901";
}

.icon-tantousha:before {
  content: "\e902";
}

.icon-loudspeaker:before {
  content: "\e903";
}

.icon-todo:before {
  content: "\e904";
}

.icon-bell:before {
  content: "\e905";
}

.icon-help:before {
  content: "\e906";
}

.icon-schedule:before {
  content: "\e907";
}

.icon-nyushukkin:before {
  content: "\e908";
}

.icon-document:before {
  content: "\e909";
}

.icon-home:before {
  content: "\e90a";
}

.icon-write:before {
  content: "\e90b";
}

.icon-repeat:before {
  content: "\e90c";
}

.icon-image:before {
  content: "\e90d";
}

.icon-images:before {
  content: "\e90e";
}

.icon-pencil:before {
  content: "\e90f";
}

.icon-more-v:before {
  content: "\e910";
}

.icon-bin:before {
  content: "\e911";
}

.icon-time:before {
  content: "\e912";
}

.icon-zero-yen-kanri:before {
  content: "\e913";
}

.icon-parking:before {
  content: "\e914";
}

.icon-owner:before {
  content: "\e915";
}

.icon-nyutaikyo:before {
  content: "\e916";
}

.icon-nyukyosha:before {
  content: "\e917";
}

.icon-bukken:before {
  content: "\e918";
}

.icon-info:before {
  content: "\e919";
}

.icon-houjin:before {
  content: "\e91a";
}

.icon-gyoumu:before {
  content: "\e91b";
}

.icon-person:before {
  content: "\e91c";
}

.icon-file-empty:before {
  content: "\e924";
}

.icon-files-empty:before {
  content: "\e925";
}

.icon-folder:before {
  content: "\e92f";
}

.icon-folder-open:before {
  content: "\e930";
}

.icon-folder-plus:before {
  content: "\e931";
}

.icon-folder-minus:before {
  content: "\e932";
}

.icon-folder-download:before {
  content: "\e933";
}

.icon-folder-upload:before {
  content: "\e934";
}

.icon-coin-yen:before {
  content: "\e93e";
}

.icon-phone:before {
  content: "\e942";
}

.icon-location:before {
  content: "\e947";
}

.icon-search:before {
  content: "\e986";
}

.icon-zoom-in:before {
  content: "\e987";
}

.icon-zoom-out:before {
  content: "\e988";
}

.icon-enlarge2:before {
  content: "\e98b";
}

.icon-shrink2:before {
  content: "\e98c";
}

.icon-briefcase:before {
  content: "\e9ae";
}

.icon-eye:before {
  content: "\e9ce";
}

.icon-eye-blocked:before {
  content: "\e9d1";
}

.icon-plus:before {
  content: "\ea0a";
}

.icon-minus:before {
  content: "\ea0b";
}

.icon-cancel-circle:before {
  content: "\ea0d";
}

.icon-enter:before {
  content: "\ea13";
}

.icon-exit:before {
  content: "\ea14";
}

.icon-arrow-up-left2:before {
  content: "\ea39";
}

.icon-arrow-up2:before {
  content: "\ea3a";
}

.icon-arrow-up-right2:before {
  content: "\ea3b";
}

.icon-arrow-right2:before {
  content: "\ea3c";
}

.icon-arrow-down-right2:before {
  content: "\ea3d";
}

.icon-arrow-down2:before {
  content: "\ea3e";
}

.icon-arrow-down-left2:before {
  content: "\ea3f";
}

.icon-arrow-left2:before {
  content: "\ea40";
}

.icon-circle-up:before {
  content: "\ea41";
}

.icon-circle-right:before {
  content: "\ea42";
}

.icon-circle-down:before {
  content: "\ea43";
}

.icon-circle-left:before {
  content: "\ea44";
}

.icon-sort-alpha-asc:before {
  content: "\ea48";
}

.icon-sort-alpha-desc:before {
  content: "\ea49";
}

.icon-sort-numeric-asc:before {
  content: "\ea4a";
}

.icon-sort-numberic-desc:before {
  content: "\ea4b";
}

.icon-sort-amount-asc:before {
  content: "\ea4c";
}

.icon-sort-amount-desc:before {
  content: "\ea4d";
}

.icon-checkbox-checked:before {
  content: "\ea52";
}

.icon-checkbox-unchecked:before {
  content: "\ea53";
}

.icon-radio-checked:before {
  content: "\ea54";
}

.icon-radio-checked2:before {
  content: "\ea55";
}

.icon-radio-unchecked:before {
  content: "\ea56";
}

.icon-filter:before {
  content: "\ea5b";
}

.icon-paragraph-left:before {
  content: "\ea77";
}

.icon-paragraph-center:before {
  content: "\ea78";
}

.icon-paragraph-right:before {
  content: "\ea79";
}

.icon-paragraph-justify:before {
  content: "\ea7a";
}

.icon-indent-increase:before {
  content: "\ea7b";
}

.icon-indent-decrease:before {
  content: "\ea7c";
}

.icon-new-tab:before {
  content: "\ea7e";
}

.icon-printer:before {
  content: "\e954";
}

.icon-bubbles2:before {
  content: "\e96d";
}


/*.icon-tantousha:before {*/
/*  content: "\e902";*/
/*}*/

/*.icon-schedule:before {*/
/*  content: "\e907";*/
/*}*/

/*.icon-nyushukkin:before {*/
/*  content: "\e908";*/
/*}*/

/*.icon-info:before {*/
/*  content: "\e919";*/
/*}*/

/*.icon-houjin:before {*/
/*  content: "\e91a";*/
/*}*/

/*.icon-gyoumu:before {*/
/*  content: "\e91b";*/
/*}*/

/*.icon-zero-yen-kanri:before {*/
/*  content: "\e913";*/
/*}*/

/*.icon-parking:before {*/
/*  content: "\e914";*/
/*}*/

/*.icon-owner:before {*/
/*  content: "\e915";*/
/*}*/

/*.icon-nyutaikyo:before {*/
/*  content: "\e916";*/
/*}*/

/*.icon-nyukyosha:before {*/
/*  content: "\e917";*/
/*}*/

/*.icon-bukken:before {*/
/*  content: "\e918";*/
/*}*/

/*.icon-write:before {*/
/*  content: "\e90b";*/
/*}*/

/*.icon-more-v:before {*/
/*  content: "\e910";*/
/*}*/

/*.icon-bin:before {*/
/*  content: "\e911";*/
/*}*/

/*.icon-time:before {*/
/*  content: "\e912";*/
/*}*/

/*.icon-pencil:before {*/
/*  content: "\e90f";*/
/*}*/

/*.icon-repeat:before {*/
/*  content: "\e90c";*/
/*  color: #4b4b4b;*/
/*}*/

/*.icon-todo:before {*/
/*  content: "\e904";*/
/*}*/

/*.icon-alert:before {*/
/*  content: "\e901";*/
/*}*/

.icon-calendar:before {
  content: "\e902";
}

/*.icon-loudspeaker:before {*/
/*  content: "\e903";*/
/*}*/

/*.icon-bell:before {*/
/*  content: "\e905";*/
/*}*/

/*.icon-setting:before {*/
/*  content: "\e900";*/
/*}*/

/*.icon-help:before {*/
/*  content: "\e906";*/
/*}*/

/*.icon-building:before {*/
/*  content: "\e907";*/
/*}*/

/*.icon-person:before {*/
/*  content: "\e908";*/
/*}*/

/*.icon-document:before {*/
/*  content: "\e909";*/
/*}*/

/*.icon-home:before {*/
/*  content: "\e90a";*/
/*}*/

/*.icon-image:before {*/
/*  content: "\e90d";*/
/*}*/

/*.icon-images:before {*/
/*  content: "\e90e";*/
/*}*/

/*.icon-file-empty:before {*/
/*  content: "\e924";*/
/*}*/

/*.icon-files-empty:before {*/
/*  content: "\e925";*/
/*}*/

/*.icon-folder:before {*/
/*  content: "\e92f";*/
/*}*/

/*.icon-folder-open:before {*/
/*  content: "\e930";*/
/*}*/

/*.icon-folder-plus:before {*/
/*  content: "\e931";*/
/*}*/

/*.icon-folder-minus:before {*/
/*  content: "\e932";*/
/*}*/

/*.icon-folder-download:before {*/
/*  content: "\e933";*/
/*}*/

/*.icon-folder-upload:before {*/
/*  content: "\e934";*/
/*}*/

/*.icon-coin-yen:before {*/
/*  content: "\e93e";*/
/*}*/

/*.icon-phone:before {*/
/*  content: "\e942";*/
/*}*/

/*.icon-location:before {*/
/*  content: "\e947";*/
/*}*/

/*.icon-users:before {*/
/*  content: "\e972";*/
/*}*/

/*.icon-search:before {*/
/*  content: "\e986";*/
/*}*/

/*.icon-zoom-in:before {*/
/*  content: "\e987";*/
/*}*/

/*.icon-zoom-out:before {*/
/*  content: "\e988";*/
/*}*/

/*.icon-enlarge2:before {*/
/*  content: "\e98b";*/
/*}*/

/*.icon-shrink2:before {*/
/*  content: "\e98c";*/
/*}*/

/*.icon-briefcase:before {*/
/*  content: "\e9ae";*/
/*}*/

/*.icon-eye:before {*/
/*  content: "\e9ce";*/
/*}*/

/*.icon-eye-blocked:before {*/
/*  content: "\e9d1";*/
/*}*/

/*.icon-plus:before {*/
/*  content: "\ea0a";*/
/*}*/

/*.icon-minus:before {*/
/*  content: "\ea0b";*/
/*}*/

/*.icon-cancel-circle:before {*/
/*  content: "\ea0d";*/
/*}*/

/*.icon-enter:before {*/
/*  content: "\ea13";*/
/*}*/

/*.icon-exit:before {*/
/*  content: "\ea14";*/
/*}*/

/*.icon-arrow-up-left2:before {*/
/*  content: "\ea39";*/
/*}*/

/*.icon-arrow-up2:before {*/
/*  content: "\ea3a";*/
/*}*/

/*.icon-arrow-up-right2:before {*/
/*  content: "\ea3b";*/
/*}*/

/*.icon-arrow-right2:before {*/
/*  content: "\ea3c";*/
/*}*/

/*.icon-arrow-down-right2:before {*/
/*  content: "\ea3d";*/
/*}*/

/*.icon-arrow-down2:before {*/
/*  content: "\ea3e";*/
/*}*/

/*.icon-arrow-down-left2:before {*/
/*  content: "\ea3f";*/
/*}*/

/*.icon-arrow-left2:before {*/
/*  content: "\ea40";*/
/*}*/

/*.icon-circle-up:before {*/
/*  content: "\ea41";*/
/*}*/

/*.icon-circle-right:before {*/
/*  content: "\ea42";*/
/*}*/

/*.icon-circle-down:before {*/
/*  content: "\ea43";*/
/*}*/

/*.icon-circle-left:before {*/
/*  content: "\ea44";*/
/*}*/

/*.icon-sort-alpha-asc:before {*/
/*  content: "\ea48";*/
/*}*/

/*.icon-sort-alpha-desc:before {*/
/*  content: "\ea49";*/
/*}*/

/*.icon-sort-numeric-asc:before {*/
/*  content: "\ea4a";*/
/*}*/

/*.icon-sort-numberic-desc:before {*/
/*  content: "\ea4b";*/
/*}*/

/*.icon-sort-amount-asc:before {*/
/*  content: "\ea4c";*/
/*}*/

/*.icon-sort-amount-desc:before {*/
/*  content: "\ea4d";*/
/*}*/

/*.icon-checkbox-checked:before {*/
/*  content: "\ea52";*/
/*}*/

/*.icon-checkbox-unchecked:before {*/
/*  content: "\ea53";*/
/*}*/

/*.icon-radio-checked:before {*/
/*  content: "\ea54";*/
/*}*/

/*.icon-radio-checked2:before {*/
/*  content: "\ea55";*/
/*}*/

/*.icon-radio-unchecked:before {*/
/*  content: "\ea56";*/
/*}*/

/*.icon-filter:before {*/
/*  content: "\ea5b";*/
/*}*/

/*.icon-paragraph-left:before {*/
/*  content: "\ea77";*/
/*}*/

/*.icon-paragraph-center:before {*/
/*  content: "\ea78";*/
/*}*/

/*.icon-paragraph-right:before {*/
/*  content: "\ea79";*/
/*}*/

/*.icon-paragraph-justify:before {*/
/*  content: "\ea7a";*/
/*}*/

/*.icon-indent-increase:before {*/
/*  content: "\ea7b";*/
/*}*/

/*.icon-indent-decrease:before {*/
/*  content: "\ea7c";*/
/*}*/

/*.icon-new-tab:before {*/
/*  content: "\ea7e";*/
/*}*/

/*!* 20240123追加 *!*/
/*.icon-tantousha:before {*/
/*  content: "\e902";*/
/*}*/

/*.icon-schedule:before {*/
/*  content: "\e907";*/
/*}*/

/*.icon-nyushukkin:before {*/
/*  content: "\e908";*/
/*}*/

/*.icon-info:before {*/
/*  content: "\e919";*/
/*}*/

/*.icon-houjin:before {*/
/*  content: "\e91a";*/
/*}*/

/*.icon-gyoumu:before {*/
/*  content: "\e91b";*/
/*}*/

/*.icon-zero-yen-kanri:before {*/
/*  content: "\e913";*/
/*}*/

/*.icon-parking:before {*/
/*  content: "\e914";*/
/*}*/

/*.icon-owner:before {*/
/*  content: "\e915";*/
/*}*/

/*.icon-nyutaikyo:before {*/
/*  content: "\e916";*/
/*}*/

/*.icon-nyukyosha:before {*/
/*  content: "\e917";*/
/*}*/

/*.icon-bukken:before {*/
/*  content: "\e918";*/
/*}*/

/* UTILS */
.visually-hidden,
.visually-hidden-focusable:not(:focus) {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

button {
  padding: 0;
  border: none;
  outline: none;
  font: inherit;
  color: inherit;
  background: none;
}

@media (min-width: 641px) {
  .only-sp,
  .sp {
    display: none !important;
  }
}

@media (max-width: 640px) {
  .only-pc,
  .pc {
    display: none !important;
  }
}

/*---------------------------------
/* BASE
/*---------------------------------*/
:root {
  font-size: min(clamp(14px, 14px + 6 * (100vw - 800px) / 1000, 20px), 2.5vh);
}
@media (max-width: 640px) {
  :root {
    font-size: clamp(14px, 4.2666666667vw, 18px);
  }
}
html {
  font-size: 16px;
}
body {
  font-family: "Noto Sans JP", sans-serif;
  --cl_default: #2f303a;
  --cl_inactive: #afafaf;
  --cl_current1: #7f88cb;
  --cl_current2: rgba(125, 137, 227, 0.2);
  --cl_hover: rgba(125, 137, 227, 0.05);
  --cl_active: rgba(125, 137, 227, 0.1);
  --cl_bg: #fff;
  --cl_notification: #ff1c1c;
  --cl_border: #d4d4d4;
  --cl_beige1: #f5f5f5;
  --cl_beige2: #f8f8f8;
  --fw_bold: 700;
  --fw_medium: 500;
  --fw_regular: 400;
  --width_sidearea: 210px;
  --width_aside: 11.25rem;
  --height_spheader: 3.75rem;
  color: var(--cl_default);
  background: var(--cl_beige1);
}
body.is-sidearea-smallen {
  --width_sidearea: 5rem;
  --width_aside: 18.75rem;
}
@media (max-width: 640px) {
  body {
    overscroll-behavior-y: none;
  }
}

.cl01 {
  --cl: #d40349;
}

.cl02 {
  --cl: #1b62d6;
}

.cl03 {
  --cl: #008a7d;
}

.cl04 {
  --cl: #c000d5;
}

.cl05 {
  --cl: #f442a1;
}

.cl06 {
  --cl: #e55007;
}

.cl07 {
  --cl: #d2b600;
}

@media (min-width: 641px) {
  .wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    position: relative;
  }
}


/*---------------------------------
/* HEADER
/*---------------------------------*/

.header-simple {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 2.386rem;
  background-color: #fff;
}
.header-simple__logo {
  height: 0.835rem;
}

.content-simple {
  padding: 2.028rem 1.193rem;
}
.content.content-simple > div {
  overflow: visible;
  border-radius: 0;
}

/*---------------------------------
/* SIDE
/*---------------------------------*/
@media (min-width: 641px) {
  .sidearea {
    position: fixed;
    width: var(--width_sidearea);
    height: 100%;
    overflow: hidden;
    overflow-y: scroll;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.05);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.05);
    z-index: 1;
    padding-bottom: 60px;
  }
}
@media (max-width: 640px) {
  .sidearea {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
  }
}

.sidearea {
  background-color: #dde7f8;
  background-image: url(../images/bg_sidemenu.svg);
  background-repeat: no-repeat;
  background-position: 0 0;
}

.sidearea__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /*position: sticky;*/
  /*top: 0;*/
  /*left: 0;*/
  /*width: 100%;*/
  /*padding: 1.25rem 1.875rem 0.9375rem;*/
  padding: 20px 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.9375rem;
  font-size: 0.9375rem;
  font-weight: var(--fw_bold);
  letter-spacing: 0.075em;
  z-index: 1000;
}
@media (max-width: 640px) {
  .sidearea__logo {
    padding: 0 var(--height_spheader);
    height: var(--height_spheader);
  }
}
@media (min-width: 641px) {
  .is-sidearea-smallen .sidearea__logo {
    padding: 1.25rem 0.625rem 0.9375rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .is-sidearea-smallen .sidearea__logo .txt {
    display: none;
  }
}
@media (min-width: 641px) {
  .sidearea__menu {
    padding-bottom: 6.25rem;
  }

}
@media (max-width: 640px) {
  .sidearea__menu {
    padding-bottom: 1.25rem;
  }
}
.sidearea__menuLink {
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  font-size: 14px;
  height: 40px;
  font-weight: var(--fw_medium);
  width: 100%;
  padding: 15px 30px;
  /*gap: 0.3rem;*/
  /*color: var(--cl_inactive);*/
  /*border-left: 0.1875rem solid #fff;*/
  -webkit-transition: ease 200ms;
  transition: ease 200ms;
}

.sidearea__menuLink > span {
  color: #7B9EE5;
  margin-right: 10px;
}

.sidearea__menuLink > .txt {
  color: #566184;
}
@media (max-width: 640px) {
  .sidearea__menuLink {
    padding: 0.625rem 1.25rem 0.625rem 1.0625rem;
    color: var(--cl_default);
  }
}
.sidearea__menuLink.is-current {
  color: #3c4562;
  /*border-left: 0.1875rem solid var(--cl_current1);*/
  background-color: rgba(255,255,255,0.6);
}
@media (any-hover: hover) {
  .sidearea__menuLink:not(.is-current):hover {
    border-color: var(--cl_hover);
    background-color: var(--cl_hover);
    color: var(--cl_default);
  }
}
.sidearea__menuLink:not(.is-current):active {
  border-color: var(--cl_active);
  background-color: var(--cl_active);
  -webkit-transition: ease 50ms;
  transition: ease 50ms;
}
.is-sidearea-smallen .sidearea__menuLink {
  padding: 0.625rem 1.25rem 0.625rem 1.0625rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.is-sidearea-smallen .sidearea__menuLink .txt {
  display: none;
}
.sidearea__menu .has-dropdown {
  position: relative;
}
.sidearea__menu .has-dropdown::before {
  content: "";
  display: block;
  width: 0.3em;
  height: 0.3em;
  border-style: solid;
  border-width: 0 1px 1px 0;
  position: absolute;
  left: 10px;
  top: 14px;
  transform: rotate(45deg);
  transition: transform ease 200ms, -webkit-transform ease 200ms;
}
@media (max-width: 640px) {
  .sidearea__menu .has-dropdown::before {
    left: auto;
    right: 1em;
  }
}
.sidearea__menu .has-dropdown.is-submenu-open::before {
  -webkit-transform: translateY(75%) rotate(-135deg);
          transform: translateY(75%) rotate(-135deg);
}
.is-sidearea-smallen .sidearea__menu .has-dropdown::before {
  display: none;
}
@media (max-width: 640px) {
  .sidearea__menu > li {
    border-bottom: 1px solid var(--cl_border);
  }
}
.sidearea__submenu {
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
  display: none;
}
@media (max-width: 640px) {
  .sidearea__submenu {
    padding-top: 0;
  }
  .is-current ~ .sidearea__submenu {
    padding-top: 0.375rem;
  }
}
.is-sidearea-smallen .sidearea__submenu {
  display: none !important;
}
.is-current ~ .sidearea__submenu {
  display: block;
}
.sidearea__submenu a {
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  font-size: 0.7rem;
  font-weight: var(--fw_medium);
  width: 100%;
  padding: 0.3rem 0 0.3rem 1.6rem;
  gap: 0.3rem;
  color: #677190;
  -webkit-transition: ease 200ms;
  transition: ease 200ms;
}
@media (max-width: 640px) {
  .sidearea__submenu a {
    color: var(--cl_default);
    padding: 0 1.25rem 0 1.5625rem;
  }
}
.sidearea__submenu a::before {
  content: "";
  width: 0.4em;
  height: 0.4em;
  background-color: var(--cl_current1);
  border-radius: 100%;
  opacity: 0;
}
.sidearea__submenu a.is-current {
  color: #2F303A;
}
.sidearea__submenu a.is-current::before {
  opacity: 1;
}
@media (any-hover: hover) {
  .sidearea__submenu a:hover {
    background-color: var(--cl_hover);
    color: var(--cl_default);
  }
}
.sidearea__submenu a:not(.is-current):active {
  background-color: var(--cl_active);
  -webkit-transition: ease 50ms;
  transition: ease 50ms;
}
@media (min-width: 641px) {
  .sidearea__account {
    position: sticky;
    bottom: 1.875rem;
    left: 1.875rem;
  }
  .is-sidearea-smallen .sidearea__account {
    left: 1.375rem;
  }
}
.sidearea__toggleSize {
  position: fixed;
  width: 2.1875rem;
  height: 2.1875rem;
  border-radius: 100vmax;
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.05), 0 6px 12px rgba(0, 0, 0, 0.05);
          box-shadow: 0 6px 12px rgba(0, 0, 0, 0.05), 0 6px 12px rgba(0, 0, 0, 0.05);
  background-color: #fff;
  top: 1.125rem;
  left: calc( var(--width_sidearea) - 0.9375rem);
  z-index: 100;
}
@media (max-width: 640px) {
  .sidearea__toggleSize {
    display: none;
  }
}
.sidearea__toggleSize::before {
  content: "";
  display: block;
  width: 0.53125rem;
  height: 0.53125rem;
  border-style: solid;
  border-width: 0.15625rem 0.15625rem 0 0;
  border-color: #5470c7;
  position: absolute;
  top: calc(50% - 0.265625rem);
  left: calc(50% - 0.265625rem);
  -webkit-transform: translate(25%, 0) rotate(-135deg);
          transform: translate(25%, 0) rotate(-135deg);
}
.is-sidearea-smallen .sidearea__toggleSize::before {
  -webkit-transform: translate(-25%, 0) rotate(45deg);
          transform: translate(-25%, 0) rotate(45deg);
}
@media (max-width: 640px) {
  .sidearea .spDrawer {
    position: fixed;
    background-color: #fff;
    width: 100%;
    height: calc(100% - var(--height_spheader));
    -ms-scroll-chaining: none;
        overscroll-behavior: contain;
    overflow-y: scroll;
    display: none;
    pointer-events: none;
    opacity: 0;
    -webkit-transform: translateX(-5%);
            transform: translateX(-5%);
    top: var(--height_spheader);
    left: 0;
  }
  .sidearea .spDrawer.is-active {
    display: block;
    -webkit-transition: ease 200ms;
    transition: ease 200ms;
  }
  .sidearea .spDrawer.is-active.is-visible {
    pointer-events: auto;
    opacity: 1;
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  .sidearea .spDrawer .sidearea__menu {
    min-height: calc(100% + 1px);
    margin-bottom: 70px;
  }
}
@media (min-width: 641px) {
  .sidearea .spDrawerToggle {
    display: none !important;
  }
}
@media (max-width: 640px) {
  .sidearea .spDrawerToggle {
    position: absolute;
    width: 3.125rem;
    height: 3.125rem;
    top: 0.3125rem;
    left: 0.3125rem;
    z-index: 1000;
  }
  .sidearea .spDrawerToggle::before, .sidearea .spDrawerToggle::after, .sidearea .spDrawerToggle .bar {
    content: "";
    display: block;
    background-color: var(--cl_current1);
    height: 2px;
    width: 50%;
    position: absolute;
    left: 25%;
  }
  .sidearea .spDrawerToggle .bar {
    top: 50%;
    -webkit-transition: opacity 200ms;
    transition: opacity 200ms;
  }
  .sidearea .spDrawerToggle::before {
    top: calc(50% - 0.3125rem);
    -webkit-transition: top 100ms 100ms, -webkit-transform 100ms;
    transition: top 100ms 100ms, -webkit-transform 100ms;
    transition: top 100ms 100ms, transform 100ms;
    transition: top 100ms 100ms, transform 100ms, -webkit-transform 100ms;
  }
  .sidearea .spDrawerToggle::after {
    top: calc(50% + 0.3125rem);
    -webkit-transition: top 100ms 100ms, -webkit-transform 100ms;
    transition: top 100ms 100ms, -webkit-transform 100ms;
    transition: top 100ms 100ms, transform 100ms;
    transition: top 100ms 100ms, transform 100ms, -webkit-transform 100ms;
  }
  .sidearea .spDrawerToggle.is-open span {
    opacity: 0;
  }
  .sidearea .spDrawerToggle.is-open::before {
    top: calc(50% - 0px);
    -webkit-transform: rotate(30deg);
            transform: rotate(30deg);
    -webkit-transition: top 100ms 0ms, -webkit-transform 100ms 100ms;
    transition: top 100ms 0ms, -webkit-transform 100ms 100ms;
    transition: top 100ms 0ms, transform 100ms 100ms;
    transition: top 100ms 0ms, transform 100ms 100ms, -webkit-transform 100ms 100ms;
  }
  .sidearea .spDrawerToggle.is-open::after {
    top: calc(50% + 0px);
    -webkit-transform: rotate(-30deg);
            transform: rotate(-30deg);
    -webkit-transition: top 100ms 0ms, -webkit-transform 100ms 100ms;
    transition: top 100ms 0ms, -webkit-transform 100ms 100ms;
    transition: top 100ms 0ms, transform 100ms 100ms;
    transition: top 100ms 0ms, transform 100ms 100ms, -webkit-transform 100ms 100ms;
  }
}

.accountButton {
  border-radius: 100vmax;
  aspect-ratio: 1/1;
  width: 2.1875rem;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: var(--cl_default);
  color: var(--cl_bg);
  text-decoration: none;
  font-size: 18px;
}
@media (max-width: 640px) {
  .accountButton {
    width: 2.5rem;
    font-size: 1.25rem;
  }
}
@media (any-hover: hover) {
  .accountButton {
    -webkit-transition: ease 200ms;
    transition: ease 200ms;
  }
  .accountButton:hover {
    opacity: 0.65;
  }
}
/*.accountButton.--notification::before {*/
/*  content: "";*/
/*  display: block;*/
/*  aspect-ratio: 1/1;*/
/*  width: 0.8125rem;*/
/*  border-radius: 100vmax;*/
/*  border: 1px solid #fff;*/
/*  position: absolute;*/
/*  right: -1px;*/
/*  top: -1px;*/
/*  background-color: var(--cl_notification);*/
/*}*/
.accountButtonContainer {
  position: fixed;
  z-index: 1000;
}
@media (min-width: 641px) {
  .accountButtonContainer {
    bottom: 1.25rem;
    left: 1.25rem;
  }
}
@media (max-width: 640px) {
  .accountButtonContainer {
    top: 0.625rem;
    right: 0.625rem;
  }
}
.accountButton__nameTip {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  left: calc(100% + 15px);
  bottom: 0;
  height: 100%;
  white-space: nowrap;
  padding: 0.25em 1em 0.25em;
  font-size: 0.725rem;
  background-color: var(--cl_default);
  color: #fff;
  border-radius: 8px;
  display: none;
}
.accountButton__nameTip::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0.625rem;
  right: 100%;
  width: 10px;
  height: 10px;
  background: var(--cl_default);
  -webkit-clip-path: polygon(0 50%, 100% 0, 100% 100%);
          clip-path: polygon(0 50%, 100% 0, 100% 100%);
}
.accountButton__menu {
  position: absolute;
  border-radius: 0.625rem;
  padding: 0.625rem 0;
  z-index: 10;
  background-color: #fff;
  display: none;
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.05), 0 6px 12px rgba(0, 0, 0, 0.05);
          box-shadow: 0 6px 12px rgba(0, 0, 0, 0.05), 0 6px 12px rgba(0, 0, 0, 0.05);
}
@media (min-width: 641px) {
  .accountButton__menu {
    left: calc(100% + 15px);
    bottom: 0;
  }
}
@media (max-width: 640px) {
  .accountButton__menu {
    top: calc( 100% + 0.625rem );
    right: 0;
  }
}
.accountButton__menu li.nameRow {
  font-size: 0.875rem;
  line-height: 2;
  font-weight: var(--fw_medium);
  padding: 0 1.25rem 0.3125rem;
  margin-bottom: 0.3125rem;
  border-bottom: 1px solid var(--cl_border);
}
.accountButton__menu li a {
  display: block;
  text-decoration: none;
  font-size: 0.75rem;
  line-height: 2.1875rem;
  padding: 0 1.25rem;
  white-space: nowrap;
}
@media (any-hover: hover) {
  .accountButton__menu li a:hover {
    background: var(--cl_beige2);
  }
}
@media (min-width: 641px) {
  .accountButton:not(:focus):hover ~ .accountButton__nameTip {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

/*---------------------------------
/* MAIN
/*---------------------------------*/
@media (min-width: 641px) {
  .mainarea {
    width: calc(100% - var(--width_sidearea));
    margin-left: var(--width_sidearea);
    height: 100vh;
    padding: 1rem 1.875rem;
  }
  .mainarea__inner {
    height: 100%;
    background-color: #fff;
    border-radius: 0.9375rem;
    overflow: hidden;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.05);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.05);
  }
}

@media (min-width: 641px) {
  .contentarea {
    margin-left: auto;
    margin-right: auto;
    padding: 1rem 1.875rem;
    width: 100%;
  }
  .sidearea ~ .contentarea {
    margin-left: var(--width_sidearea);
    margin-right: 0;
    width: calc(100% - var(--width_sidearea));
  }
}
@media (max-width: 640px) {
  .contentarea {
    width: 100%;
    padding: 1.275rem;
  }
}

.content {
  /*overflow: hidden;*/
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.05);
          box-shadow: 0 6px 12px rgba(0, 0, 0, 0.05);
}
.content-owner {
  font-family: 'Noto Sans JP', sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  max-width: 600px;
  margin: 0 auto;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.content > div {
  border-radius: 0.9375rem;
}

@media (max-width: 640px) {
  .content > div {
    overflow: auto;
  }
}
/*---------------------------------
/* TOP
/*---------------------------------*/
@media (min-width: 641px) {
  .topContent {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    height: 100%;
  }
}
@media (max-width: 640px) {
  .topContent {
    /*min-height: calc(100svh - var(--height_spheader));*/
    /*padding-bottom: var(--height_spheader);*/
    padding-bottom: 0;
  }
}
@media (min-width: 641px) {
  .topContent__aside {
    height: 100%;
    width: 180px;
    border-right: 1px solid var(--cl_border);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
  }
  .topContent__asideSection {
    min-height: 2.625rem;
  }
  .topContent__asideSection:not(:first-child) {
    border-top: 1px solid var(--cl_border);
  }
  .topContent__asideHeader {
    /*font-size: 0.75rem;*/
    font-size: 12px;
    font-weight: var(--fw_bold);
    padding: 10px 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0.5rem;
    background-color: #DFE5F8;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .topContent__asideHeader > span {
    color: #5470c7;
  }
  .topContent__asideHeader button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    gap: 0.5rem;
  }
  .topContent__asideHeader button.toggle {
    position: relative;
  }
  .topContent__asideHeader button.toggle::before, .topContent__asideHeader button.toggle::after {
    content: "";
    display: block;
    position: absolute;
    right: -1em;
    height: 1px;
    top: 50%;
    width: 1em;
    background-color: currentColor;
    -webkit-transition: ease 100ms;
    transition: ease 100ms;
  }
  .topContent__asideHeader button.toggle::after {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  .topContent__asideHeader button.toggle.is-open::after {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  .topContent__asideHeader span[class^=icon] {
    font-size: 1.1em;
  }
}
@media (max-width: 640px) {
  .topContent__aside {
    --height_sectionheader: 3.125rem;
  }
  .topContent__asideHeader {
    font-size: 1.125rem;
    padding: 0.625rem 1.25rem;
    background-color: #DFE5F8;
    border-radius: 1rem 1rem 0 0;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: var(--height_sectionheader);
  }
  .topContent__asideHeader [class*=icon] {
    margin-right: 0.75em;
  }
  .topContent__asideHeader::after {
    content: "閉じる";
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    font-size: 0.75rem;
    color: var(--cl_current1);
    right: 1em;
  }
  .topContent__aside .topContent__asideSection {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    height: min(120vw, 80vh);
    z-index: 1000000;
    border-radius: 1rem 1rem 0 0;
    display: none;
  }
  .topContent__aside .topContent__asideSection.is-open {
    display: block;
  }
  .topContent__aside .topContent__asideSection.is-open[aria-hidden=false] {
    -webkit-animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
            animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
  }
  .topContent__aside .topContent__asideSection.is-open[aria-hidden=true] {
    -webkit-animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
            animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
  }
}

/*　追加　*/
.topContentSchedule {
  padding-bottom: 20px;
  position: relative;
}

.topContentSchedule__content--acc {
  display: none;
  padding: 0;
  margin: 0;
}
.is-active .topContentSchedule__content--acc {
  display: block;
}

.topContentSchedule__content--acc li {
  padding: 0;
  margin: 0;
}

.topContentSchedule__content-btn {
  display: block;
  border: 1px solid #A5AEC9;
  border-radius: 3px;
  font-size: 11px;
  padding: 8px 0;
  text-align: center;
  width: calc(100% - 40px);
}

.topContentSchedule__content-btn--open {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
}

.topContentSchedule__content-btn--close {
  margin-top: 20px;
  margin-bottom: 20px;
  width: 100%;
}

@media (max-width: 640px) {
  .topContentSchedule__content-btn--close {
    display: none;
  }
}

.is-active .topContentSchedule__content-btn--open {
  transition: .2s;
  display: none;
}

.topContentSchedule__content--btn:hover {
  opacity: .3;
  transition: .3s;
}
.topContentSchedule__content--btn::after {
  content: "+";
  font-size: 20px;
  color: #5470c7;
  background: transparent;
  position: absolute;
  right: 10px;
  margin-top: -1px;
  top: 50%;
  transform: translateY(-50%);
}

@media (min-width: 641px) {
  .topContent__main {
    width: 100%;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    -ms-flex-negative: 1;
        flex-shrink: 1;
  }
}
@media (max-width: 640px) {
  .topContent__main {
    width: 100%;
  }
}

.topContentTodo {
  -webkit-box-flex: 0.3;
      -ms-flex-positive: 0.3;
          flex-grow: 0.3;
  position: relative;
  height: 40%;
}
@media (min-width: 641px) {
  .topContentTodo__content {
    padding: 0.3125rem 0.9375rem;
    overflow-y: auto;
    height: calc(100% - 2.625rem);
  }
}
@media (max-width: 640px) {
  .topContentTodo__content {
    padding: 1.25rem 1.25rem 5.625rem;
    overflow-y: scroll;
    overscroll-behavior-y: contain;
    height: calc(100% - var(--height_sectionheader));
  }
}
.topContentTodo__content li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 0.3125rem;
  /*font-size: 0.6875rem;*/
  font-size: 12px;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 640px) {
  .topContentTodo__content li {
    font-size: 0.875rem;
  }
}
.topContentTodo__content li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  text-decoration: none;
  gap: 0.5em;
  color: var(--cl_default);
  font-weight: var(--fw_bold);
}
.topContentTodo__content li .label {
  display: block;
  width: 0.9em;
  height: 0.9em;
  border-radius: 0.2em;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  background-color: var(--cl);
}
.topContentTodo__content li .date {
  min-width: 3em;
}
.topContentTodo__content li .ttl {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
@media (max-width: 640px) {
  .topContentTodo__spAddBtn {
    position: absolute;
    bottom: 0;
    left: 0;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.000000001)), color-stop(50%, rgba(255, 255, 255, 0.95)));
    background: linear-gradient(rgba(255, 255, 255, 0.000000001), rgba(255, 255, 255, 0.95) 50%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    z-index: 10;
    width: 100%;
    height: 5rem;
    padding: 1.875rem 1.25rem 1.25rem;
    pointer-events: none;
  }
  .topContentTodo__spAddBtn button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border: 1px dashed;
    color: var(--cl_current1);
    width: 100%;
    height: 2.5rem;
    background-color: #fff;
    font-weight: var(--fw_bold);
    font-size: 0.75rem;
    border-radius: 1em;
    pointer-events: auto;
  }
  .topContentTodo__spAddBtn button .plus {
    width: 1em;
    height: 1em;
    display: block;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-right: 0.8em;
    position: relative;
  }
  .topContentTodo__spAddBtn button .plus::before, .topContentTodo__spAddBtn button .plus::after {
    content: "";
    display: block;
    height: 2px;
    width: 100%;
    background-color: currentColor;
    position: absolute;
    left: 0;
    top: calc(50% - 1px);
  }
  .topContentTodo__spAddBtn button .plus:after {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
}

@media (min-width: 641px) {
  .topContentInfo {
    -webkit-box-flex: 0.4;
        -ms-flex-positive: 0.4;
            flex-grow: 0.4;
    max-height: 40%;
    position: relative;
  }
}
@media (min-width: 641px) {
  .topContentInfo__content {
    padding: 0.625rem 0.9375rem;
    overflow-y: auto;
    max-height: calc(100% - 2.625rem);
    min-height: 2em;
  }
}
@media (max-width: 640px) {
  .topContentInfo__content {
    padding: 1.25rem 1.25rem 2.5rem;
    overflow-y: scroll;
    overscroll-behavior-y: contain;
    height: calc(100% - var(--height_sectionheader));
  }
}
.topContentInfo__list {
  padding: 0;
}
.topContentInfo__list p {
  padding: 0;
}
.topContentInfo__list li {
  margin-bottom: 1.25rem;
  font-size: 0.6875rem;
}
@media (max-width: 640px) {
  .topContentInfo__list li {
    font-size: 0.875rem;
  }
}
.topContentInfo__list li .data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 0.25em;
}
.topContentInfo__list li .label {
  font-size: 1em;
}
.topContentInfo__list li .label.--important {
  color: var(--cl_notification);
}
.topContentInfo__list li .ttl {
  text-decoration: none;
  color: var(--cl_default);
  font-weight: var(--fw_bold);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.topContentInfo__toList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  font-size: 0.6875rem;
}
.topContentInfo__toList a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
.topContentInfo__toList a::after {
  content: "";
  display: block;
  width: 0.5em;
  height: 0.5em;
  border-style: solid;
  border-width: 1px 1px 0 0;
  border-color: currentColor;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin-left: 0.25em;
}

.topContentAlert {
  -webkit-box-flex: 0.3;
      -ms-flex-positive: 0.3;
          flex-grow: 0.3;
  position: relative;
  height: 40%;
}
@media (min-width: 641px) {
  .topContentAlert__content {
    height: calc(100% - 2.625rem);
    padding: 0.3125rem 0.9375rem;
    min-height: 3em;
    overflow-y: auto;
  }
}
@media (max-width: 640px) {
  .topContentAlert__content {
    padding: 1.25rem 1.25rem 2.5rem;
    overflow-y: scroll;
    overscroll-behavior-y: contain;
    height: calc(100% - var(--height_sectionheader));
  }
}
.topContentAlert__content li {
  margin-bottom: 0.625rem;
}
.topContentAlert__content li a {
  font-size: 12px;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 0.5em;
}
@media (max-width: 640px) {
  .topContentAlert__content li a {
    font-size: 0.875rem;
  }
}
.topContentAlert__content li a [class*=icon] {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  bottom: -0.1em;
  color: var(--cl_notification);
}

.topContentSchedule {
  -ms-flex-negative: 0.5;
      flex-shrink: 0.5;
  position: relative;
}
@media (min-width: 641px) {
  .topContentSchedule__content {
    padding: 0.3125rem 0.9375rem;
    /*display: none;*/
    height: 100px;
  }
  .is-active .topContentSchedule__content {
    display: block;
    /*height: calc(100% - 2.625rem);*/
    height: 200px;
    overflow-y: scroll;
    transition: .2s;
  }
}
@media (max-width: 640px) {
  .topContentSchedule__content {
    padding: 1.25rem;
    overflow-y: scroll;
  }
}
.topContentSchedule__content li {
  margin-bottom: 0.3125rem;
}
.topContentSchedule__content label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  /*font-size: 0.6875rem;*/
  font-size: 12px;
  gap: 0.3125rem;
  position: relative;
  padding-left: 15px;
  padding-right: 10px;
}
.topContentSchedule__content label input[type=checkbox] {
  display: none;
}

.topContentSchedule__content label .topContentSchedule__content--checkbox {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border: 1px solid #5470C7;
  border-radius: 3px;
}

.topContentSchedule__content label input[type=checkbox]:checked + .topContentSchedule__content--checkbox  {
  background-color: #5470C7;
}


.topContentSchedule__content label > .label {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

@media (max-width: 640px) {
  .topContentSchedule__content label {
    font-size: 0.875rem;
  }
}
.topContentSchedule__content .label {
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  border-radius: 100vmax;
  background-color: var(--cl);
}



@media (max-width: 640px) {
  .topSPFloatingMenu {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: var(--height_spheader);
    background-color: var(--cl_beige2);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0.625rem;
    z-index: 100;
    -webkit-box-shadow: 0 0 24px rgba(0, 0, 0, 0.15);
            box-shadow: 0 0 24px rgba(0, 0, 0, 0.15);
  }
  .topSPFloatingMenu__add {
    height: 100%;
    width: 20%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .topSPFloatingMenu__add .icon {
    width: 2.5rem;
    aspect-ratio: 1/1;
    height: auto;
    background-color: #7f88cb;
    display: block;
    border-radius: 100vmax;
    -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    position: relative;
  }
  .topSPFloatingMenu__add .icon::before, .topSPFloatingMenu__add .icon::after {
    content: "";
    display: block;
    height: 2px;
    width: 30%;
    left: 35%;
    top: calc(50% - 1px);
    position: absolute;
    background-color: #fff;
  }
  .topSPFloatingMenu__add .icon::after {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  .topSPFloatingMenu__btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    width: 20%;
    position: relative;
  }
  .topSPFloatingMenu__btn [class*=icon] {
    font-size: 1.375rem;
  }
  .topSPFloatingMenu__btn .txt {
    font-size: 0.6875rem;
    font-weight: var(--fw_bold);
    padding-top: 0.2em;
  }
  .topSPFloatingMenu__btn.--notification::before {
    content: attr(data-notification-num);
    position: absolute;
    min-width: 1.25rem;
    height: 1.25rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: 0.6875rem;
    font-weight: var(--fw_bold);
    right: 0.75rem;
    top: -0.3125rem;
    background-color: var(--cl_notification);
    color: #fff;
    border-radius: 100vmax;
    border: 1px solid #fff;
  }
  .topSPFloatingMenu__overlay {
    position: fixed;
    z-index: 99999;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.6);
    width: 100%;
    height: 100%;
    display: none;
  }
}

/*---------------------------------
/* CALENDAR
/*---------------------------------*/
.calendar {
  position: relative;
  height: 100%;
}
.calendar__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  padding: 0.9375rem 1.25rem;
  font-size: 0.6875rem;
  border-bottom: 1px solid var(--cl_border);
  height: 3.75rem;
}
.calendar__btn {
  padding: 0.3125rem 0.625rem;
  font-size: 0.8125rem;
  border-radius: 0.2em;
  border: 1px solid var(--cl_border);
  margin-right: 1.25rem;
}
.calendar__switchMonth {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
  margin-right: 1rem;
}
.calendar__switchMonth button {
  width: 1.25rem;
  height: 1.25rem;
}
.calendar__switchMonth button::before {
  content: "";
  display: block;
  width: 0.6rem;
  height: 0.6rem;
  border-style: solid;
  border-width: 0.175rem 0.175rem 0 0;
}
.calendar__switchMonth button:nth-child(1)::before {
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}
.calendar__switchMonth button:nth-child(2)::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.calendar__ttl {
  font-size: 1.125rem;
  font-weight: var(--fw_bold);
}
.calendar__selectMonth {
  margin-left: auto;
}
.calendar__selectMonth select {
  font-size: 11px !important;
  padding: 7px 15px !important;
  border-radius: 3px !important;
  border: 1px solid #A5AEC9 !important;
  background: none !important;
  color: #2F303A !important;
  width: 64px !important;
  margin-right: 0 !important;
}
.calendar__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  height: calc(100% - 3.75rem);
}
.calendar__body .row {
  width: 100%;
  height: 16.6666666667%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  overflow: hidden;
}
.calendar__body .row:not(:last-child) {
  border-bottom: 1px solid var(--cl_border);
}
.calendar__body .row .cell {
  position: relative;
  width: 14.2857142857%;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 0.6875rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0.3125rem 0;
}
.calendar__body .row .cell:hover {
  background-color: var(--cl_hover);
}
.calendar__body .row .cell:not(:last-child) {
  border-right: 1px solid var(--cl_border);
}
.calendar__body .row .cell.today {
  background-color: var(--cl_active);
}
.calendar__body .row .cell .day {
  color: #AFAFAF;
}
.calendar__body .row .cell .day ~ .cell__content {
  max-height: calc(100% - 5em);
}
.calendar__body .row .cell__content {
  position: relative;
  width: 100%;
  max-height: calc(100% - 3em);
}
.calendar__body .row .cell .item {
  position: absolute;
  left: 0;
  background-color: var(--cl);
  height: 1.125rem;
  font-size: 0.6875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 0.3125rem;
  color: #fff;
  overflow: hidden;
  border-radius: 0.2em;
  white-space: nowrap;
  text-overflow: ellipsis;
  z-index: 10;
}
.calendar__body .row .cell .item__container {
  display: block;
  height: 1.125rem;
  margin-top: 0.125rem;
}
.calendar__body .row .cell .item__container.is-hidden {
  display: none;
}
.calendar__body .row .cell .item__summary {
  font-size: 0.625rem;
  font-weight: var(--fw_bold);
  padding: 0.125rem 0.3125rem 0;
}
.calendar__body .row .cell .item.days1 {
  width: calc(-1px + var(--cell-width) * 1);
}
.calendar__body .row .cell .item.days2 {
  width: calc(-1px + var(--cell-width) * 2);
}
.calendar__body .row .cell .item.days3 {
  width: calc(-1px + var(--cell-width) * 3);
}
.calendar__body .row .cell .item.days4 {
  width: calc(-1px + var(--cell-width) * 4);
}
.calendar__body .row .cell .item.days5 {
  width: calc(-1px + var(--cell-width) * 5);
}
.calendar__body .row .cell .item.days6 {
  width: calc(-1px + var(--cell-width) * 6);
}
.calendar__body .row .cell .item.days7 {
  width: calc(-1px + var(--cell-width) * 7);
}

/*---------------------------------
/* FORM
/*---------------------------------*/
@-webkit-keyframes dropdown {
  from {
    opacity: 0;
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}
@keyframes dropdown {
  from {
    opacity: 0;
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}
.form-container {
  /*width: min(400px, 100vw - 4rem);*/
  /*font-size: 1rem;*/
  /* overflow: hidden; */
}

.form-container h2{
  font-size: 20px;
  text-align: center;
  margin-bottom: 20px;
}
.form-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  column-gap: 0.5rem;
}
.form-row:not(:last-child) {
  margin-bottom: 1em;
}
.form-row__col {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.form-row__col2 {
  width: calc(50% - 0.5rem);
}
.form-row__col:only-child {
  width: 100%;
}
.form-row__colSeparater {
  -ms-flex-item-align: end;
      align-self: flex-end;
  font-size: 0.75em;
  padding-bottom: 0.75em;
}
.form-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: nowrap;
}
@media (max-width: 640px) {
  .form-item {
    flex-direction: column;
  }
}
.form-item__label {
  display: block;
  font-size: 0.825rem;
  font-weight: 700;
  padding-top: 0.25rem;
  width: 110px;
}
.form-contents {
  padding-bottom: 0.5rem ;
  border-bottom: solid 1px #C4C9D8;
}
.form-required::after {
  content: "*";
  color: red;
}
.form-item__input {
  flex: 1;
}
.form-item__input input, .form-item__input select {
  width: 100%;
  font-size: 0.825rem;
  padding: 0.5em 0.5em;
  background-color: #f3f3f3;
  border: none;
  border-radius: 4px;
}
@media (max-width: 640px) {
  .form-item__input input, .form-item__input select {
    font-size: 14px;
  }
}
.form-item__input.col1 {
  width: min(400px, 100%);
}
.form-item__input.col2 {
  width: min(200px - 0.75em, 100%);
}
.form-submit {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1em;
  margin-top: 36px;
}
/* .form-submit button {
  width: 120px;
} */
.form__manager-btn {
  display: inline-block;
  margin-left: 3px;
  position: absolute;
  font-size: 16px;
  top: 0px;
  font-weight: bold;
}
.form-dropdown {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5em;
  position: relative;
  margin-bottom: 1.5em;
  margin-top: 3em;
  justify-content: center;
}
.form-dropdown__child-wrap {
  z-index: 99999;
  display: inline-block;
  position: fixed;
  width: 375px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 640px) {
  .form-dropdown__child-wrap {
    left: 0%;
  }
}
.form-dropdown__child {
  display: none;
  width: 100%;
  border-radius: 5px;
  background-color: #fff;
  z-index: 1;
  overflow: hidden;
  -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0.1), 0 0 6px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 1px rgba(0, 0, 0, 0.1), 0 0 6px rgba(0, 0, 0, 0.3);
  padding: 25px 35px;
}
.form-dropdown__child ul {
  padding: 0;
}
.form-dropdown__child li {
  border-bottom: 1px solid #DFDFDF;
}
.form-dropdown__checkbox {
  display: none;
}
.form-dropdown__checkbox:checked + .form-dropdown__child {
  display: block;
  -webkit-animation: dropdown ease 0.2s both;
          animation: dropdown ease 0.2s both;
}
/* .form-dropdown__btn {
  position: relative;
}
.form-dropdown__btn::after {
  content: "";
  display: block;
  width: 0.4em;
  height: 0.4em;
  border-style: solid;
  border-width: 1px 1px 0 0;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
  position: absolute;
  right: 0.85em;
  -webkit-transition: -webkit-transform 200ms;
  transition: -webkit-transform 200ms;
  transition: transform 200ms;
  transition: transform 200ms, -webkit-transform 200ms;
}
.form-dropdown__btn.is-open::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
} */
.form-delete {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
}
.form-delete_text {
  color: #EF6060;
	padding-bottom: 8px;
	border-bottom: 2px solid #EF6060;
	display: inline-block;
  font-size: 13px;
}
.form-delete_text:hover {
  opacity: 0.75;
}
.form-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.4em;
  height: 30px;
  width: 165px;
  border-radius: 5px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}
@media (any-hover: hover) {
  .form-btn:hover {
    opacity: 0.75;
  }
}
.form-btn__submit {
  background-color: #7f88cb;
}
.form-btn__cancel, .form-btn__delete {
  background-color: #b81818;
}
.form-btn__edit {
  background-color: #5470C7;
}
.form-btn__close {
  background-color: #707890;
}
.form-password__password {
  padding-right: 3em;
}
.form-password__toggle {
  position: absolute;
  right: 1rem;
  top: 0.25em;
  z-index: 10;
}
.form-password__container {
  position: relative;
}
.form-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 2.5rem;
  font-size: 14px;
  font-weight: 500;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1em 1em 1em 0;
  text-decoration: none;
  color: #7f88cb;
  position: relative;
}
.form-link::after {
  content: "";
  display: block;
  border-style: solid;
  border-width: 1px 1px 0 0;
  position: absolute;
  width: 0.4em;
  height: 0.4em;
  right: 1em;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media (any-hover: hover) {
  .form-link::after {
    -webkit-transition: ease 200ms;
    transition: ease 200ms;
  }
  .form-link:hover {
    opacity: 0.5;
  }
  .form-link:hover::after {
    -webkit-transform: translateX(-2px) rotate(45deg);
            transform: translateX(-2px) rotate(45deg);
  }
}
.form-link--remove {
  color: #c66;
}

.manager_list ul {
  padding-left: 0;
  margin: 0.5rem 0 0 0;
}
.manager_list li {
  font-size: 13px;
  color: #fff;
  background-color: #58C15C;
  padding: 2px 23px 2px 10px;
  display: inline-block;
  border-radius: 3px;
  position: relative;
  margin-right: 2px;
}

/*!* 繰り返しマーク *!*/
.is_repetition {
  position: relative;
}

/*!* 繰り返しマーク *!*/
.repetition__icon {
  position: absolute;
  top: 25%;
  right: 1%;
}

.task__list__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  cursor: pointer;
  color: #fff;
  border-radius: 5px;
  padding: 6px 15px;
  margin-bottom: 4px;
}

.task__list__contents {
  max-height: 500px;
  overflow-y: auto;
  overflow-x: hidden;
}

/*@media (max-width: 640px) {*/
/*  .task__list__contents {*/
/*    overflow-x: scroll;*/
/*  }*/
/*  .task__list__content {*/
/*    width: 570px;*/
/*  }*/
/*}*/

.task__list__content:hover {
  opacity: .3;
  background-color: #e2e2e2 !important;
}

.task__list__start_time,
.task__list__end_time {
  /*width: 10rem;*/
  /*width: auto;*/
  /*text-align: left;*/
  font-size: 14px;
}

.task__list__time_hyphen {
  width: 1rem;
  text-align: justify;
}

.task__list__start_time.all_day {
  width: 5rem;
  text-align: left;
}

/*.task__list__name {*/
/*  margin-left: 1rem;*/
/*}*/

.xdsoft_timepicker.active {
  width: 100% !important;
  padding-right: 8px !important;
}
/*.topContentInfo__content ul {*/
/*    padding: 0 !important;*/
/*}*/

/*!* 繰り返しマーク *!*/
.is_repetition {
  position: relative;
}

/*!* 繰り返しマーク *!*/
.repetition__icon {
  position: absolute;
  top: 25%;
  right: 1%;
}


.task__list__content__schedule__block {
  display: flex;
}

.task__list__content:hover {
  background-color: #e2e2e2 !important;
}

.task__list__start_time, .task__list__end_time {
  /*width: 10rem;*/
  width: auto !important;
  text-align: left;
}

.task__list__content--manager {
  text-align: left;
  font-size: 14px;
  padding-left: 15px;
  position: relative;
  margin-left: 15px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}


.task__list__content--manager::before {
  display: inline-block;
  content: "|";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.task__list__time_hyphen {
  width: 1rem;
  text-align: justify;
}

.task__list__start_time.all_day {
  width: 5rem;
  text-align: left;
}

/*.task__list__name {*/
/*  margin-left: 1rem;*/
/*}*/

.xdsoft_timepicker.active {
  width: 100% !important;
  padding-right: 8px !important;
}

.task__list__content--datetime {
  /*width: 12rem;*/
  width: auto;
  text-align: left;
  font-size: 14px;
  padding-right: 15px;
}

.task_list_modal .modal__container {
  overflow-y: scroll;
}

.task__list__content--name {
  /*width: calc(100% - 12rem);*/
  width: auto;
  text-align: left;
  overflow: hidden;
  text-overflow: ellipsis;
  text-wrap: nowrap;
}

#side {
  z-index: 100 !important;
}

.modal__overlay {
  z-index: 1000 !important;
}
/*デフォルトの more ボタンのツールチップ*/
.fc-popover {
  display: none;
}

.task__list__content--datetime {
  width: 140px;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  position: relative;
  white-space: nowrap;
}


.task__list__content--datetime::after {
  display: inline-block;
  content: "|";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-weight:normal ;
}

.task_list_modal .modal__container {
  overflow-y: scroll;
}

.task__list__content--name {
  width: 300px;
  padding: 0 15px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  position: relative;
  font-size: 14px;
  display: flex;
  align-items: center;
  box-sizing: border-box;
}

.task__list__content-btn {
  width: 165px;
  height: 30px;
  border-radius: 5px;
  color: #fff;
  font-size: 13px;
  transition: .2s;
}


.task__list__content-btn:hover {
  opacity: .3;
}

.task__list__content-btn--close {
  background: #afafaf;
}


.task__list__content-btn--edit {
  background: #5470C7;
}

#task_detail_modal .modal__overlay {
  flex-direction: column;
}

#task_detail_modal .modal__container {
  width: 550px;
  border-radius: 0 0 15px 15px;
  padding: 35px 135px;
}

.task-detail__modal-ttl {
  width: 550px;
  font-size: 20px;
  padding:20px;
  text-align: center;
  border-radius: 15px 15px 0 0;
  background:repeating-linear-gradient(
  -45deg,
  #58C15C,
  #58C15C 2px,
  #71ca74 0,
  #71ca74 11px
  );
  margin-bottom: 0;
  color: #fff;
}

@media (max-width: 640px) {
  .task-detail__modal-ttl {
    width: 100%;
  }
}

.task__detail__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  flex-direction: column;
}

.task__detail__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: nowrap;
  margin-bottom: 0.5rem;
  border-bottom: solid 1px #C4C9D8;
  font-size: 14px;
  align-items: center;
}
.task__detail__content-ttl {
  text-align: left;
  width: 80px;
  padding: 10px;
  text-wrap: nowrap;
}
.task__detail__content-item {
  width: 100%;
  flex: 1;
  text-wrap: nowrap;
}
.manager_list.task-detail__manager-list ul {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap:2px;
}
.manager_list.task-detail__manager-list li {
  padding: 2px 10px;
}

#side {
  z-index: 100 !important;
}

.modal__overlay {
  z-index: 1000 !important;
}

.fc-popover {
  display: none;
}

body {
  background-color: #EFF1F8 !important;
}

h1 {
  margin-bottom: 0 !important;
}

.form-control__input {
  background: #F7F8FC;
  -webkit-box-shadow: none;
          box-shadow: none;
  font-size: 0.75rem;
  border: none;
  height: 37px;
}
.form-control__label {
  font-size: 0.75rem;
  font-weight: normal;
}

.form-control__img {
  margin-bottom: 20px;
}

.form-control__img img{
  object-fit: contain;
  margin: 0 auto;
  width: 300px;
  height: 300px;
}

.form-control__annotation {
  margin-top: 8px;
  display: block;
  font-size: 0.6875rem;
}
.form-control__error {
  margin-top: 4px;
  display: block;
  font-size: 0.6875rem;
  color: #B81818;
  line-height: 15px; /* 136.364% */
  letter-spacing: 0.55px;
}
.form-control__textarea {
  background: #F7F8FC;
  -webkit-box-shadow: none;
          box-shadow: none;
  font-size: 0.75rem;
  border: none;
  height: 80px;
}

.custom-select {
  border-radius: 0.3125rem;
  border: none;
  background-color: #F7F8FC;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #2F303A;
  font-size: 0.75rem;
  letter-spacing: 0.6px;
  height: 37px;
}

.btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.btn i {
  margin-right: 4px;
}
.btn-required {
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  width: 32px;
  height: 14px;
  border-radius: 3px;
  background: #B81818;
  color: #FFF;
  font-size: 9px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.45px;
  margin-left: 4px;
}
.btn-upload {
  width: 100%;
  height: 35px;
  border-radius: 0.3125rem;
  background: #2F303A;
  color: #FFF;
  font-size: 0.75rem;
  letter-spacing: 0.6px;
}
.btn-upload:hover {
  color: #fff;
  opacity: 0.3;
}
.btn-upload i {
  font-weight: bold;
}
.btn-upload.list_page{
  height: 30px;
}
.btn-submit {
  width: 100%;
  height: 30px;
  background: #5470C7;
  color: #FFF;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.6px;
  border-radius: 0;
}
.btn-submit:hover {
  color: #fff;
  opacity: 0.3;
}
.btn-delete {
  width: 100%;
  height: 30px;
  background: #AFAFAF;
  color: #FFF;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.6px;
  border-radius: 0;
}
.btn-delete:hover {
  color: #fff;
  opacity: 0.3;
}
.btn-gray {
  width: 100%;
  height: 30px;
  background: #AFAFAF;
  color: #FFF;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.6px;
  border-radius: 0;
}
.btn-gray:hover {
  color: #fff;
  opacity: 0.3;
}
.btn-big {
  height: 35px;
}
.btn {
  border-radius: 0.3125rem;
}
.btn-small {
  font-size: 12px;
  margin: 0 5px;
  padding-top: 4px;
  padding-bottom: 4px;
}

.btn-add {
  width: 100%;
  height: 35px;
  border: 1px solid #7F88CB;
  background: #fff;
  color: #7F88CB;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.6px;
  border-radius: 0;
}
.btn-add:hover {
  color: #7F88CB;
  opacity: 0.3;
}

.btn-danger.js__delete_btn {
  background: transparent !important;
}

.btn-image:hover {
  transition: .3s;
  opacity: .3;
}
.content-title__h1 {
  color: #2F303A;
  font-size: 20px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1px;
}

.content-title__h1--small {
  font-size: 14px;
  font-weight: bold;
}
.content-title__h2 {
  margin-top: 10px;
  height: 34px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #2F303A;
  font-size: 15px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 0.9px;
  background: #F2F5FF;
  padding-left: 0.625rem;
  padding-bottom: 2px;
  border-top: 2px solid #A5B5E8;
  position: relative;
  display: flex;
  align-items: center;
}
.content-title__h2::before{
  content: "";
  display: inline-block;
  position: absolute;
  top: -2px;
  left: 0;
  width: 19px;
  border-top: 2px solid #5470C7;
}
/*.content-title__h2:first-child {*/
/*  margin-top: 0;*/
/*}*/
.content-title__h3 {
  color: #2F303A;
  font-family: Inter;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.6px;
}

.closeContentBtn{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #3ABBD3;
  background: #fff;
  /* text-indent: -999999; */
  width: 20px;
  height: 20px;
  margin-left: 4px !important;
}

.content-txt {
  color: #2F303A;
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.55px;
}

/* パンくずリスト */
.breadcrumb {
  display: flex;
  margin-bottom: 0;
}
.breadcrumb-item {
  color: #AFAFAF;
  font-size: 0.6875rem;
  letter-spacing: 0.55px;
  font-size: 11px;
}
.breadcrumb-link {
  color: #AFAFAF;
}
.breadcrumb-item.active {
  color: #2F303A;
}
.breadcrumb-item + .breadcrumb-item::before {
  content: ">";
}

.custom-select-inline {
  display: inline-block;
  margin-right: 1rem;
}
.custom-select-inline select {
  font-size: 0.75rem;
  padding: 0.2rem 2rem 0.2rem 0.75rem;
  background-position: right 0.3rem center;
}

.custom-check label {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: Inter;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  width: auto;
  letter-spacing: 0.55px;
  cursor: pointer;
}

.custom-check__search label {
  font-size: 12px;
}
.custom-check label:has(.form-check-input:checked) {
  color: #7F88CB;
}
.custom-check .form-check-input:checked {
  background: #7F88CB;
  border-color: #7F88CB;
  background-image: none;
}
.custom-check .form-check-input:focus {
  border-color: #7F88CB;
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.custom-check.double .form-check-input[type=radio]:checked {
  background: radial-gradient(#7F88CB 0%, #7F88CB 60%, #ffffff 60%, #ffffff 100%);
}

.custom-search .custom-search-box {
  font-size: 0.75rem;
  background: #F5F5F5;
  border-radius: 5px;
  -webkit-box-shadow: 0px 6px 6px 0px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 6px 6px 0px rgba(0, 0, 0, 0.05);
}

@media (max-width: 990px) {
  .custom-search-box {
    background: #F5F5F5;
    border-radius: 5px;
    margin-bottom: 20px;
  }
}

.custom-search-box__search {
  width: 100%;
  height: 25px;
  box-sizing: border-box;
  padding: 3px 4px 4px 32px;
  font-size: 11px;
  border: 1px solid #e3e3e3;
  border-radius: 3px;
}

.custom-search-box__search--title {
  font-size: 12px;
}

.custom-search-box__search--input {
  font-size: 11px;
}

.custom-search-box__search--select {
  width: 100%;
  font-size: 11px;
}

.custom-search-box__search--date {
    font-size: 11px;
    padding: 0.275rem 0.75rem;
    border: none;
}

.custom-search .custom-search-box .accordion-item {
  background: transparent;
}
.custom-search .custom-search-box .accordion-header .form-label {
  line-height: 2rem;
  color: #2F303A;
}
.custom-search .custom-search-box .accordion-header .name i {
  color: #aaa;
  font-size: 0.75rem;
  top: 50%;
  transform: translate(0, -50%);
  left: 10px;
}
.custom-search .custom-search-box .accordion-header .name input {
  border: none;
  padding-left: 1.75rem;
  line-height: 1.2rem;
}
.custom-search .custom-search-box .accordion-header .name input::-webkit-input-placeholder {
  color: #bbb;
  font-size: 0.75rem;
}
.custom-search .custom-search-box .accordion-header .name input::-moz-placeholder {
  color: #bbb;
  font-size: 0.75rem;
}
.custom-search .custom-search-box .accordion-header .name input:-ms-input-placeholder {
  color: #bbb;
  font-size: 0.75rem;
}
.custom-search .custom-search-box .accordion-header .name input::-ms-input-placeholder {
  color: #bbb;
  font-size: 0.75rem;
}
.custom-search .custom-search-box .accordion-header .name input::placeholder {
  color: #bbb;
  font-size: 0.75rem;
}
.custom-search .custom-search-box .accordion-header .action input[name=search] {
  width: 80%;
  background: #fff;
  color: #7F88CB;
  border: 2px solid #7F88CB;
  border-radius: 4px;
  -webkit-transition: 0.1s;
  transition: 0.1s;
}
.custom-search .custom-search-box .accordion-header .action input[name=search]:hover {
  background: #7F88CB;
  color: #fff;
  opacity: 0.7;
}
.custom-search .custom-search-box .accordion-header .search {
  border-left: 1px solid #C7C3C3;
  text-align: center;
}
@media (max-width: 768px) {
  .custom-search .custom-search-box .accordion-header .search {
    border-left: none;
  }
}
.custom-search .custom-search-box .accordion-header .search .btn {
  width: 100%;
  font-size: 0.75rem;
  margin-left: 0.5rem;
  color: #7D7D7F;
}
.custom-search .custom-search-box .accordion-header .search .btn.collapsed {
  color: #2F303A;
}
.custom-search .custom-search-box .accordion-header .search .btn.collapsed i {
  color: #7D7D7F;
}
.custom-search .custom-search-box .accordion-header .search .btn:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.custom-search .custom-search-box .accordion-header .search .btn i {
  font-size: 1.5rem;
  color: #7D7D7F;
  line-height: 0rem;
  vertical-align: -0.2rem;
}

.custom-search-box__title {
  font-size: 12px;
  font-weight: bold;
  white-space: nowrap;
  text-align: center;
}

@media (max-width: 640px) {
  .custom-search-box__title {
    text-align: center;
    font-size: 11px;
  }
}

.custom-search-box__sort {
  font-size: 12px !important;
  font-weight: bold;
}


.custom-search-box__sort-icon {
  margin-left: 10px;
}
.custom-table table {
  color: #2F303A;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.55px;
}
@media (max-width: 992px) {
  .custom-table table {
    width: 992px;
  }
}
@media (max-width: 640px) {
  .custom-table table {
    font-size: 10px;
  }
}
.custom-table table .font-size-9 {
  font-size: 9 px;
}
.custom-table table .font-size-10 {
  font-size: 10 px;
}
.custom-table table .font-size-11 {
  font-size: 11 px;
}
.custom-table table .font-size-12 {
  font-size: 12 px;
}
.custom-table table .font-size-13 {
  font-size: 13 px;
}
.custom-table table .font-size-14 {
  font-size: 14 px;
}
.custom-table table .font-size-15 {
  font-size: 15 px;
}
.custom-table table .font-size-16 {
  font-size: 16 px;
}
.custom-table table .max-w-100 {
  max-width: 100px;
}
.custom-table table .max-w-110 {
  max-width: 110px;
}
.custom-table table .max-w-120 {
  max-width: 120px;
}
.custom-table table .max-w-130 {
  max-width: 130px;
}
.custom-table table .max-w-140 {
  max-width: 140px;
}
.custom-table table .max-w-150 {
  max-width: 150px;
}
.custom-table table .max-w-160 {
  max-width: 160px;
}
.custom-table table .max-w-170 {
  max-width: 170px;
}
.custom-table table .max-w-180 {
  max-width: 180px;
}
.custom-table table .max-w-190 {
  max-width: 190px;
}
.custom-table table .max-w-200 {
  max-width: 200px;
}
.custom-table table .max-w-210 {
  max-width: 210px;
}
.custom-table table .max-w-220 {
  max-width: 220px;
}
.custom-table table .max-w-230 {
  max-width: 230px;
}
.custom-table table .max-w-240 {
  max-width: 240px;
}
.custom-table table .max-w-250 {
  max-width: 250px;
}
.custom-table table .min-w-100 {
  min-width: 100px;
}
.custom-table table .min-w-110 {
  min-width: 110px;
}
.custom-table table .min-w-120 {
  min-width: 120px;
}
.custom-table table .min-w-130 {
  min-width: 130px;
}
.custom-table table .min-w-140 {
  min-width: 140px;
}
.custom-table table .min-w-150 {
  min-width: 150px;
}
.custom-table table .min-w-160 {
  min-width: 160px;
}
.custom-table table .min-w-170 {
  min-width: 170px;
}
.custom-table table .min-w-180 {
  min-width: 180px;
}
.custom-table table .min-w-190 {
  min-width: 190px;
}
.custom-table table .min-w-200 {
  min-width: 200px;
}
.custom-table table .min-w-210 {
  min-width: 210px;
}
.custom-table table .min-w-220 {
  min-width: 220px;
}
.custom-table table .min-w-230 {
  min-width: 230px;
}
.custom-table table .min-w-240 {
  min-width: 240px;
}
.custom-table table .min-w-250 {
  min-width: 250px;
}
.custom-table table .image-sm-square {
  text-align: center;
}
.custom-table table .image-sm-square div {
  display: inline-block;
  width: 42px;
  height: 42px;
}
@media (max-width: 640px) {
  .custom-table table .image-sm-square div {
    width: 32px;
    height: 32px;
  }
}
.custom-table table .image-sm-square div img {
  width: 100%;
  height: 100%;
  border-radius: 4px;
}
.custom-table table .overflow-ellipsis {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
}
.custom-table table .overflow-ellipsis.line-clamp-1 {
  -webkit-line-clamp: 1;
}
.custom-table table .overflow-ellipsis.line-clamp-2 {
  -webkit-line-clamp: 2;
}
.custom-table table .overflow-ellipsis.line-clamp-3 {
  -webkit-line-clamp: 3;
}
.custom-table table .overflow-ellipsis.line-clamp-4 {
  -webkit-line-clamp: 4;
}
.custom-table table .bg {
  display: inline-block;
  padding: 0.3rem 0.4rem;
  color: #fff;
  border-radius: 3px;
}
.custom-table table .btn-icon {
  position: relative;
  display: inline-block;
  width: 1.7rem;
  height: 1.7rem;
  text-decoration: none;
  color: #AFAFAF;
  margin-right: 0rem;
  border: 1px solid #AFAFAF;
  border-radius: 50%;
  -webkit-transition: 0.1s;
  transition: 0.1s;
  font-size: 1rem;
}
.custom-table table .btn-icon.sm {
  width: 1.2rem;
  height: 1.2rem;
  font-size: 0.7rem;
}
.custom-table table .btn-icon.md {
  width: 1.5rem;
  height: 1.5rem;
  font-size: 0.9rem;
}
.custom-table table .btn-icon:hover {
  background: #AFAFAF;
  color: #fff;
}
.custom-table table .btn-icon i::before {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
}
@media (max-width: 640px) {
  .custom-table table .btn-icon {
    width: 1.2rem;
    height: 1.2rem;
    margin-left: 0.1rem;
  }
  .custom-table table .btn-icon i::before {
    font-size: 0.7rem;
    -webkit-transform: translateX(-50%) translateY(-45%);
            transform: translateX(-50%) translateY(-45%);
  }
}
.custom-table thead {
  border-bottom: 2px solid #E1E1E1;
}
.custom-table thead th {
  font-style: normal;
  font-weight: 600;
  border-bottom: 1px solid #E1E1E1;
  white-space: nowrap;

}
.custom-table tbody td {
  vertical-align: middle;
}

.custom-table .custom-table__operation-link {
  margin: 0 5px;
}
.custom-table .custom-table__operation-icon {
  height: 50px;
  object-fit: contain;
}
.custom-table .custom-table__operation-icon_sm {
  display: inline-block;
  height: 30px;
  object-fit: contain;
}

.search-box-body {
  padding: 10px 20px;
}
.prop-info-table table {
  color: #2F303A;
  font-size: 11px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.55px;
}
@media (max-width: 992px) {
  .prop-info-table table {
    width: 992px;
  }
}
@media (max-width: 640px) {
  .prop-info-table table {
    font-size: 9px;
  }
}
.prop-info-table thead {
  border-bottom: 2px solid #E1E1E1;
}
.prop-info-table thead th {
  border-bottom: 1px solid #E1E1E1;
  font-style: normal;
  font-weight: 400;
}
.prop-info-table tbody td {
  vertical-align: middle;
}
.prop-info-table tbody td.prop-image {
  text-align: center;
}
.prop-info-table tbody td.prop-image div {
  display: inline-block;
  width: 42px;
  height: 42px;
}
@media (max-width: 640px) {
  .prop-info-table tbody td.prop-image div {
    width: 32px;
    height: 32px;
  }
}
.prop-info-table tbody td.prop-image div img {
  width: 100%;
  height: 100%;
  border-radius: 4px;
}
.prop-info-table tbody td.prop-name {
  max-width: 180px;
}
.prop-info-table tbody td.prop-name span {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.prop-info-table tbody td.prop-category {
  max-width: 120px;
}
.prop-info-table tbody td.prop-category span {
  display: -webkit-box;
  max-width: 180px;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.prop-info-table tbody td.prop-owner {
  color: var(--rgb-127136203, #7F88CB);
  max-width: 240px;
}
.prop-info-table tbody td.prop-owner a {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.prop-info-table tbody td.prop-num {
  min-width: 84px;
}
.prop-info-table tbody td.prop-occupancy-rate {
  text-align: center;
}
.prop-info-table tbody td.prop-occupancy-rate .bg {
  display: inline-block;
  padding: 0.3rem 0.4rem;
  color: #fff;
  border-radius: 3px;
}
.prop-info-table tbody td.prop-edit {
  min-width: 100px;
}
.prop-info-table tbody td.prop-edit a {
  position: relative;
  display: inline-block;
  width: 1.7rem;
  height: 1.7rem;
  text-decoration: none;
  color: #AFAFAF;
  margin-right: 0rem;
  border: 1px solid #AFAFAF;
  border-radius: 50%;
  -webkit-transition: 0.1s;
  transition: 0.1s;
  font-size: 1rem;
}
.prop-info-table tbody td.prop-edit a:hover {
  background: #AFAFAF;
  color: #fff;
}
.prop-info-table tbody td.prop-edit a i::before {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
}
@media (max-width: 640px) {
  .prop-info-table tbody td.prop-edit a {
    width: 1.2rem;
    height: 1.2rem;
    margin-left: 0.1rem;
  }
  .prop-info-table tbody td.prop-edit a i::before {
    font-size: 0.7rem;
    -webkit-transform: translateX(-50%) translateY(-45%);
            transform: translateX(-50%) translateY(-45%);
  }
}

.image-sm-sqare div {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.image-sm-sqare div img {
  width: 60px !important;
  height: 60px !important;
  -o-object-fit: contain;
  object-fit: contain;
  border-radius: 4px;
}

.info-table {
  font-size: 12px;
  border-bottom: none;
}
.info-table .table {
  width: 100%;
  border: none;
}
.info-table thead {
  border-bottom: 2px solid #E1E1E1;
}
.info-table tr {
  border-bottom: none;
}
.info-table th {
  font-weight: normal;
  border-bottom: none;
}
.info-table td {
  border: none;
}

.aside-table {
  border-top: 1px solid #E1E1E1;
}
.aside-table__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-bottom: 1px solid #E1E1E1;
}
.aside-table__half {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.aside-table__ttl {
  width: 85px;
  height: 33px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: var(--rgb-245245245, #F5F5F5);
  color: #2F303A;
  font-size: 11px;
  letter-spacing: 0.55px;
}
.aside-table__content {
  width: calc(100% - 280px);
  color: #2F303A;
  font-size: 11px;
  letter-spacing: 0.55px;
  padding: 6px 6px 6px 10px;
  white-space: nowrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.content-title__top .icon-loudspeaker {
  margin-right: 8px;
}
.content-title__top .icon-bell {
  margin-right: 8px;
}

.top-notice {
  color: #2F303A;
  font-size: 11px;
  letter-spacing: 0.55px;
  padding: 0 10px;
  margin-bottom: 20px;
}
.top-notice__ttl {
  margin-bottom: 5px;
}
.top-notice__content {
  margin-bottom: 18px;
  font-weight: normal;
}
.top-notice__link {
  color: #2F303A;
  text-decoration: none;
}
.top-notice__alert {
  color: #B81818;
}
.top-notice__btn {
  color: #2F303A;
  font-size: 11px;
  letter-spacing: 0.55px;
  text-decoration: none;
  border-bottom: 1px solid #000;
}
.top-notice__btn-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.top-notice__btn::after {
  display: inline-block;
  content: ">";
  padding-left: 2px;
}

.top-alert {
  color: #2F303A;
  font-size: 11px;
  letter-spacing: 0.55px;
  padding: 0 10px;
  margin-bottom: 20px;
}
.top-alert__list {
  padding: 0;
  margin-bottom: 10px;
}
.top-alert__icon {
  color: #B81818;
}
.top-alert__contenr {
  color: #2F303A;
  text-decoration: none;
}

.custom-pagination .pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.custom-pagination .page-item {
  height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 2px;
}
.custom-pagination .page-item:last-of-type {
  width: auto;
}
.custom-pagination .page-item:first-of-type {
  width: auto;
}
.custom-pagination .page-item.active .page-link {
  border-radius: 3px;
  background: var(--rgb-127136203, #7F88CB);
}
.custom-pagination .page-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  border: none;
  color: #2F303A;
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.6px;
  margin: 0 0.1rem;
  padding: 0.1rem 0.5rem;
}
.custom-pagination .page-link:hover {
  border-radius: 3px;
}
@media (max-width: 640px) {
  .custom-pagination .page-link {
    font-size: 9px;
    padding: 0.2rem 0.4rem;
  }
  .custom-pagination .page-link[rel=prev], .custom-pagination .page-link[rel=next] {
    display: none;
  }
}

.manager_result_info {
  margin-right: 20px;
}

::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background-color: transparent;
}

::-webkit-scrollbar-thumb {
  background-color: #c6c6c6;
  border-radius: 4px;
}

/* .login {
  max-width: 560px;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media (max-width: 640px) {
  .login {
    padding: 0 10px;
  }
}
.login-ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 40px !important;
}
.login-ttl img {
  width: 120px;
}
.login-content {
  color: #2F303A;
  background-color: #fff;
  border-radius: 15px;
  padding: 30px 100px;
}
@media (max-width: 640px) {
  .login-content {
    padding: 30px 70px;
  }
}
.login-content__ttl {
  font-size: 20px;
  letter-spacing: 1px;
  margin-bottom: 40px;
  font-weight: normal;
  text-align: center;
}
.login-content .login__submit {
  margin-top: 30px;
}
.login-content .login__submit-btn {
  width: 100%;
  height: 45px;
  border-radius: 3px;
  background: var(--rgb-127136203, #7F88CB);
  color: #FFF;
  font-family: Inter;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.9px;
  border: none;
}
.login-content .login-alert {
  margin-top: 12px;
}
.login-content .login-alert__txt {
  color: #B81818;
  font-size: 11px;
  margin-bottom: 4px;
}
.login-content .login-alert__txt i {
  margin-right: 4px;
}
.login-content .login-info {
  margin-top: 30px;
  text-align: center;
}
.login-content .login-info .logi-info__link {
  color: #7F88CB;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.55px;
  text-decoration: underline;
}
 */

.custom-tab .tab-item {
  text-align: center;
  text-decoration: none;
  color: #2F303A;
  border-bottom: 1px solid #E1E1E1;
  font-size: 0.9rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.8px;
}
@media (max-width: 768px) {
  .custom-tab .tab-item {
    font-size: 12px;
    letter-spacing: 0.6px;
  }
}
.custom-tab .tab-item.font-small {
  font-size: 0.8rem;
}
@media (max-width: 900px) {
  .custom-tab .tab-item.font-small {
    font-size: 9px;
  }
}
.custom-tab .tab-item.active {
  color: #5470C7;
  border-color: #5470C7;
  border-width: 2px;
  background: #F2F5FF;
}
.custom-tab .tab-item:hover {
  opacity: 0.7;
}
.custom-tab .tab-item:active {
  opacity: 1;
}

a {
  color: #2f303a;
  text-decoration: none;
}

a:hover {
  opacity: 0.3;
  transition: 0.3s;
}

 embed {
   object-fit: contain;
   max-width: 300px;
   min-height: 300px;
   text-align: center;
 }

.owner-add-contet {

}
.owner-add-contet .owner-add-contet__ttl {

}
.owner-add-contet .owner-add-contet__sub-ttl {
  margin-bottom: 10px;
  background: #f1f4ff;
  border-top: 2px solid #ddd;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 10px;
  padding: 5px 10px;
  font-size: 15px;
  font-weight: 700;
  position: relative;
}
.owner-add-contet .owner-add-contet__sub-ttl:before {
  content: "";
  display: block;
  width: 30px;
  border: 2px solid #666;
  position: absolute;
  left: 0;
  top: -2px;
}
.owner-add-contet .owner-add-contet__inner-sub {
  width: 100%;
  margin: 0 auto;
  margin-bottom: 10px;
  padding: 5px 10px;
  font-size: 13px;
  font-weight: 700;
  position: relative;
}
.owner-add-contet .owner-add-contet__inner-sub:before {
  content: "";
  display: block;
  height: 20px;
  border: 2px solid #6072a8;
  position: absolute;
  left: 0;
  top: 5px;
}
.owner-add-contet .bb-1 {
  border-bottom: 1px solid #ddd;
}
.owner-add-contet .btn-add {
  border-radius: 5px;
  height: auto;
  font-weight: 700;
  padding: 3px 5px;
}
.owner-add-contet .btn-add-wh {
  background: #FFFFFF;
}
.owner-add-contet .toggle-password-btn {
  position: absolute;
  border: none;
  height: 35px;
  box-shadow: none;
}
.owner-add-contet .toggle-password-btn:hover {
  color: #000;
  background-color: transparent;
  box-shadow: none;
}
.owner-add-contet .owner-add-contet__box {
  border-radius: 10px;
  background-color: #eff1fe;
}
.owner-add-contet .list-style-button {
  font-size: 0.75rem;
  position: relative;
}
.owner-add-contet .list-style-button:before {
  content: "●";
  color: #8c9dd4;
  display: block;
  font-size: 8px;
  position: absolute;
  left: 0;
  top: 4px;
}
.bb-1 {
  border-bottom: 1px solid #ddd;
}
h2.owner-content__ttl {
  font-size: 1.2rem;
}
p.owner-content__subttl {
  font-size: 0.9rem;
  font-weight: bold;
}
.owner_con-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.owner_con-flex-start {
  display: flex;
  justify-content: start;
  align-items: flex-start;
}
.owner_con-flex__inner {
  width: 49%;
}
h3.owner-content {
  max-width: 100px;
  width: 100%;
}
.vh-80 {
    height: 80vh !important;
}

/* オーナー用ログイン /owner/login */
.login {}
.login-content {
  padding: 40px 24px;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}
.login-content + .login-content::before {
  position: absolute;
  top: 0;
  left: 24px;
  content: "";
  display: block;
  width: calc(100% - 48px);
  height: 1px;
  background-color: #ddd;
}
.login-content .login-content__title {
  text-align: center;
  font-size: 18px;
  line-height: 1.8;
  font-weight: bold;
}
.login-content .login-content__form {
  margin-top: 24px;
  padding: 40px 24px;
  background-color: #fff;
  border-radius: 10px;
}
.login-content .login-content__box .login-alert {
  margin-bottom: 16px;
  color: #ef6060;
  border: 1px solid #ef6060;
  border-radius: 5px;
  padding: 4px 16px;
}
.login-content .login-content__box .login-alert .login-alert__txt {
  margin: 0;
  display: flex;
  column-gap: 8px;
  align-items: center;
}
.login-content .login__input {
  width: 100%;
  border: 1px solid #E1E1E1;
  background: var(--rgb-255255255, #FFF);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 4px 0;
  padding: 8px 12px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* height: 60px; */
  font-size: 14px;
  border-radius: 2px;
}

.login-content .login__input:focus {
  outline: none;
}
.login-content .login__input-alert {
  border: 1px solid #B81818;
}
.login-content .login-content__action a {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  background-color: #5470C7;
  border-radius: 5px;
  padding: 12px 0;
  margin-top: 20px;
}
.login-content .login-content__action button {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  background-color: #5470C7;
  border-radius: 5px;
  padding: 12px 0;
  margin: 20px auto 0;
}
.login-content .login-content__action .login-content__action__agreement {
  width: calc(100% - 48px);
  margin: 20px auto 0;
}
.login-content .login-content__info {
  margin-top: 24px;
  margin-bottom: 0;
}
.login-content .login-content__info .login-content__info__link {
  display: block;
  width: fit-content;
  color: #5470C7;
  font-size: 12px;
}
.login-content .login-content__info .login-content__info__link + .login-content__info__link {
  margin-top: 10px;
}
.login .login-foot {
  margin: 30px 0;
}
.login-foot {
  margin-top: 30px;
  font-size: 11px;
  line-height: 1.2;
  text-align: center;
}
.login-foot__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0;
  padding: 0;
}
.login-foot li:nth-child(n+2)::before {
  content: '｜';
  display: inline-block;
  margin: 0 1em;
  text-decoration: none;
}
.login-foot a {
  display: inline-block;
  color: #9298AA;
  text-decoration: none;
}
.login.login--manager {
  min-height: 100vh;
  display: grid;
  place-items: center;
}
.login.login--manager .login-content {
  width: 600px;
}
@media (max-width: 640px) {
  .login.login--manager .login-content {
    width: 90%;
    padding: 40px 0;
  }
}