@charset "UTF-8";
html, body {
  position: relative;
  z-index: 0;
  margin: 0;
  padding: 0;
  min-height: 100dvh;
  width: 100%;
  font-weight: normal;
  text-align: left;
  word-break: break-all;
  overflow-wrap: break-word;
}

* {
  position: relative;
  z-index: 0;
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
          text-size-adjust: 100%;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  font-family: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  vertical-align: inherit;
  border-radius: 0;
  border-color: inherit;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -moz-tap-highlight-color: rgba(0, 0, 0, 0);
  -ms-tap-highlight-color: rgba(0, 0, 0, 0);
  -o-tap-highlight-color: rgba(0, 0, 0, 0);
}

:focus {
  outline: 0;
}

ul li {
  margin-left: 1.5em;
}

ol li {
  margin-left: 2.5em;
}

ul li + li,
ol li + li {
  margin-top: 0.25em;
}

img {
  max-width: 100%;
}

a, button {
  text-decoration: none;
  cursor: pointer;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.theme-default, .text-editor h3, #popup-shield .popup, #popup-shield .popup .body ul li, #daialog-shield .daialog, html {
  --background-color:#FFFFFF;
  --font-color:#000000;
  --link-color:#027fb0;
  --note-color:gray;
  --main-color:#03b6fc;
  --accent-color:#fcba03;
  --border-color:#CCCCCC;
  background-color: var(--background-color);
  color: var(--font-color);
}

.theme-gray, .text-editor h2, table.result-list th .thumbnail,
table.result-list td .thumbnail, table.result-list tr.closed, table.spec-list th, table.spec-list td ul.images li, #popup-shield .popup .body ul li:hover, .box .box__title, .box .box__footer, .input-field > .input label.image, .input-field > .input ul.images li, #contents-title, #global-navi .global-navi-title .user-card {
  --background-color:#EEEEEE;
  --font-color:#000000;
  --link-color:#027fb0;
  --note-color:gray;
  --main-color:#03b6fc;
  --accent-color:#fcba03;
  --border-color:#CCCCCC;
  background-color: var(--background-color);
  color: var(--font-color);
}

.theme-gheader, #global-header-contents {
  --background-color:#03a4e3;
  --font-color:#FFFFFF;
  --link-color:#FFFFFF;
  --note-color:white;
  --main-color:#FFFFFF;
  --accent-color:#FFFFFF;
  --border-color:#FFFFFF;
  background-color: var(--background-color);
  color: var(--font-color);
}

.theme-header {
  --background-color:#EEEEEE;
  --font-color:#FFFFFF;
  --link-color:#FFFFFF;
  --note-color:white;
  --main-color:#03b6fc;
  --accent-color:#fcba03;
  --border-color:#03b6fc;
  background-color: var(--background-color);
  color: var(--font-color);
}

.theme-gnavi, #header-contents {
  --background-color:#FFFFFF;
  --font-color:#000000;
  --link-color:#027fb0;
  --note-color:gray;
  --main-color:#03b6fc;
  --accent-color:#fcba03;
  --border-color:#CCCCCC;
  background-color: var(--background-color);
  color: var(--font-color);
}

.theme-footer, #footer-contents {
  --background-color:#EEEEEE;
  --font-color:#000000;
  --link-color:#027fb0;
  --note-color:gray;
  --main-color:#03b6fc;
  --accent-color:#fcba03;
  --border-color:#CCCCCC;
  background-color: var(--background-color);
  color: var(--font-color);
}

.theme-gfooter, #global-footer-contents {
  --background-color:#03b6fc;
  --font-color:#FFFFFF;
  --link-color:#FFFFFF;
  --note-color:white;
  --main-color:#FFFFFF;
  --accent-color:#FFFFFF;
  --border-color:#FFFFFF;
  background-color: var(--background-color);
  color: var(--font-color);
}

html {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

/* パソコン表示時 */
@media screen and (min-width: 1000px) {
  html {
    font-size: 14px;
  }
}
/* タブレット表示時 */
@media screen and (min-width: 640px) and (max-width: 1000px) {
  html {
    font-size: 1.4vw;
  }
}
/* モバイル表示時 */
@media screen and (max-width: 640px) {
  html {
    font-size: 3.4375vw;
  }
}
a.link {
  color: var(--link-color);
  border-bottom: 1px solid transparent;
}
a.link:hover, a.link:active, a.link.active {
  border-bottom: 1px solid var(--link-color);
}

#wrapper {
  min-height: 100dvh;
  width: calc(100vw - (100vw - 100%));
  display: grid;
  grid-template: " global-header global-header " auto " header        main          " 1fr " header        footer        " auto " global-footer global-footer " auto/15em calc(100% - 15em);
}
@media screen and (max-width: 640px) {
  #wrapper {
    grid-template: " global-header " auto " header        " auto " main          " 1fr " footer        " auto " global-footer " auto/100%;
  }
}
#wrapper.login {
  grid-template: " global-header global-header " auto " header        main          " 1fr " header        footer        " auto " global-footer global-footer " auto/0 100%;
}
@media screen and (max-width: 640px) {
  #wrapper.login {
    grid-template: " global-header " auto " header        " auto " main          " 1fr " footer        " auto " global-footer " auto/100%;
  }
}

#global-header {
  grid-area: global-header;
  z-index: 1;
}

#header {
  grid-area: header;
  z-index: 5;
}

#main {
  grid-area: main;
  z-index: 3;
}

#footer {
  grid-area: footer;
  z-index: 4;
}

#global-footer {
  grid-area: global-footer;
  z-index: 2;
}

#global-header-contents {
  font-size: 0.8em;
  padding: 0.25em;
}

#header-contents {
  height: 100%;
  border-right: 1px solid var(--border-color);
}

#global-navi .global-navi-title {
  width: 100%;
  padding: 0.5em;
  display: grid;
  grid-template: " user-card " auto/100%;
  /* モバイル表示時 */
}
@media screen and (max-width: 640px) {
  #global-navi .global-navi-title {
    grid-template: " user-card ..... menu " auto/1fr 0.5em 5em;
  }
}
#global-navi .global-navi-title .user-card {
  grid-area: user-card;
  padding: 0.5em;
  display: grid;
  grid-template: " face  ..... role " auto " face  ..... name " auto/2.5em 0.5em 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 0.5em;
  border: 1px solid var(--border-color);
}
#global-navi .global-navi-title .user-card .face {
  grid-area: face;
  font-size: 1.8em;
  line-height: 1;
  color: var(--main-color);
}
#global-navi .global-navi-title .user-card .role {
  grid-area: role;
  font-size: 0.8em;
}
#global-navi .global-navi-title .user-card .name {
  grid-area: name;
}
#global-navi .global-navi-title .mobileMenu {
  display: none;
}
#global-navi .global-navi-title .mobileMenu span:nth-child(-n+3) {
  position: absolute;
  left: 50%;
  display: block;
  height: 1px;
  width: 60%;
  background-color: #000000;
}
#global-navi .global-navi-title .mobileMenu span:nth-child(1) {
  top: 10%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
#global-navi .global-navi-title .mobileMenu span:nth-child(2) {
  top: 30%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
#global-navi .global-navi-title .mobileMenu span:nth-child(3) {
  top: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
#global-navi .global-navi-title .mobileMenu span:nth-child(4) {
  position: absolute;
  left: 0%;
  bottom: 0%;
  width: 100%;
}
#global-navi .global-navi-title .mobileMenu span:nth-child(4)::after {
  content: "MENU";
}
@media screen and (max-width: 640px) {
  #global-navi .global-navi-title .mobileMenu {
    display: block;
    grid-area: menu;
  }
}
#global-navi.show_menu .global-navi-title {
  /* モバイル表示時 */
}
@media screen and (max-width: 640px) {
  #global-navi.show_menu .global-navi-title .mobileMenu span:nth-child(1) {
    top: 30%;
    -webkit-transform: translateX(-50%) rotate(45deg);
            transform: translateX(-50%) rotate(45deg);
  }
  #global-navi.show_menu .global-navi-title .mobileMenu span:nth-child(2) {
    opacity: 0;
  }
  #global-navi.show_menu .global-navi-title .mobileMenu span:nth-child(3) {
    top: 30%;
    -webkit-transform: translateX(-50%) rotate(-45deg);
            transform: translateX(-50%) rotate(-45deg);
  }
  #global-navi.show_menu .global-navi-title .mobileMenu span:nth-child(4)::after {
    content: "CLOSE";
  }
}
#global-navi .navi {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  /* モバイル表示時 */
}
#global-navi .navi li {
  list-style: none;
  margin: 0;
  padding: 0;
}
#global-navi .navi li a {
  padding: 0.25em 0.5em;
  display: grid;
  grid-template: " icon  ..... main " auto " icon  ..... sub  " auto/2.5em 0.5em 1fr;
}
#global-navi .navi li a .icon {
  grid-area: icon;
  align-self: center;
  text-align: center;
  line-height: 1;
  font-size: 1.2em;
  color: var(--note-color);
}
#global-navi .navi li a .label-main {
  grid-area: main;
  align-self: end;
}
#global-navi .navi li a .label-sub {
  grid-area: sub;
  align-self: start;
  font-size: 0.65em;
}
#global-navi .navi li a:hover .icon, #global-navi .navi li a.active .icon {
  color: var(--main-color);
}
#global-navi .navi li a:hover .label-main, #global-navi .navi li a.active .label-main {
  font-weight: bold;
}
#global-navi .navi li + li {
  border-top: 1px solid var(--border-color);
}
@media screen and (max-width: 640px) {
  #global-navi .navi {
    display: none;
    min-height: 0px;
  }
}
#global-navi.show_menu .navi {
  /* モバイル表示時 */
}
@media screen and (max-width: 640px) {
  #global-navi.show_menu .navi {
    display: block;
  }
}
#global-navi .sub-navi {
  list-style: none;
  margin: 0;
  padding: 0;
  /* モバイル表示時 */
}
#global-navi .sub-navi li {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.8em;
}
#global-navi .sub-navi li a {
  padding: 0.5em;
  display: grid;
  grid-template: " icon  ..... main " auto/1.5em 0.5em 1fr;
}
#global-navi .sub-navi li a .icon {
  grid-area: icon;
  align-self: center;
  text-align: center;
  line-height: 1;
  color: var(--note-color);
}
#global-navi .sub-navi li a .label-main {
  grid-area: main;
  align-self: end;
}
@media screen and (max-width: 640px) {
  #global-navi .sub-navi {
    display: none;
    min-height: 0px;
  }
}
#global-navi.show_menu .sub-navi {
  /* モバイル表示時 */
}
@media screen and (max-width: 640px) {
  #global-navi.show_menu .sub-navi {
    display: block;
  }
}

#main {
  display: grid;
  grid-template: " title " auto " body  " 1fr/100%;
  height: 100%;
}

#contents-title {
  grid-area: title;
  padding: 2em;
}
#contents-title h1 .main {
  font-size: 1.8em;
  font-weight: bold;
}

#contents-body {
  grid-area: body;
}

#global-footer-contents {
  font-size: 0.8em;
  padding: 0.25em;
}

html #initialize-loader {
  background-color: var(--background-color);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100dvw;
  height: 100dvh;
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  display: grid;
  place-content: center;
}
html #initialize-loader .loader {
  --uib-size: 5em;
  --uib-color: var(--main-color);
  --uib-speed: 2s;
  position: relative;
  height: var(--uib-size);
  width: var(--uib-size);
}
html #initialize-loader .loader::before,
html #initialize-loader .loader::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 50%;
  background-color: var(--uib-color);
  -webkit-animation: pulse var(--uib-speed) linear infinite;
          animation: pulse var(--uib-speed) linear infinite;
  -webkit-transform: scale(0);
          transform: scale(0);
  opacity: 0;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
html #initialize-loader .loader::after {
  -webkit-animation-delay: calc(var(--uib-speed) / -2);
          animation-delay: calc(var(--uib-speed) / -2);
}
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0;
  }
}
@keyframes pulse {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0;
  }
}
html.inited #initialize-loader {
  -webkit-animation-name: fade;
          animation-name: fade;
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
  -webkit-animation-duration: 0.2s;
          animation-duration: 0.2s;
  -webkit-animation-timing-function: ease-in;
          animation-timing-function: ease-in;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
@-webkit-keyframes fade {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(-10em);
            transform: translateY(-10em);
    opacity: 0;
  }
}
@keyframes fade {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(-10em);
            transform: translateY(-10em);
    opacity: 0;
  }
}

html #connection-loader {
  display: none;
}
html.connecting #connection-loader {
  background-color: rgba(255, 255, 255, 0.2);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100dvw;
  height: 100dvh;
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  display: grid;
  place-content: center;
}
html.connecting #connection-loader .loader {
  --uib-size: 8em;
  --uib-color: var(--main-color);
  --uib-speed: 1.4s;
  --uib-stroke: 0.5em;
  --uib-bg-opacity: .1;
  position: relative;
  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;
  height: var(--uib-stroke);
  width: var(--uib-size);
  border-radius: calc(var(--uib-stroke) / 2);
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
html.connecting #connection-loader .loader::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: var(--uib-color);
  opacity: var(--uib-bg-opacity);
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
html.connecting #connection-loader .loader::after {
  content: "";
  height: 100%;
  width: 100%;
  border-radius: calc(var(--uib-stroke) / 2);
  -webkit-animation: zoom var(--uib-speed) ease-in-out infinite;
          animation: zoom var(--uib-speed) ease-in-out infinite;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  background-color: var(--uib-color);
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
@-webkit-keyframes zoom {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
@keyframes zoom {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}

.disabled {
  opacity: 0.6;
  pointer-events: none;
  -webkit-filter: brightness(90%);
          filter: brightness(90%);
}

.ta-left {
  text-align: left;
}

.ta-right {
  text-align: right;
}

.ta-center {
  text-align: center;
}

.ta-justify {
  text-align: justify;
}

.va-middle {
  vertical-align: middle;
}

.ff-default {
  font-family: "Noto Sans JP", sans-serif;
}

.ff-accent {
  font-family: "Noto Serif JP", serif;
}

.fw-bold {
  font-weight: bold;
}

.fw-normal {
  font-weight: normal;
}

.fs {
  font-size: 1em;
}

.fs-1S {
  font-size: 0.8em;
}

.fs-2S {
  font-size: 0.65em;
}

.fs-1L {
  font-size: 1.2em;
}

.fs-2L {
  font-size: 1.8em;
}

.fs-3L {
  font-size: 2.2em;
}

.fs-4L {
  font-size: 3em;
}

@media screen and (max-width: 640px) {
  .fs {
    font-size: 1em;
  }
  .fs-1S {
    font-size: 0.9em;
  }
  .fs-2S {
    font-size: 0.75em;
  }
  .fs-1L {
    font-size: 1.2em;
  }
  .fs-2L {
    font-size: 1.8em;
  }
  .fs-3L {
    font-size: 2.2em;
  }
  .fs-4L {
    font-size: 3em;
  }
}
.fs-sp {
  font-size: 1em;
}

.fs-sp-1S {
  font-size: 0.9em;
}

.fs-sp-2S {
  font-size: 0.75em;
}

.fs-sp-1L {
  font-size: 1.2em;
}

.fs-sp-2L {
  font-size: 1.8em;
}

.fs-sp-3L {
  font-size: 2.2em;
}

.fs-sp-4L {
  font-size: 3em;
}

.mar {
  margin: 2em;
}

.mar-1S {
  margin: 1em;
}

.mar-2S {
  margin: 0.5em;
}

.mar-3S {
  margin: 0.25em;
}

.mar-1L {
  margin: 3em;
}

.mar-2L {
  margin: 4em;
}

.mar-3L {
  margin: 6em;
}

.mar-4L {
  margin: 8em;
}

.mar-r {
  margin-right: 2em;
}

.mar-r-1S {
  margin-right: 1em;
}

.mar-r-2S {
  margin-right: 0.5em;
}

.mar-r-3S {
  margin-right: 0.25em;
}

.mar-r-1L {
  margin-right: 3em;
}

.mar-r-2L {
  margin-right: 4em;
}

.mar-r-3L {
  margin-right: 6em;
}

.mar-r-4L {
  margin-right: 8em;
}

.mar-l {
  margin-left: 2em;
}

.mar-l-1S {
  margin-left: 1em;
}

.mar-l-2S {
  margin-left: 0.5em;
}

.mar-l-3S {
  margin-left: 0.25em;
}

.mar-l-1L {
  margin-left: 3em;
}

.mar-l-2L {
  margin-left: 4em;
}

.mar-l-3L {
  margin-left: 6em;
}

.mar-l-4L {
  margin-left: 8em;
}

.mar-t {
  margin-top: 2em;
}

.mar-t-1S {
  margin-top: 1em;
}

.mar-t-2S {
  margin-top: 0.5em;
}

.mar-t-3S {
  margin-top: 0.25em;
}

.mar-t-1L {
  margin-top: 3em;
}

.mar-t-2L {
  margin-top: 4em;
}

.mar-t-3L {
  margin-top: 6em;
}

.mar-t-4L {
  margin-top: 8em;
}

.mar-b {
  margin-bottom: 2em;
}

.mar-b-1S {
  margin-bottom: 1em;
}

.mar-b-2S {
  margin-bottom: 0.5em;
}

.mar-b-3S {
  margin-bottom: 0.25em;
}

.mar-b-1L {
  margin-bottom: 3em;
}

.mar-b-2L {
  margin-bottom: 4em;
}

.mar-b-3L {
  margin-bottom: 6em;
}

.mar-b-4L {
  margin-bottom: 8em;
}

@media screen and (max-width: 640px) {
  .mar {
    margin: 2em;
  }
  .mar-1S {
    margin: 1em;
  }
  .mar-2S {
    margin: 0.5em;
  }
  .mar-3S {
    margin: 0.25em;
  }
  .mar-1L {
    margin: 3em;
  }
  .mar-2L {
    margin: 4em;
  }
  .mar-3L {
    margin: 6em;
  }
  .mar-4L {
    margin: 8em;
  }
  .mar-r {
    margin-right: 2em;
  }
  .mar-r-1S {
    margin-right: 1em;
  }
  .mar-r-2S {
    margin-right: 0.5em;
  }
  .mar-r-3S {
    margin-right: 0.25em;
  }
  .mar-r-1L {
    margin-right: 3em;
  }
  .mar-r-2L {
    margin-right: 4em;
  }
  .mar-r-3L {
    margin-right: 6em;
  }
  .mar-r-4L {
    margin-right: 8em;
  }
  .mar-l {
    margin-left: 2em;
  }
  .mar-l-1S {
    margin-left: 1em;
  }
  .mar-l-2S {
    margin-left: 0.5em;
  }
  .mar-l-3S {
    margin-left: 0.25em;
  }
  .mar-l-1L {
    margin-left: 3em;
  }
  .mar-l-2L {
    margin-left: 4em;
  }
  .mar-l-3L {
    margin-left: 6em;
  }
  .mar-l-4L {
    margin-left: 8em;
  }
  .mar-t {
    margin-top: 2em;
  }
  .mar-t-1S {
    margin-top: 1em;
  }
  .mar-t-2S {
    margin-top: 0.5em;
  }
  .mar-t-3S {
    margin-top: 0.25em;
  }
  .mar-t-1L {
    margin-top: 3em;
  }
  .mar-t-2L {
    margin-top: 4em;
  }
  .mar-t-3L {
    margin-top: 6em;
  }
  .mar-t-4L {
    margin-top: 8em;
  }
  .mar-b {
    margin-bottom: 2em;
  }
  .mar-b-1S {
    margin-bottom: 1em;
  }
  .mar-b-2S {
    margin-bottom: 0.5em;
  }
  .mar-b-3S {
    margin-bottom: 0.25em;
  }
  .mar-b-1L {
    margin-bottom: 3em;
  }
  .mar-b-2L {
    margin-bottom: 4em;
  }
  .mar-b-3L {
    margin-bottom: 6em;
  }
  .mar-b-4L {
    margin-bottom: 8em;
  }
}
.mar-sp {
  margin: 2em;
}

.mar-sp-1S {
  margin: 1em;
}

.mar-sp-2S {
  margin: 0.5em;
}

.mar-sp-3S {
  margin: 0.25em;
}

.mar-sp-1L {
  margin: 3em;
}

.mar-sp-2L {
  margin: 4em;
}

.mar-sp-3L {
  margin: 6em;
}

.mar-sp-4L {
  margin: 8em;
}

.mar-sp-r {
  margin-right: 2em;
}

.mar-sp-r-1S {
  margin-right: 1em;
}

.mar-sp-r-2S {
  margin-right: 0.5em;
}

.mar-sp-r-3S {
  margin-right: 0.25em;
}

.mar-sp-r-1L {
  margin-right: 3em;
}

.mar-sp-r-2L {
  margin-right: 4em;
}

.mar-sp-r-3L {
  margin-right: 6em;
}

.mar-sp-r-4L {
  margin-right: 8em;
}

.mar-sp-l {
  margin-left: 2em;
}

.mar-sp-l-1S {
  margin-left: 1em;
}

.mar-sp-l-2S {
  margin-left: 0.5em;
}

.mar-sp-l-3S {
  margin-left: 0.25em;
}

.mar-sp-l-1L {
  margin-left: 3em;
}

.mar-sp-l-2L {
  margin-left: 4em;
}

.mar-sp-l-3L {
  margin-left: 6em;
}

.mar-sp-l-4L {
  margin-left: 8em;
}

.mar-sp-t {
  margin-top: 2em;
}

.mar-sp-t-1S {
  margin-top: 1em;
}

.mar-sp-t-2S {
  margin-top: 0.5em;
}

.mar-sp-t-3S {
  margin-top: 0.25em;
}

.mar-sp-t-1L {
  margin-top: 3em;
}

.mar-sp-t-2L {
  margin-top: 4em;
}

.mar-sp-t-3L {
  margin-top: 6em;
}

.mar-sp-t-4L {
  margin-top: 8em;
}

.mar-sp-b {
  margin-bottom: 2em;
}

.mar-sp-b-1S {
  margin-bottom: 1em;
}

.mar-sp-b-2S {
  margin-bottom: 0.5em;
}

.mar-sp-b-3S {
  margin-bottom: 0.25em;
}

.mar-sp-b-1L {
  margin-bottom: 3em;
}

.mar-sp-b-2L {
  margin-bottom: 4em;
}

.mar-sp-b-3L {
  margin-bottom: 6em;
}

.mar-sp-b-4L {
  margin-bottom: 8em;
}

.pad {
  padding: 2em;
}

.pad-1S {
  padding: 1em;
}

.pad-2S {
  padding: 0.5em;
}

.pad-3S {
  padding: 0.25em;
}

.pad-1L {
  padding: 3em;
}

.pad-2L {
  padding: 4em;
}

.pad-3L {
  padding: 6em;
}

.pad-4L {
  padding: 8em;
}

.pad-r {
  padding-right: 2em;
}

.pad-r-1S {
  padding-right: 1em;
}

.pad-r-2S {
  padding-right: 0.5em;
}

.pad-r-3S {
  padding-right: 0.25em;
}

.pad-r-1L {
  padding-right: 3em;
}

.pad-r-2L {
  padding-right: 4em;
}

.pad-r-3L {
  padding-right: 6em;
}

.pad-r-4L {
  padding-right: 8em;
}

.pad-l {
  padding-left: 2em;
}

.pad-l-1S {
  padding-left: 1em;
}

.pad-l-2S {
  padding-left: 0.5em;
}

.pad-l-3S {
  padding-left: 0.25em;
}

.pad-l-1L {
  padding-left: 3em;
}

.pad-l-2L {
  padding-left: 4em;
}

.pad-l-3L {
  padding-left: 6em;
}

.pad-l-4L {
  padding-left: 8em;
}

.pad-t {
  padding-top: 2em;
}

.pad-t-1S {
  padding-top: 1em;
}

.pad-t-2S {
  padding-top: 0.5em;
}

.pad-t-3S {
  padding-top: 0.25em;
}

.pad-t-1L {
  padding-top: 3em;
}

.pad-t-2L {
  padding-top: 4em;
}

.pad-t-3L {
  padding-top: 6em;
}

.pad-t-4L {
  padding-top: 8em;
}

.pad-b {
  padding-bottom: 2em;
}

.pad-b-1S {
  padding-bottom: 1em;
}

.pad-b-2S {
  padding-bottom: 0.5em;
}

.pad-b-3S {
  padding-bottom: 0.25em;
}

.pad-b-1L {
  padding-bottom: 3em;
}

.pad-b-2L {
  padding-bottom: 4em;
}

.pad-b-3L {
  padding-bottom: 6em;
}

.pad-b-4L {
  padding-bottom: 8em;
}

@media screen and (max-width: 640px) {
  .pad {
    padding: 2em;
  }
  .pad-1S {
    padding: 1em;
  }
  .pad-2S {
    padding: 0.5em;
  }
  .pad-3S {
    padding: 0.25em;
  }
  .pad-1L {
    padding: 3em;
  }
  .pad-2L {
    padding: 4em;
  }
  .pad-3L {
    padding: 6em;
  }
  .pad-4L {
    padding: 8em;
  }
  .pad-r {
    padding-right: 2em;
  }
  .pad-r-1S {
    padding-right: 1em;
  }
  .pad-r-2S {
    padding-right: 0.5em;
  }
  .pad-r-3S {
    padding-right: 0.25em;
  }
  .pad-r-1L {
    padding-right: 3em;
  }
  .pad-r-2L {
    padding-right: 4em;
  }
  .pad-r-3L {
    padding-right: 6em;
  }
  .pad-r-4L {
    padding-right: 8em;
  }
  .pad-l {
    padding-left: 2em;
  }
  .pad-l-1S {
    padding-left: 1em;
  }
  .pad-l-2S {
    padding-left: 0.5em;
  }
  .pad-l-3S {
    padding-left: 0.25em;
  }
  .pad-l-1L {
    padding-left: 3em;
  }
  .pad-l-2L {
    padding-left: 4em;
  }
  .pad-l-3L {
    padding-left: 6em;
  }
  .pad-l-4L {
    padding-left: 8em;
  }
  .pad-t {
    padding-top: 2em;
  }
  .pad-t-1S {
    padding-top: 1em;
  }
  .pad-t-2S {
    padding-top: 0.5em;
  }
  .pad-t-3S {
    padding-top: 0.25em;
  }
  .pad-t-1L {
    padding-top: 3em;
  }
  .pad-t-2L {
    padding-top: 4em;
  }
  .pad-t-3L {
    padding-top: 6em;
  }
  .pad-t-4L {
    padding-top: 8em;
  }
  .pad-b {
    padding-bottom: 2em;
  }
  .pad-b-1S {
    padding-bottom: 1em;
  }
  .pad-b-2S {
    padding-bottom: 0.5em;
  }
  .pad-b-3S {
    padding-bottom: 0.25em;
  }
  .pad-b-1L {
    padding-bottom: 3em;
  }
  .pad-b-2L {
    padding-bottom: 4em;
  }
  .pad-b-3L {
    padding-bottom: 6em;
  }
  .pad-b-4L {
    padding-bottom: 8em;
  }
}
.pad-sp {
  padding: 2em;
}

.pad-sp-1S {
  padding: 1em;
}

.pad-sp-2S {
  padding: 0.5em;
}

.pad-sp-3S {
  padding: 0.25em;
}

.pad-sp-1L {
  padding: 3em;
}

.pad-sp-2L {
  padding: 4em;
}

.pad-sp-3L {
  padding: 6em;
}

.pad-sp-4L {
  padding: 8em;
}

.pad-sp-r {
  padding-right: 2em;
}

.pad-sp-r-1S {
  padding-right: 1em;
}

.pad-sp-r-2S {
  padding-right: 0.5em;
}

.pad-sp-r-3S {
  padding-right: 0.25em;
}

.pad-sp-r-1L {
  padding-right: 3em;
}

.pad-sp-r-2L {
  padding-right: 4em;
}

.pad-sp-r-3L {
  padding-right: 6em;
}

.pad-sp-r-4L {
  padding-right: 8em;
}

.pad-sp-l {
  padding-left: 2em;
}

.pad-sp-l-1S {
  padding-left: 1em;
}

.pad-sp-l-2S {
  padding-left: 0.5em;
}

.pad-sp-l-3S {
  padding-left: 0.25em;
}

.pad-sp-l-1L {
  padding-left: 3em;
}

.pad-sp-l-2L {
  padding-left: 4em;
}

.pad-sp-l-3L {
  padding-left: 6em;
}

.pad-sp-l-4L {
  padding-left: 8em;
}

.pad-sp-t {
  padding-top: 2em;
}

.pad-sp-t-1S {
  padding-top: 1em;
}

.pad-sp-t-2S {
  padding-top: 0.5em;
}

.pad-sp-t-3S {
  padding-top: 0.25em;
}

.pad-sp-t-1L {
  padding-top: 3em;
}

.pad-sp-t-2L {
  padding-top: 4em;
}

.pad-sp-t-3L {
  padding-top: 6em;
}

.pad-sp-t-4L {
  padding-top: 8em;
}

.pad-sp-b {
  padding-bottom: 2em;
}

.pad-sp-b-1S {
  padding-bottom: 1em;
}

.pad-sp-b-2S {
  padding-bottom: 0.5em;
}

.pad-sp-b-3S {
  padding-bottom: 0.25em;
}

.pad-sp-b-1L {
  padding-bottom: 3em;
}

.pad-sp-b-2L {
  padding-bottom: 4em;
}

.pad-sp-b-3L {
  padding-bottom: 6em;
}

.pad-sp-b-4L {
  padding-bottom: 8em;
}

#ResponsiveCheck {
  width: 0;
  height: 0;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
}

.isPC {
  display: none;
}

.isTAB {
  display: none;
}

.isSP {
  display: none;
}

@media screen and (min-width: 1000px) {
  .isPC {
    display: block;
  }
  .isTAB {
    display: none;
  }
  .isSP {
    display: none;
  }
  .v-tab {
    display: none;
  }
  .v-tab-sp {
    display: none;
  }
  .v-sp {
    display: none;
  }
}
@media screen and (min-width: 640px) and (max-width: 1000px) {
  .isPC {
    display: none;
  }
  .isTAB {
    display: block;
  }
  .isSP {
    display: none;
  }
  .v-pc {
    display: none;
  }
  .v-sp {
    display: none;
  }
}
@media screen and (max-width: 640px) {
  .isPC {
    display: none;
  }
  .isTAB {
    display: none;
  }
  .isSP {
    display: block;
  }
  .v-pc {
    display: none;
  }
  .v-pc-tab {
    display: none;
  }
  .v-tab {
    display: none;
  }
}
/* Gridシステム(12 col grid) */
.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1em;
}
.grid.no-gap {
  gap: 0;
}
.grid .sub-grid {
  display: grid;
  grid-template-columns: subgrid;
}
.grid .sub-grid.no-gap {
  gap: 0;
}
.grid .grid-col-1 {
  grid-column: span 1;
}
.grid .grid-col-2 {
  grid-column: span 2;
}
.grid .grid-col-3 {
  grid-column: span 3;
}
.grid .grid-col-4 {
  grid-column: span 4;
}
.grid .grid-col-5 {
  grid-column: span 5;
}
.grid .grid-col-6 {
  grid-column: span 6;
}
.grid .grid-col-7 {
  grid-column: span 7;
}
.grid .grid-col-8 {
  grid-column: span 8;
}
.grid .grid-col-9 {
  grid-column: span 9;
}
.grid .grid-col-10 {
  grid-column: span 10;
}
.grid .grid-col-11 {
  grid-column: span 11;
}
.grid .grid-col-12 {
  grid-column: span 12;
}
.grid .grid-col-cs {
  place-self: center start;
}

/* モバイル表示時 */
@media screen and (max-width: 640px) {
  .grid .grid-col-sp-1 {
    grid-column: span 1;
  }
  .grid .grid-col-sp-2 {
    grid-column: span 2;
  }
  .grid .grid-col-sp-3 {
    grid-column: span 3;
  }
  .grid .grid-col-sp-4 {
    grid-column: span 4;
  }
  .grid .grid-col-sp-5 {
    grid-column: span 5;
  }
  .grid .grid-col-sp-6 {
    grid-column: span 6;
  }
  .grid .grid-col-sp-7 {
    grid-column: span 7;
  }
  .grid .grid-col-sp-8 {
    grid-column: span 8;
  }
  .grid .grid-col-sp-9 {
    grid-column: span 9;
  }
  .grid .grid-col-sp-10 {
    grid-column: span 10;
  }
  .grid .grid-col-sp-11 {
    grid-column: span 11;
  }
  .grid .grid-col-sp-12 {
    grid-column: span 12;
  }
}
.icon {
  font-size: 1.2em;
  margin-bottom: -0.1em;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.icon.valid {
  color: #24d459;
}
.icon.invalid {
  color: #d43b24;
}

.section {
  width: 100%;
  padding: 1em 1em;
}
.section.no-padding {
  padding: 0 0;
}
.section.full-height {
  height: 100%;
}
.section + .section {
  border-top: 1px solid var(--border-color);
}
.section .row {
  width: 1000px;
  margin: 0 auto;
}
.section .row.row-wide {
  width: 100%;
}
.section .row.centering {
  display: grid;
  place-items: center;
  width: auto;
}
.section .row.full-height {
  height: 100%;
}
.section .row + .row {
  margin-top: 2em;
}
@media screen and (min-width: 640px) and (max-width: 1000px) {
  .section .row {
    width: 100%;
  }
}
@media screen and (max-width: 640px) {
  .section .row {
    width: 100%;
  }
}

.button {
  --background-color:#03b6fc;
  --font-color:#FFFFFF;
  --accent-color:#FFFFFF;
  --background-color-reverse:#FFFFFF;
  --font-color-reverse:#03b6fc;
  --accent-color-reverse:#03b6fc;
  --border-color:#03b6fc;
  display: inline-grid;
  grid-template: " ..... prefix label suffix ..... " auto/0.5fr auto auto auto 0.5fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.5em 1em;
  background-color: var(--background-color);
  color: var(--font-color);
  border-radius: 0.5em;
  border: 1px solid var(--border-color);
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  white-space: nowrap;
}
.button.button-small {
  font-size: 0.8em;
}
.button.button-large {
  font-size: 1.2em;
}
.button.button-wide {
  width: 100%;
}
.button.button-secondary {
  --background-color:#EEEEEE;
  --font-color:#000000;
  --accent-color:#000000;
  --background-color-reverse:#FFFFFF;
  --font-color-reverse:#000000;
  --accent-color-reverse:#000000;
  --border-color:#CCCCCC;
}
.button.button-danger {
  --background-color:#d43b24;
  --font-color:#FFFFFF;
  --accent-color:#FFFFFF;
  --background-color-reverse:#FFFFFF;
  --font-color-reverse:#d43b24;
  --accent-color-reverse:#d43b24;
  --border-color:#d43b24;
}
.button.button-accept {
  --background-color:#aed0fd;
  --font-color:#0455c1;
  --accent-color:#1878fa;
  --background-color-reverse:#FFFFFF;
  --font-color-reverse:#0455c1;
  --accent-color-reverse:#1878fa;
  --border-color:#1878fa;
}
.button.button-deny {
  --background-color:#fcd4dc;
  --font-color:#da1039;
  --accent-color:#f14668;
  --background-color-reverse:#FFFFFF;
  --font-color-reverse:#da1039;
  --accent-color-reverse:#f14668;
  --border-color:#f14668;
}
.button .label {
  grid-area: label;
}
.button .icon {
  grid-area: prefix;
  color: var(--accent-color);
}
.button .icon + .label {
  margin-left: 0.5em;
}
.button .label + .icon {
  grid-area: suffix;
  margin-left: 0.5em;
  margin-right: 0em;
}
.button:hover, .button:active, .button.active {
  background-color: var(--background-color-reverse);
  color: var(--font-color-reverse);
}
.button:hover .icon, .button:active .icon, .button.active .icon {
  color: var(--accent-color-reverse);
}

.button-list {
  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;
  gap: 0.5em 0.5em;
}
.button-list.button-list-left {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.button-list.button-list-right {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.button-list > span.space {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 100%;
          flex: 1 1 100%;
}
.button-list > .button {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

label {
  display: inline-block;
}
label.full {
  width: 100%;
}
label > input:not([type=radio], [type=checkbox]),
label > textarea,
label > select,
label > .text-editor {
  width: 100%;
}
label.checkbox {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
}
label.checkbox > input + span {
  margin-left: 0.25em;
}
label.checkbox + label.checkbox {
  margin-left: 0.5em;
}

input, textarea, select, .text-editor {
  -webkit-appearance: auto;
  -moz-appearance: auto;
  -ms-appearance: auto;
  -o-appearance: auto;
  appearance: auto;
  line-height: 1.5;
  margin: 0px;
  padding: 0px;
  padding: 0.2em 0.4em;
  background-color: #FFFFFF;
  color: #000000;
  border-radius: 0px;
}
input:focus, textarea:focus, select:focus, .text-editor:focus {
  -webkit-appearance: auto;
  -moz-appearance: auto;
  -ms-appearance: auto;
  -o-appearance: auto;
  appearance: auto;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
}

input:not([type=radio], [type=checkbox]), textarea, select, .text-editor {
  -webkit-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1882352941);
          box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1882352941);
  border: 1px solid rgba(0, 0, 0, 0);
  border-radius: 0.25em;
}
input:not([type=radio], [type=checkbox]):focus, textarea:focus, select:focus, .text-editor:focus {
  border-color: var(--main-color);
}
input:not([type=radio], [type=checkbox]).danger, textarea.danger, select.danger, .text-editor.danger {
  border-color: #d43b24;
}

.input-field {
  width: 100%;
  display: grid;
  grid-template: " label   label   label " auto " pref    input   suff  " auto " message message message " auto/auto 1fr auto;
}
.input-field > .label {
  grid-area: label;
  font-size: 0.65em;
}
.input-field > .pref {
  grid-area: pref;
}
.input-field > .suff {
  grid-area: suff;
}
.input-field > .input {
  grid-area: input;
}
.input-field > .input label.datetime {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.input-field > .input label.datetime > select {
  font-size: 0.8em;
}
.input-field > .input label.image {
  background-color: var(--background-color);
  text-align: center;
  line-height: 1;
  cursor: pointer;
}
.input-field > .input label.image img {
  max-height: 50dvh;
}
.input-field > .input ul.images {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  margin: -0.5em;
}
.input-field > .input ul.images li {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(20% - 1em);
          flex: 0 0 calc(20% - 1em);
  margin: 0.5em;
  padding: 0;
  list-style: none;
  aspect-ratio: 1/1;
  display: grid;
  place-items: center;
}
.input-field > .input ul.images li .remove_image {
  position: absolute;
  bottom: 0.5em;
  right: 0.5em;
  cursor: pointer;
}
.input-field > .text-editor {
  grid-area: input;
  width: 100%;
}
.input-field > .message {
  grid-area: message;
  font-size: 0.8em;
}
.input-field > .message .error {
  color: #d43b24;
}

/* 汎用BOXレイアウト */
.box {
  -webkit-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1882352941);
          box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1882352941);
  border-radius: 0.25em;
  overflow: hidden;
}
.box > * + * {
  margin-top: 1em;
}
.box .box__title {
  padding: 0.5em;
  border-bottom: 0.2em solid var(--main-color);
  display: grid;
  grid-template: "icon ..... ..... menu " 1fr "icon ..... main  menu " auto "icon ..... sub   menu " auto "icon ..... ..... menu " 1fr/auto 0.5em 1fr auto;
}
.box .box__title .box__title-icon {
  grid-area: icon;
  display: grid;
  place-items: center;
  color: var(--main-color);
  font-size: 1.5em;
}
.box .box__title .box__title-label-main {
  grid-area: main;
  font-size: 1.2em;
  font-weight: bold;
}
.box .box__title .box__title-label-sub {
  grid-area: sub;
  font-size: 0.8em;
}
.box .box__title .box__title-menu {
  grid-area: menu;
}
.box .box__sub-title {
  margin-left: 0.5em;
  margin-right: 0.5em;
}
.box .box__sub-title .box__sub-title-label-main {
  border-left: 0.25em solid var(--main-color);
  padding-left: 0.4em;
  font-weight: bold;
}
.box .box__sub-title .button-list {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.box .box__contents {
  margin-left: 0.5em;
  margin-right: 0.5em;
}
.box .box__contents.with-attr {
  display: grid;
  grid-template: " main ..... attr " auto/1fr 1em auto;
}
.box .box__contents.with-attr .box-main {
  grid-area: main;
}
.box .box__contents.with-attr .box-attr {
  grid-area: attr;
  max-width: 320px;
}
.box .box__contents.scroll-x {
  overflow-x: auto;
}
.box .box__contents_tab {
  margin-left: 0.5em;
  margin-right: 0.5em;
  border-bottom: 1px solid #CCCCCC;
}
.box .box__contents_tab .button-list .button {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.box .box__footer {
  padding: 0.5em;
  border-top: 1px solid var(--main-color);
}
.box .box__footer .timestamp {
  font-size: 0.75em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: grid;
  grid-template: " created ..... updated " auto/auto 0.5em auto;
}
.box .box__footer .timestamp .created_at {
  grid-area: created;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
}
.box .box__footer .timestamp .updated_at {
  grid-area: updated;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
}

#daialog-shield {
  display: none;
}
#daialog-shield.show {
  background-color: rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100dvw;
  height: 100dvh;
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  display: grid;
  display: grid;
  place-content: center;
}
#daialog-shield .daialog {
  min-width: 300px;
  max-width: 80dvw;
  max-height: 80dvh;
  padding: 0.5em;
  border-radius: 0.5em;
  border: 1px solid var(--border-color);
}
#daialog-shield .daialog .title {
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 0.5em;
  margin-bottom: 0.5em;
  font-weight: bold;
}
#daialog-shield .daialog .message {
  max-height: 50dvh;
  overflow-y: auto;
  margin-bottom: 1em;
}
#daialog-shield .daialog .operation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 0.25em;
}
#daialog-shield .daialog.warning {
  border: 1px solid #d43b24;
}

#popup-shield {
  display: none;
}
#popup-shield.show {
  background-color: rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100dvw;
  height: 100dvh;
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  display: grid;
  display: grid;
  place-content: center;
}
#popup-shield .popup {
  min-width: 300px;
  max-width: 80dvw;
  max-height: 80dvh;
  padding: 0.5em;
  border-radius: 0.5em;
  border: 1px solid var(--border-color);
}
#popup-shield .popup .title {
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 0.5em;
  font-weight: bold;
}
#popup-shield .popup .body {
  max-height: 50dvh;
  overflow-y: auto;
  margin-bottom: 1em;
}
#popup-shield .popup .body .search-keyword {
  padding: 0.5em 2px;
}
#popup-shield .popup .body ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
#popup-shield .popup .body ul li {
  display: grid;
  place-items: center start;
  grid-template: " label   .....   mark " auto/auto 1fr auto;
  margin: 0;
  padding: 0.5em;
  cursor: pointer;
}
#popup-shield .popup .body ul li + li {
  border-top: 1px solid var(--border-color);
}
#popup-shield .popup .body ul li > span {
  grid-area: label;
}
#popup-shield .popup .body ul li .icon {
  grid-area: mark;
}
#popup-shield .popup .operation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 0.25em;
}
#popup-shield .popup.warning {
  border: 1px solid #d43b24;
}

table.result-list {
  width: 100%;
  border-spacing: 0px;
  border-collapse: separate;
  border: 0px solid transparent;
  border-top: 1px solid var(--border-color);
}
table.result-list th,
table.result-list td {
  width: 10px;
  white-space: nowrap;
  padding: 0.5em;
  border: 0px solid transparent;
  background-color: var(--background-color);
  border-bottom: 1px solid var(--border-color);
}
table.result-list th .thumbnail,
table.result-list td .thumbnail {
  width: 6em;
}
table.result-list th .thumbnail img,
table.result-list td .thumbnail img {
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 1/1;
}
table.result-list th .input-field,
table.result-list td .input-field {
  min-width: 15em;
}
table.result-list thead tr th {
  font-size: 0.8em;
}
table.result-list tr th.check,
table.result-list tr th.check {
  width: 1px;
}
table.result-list tr th.flex,
table.result-list tr td.flex {
  width: auto;
  max-width: 100%;
  white-space: normal;
}
table.result-list tr th.prop,
table.result-list tr td.prop {
  font-size: 0.8em;
}
table.result-list tr th.num,
table.result-list tr td.num {
  min-width: 6em;
}
table.result-list tr th.ope,
table.result-list tr td.ope {
  position: sticky;
  right: 0px;
  vertical-align: middle;
  padding: 0 0.5em;
}
table.result-list tr th.ope .button,
table.result-list tr td.ope .button {
  font-size: 0.8em;
}
table.result-list tr:hover th, table.result-list tr:hover td {
  background-color: #EEEEEE;
}

table.spec-list {
  width: 100%;
  border-spacing: 0px;
  border-collapse: separate;
  border: 0px solid transparent;
  border-top: 1px solid var(--border-color);
}
table.spec-list th, table.spec-list td {
  padding: 0.5em;
  border: 0px solid transparent;
  background-color: var(--background-color);
  border-bottom: 1px solid var(--border-color);
}
table.spec-list th {
  width: 10px;
  white-space: nowrap;
  vertical-align: middle;
  font-size: 0.8em;
}
table.spec-list td ul.images {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  margin: -0.5em;
}
table.spec-list td ul.images li {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(20% - 1em);
          flex: 0 0 calc(20% - 1em);
  margin: 0.5em;
  padding: 0;
  list-style: none;
  aspect-ratio: 1/1;
  display: grid;
  place-items: center;
}

.text-editor h2 {
  font-size: 1.8em;
  font-weight: bold;
  padding: 0.25em 0.5em;
  margin-bottom: 0.5em;
}
.text-editor h3 {
  font-size: 1.2em;
  font-weight: bold;
  padding: 0.25em 0;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 0.5em;
}
.text-editor h4 {
  font-size: 1em;
  font-weight: bold;
}
.text-editor img {
  width: 80%;
  height: auto;
  display: block;
  margin: 0.5em auto;
}
.text-editor iframe {
  aspect-ratio: 16/9;
  width: 100%;
  height: auto;
  margin: 0.5em auto;
  display: block;
}
.text-editor span[data-mce-object=iframe] {
  width: 100%;
}
@media screen and (max-width: 640px) {
  .text-editor img {
    width: 100%;
  }
  .text-editor iframe {
    aspect-ratio: 1/1;
    width: 100%;
    height: auto;
    margin: 0.5em auto;
    display: block;
  }
  .text-editor iframe[title*=YouTube] {
    aspect-ratio: 16/9;
  }
}

.paginate {
  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;
}

.tag {
  display: inline-block;
  padding: 0.25em 0.5em;
  font-size: 0.8em;
  border-radius: 0.5em;
  background-color: #EEEEEE;
  color: #000000;
}
.tag.valid {
  background-color: #24d459;
  color: #FFFFFF;
}
.tag.invalid {
  background-color: #d43b24;
  color: #FFFFFF;
}

.status-card-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  margin: -1em;
}
.status-card-list .status-card {
  --color:#CCCCCC;
  --bg:#EEEEEE;
  margin: 1em;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 calc(20% - 2em);
          flex: 0 1 calc(20% - 2em);
  border-radius: 1em;
  background-color: var(--bg);
  padding: 1em;
  display: grid;
  grid-template: " icon ..... name   " auto " icon ..... status " auto/auto 1em 1fr;
  border: 2px solid var(--color);
}
.status-card-list .status-card.full {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(100% - 2em);
          flex: 0 0 calc(100% - 2em);
}
.status-card-list .status-card > .mark {
  grid-area: icon;
  font-size: 2em;
  place-self: center start;
  color: var(--color);
}
.status-card-list .status-card > .name {
  grid-area: name;
  font-size: 1.2em;
}
.status-card-list .status-card > .status {
  grid-area: status;
  font-size: 1.2em;
}
.status-card-list .status-card.public {
  --color:#0398fc;
  --bg:#f2faff;
}
.status-card-list .status-card.pre {
  --color:#FA972B;
  --bg:#FFF8F0;
}
.status-card-list .status-card.open {
  --color:#1B8B65;
  --bg:#EFFCF7;
}
.status-card-list .status-card.soon {
  --color:#E55757;
  --bg:#F8EAEA;
}
.status-card-list .status-card.closed {
  --color:#666666;
  --bg:#EBEBEB;
}
