﻿@charset "UTF-8";
/* カスタムプロパティ (変数) */
:root {
  --pc: 1200px;
  --box-shadow: 0.625rem 0.625rem 3rem rgba(0, 0, 0, 0.13);
  --small-shadow: 0.625rem 0.625rem 2rem rgba(0, 0, 0, 0.13);
  --icon-shadow: 0 0.25rem 0.25rem rgba(0, 0, 0, 0.3);
  --xs-shadow: 0 0.15rem 0.15rem rgba(0, 0, 0, 0.13);
  --border-radius-lg: 1.5rem;
  --border-radius: 1rem;
  --border-radius-md: 0.625rem;
  --border-radius-sm: 0.375rem;
  --accent-900: #174F29;
  --accent-800: #1F743B;
  --accent-700: #1D8E43;
  --accent-600: #37A35B;
  --accent-500: #63C183;
  --accent-400: #76CB92;
  --accent-300: #8DDFA9;
  --accent-200: #C1F2D1;
  --accent-100: #DAF5E3;
  --accent-050: #EAFEF1;
  --black-1000: #000000;
  --white-000: #FFFFFF;
  --grey-900: #212121;
  --grey-800: #424242;
  --grey-700: #616161;
  --grey-600: #757575;
  --grey-500: #9E9E9E;
  --grey-400: #BDBDBD;
  --grey-300: #E0E0E0;
  --grey-200: #EEEEEE;
  --grey-100: #F5F5F5;
  --grey-050: #FAFAFA;
  --danger: #E7080B;
  --danger-light: #F38485;
  --warning: #FFD335;
  --warning2: #1971FF;
  --success: #53EF59;
  --system-color: #D0FE04;
  --system-light: #C0FF00;
  --hover-outline: 2px solid var(--accent-300);
  --alert-over: #ffcabf;
  --alert-under: #bfd8ff; }

html, body {
  height: 100%;
  font-size: 0.9rem;
  color: var(--grey-800);
  overflow-x: hidden; }

body:has(.overlay--show),
body:has(.overlay--message) {
  overflow-y: hidden; }

body {
  margin: 0;
  font-family: 'Noto Sans',Helvetica Neue,Arial,Hiragino Kaku Gothic ProN,Hiragino Sans,Meiryo,sans-serif; }

#main {
  height: fit-content;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  /*height: 100dvh;*/ }

#container {
  padding: 0; }

.btn-group {
  width: 100%;
  background-color: whitesmoke;
  border-radius: 0.5rem !important;
  padding: 0.25rem;
  text-align: center; }

.btn-group .btn {
  margin: auto; }

.btn-group .btn input[type="radio"],
.btn-group .btn input[type="checkbox"] {
  display: none; }

.btn-group .btn:has(input:checked) {
  background-color: white;
  border-radius: 0.5rem !important;
  box-shadow: var(--icon-shadow); }

.btn--disabled {
  background-color: var(--grey-400) !important;
  border: 1px solid var(--grey-400) !important;
  cursor: inherit !important;
  color: var(--white-000) !important;
  pointer-events: none; }

/* フローティングアクションボタン（FAB） */
.fab {
  position: fixed;
  bottom: 2.25rem;
  right: 2.25rem;
  transform: scale(1.5);
  /*height: 3rem !important;
    width: 3rem !important;*/ }
  .fab:before {
    /*height: 2.25rem;
        width: 2.25rem;*/ }

img {
  /* 画像のドラッグを防ぐ */
  -webkit-user-drag: none; }

#commonHeader,
#userHeader {
  display: flex;
  align-items: center;
  padding: 0.5rem 1rem; }

#commonHeader {
  background-color: white;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.3); }

#commonHeader i {
  margin-left: 0.5rem; }

#logo {
  width: 5rem; }

.with-badge {
  position: relative; }

.badge {
  position: absolute;
  top: 0;
  right: 0;
  color: var(--success);
  padding: 0; }

.badge:before {
  font-size: 0.6rem !important; }

.common-header {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: 1fr;
  align-items: center;
  /*padding: 0.5rem 1rem;*/
  background-color: white;
  /*box-shadow: 0 2px 2px rgba(0, 0, 0, 0.3);*/
  /*border-bottom: 1px solid var(--grey-300);*/
  position: sticky;
  top: 0;
  background-color: white;
  z-index: 103;
  height: 2.4rem;
  overflow: hidden;
  /*&__tab {
        grid-row: 3 / 4;
        grid-column: 1 / 4;
    }*/ }
  .common-header--underline {
    border-bottom: 1px solid var(--grey-300); }
  .common-header--no-login {
    max-height: 2.4rem; }
  .common-header--dev {
    background-color: var(--system-color); }
  .common-header__logo {
    margin-left: 0.5rem;
    grid-row: 1 / 2;
    grid-column: 1 / 2;
    height: 60%; }
    .common-header__logo img {
      /*width: 4rem;*/
      height: 100%; }
    .common-header__logo--large {
      height: 80%; }
    .common-header__logo--sp {
      display: block; }
    .common-header__logo--pc {
      display: none; }
  .common-header__current-group--pc img {
    max-width: 6rem; }
  .common-header__environment {
    grid-row: 1 / 2;
    grid-column: 2 / 3;
    font-weight: bold;
    margin-left: 0.5rem; }
  .common-header__menu {
    grid-row: 1 / 2;
    grid-column: 2 / 3;
    margin: auto 0.5rem auto auto;
    padding: 0;
    height: 2rem;
    display: flex; }
    .common-header__menu a:has(i) {
      height: fit-content;
      margin: auto auto auto 0.5rem; }
    .common-header__menu-icon {
      /*margin-left: 0.75rem;*/
      position: relative;
      height: 100%; }
      .common-header__menu-icon:before {
        font-size: 1.25rem; }
      .common-header__menu-icon-badge {
        position: absolute;
        top: 0;
        right: 0;
        color: var(--accent-color);
        padding: 0; }
        .common-header__menu-icon-badge--show {
          display: unset !important; }
      .common-header__menu-icon-badge:before {
        font-size: 0.6rem !important; }
  .common-header__breadcrumb {
    display: none;
    margin-top: auto;
    margin-bottom: 0;
    grid-row: 2 / 3;
    grid-column: 1 / 3;
    border-top: 1px solid var(--grey-300); }
    .common-header__breadcrumb .breadcrumb__wrapper {
      background-color: transparent; }
  .common-header__login-user {
    display: none !important;
    grid-row: 2 / 3;
    grid-column: 3 / 4;
    padding-left: 1.5rem !important;
    padding-right: 0.5rem !important;
    position: relative;
    background-color: unset !important; }
    .common-header__login-user:before {
      background-color: var(--grey-100);
      border-left: 5px solid var(--black-1000);
      bottom: 0;
      content: "";
      left: 0;
      position: absolute;
      right: -2rem;
      top: 0;
      -webkit-transform: skewX(-20deg);
      transform: skewX(-20deg);
      -webkit-transition: background-color .25s;
      transition: background-color .25s;
      z-index: -1; }
  .common-header__group {
    display: none; }
  .common-header__tab-icon-badge {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    right: 0;
    color: var(--accent-color);
    padding: 0; }
    .common-header__tab-icon-badge--show {
      display: unset !important; }

a[name='currentGroup'] {
  display: flex;
  align-items: center; }
  a[name='currentGroup'] .common-header__menu-icon {
    max-height: 1.5rem;
    margin-right: 0.1rem; }

/*パンくずリスト*/
.breadcrumb__wrapper {
  display: flex;
  align-content: center;
  padding: 0.5rem 1rem;
  width: 100%;
  background: #FAFAFA;
  /*border-bottom: 1px solid #EEEEEE;*/
  /*&:not(:has(li)) {
            display: none;
        }*/ }

.breadcrumb__list {
  list-style-type: none;
  padding: 0;
  display: flex;
  margin: 0;
  font-weight: bold; }
  .breadcrumb__list-item {
    margin: auto; }
    .breadcrumb__list-item:before {
      content: '＞';
      color: var(--accent-800);
      padding-left: 0.5rem; }
    .breadcrumb__list-item:first-child:before {
      content: '';
      padding: 0; }
    .breadcrumb__list-item a {
      color: var(--accent-800);
      text-decoration: underline;
      text-underline-offset: 3px; }
    .breadcrumb__list-item--current a {
      color: var(--grey-800);
      text-decoration: none;
      cursor: default; }
      .breadcrumb__list-item--current a:hover {
        color: var(--grey-800) !important; }

.breadcrumb__after {
  margin-left: auto; }

.breadcrumb__icon {
  margin-left: auto; }

#Content {
  height: 100%; }

#loginUser {
  width: 100%; }

#loginUserImage {
  width: 3rem;
  height: 3rem; }

#loginUserImageBadge {
  right: -0.5rem; }

#loginUserImageBadge:before {
  font-size: 1rem !important; }

#loginUserInfo {
  max-width: 75%;
  margin-left: 1rem; }

#loginUserInfo div {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%; }

#loginUserName {
  font-weight: bold;
  font-size: 1rem; }

#loginUserGroup {
  font-size: 0.6rem; }

.select-player,
.login-user {
  display: flex;
  align-items: center;
  padding: 0.5rem 0.5rem 0.5rem 1rem;
  background-color: var(--grey-100); }
  .select-player__image,
  .login-user__image {
    position: relative;
    margin-right: 1rem; }
    .select-player__image-content,
    .login-user__image-content {
      width: 3rem;
      height: 3rem; }
    .select-player__image-badge,
    .login-user__image-badge {
      right: -0.3rem; }
      .select-player__image-badge:before,
      .login-user__image-badge:before {
        height: 1rem !important;
        width: 1rem !important; }
  .select-player__info,
  .login-user__info {
    width: 100%;
    max-width: 100%; }
    .select-player__info *,
    .login-user__info * {
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
      width: 100%; }
    .select-player__info-name,
    .login-user__info-name {
      font-weight: bold;
      font-size: 1rem; }
    .select-player__info-group,
    .login-user__info-group {
      font-size: 0.6rem;
      white-space: break-spaces;
      text-overflow: ellipsis;
      overflow: hidden;
      display: -webkit-box;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 2;
      line-height: 1.3; }
    .select-player__info:hover,
    .login-user__info:hover {
      cursor: default; }
  .select-player__detail,
  .login-user__detail {
    margin-left: auto;
    display: flex;
    /* 上下中央に表示するためのおまじない */ }

/* タブ */
.tab-group {
  display: flex;
  position: relative;
  background-color: var(--grey-900);
  height: 2.75rem;
  /*overflow: hidden;*/ }
  .tab-group:has(.tab-group__wrapper:empty) {
    display: none; }
  .tab-group__operation {
    display: none;
    /*width: 18rem;*/ }
    .tab-group__operation-btn {
      width: 85%;
      margin: auto;
      display: flex;
      align-items: center;
      padding: 0.25rem 2rem 0.25rem 0.5rem;
      border-radius: var(--border-radius-md);
      box-shadow: var(--icon-shadow); }
      .tab-group__operation-btn i {
        margin-right: 0.5rem; }
  .tab-group__before {
    display: flex;
    align-items: center;
    margin: 0 0.5rem 0 1rem;
    flex-shrink: 0; }
    .tab-group__before:empty {
      display: none; }
  .tab-group__after {
    display: flex;
    align-items: center;
    margin-left: auto; }
    .tab-group__after:empty {
      display: none; }
  .tab-group__tabs {
    display: flex;
    position: relative;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none; }
    .tab-group__tabs::-webkit-scrollbar {
      display: none; }
  .tab-group__wrapper {
    display: flex;
    flex-wrap: wrap;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
    white-space: nowrap;
    flex-wrap: nowrap;
    border: none;
    position: relative; }
  .tab-group:has(.tab-group__icon) .tab-group__wrapper {
    margin-left: -1.5rem; }
  .tab-group__item a {
    display: block;
    padding: 0.45rem 0.5rem 0.2rem 0.5rem;
    margin: 0.25rem;
    color: white !important;
    position: relative; }
    .tab-group__item a.current {
      background: unset !important;
      color: var(--accent-300) !important;
      border-bottom: 2px solid var(--accent-300) !important; }
    .tab-group__item a:hover {
      color: var(--accent-300) !important; }
  .tab-group__icon {
    display: flex;
    /*position: sticky;
        top: 0;*/
    /*top: 0.75rem;*/
    /*padding-bottom: 0.5rem;*/
    background-color: var(--grey-900);
    cursor: pointer;
    /*height: 100%;*/
    position: sticky;
    z-index: 1; }
    .tab-group__icon:before {
      background-color: white !important; }
    .tab-group__icon--left {
      left: 0; }
      .tab-group--far-left .tab-group__icon--left {
        display: flex;
        background-color: var(--grey-900); }
    .tab-group__icon--right {
      right: 0; }
      .tab-group--far-right .tab-group__icon--right {
        display: flex;
        background-color: var(--grey-900); }
  .tab-group--scroll .tab-group__icon {
    display: flex; }
  .tab-group--main {
    position: sticky;
    top: 2.4rem;
    z-index: 100; }

a,
a:hover {
  color: var(--accent-700);
  text-decoration: none; }

.nav-link {
  border-color: transparent !important;
  border: unset !important; }

#header i:before {
  font-size: 1.25rem; }

/* 入力項目のラッパー */
.group__title {
  padding: 0.5rem;
  font-size: 1rem;
  font-weight: bold;
  background-color: whitesmoke; }
  .group__title--current {
    background-color: var(--accent-200);
    color: var(--accent-800); }

.group__wrapper {
  padding: 0.5rem 1rem; }

/* 入力項目のラッパー */
.form-group {
  width: 100%;
  margin-bottom: 0.75rem;
  display: grid;
  grid-template-rows: auto 1fr; }
  .form-group--error input, .form-group--error select {
    border-color: var(--danger) !important; }
  .form-group__label {
    color: var(--grey-500);
    margin-bottom: 0.2rem; }
    .form-group__label:has(input[type="checkbox"]) {
      display: flex;
      width: fit-content; }
    .form-group__label:has([name="explanation"]) {
      display: flex; }
  .form-group__wrapper {
    display: flex;
    width: 100%; }
    .form-group__wrapper .form-group__input {
      margin: 0 0.25rem; }
      .form-group__wrapper .form-group__input:first-child {
        margin-left: 0; }
      .form-group__wrapper .form-group__input:last-child {
        margin-right: 0; }
    .form-group__wrapper.user-name span {
      padding-right: 0.5rem; }
    .form-group__wrapper.user-name--en *:first-child {
      order: 3; }
    .form-group__wrapper.user-name--en *:last-child {
      order: 1; }
    .form-group__wrapper.user-name--en .form-group__input {
      margin: 0 0.25rem; }
      .form-group__wrapper.user-name--en .form-group__input:first-child {
        margin-right: 0; }
      .form-group__wrapper.user-name--en .form-group__input:last-child {
        margin-left: 0; }
  .form-group__input {
    width: 100%;
    /*padding-left: 0.25rem;
        padding-right: 0.25rem;*/ }
    .form-group__wrapper .form-group__input:first-child {
      padding-left: 0; }
    .form-group__wrapper .form-group__input:last-child {
      padding-right: 0; }
  .form-group__browse {
    border-bottom: 1px solid var(--grey-600);
    width: 100%;
    padding: 0.25rem 1rem;
    display: flex;
    justify-content: space-between;
    min-height: 1.9rem; }
    .form-group__browse * {
      align-content: center; }
  .form-group--horizontal .form-group__input {
    width: auto; }
  .form-group__image {
    text-align: center;
    position: relative;
    width: fit-content;
    margin: 0 auto;
    cursor: pointer; }
    .form-group__image-content {
      max-height: 9.5rem;
      max-width: 15.75rem; }
    .form-group__image-expand {
      display: none !important;
      position: absolute;
      bottom: 0;
      right: 0;
      color: white !important;
      background-color: #424242 !important; }
      .form-group__image-expand:focus, .form-group__image-expand:hover {
        outline: 2px solid var(--accent-200); }
      .form-group__image-expand--show {
        display: flex !important; }
    .form-group__image-add {
      display: none !important;
      position: absolute;
      top: 0;
      right: -0.25rem;
      background-color: var(--accent-800); }
      .form-group__image-add--show {
        display: flex !important; }
    .form-group__image--browse {
      cursor: default; }
  .form-group__message {
    color: var(--danger);
    font-size: 0.75rem;
    padding-left: 0.75rem; }
  .form-group.full {
    grid-column: 1 / -1; }

.btn-group {
  width: 100%;
  margin-bottom: 1rem; }

.form-group input[type="checkbox"] {
  margin-right: 0.5rem; }

.input-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1; }

.input-text,
.input-date:not(.date-entry-aid),
.input-time,
.input-select,
.input-select-date-detail {
  display: inline-block;
  position: relative;
  width: 100%;
  height: fit-content; }

.input-date:not(.date-entry-aid) {
  width: fit-content; }

.input-period-to-wrapper {
  margin-left: auto;
  display: flex;
  /*justify-content: flex-end;*/
  align-items: center; }

.input-select.multiple-selector select {
  padding-left: 2.5rem; }

.input-select.multiple-selector select[multiple] {
  overflow-y: auto;
  max-height: 11.5rem; }

.input-select.multiple-selector:has(select[multiple]) select {
  padding-right: 1rem; }

.input-select.multiple-selector:has(select[multiple])::after {
  display: none; }

.input-select.multiple-selector .multiple-icon--on,
.input-select.multiple-selector .multiple-icon--off {
  position: absolute;
  top: 50%;
  left: 0.5rem;
  transform: translateY(-50%);
  cursor: pointer; }

.input-select.multiple-selector .multiple-icon--off {
  top: 1.1rem; }

.input-select-date-detail {
  width: auto;
  margin: 0 4px;
  display: flex;
  align-items: center;
  /*この指定だと上手くいかない…*/
  /*div&:last-child {
        margin-left: 0;
    }*/ }
  .input-select-date-detail:first-of-type {
    margin-left: 0; }

.input-text input[type='text'],
.input-text input[type='number'],
.input-text input[type='password'],
.input-text input[type='email'],
.input-text input[type='tel'],
.input-date input[type='date'],
.input-date input[type='month'],
.input-date input[type='datetime-local'],
.input-time input[type='time'] {
  width: 100%;
  padding: 0.5rem 0.75rem;
  border-radius: var(--border-radius-md);
  border: 1px solid #767676; }

input[type='radio'] {
  margin-right: 0.5rem; }

.btn-area {
  width: 100%;
  /*margin-top: 2rem;*/ }

.btn-area button {
  width: 100%;
  padding: 1rem 0;
  margin-top: 0.5rem;
  border-radius: var(--border-radius-md); }

.button-group {
  display: flex;
  flex-wrap: wrap;
  row-gap: 0.5rem;
  align-items: center; }
  .button-group__item {
    padding: 0.75rem 3.5rem;
    border-radius: var(--border-radius-md);
    border: unset;
    display: flex;
    margin-right: 1rem; }
    .button-group__item-icon {
      margin-right: 0.35rem;
      position: unset !important;
      transform: unset !important;
      align-self: center !important;
      align-content: center; }
      .button-group__item-icon:before {
        width: 1rem !important;
        height: 1rem !important; }
    .button-group__item:last-child {
      margin-right: 0; }
    .button-group__item--primary {
      color: var(--accent-800);
      font-weight: bold; }
      .button-group__item--primary-fill {
        color: white;
        background-color: var(--accent-800); }
        .button-group__item--primary-fill .button-group__item-icon:before {
          background-color: var(--white-000); }
        .button-group__item--primary-fill:hover {
          background-color: var(--accent-600); }
    .button-group__item--secondary {
      color: var(--accent-800); }
      .button-group__item--secondary-fill {
        color: var(--accent-800);
        border: 1px solid var(--accent-800);
        background-color: white; }
        .button-group__item--secondary-fill:hover {
          background-color: var(--grey-200); }
    .button-group__item--sm {
      padding: 0.35rem 0.75rem;
      border-radius: var(--border-radius); }
    .button-group__item--md .button-group__item-icon:before {
      width: 1.35rem !important;
      height: 1.35rem !important; }
    .button-group__item--lg .button-group__item-icon:before {
      width: 1.25rem !important;
      height: 1.25rem !important; }
    .button-group__item--xlg .button-group__item-icon {
      width: 1.75rem !important;
      height: 1.75rem !important; }
      .button-group__item--xlg .button-group__item-icon:before {
        width: 1.25rem !important;
        height: 1.25rem !important; }
    .button-group__item--non-text {
      padding: 0.35rem; }
      .button-group__item--non-text.button-group__item {
        height: fit-content;
        width: fit-content;
        border-radius: 50%; }
        .button-group__item--non-text.button-group__item .button-group__item-icon {
          margin: 0; }

.btn i {
  margin-right: 0.5rem; }

.icon-btn,
.icon-link {
  font-size: 1em;
  border-radius: 50%;
  color: black;
  line-height: 2em;
  width: 2em;
  height: 2em;
  text-align: center;
  display: flex;
  flex-shrink: 0; }

.icon-btn {
  background-color: white;
  box-shadow: var(--icon-shadow); }

.icon-btn:hover,
.icon-link:hover {
  cursor: pointer;
  background-color: whitesmoke; }

.icon-btn--disabled {
  background-color: var(--grey-400) !important; }
  .icon-btn--disabled *:before {
    background-color: var(--grey-100) !important; }
  .icon-btn--disabled:hover {
    cursor: default; }

.icon-link:hover {
  background-color: var(--grey-300); }

.horizontal-line {
  display: flex;
  align-items: center;
  text-align: center;
  padding: 0 2rem;
  margin: 2rem 0;
  color: gray; }

/* 共通部分はまとめる */
.horizontal-line::before,
.horizontal-line::after {
  content: "";
  flex-grow: 1;
  border-bottom: 1px solid gray; }

/* 左側の線 */
.horizontal-line::before {
  margin-right: 1rem;
  padding-left: 1rem; }

/* 右側の線 */
.horizontal-line::after {
  margin-left: 1rem;
  padding-right: 1rem; }

/* 入力エラー項目 */
.error-field.input-text-area,
.error-field:not(.input-text-area) {
  border: 0.0625rem solid red !important;
  background-color: #FFE4E1 !important; }

/* 入力エラー項目 */
.input-error {
  border: 0.0625rem solid red !important; }

.error-message:not(:empty) {
  color: red;
  margin-top: 0.25rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-align: left;
  white-space: normal !important; }

/* ツールチップ */
.tooltip.show {
  opacity: 1 !important;
  z-index: 104; }

.tooltip-inner {
  background: #EEEEEE;
  box-shadow: var(--icon-shadow);
  max-width: unset !important;
  padding: 0;
  color: var(--grey-800);
  overflow: hidden; }

/*.tooltip-inner .languages {
    text-align: left;
}

.tooltip-inner .languages a:hover {
    cursor: pointer;
}*/
.bs-tooltip-top .tooltip-arrow::before {
  display: none;
  border-top-color: white !important; }

.bs-tooltip-end .tooltip-arrow::before {
  display: none;
  border-right-color: white !important; }

.bs-tooltip-bottom .tooltip-arrow::before {
  display: none;
  border-bottom-color: white !important; }

.bs-tooltip-start .tooltip-arrow::before {
  display: none;
  border-left-color: white !important; }

/* モード選択用のツールチップ */
.tooltip.show:has(.mode) {
  /* ボタンの下に表示されるためのおまじない */
  margin-left: 1.5rem !important;
  margin-top: -0.25rem !important; }

/* メニュー ツールチップ */
.menu-tooltip__item {
  display: flex;
  border-bottom: 1px solid var(--grey-300);
  padding: 0.5rem 1rem;
  cursor: pointer;
  place-items: center; }
  .menu-tooltip__item:last-child {
    border-bottom: unset; }
  .menu-tooltip__item:hover {
    background-color: var(--grey-300); }

.menu-tooltip__icon {
  margin-right: 0.5rem; }
  .menu-tooltip__icon:before {
    background-color: var(--accent-800) !important; }

.menu-tooltip__image {
  width: 3rem;
  margin-right: 0.5rem;
  display: flex;
  justify-content: center; }
  .menu-tooltip__image img {
    max-width: 3rem;
    max-height: 2rem;
    width: auto;
    height: auto; }

.menu-tooltip__text {
  font-weight: bold;
  display: flex;
  align-items: center; }

.menu-tooltip__selected {
  padding-left: 3rem; }

/*説明用 ツールチップ*/
.detail-tooltip {
  text-align: left;
  padding: 0.35rem;
  white-space: normal;
  max-width: 80dvw; }
  .detail-tooltip__item {
    padding: 0.2rem;
    cursor: default; }

/* 検索用ハイライト */
.highlight {
  background-color: yellow; }

.highlight.current {
  background-color: orange; }

/* 共通メッセージ表示エリア */
#messageArea {
  position: fixed;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 1rem;
  border-radius: var(--border-radius-md);
  /*display: none;*/
  z-index: 1070;
  display: none; }

#messageArea.show,
#messageArea.close {
  display: unset;
  animation-name: fade-in;
  animation-duration: .5s;
  animation-timing-function: ease-in-out;
  animation-delay: 0;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards; }

#messageArea.close {
  animation-name: fade-out; }

.common-message {
  position: fixed;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 1rem;
  border-radius: var(--border-radius-md);
  z-index: 99999;
  display: none;
  width: 90%; }
  .common-message--info {
    color: white;
    background-color: var(--grey-800); }
    .common-message--info a {
      color: #00FFFF !important; }
    .common-message--info .common-message__close:hover {
      background-color: var(--grey-600); }
  .common-message--error {
    color: white;
    background-color: var(--danger); }
    .common-message--error .common-message__close:hover {
      background-color: var(--grey-400); }
  .common-message--show, .common-message--close {
    display: unset;
    animation-name: fade-in;
    animation-duration: 0.5s;
    animation-timing-function: ease-in-out;
    animation-delay: 0;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: forwards; }
  .common-message--close {
    animation-name: fade-out; }
  .common-message--no-login {
    bottom: 0;
    transform: unset;
    display: block !important;
    position: relative;
    width: 100%;
    margin: 0.5rem 0 1rem 0; }
    .common-message--no-login.common-message--close {
      animation-duration: 0s; }
  .common-message__wrapper {
    display: grid;
    grid-template-columns: 2.5rem 1fr 2.5rem;
    align-items: center;
    justify-content: center; }
  .common-message__icon, .common-message__close {
    margin: auto;
    display: none; }
    .common-message.common-message--info .common-message__icon,
    .common-message.common-message--error .common-message__icon, .common-message.common-message--info .common-message__close,
    .common-message.common-message--error .common-message__close {
      display: block; }
    .common-message__icon:before, .common-message__close:before {
      background-color: white !important; }
  .common-message__message {
    word-break: break-word; }
  .common-message--center {
    bottom: 50%; }

@keyframes fade-in {
  0% {
    transform: translate(-50%, 30px);
    opacity: 0; }
  100% {
    transform: translate(-50%, 0px);
    opacity: 1; } }

@keyframes fade-out {
  0% {
    transform: translate(-50%, 0px); }
  100% {
    transform: translate(-50%, 30px);
    opacity: 0;
    display: none; } }

body:has(.footer) #messageArea {
  bottom: 3.5rem; }

#messageArea #message {
  padding: 0 0.625rem; }

#messageArea a {
  color: #0d6efd !important; }

.message-error {
  color: #842029;
  background-color: #ffb6c1; }

.message-error:before {
  background-color: #842029 !important; }

.message-info {
  color: #0f5132;
  background-color: #d1e7dd; }

.message-info:before {
  background-color: #0f5132 !important; }

#message {
  font-size: 1.25rem; }

/* 日付 */
.input-select-date {
  display: flex;
  align-items: center;
  /*margin-bottom: 0.5rem;*/ }
  .input-select-date-detail {
    margin: 0; }
    .input-select-date-detail:before {
      content: "-";
      margin: 0 3px; }
    .input-select-date-detail:first-child:before {
      content: "";
      margin: 0; }

.input-select-date .selector {
  width: auto;
  padding-right: 2.25rem; }

@media (max-width: 1200px) {
  .input-select-date .selector {
    padding-right: 1.5rem; } }

/* 日付の入力補助 */
.date-entry-aid {
  position: relative; }

.date-entry-aid input {
  border: none;
  color: white;
  width: 1.5rem;
  font-size: 1.25rem;
  margin-left: 0.3rem;
  opacity: 0;
  position: relative;
  z-index: 2; }

.date-entry-aid input:focus {
  border-bottom: none !important;
  box-shadow: none !important; }

.date-entry-aid input::-webkit-datetime-edit-day-field:focus,
.date-entry-aid input::-webkit-datetime-edit-month-field:focus,
.date-entry-aid input::-webkit-datetime-edit-year-field:focus {
  background-color: white; }

.date-entry-aid div {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  font-size: 1.25rem;
  margin-left: 0.3rem;
  color: var(--main-color); }

/* パスワード表示・非表示アイコン */
.password {
  position: relative; }

.pass-show,
.input-text .search,
.input-time .date-picker,
.input-date .date-picker {
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: fit-content;
  height: fit-content;
  mask-size: 100%;
  -webkit-mask-size: 100%;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat; }

.input-time .date-picker,
.input-date .date-picker {
  right: 0.85rem;
  top: 0.7rem; }

.pass-show:before {
  mask-image: url("../icons/eye.svg");
  -webkit-mask-image: url("../icons/eye.svg"); }

.input-text .search:before {
  mask-image: url("../icons/search.svg");
  -webkit-mask-image: url("../icons/search.svg"); }

.input-text .pass-show:hover,
.input-time .date-picker:hover,
.input-date .date-picker:hover {
  cursor: pointer; }

.input-time .date-picker:before {
  width: 1.25rem !important;
  height: 1.25rem !important;
  mask-image: url("../icons/clock.svg");
  -webkit-mask-image: url("../icons/clock.svg"); }

.input-date .date-picker:before {
  width: 1.25rem !important;
  height: 1.25rem !important;
  mask-image: url("../newicons/calender.svg");
  -webkit-mask-image: url("../newicons/calender.svg"); }

@media (max-width: 1200px) {
  .input-text .search {
    right: 0.5rem;
    top: 0.5rem; }
  .input-text .pass-show {
    right: 0rem;
    top: 0rem;
    padding: 0.5rem; }
  .input-time .date-picker,
  .input-date .date-picker {
    right: 0.45rem;
    top: 0.6rem; }
  .input-text .pass-show:before,
  .input-text .search:before {
    width: 1rem !important;
    height: 1rem !important; }
  .input-time .date-picker:before,
  .input-date .date-picker:before {
    width: 0.85rem !important;
    height: 0.85rem !important; } }

/* ファイル */
input[type="file"] {
  display: none; }

/* ドロップダウン */
.selector {
  /*width: 100%;*/ }

.selector:hover,
.selector:focus {
  cursor: pointer; }

/* 入力項目 */
input:not(.date-entry-aid input):not([type='checkbox']):not([type='radio']):not(.numInput),
select,
textarea {
  width: 100%;
  border-radius: 0.75rem;
  padding: 0.35rem 0.85rem;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  border: 1px solid var(--grey-600);
  background-color: white; }

select {
  padding-right: 2.25rem; }

input[name='furigana'] {
  padding: 0.5rem 1rem !important; }

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none; }

select::-ms-expand {
  display: none; }

/* テキストエリア */
textarea {
  width: 100%;
  /*padding-right: 2rem;*/
  min-height: 3.125rem;
  max-height: 18.75rem; }

textarea::-webkit-scrollbar {
  width: 0.5rem;
  background: #F5F5F5; }

textarea::-webkit-scrollbar-thumb {
  border-radius: var(--border-radius-md);
  background-color: var(--grey-600); }

@media (max-width: 1200px) {
  textarea {
    padding-right: 1.25rem; }
  /*textarea::-webkit-scrollbar {
        width: 0.25rem;
        background: #F5F5F5;
    }*/ }

/* テキストボックス、ドロップダウン */
input:focus,
select:focus,
textarea:focus {
  outline: 1px solid var(--accent-300);
  border-color: var(--accent-300) !important; }

.form-group--error input:focus,
.form-group--error select:focus,
.form-group--error textarea:focus {
  outline: 1px solid var(--danger);
  border-color: var(--danger) !important; }

input[type='checkbox']:focus,
input[type='radio']:focus {
  outline: 0.125rem var(--accent-300) solid; }

input[type="checkbox"]:not([name=furigana]),
input[type="radio"] {
  transform: scale(var(--scale));
  margin: 0 0.75rem;
  vertical-align: middle; }

label:has(input[type="checkbox"]) span {
  vertical-align: middle; }

input:not(.form-check-input):disabled,
textarea:disabled,
select:disabled,
.ql-toolbar.disabled,
.ql-container.disabled {
  background-color: var(--grey-200) !important; }

.form-check-input:disabled {
  opacity: 1 !important; }

.ql-container.disabled img {
  pointer-events: none; }

/* スピンボタンを非表示 */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0; }

/* ブラウザ標準のアイコン非表示 */
input[type="date"]:not(.date-entry-aid input)::-webkit-calendar-picker-indicator,
input[type="month"]:not(.date-entry-aid input)::-webkit-calendar-picker-indicator,
input[type="datetime-local"]::-webkit-calendar-picker-indicator,
input[type="time"]::-webkit-calendar-picker-indicator {
  display: none; }

input[type="date"],
input[type="month"],
input[type="time"],
input[type="datetime-local"] {
  -webkit-appearance: none; }

input[type="date"]::-webkit-date-and-time-value,
input[type="month"]::-webkit-date-and-time-value,
input[type="time"]::-webkit-date-and-time-value,
input[type="datetime-local"]::-webkit-date-and-time-value {
  text-align: left;
  height: 1.5rem; }

input[list]::-webkit-calendar-picker-indicator {
  display: none !important; }

input::-webkit-list-button {
  content: none; }

/* アイコン */
.input-date:not(.non-icon):not(.date-entry-aid)::after,
.input-time:not(.non-icon)::after,
.input-select::after,
.input-select-date-detail::after {
  font-weight: 900;
  content: '';
  position: absolute;
  right: 0.7rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--main-color);
  pointer-events: none;
  content: "";
  width: 1rem;
  height: 1rem;
  background-color: var(--grey-700);
  mask-size: 100%;
  -webkit-mask-size: 100%;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  /*mask-image: url("../icons/pen.svg");
    -webkit-mask-image: url("../icons/pen.svg");*/ }

.input-date:not(.non-icon):not(.date-entry-aid)::after {
  mask-image: url("../newicons/calender.svg");
  -webkit-mask-image: url("../newicons/calender.svg"); }

.input-time:not(.non-icon)::after {
  mask-image: url("../icons/clock.svg");
  -webkit-mask-image: url("../icons/clock.svg"); }

.input-select::after,
.input-select-date-detail::after {
  right: 0.5rem;
  mask-image: url("../newicons/dropdown.svg");
  -webkit-mask-image: url("../newicons/dropdown.svg"); }

@media (max-width: 1200px) {
  .input-text:not(.non-icon)::after,
  .input-date:not(.non-icon):not(.date-entry-aid)::after,
  .input-time:not(.non-icon)::after,
  .input-select::after,
  .input-select-date-detail::after,
  .pen-icon::after {
    font-size: 0.75rem;
    right: 0.5rem;
    top: 50%;
    width: 1rem;
    height: 1rem; }
  .input-select::after,
  .input-select-date-detail::after {
    /*width: 0.5rem;
        height: 0.75rem;*/ } }

/*必須ラベル*/
.required-label {
  background-color: var(--danger);
  color: white;
  font-size: 0.6rem;
  padding: 0.125rem 0.375rem;
  border-radius: 0.25rem;
  margin-left: 0.25rem; }

.fixed-top {
  position: sticky;
  top: 0;
  background-color: white;
  z-index: 11; }

.fixed-bottom {
  position: sticky;
  bottom: 0;
  margin-top: 1rem; }

/*.footer-btnare {
    display: none;
}

.footer-btnarea {
    &__button {
        background-color: whitesmoke;
        text-align: center;
        padding: 0.75rem 0;
        border-top: 1px lightgrey solid;
        display: block;
        width: 100%;
        font-size: 1rem;
        cursor: pointer;
    }
}*/
.row {
  margin-left: 0 !important;
  margin-right: 0 !important; }

/*オーバーレイ*/
.overlay {
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 110; }
  .overlay--show {
    display: block; }
  .overlay--confirm-modal, .overlay--message, .overlay--image-view, .overlay--subscription {
    display: block;
    z-index: 9998; }
  .overlay--select-player {
    z-index: 2001; }
  .overlay--open-menu {
    z-index: 101; }

/*確認モーダル*/
.confirm-modal {
  display: none;
  margin: auto;
  width: 75%;
  background-color: white;
  border-radius: 1rem;
  overflow: hidden;
  z-index: 9999;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); }
  .confirm-modal__message {
    font-size: 1rem;
    padding: 1rem 2rem;
    white-space: pre-wrap; }
  .confirm-modal__footer {
    display: flex;
    border-top: 1px solid lightgrey; }
  .confirm-modal__footer--horizontally {
    display: grid; }
  .confirm-modal__button {
    width: 100%;
    text-align: center;
    padding: 1rem 0;
    border-right: 1px solid lightgrey !important;
    margin: auto;
    cursor: pointer; }
    .confirm-modal__button:last-child {
      border-right: unset !important; }
  .confirm-modal__footer--horizontally .confirm-modal__button {
    border-bottom: 1px solid lightgrey; }
    .confirm-modal__footer--horizontally .confirm-modal__button:last-child {
      border-bottom: unset; }
  .confirm-modal--show {
    display: block; }

/*イメージビューワー*/
.image-viewer {
  display: none;
  margin: auto;
  max-width: 80%;
  z-index: 9999;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); }
  .image-viewer__wrapper {
    display: grid;
    position: relative;
    background: white;
    border-radius: 0.75rem;
    overflow: auto;
    max-height: 100dvh; }
  .image-viewer__content {
    width: 100%;
    height: 100%;
    min-width: 80dvw; }
  .image-viewer__close {
    position: fixed;
    top: 0.25rem;
    right: -2rem;
    margin-left: auto;
    background-color: white; }
  .image-viewer--show {
    display: block; }

/*ボタン*/
.button {
  background-color: unset;
  border: unset; }
  .button:hover {
    background-color: whitesmoke; }
  .button:disabled {
    background-color: var(--grey-400) !important;
    color: white !important;
    border-color: solid var(--grey-400) !important; }

.button--primary {
  color: var(--accent-800);
  font-weight: bold; }
  .button--primary-fill {
    color: white;
    /*font-weight: bold;*/
    background-color: var(--accent-800); }
    .button--primary-fill:hover {
      background-color: var(--accent-600); }

.button--secondary {
  color: var(--accent-800); }
  .button--secondary-fill {
    color: var(--accent-800);
    border: 1px solid var(--accent-800);
    background-color: white; }

.button--danger {
  color: var(--danger);
  font-weight: bold; }
  .button--danger:hover {
    color: var(--danger); }
  .button--danger-fill {
    color: white;
    font-weight: bold;
    background-color: var(--danger); }
    .button--danger-fill:hover {
      background-color: var(--danger-light); }
  .button--danger-outline {
    color: var(--danger);
    border: 1px solid var(--danger);
    background-color: white; }

.button--danger-secondary {
  color: var(--danger); }
  .button--danger-secondary-fill {
    color: var(--danger);
    border: 1px solid var(--danger);
    background-color: white; }

.button--system {
  color: var(--system-color); }
  .button--system-fill {
    color: var(--grey-800);
    background-color: var(--system-color);
    border: 1px solid var(--grey-400); }
    .button--system-fill:hover {
      background-color: var(--system-light); }

.button--dark {
  color: var(--grey-800); }
  .button--dark-fill {
    color: var(--white-000);
    background-color: var(--grey-800);
    border: 1px solid var(--grey-200); }
    .button--dark-fill:hover {
      background-color: var(--grey-600); }

.button--highlight {
  animation: gradation 4s ease-in-out infinite;
  outline: 2px solid var(--accent-800); }
  .button--highlight:hover {
    animation: none; }

@keyframes gradation {
  0%, 50%, 100% {
    color: var(--white-000);
    background: var(--accent-800); }
  25% {
    color: var(--accent-800);
    outline: 2px solid var(--accent-800);
    background: var(--white-000); } }

.button-area {
  width: 100%; }
  .button-area__button {
    margin-bottom: 0.5rem;
    border-radius: 1rem;
    text-align: center;
    padding: 0.75rem 0;
    cursor: pointer; }
    .button-area__button:last-child {
      margin-bottom: 0; }
  .button-area--flex {
    display: flex; }
    .button-area--flex .button-area__button {
      margin: 0 0.5rem 0 0;
      width: 100%; }
      .button-area--flex .button-area__button:last-child {
        margin-right: 0; }

.operation-area {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1rem 1rem; }

/*ボトムシート*/
.bottom-sheet {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  z-index: 2000; }
  .bottom-sheet--show {
    /*position: absolute;*/
    bottom: 0;
    right: 0; }
  .bottom-sheet--select-player {
    z-index: 2002; }
  .bottom-sheet__head {
    position: relative;
    background-color: var(--grey-200);
    border-radius: 1rem 1rem 0 0;
    padding: 0;
    color: var(--grey-800); }
    .bottom-sheet__head-resize {
      display: none;
      position: absolute;
      left: 50%;
      transform: translate(-50%, -100%);
      user-select: none;
      -webkit-user-select: none;
      cursor: grab; }
      .bottom-sheet__head-resize:hover:before {
        background-color: var(--grey-400); }
      .bottom-sheet__head:has(.bottom-sheet__head-button--active) .bottom-sheet__head-resize {
        display: block; }
    .bottom-sheet__head-wrapper {
      display: none;
      align-items: center;
      padding: 0 1rem; }
      .bottom-sheet__head-wrapper--active {
        display: flex; }
      .bottom-sheet__head-wrapper--fixed {
        color: white;
        background-color: var(--grey-700);
        border-radius: 1rem 1rem 0 0; }
      .bottom-sheet__head-wrapper--flex {
        cursor: pointer; }
        .bottom-sheet__head-wrapper--flex .bottom-sheet__head-button {
          width: 100%;
          border-right: 1px var(--grey-400) solid;
          cursor: pointer; }
          .bottom-sheet__head-wrapper--flex .bottom-sheet__head-button:last-child {
            border-right: unset; }
    .bottom-sheet__head-prev {
      color: white;
      margin-right: 1rem; }
    .bottom-sheet__head-button {
      user-select: none;
      -webkit-user-select: none; }
    .bottom-sheet__head-button, .bottom-sheet__head-label {
      display: flex;
      text-align: center;
      font-weight: bold;
      padding: 0.75rem 0;
      font-size: 1rem;
      cursor: default; }
      .bottom-sheet__head-button--active, .bottom-sheet__head-label--active {
        color: var(--accent-300); }
        .bottom-sheet__head-button--active i:before, .bottom-sheet__head-label--active i:before {
          background-color: var(--accent-300) !important; }
      .bottom-sheet__head-button i:before, .bottom-sheet__head-label i:before {
        background-color: white; }
      .bottom-sheet__head-button--disabled, .bottom-sheet__head-label--disabled {
        color: var(--grey-500);
        cursor: default !important; }
        .bottom-sheet__head-button--disabled i:before, .bottom-sheet__head-label--disabled i:before {
          background-color: var(--grey-500); }
    .bottom-sheet__head-close {
      color: white;
      margin-left: auto; }
  .bottom-sheet__body {
    display: none;
    /*border: 1px solid var(--grey-300);*/
    position: relative; }
    .bottom-sheet__body-resize {
      display: none;
      position: absolute;
      left: -4px;
      height: 100%;
      width: 8px;
      cursor: w-resize;
      user-select: none;
      -webkit-user-select: none; }
    .bottom-sheet__body-wrapper {
      display: none;
      background-color: white;
      max-height: calc(100dvh - 100px);
      overflow-y: auto; }
      .bottom-sheet__body-wrapper--show {
        display: flex;
        flex-direction: column; }
      .bottom-sheet__body-wrapper > *:first-child {
        flex-grow: 1; }
    .bottom-sheet__body-inner {
      padding: 0.5rem 1rem; }
  .bottom-sheet__button-area {
    position: sticky;
    bottom: 0;
    z-index: 2001;
    max-height: 0;
    transition: max-height 0.6s ease-out; }
    .bottom-sheet__button-area--custom {
      flex-direction: column-reverse;
      display: flex; }
    .bottom-sheet__button-area--show {
      max-height: 500px;
      transition: max-height 0.6s ease-in; }
  .bottom-sheet__button {
    background-color: var(--grey-200);
    text-align: center;
    padding: 0.75rem 0;
    border-top: 1px lightgrey solid;
    display: block;
    width: 100%;
    font-size: 1rem;
    cursor: pointer; }
    .bottom-sheet__button:hover {
      background-color: var(--grey-300); }
  .bottom-sheet--subscription {
    z-index: 9999; }

/* 編集エリア */
.editor-area {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 1rem;
  gap: 0 1rem; }

/*アニメーション（ぶるぶる）*/
.tremble {
  animation: tremble 0.5s cubic-bezier(0.12, 0, 0.39, 0) 1 forwards; }

@keyframes tremble {
  0% {
    transform: translateX(0.5rem);
    opacity: 1; }
  50% {
    transform: translateX(0); }
  65% {
    transform: translateX(0.5rem); }
  100% {
    transform: translateX(0); }
  20%, 100% {
    opacity: 1; } }

/*アニメーション（点滅）*/
.blink {
  animation: blink 0.5s ease-in-out 2; }

@keyframes blink {
  0% {
    background-color: var(--accent-200); }
  50% {
    background-color: var(--accent-100); }
  100% {
    background-color: var(--accent-200); } }

/*画像編集*/
.edit-image__wrapper {
  padding: 0.5rem; }

.edit-image__menu {
  display: flex;
  margin-bottom: 1rem; }
  .edit-image__menu-button {
    margin-right: 0.75rem; }

.edit-image__content {
  aspect-ratio: 1 / 1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 25rem;
  margin: auto auto 1rem auto;
  position: relative;
  outline: 1px solid whitesmoke;
  /*max-height:50rem;
        overflow-y:auto;*/ }
  .edit-image__content img {
    width: 100%;
    height: auto;
    object-fit: cover; }
  .edit-image__content-button {
    position: absolute;
    bottom: 1rem;
    right: 1rem; }

.cropper-container {
  max-height: 30rem; }

/*ナビゲーション*/
.navigation {
  position: sticky;
  top: 0;
  background-color: var(--white-000);
  z-index: 11; }
  .navigation__wrapper {
    overflow-x: auto;
    white-space: nowrap;
    /*margin: 1rem 0 0.5rem 0;*/
    margin-bottom: 0.3rem;
    padding: 0.5rem 0.5rem 0.2rem 0.5rem; }
  .navigation__item {
    border: 1px solid var(--grey-600);
    background-color: var(--grey-200);
    border-radius: 2rem;
    display: inline-block;
    line-height: 1.5;
    text-align: center;
    cursor: pointer;
    padding: 0.25rem 1rem;
    margin-right: 0.25rem; }
    .navigation__item:last-child {
      margin-right: 0; }
    .navigation__item:focus, .navigation__item:hover {
      border: 1px solid var(--accent-300);
      outline: 1px solid var(--accent-300);
      background-color: var(--grey-300); }
    .navigation__item--current {
      border: 1px solid var(--accent-800) !important;
      outline: none !important;
      background-color: var(--accent-200) !important;
      color: var(--accent-800);
      font-weight: bold; }

@media (max-width: 992px) {
  .navigation__item {
    font-size: 0.8rem;
    line-height: 1;
    padding: 0.25rem 0.5rem; } }

/* ツールチップ付きアイコン */
.icon-tooltip {
  display: flex;
  align-items: center;
  width: fit-content; }
  .icon-tooltip i {
    display: grid;
    align-items: center; }
    .icon-tooltip i:before {
      grid-column: 1 / 2; }
  .icon-tooltip__text {
    width: 0%;
    display: none;
    white-space: nowrap;
    overflow: hidden;
    padding: 0 0.5rem;
    line-height: normal;
    grid-column: 2 / 3;
    font-size: 0.85rem;
    font-style: normal; }
  @media (min-width: 768px) {
    .icon-tooltip:hover i {
      border-radius: var(--border-radius-md); }
    .icon-tooltip:hover .icon-tooltip__text {
      display: block;
      animation-name: gradual-display;
      animation-duration: .3s;
      animation-timing-function: ease-out;
      animation-delay: 0;
      animation-iteration-count: 1;
      animation-direction: normal;
      animation-fill-mode: forwards; } }

@keyframes gradual-display {
  0% {
    display: block;
    width: 0%; }
  100% {
    width: 100%; } }

/* アイコン */
[class*="-icon"]:before {
  content: '';
  display: block;
  height: 1.5rem;
  width: 1.5rem;
  background-color: var(--grey-800);
  mask-size: 100%;
  -webkit-mask-size: 100%;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  margin: auto; }

.ui-icon:before {
  content: unset; }

.calender-icon {
  z-index: 10; }

.calender-icon:before {
  background-color: var(--grey-800) !important;
  mask-image: url("../newicons/calender.svg");
  -webkit-mask-image: url("../newicons/calender.svg"); }

.eye-icon:before {
  cursor: pointer;
  mask-image: url("../newicons/eye-on.svg");
  -webkit-mask-image: url("../newicons/eye-on.svg"); }

.eye-slash-icon:before {
  cursor: pointer;
  mask-image: url("../newicons/eye-off.svg");
  -webkit-mask-image: url("../newicons/eye-off.svg"); }

.reveal-icon:before {
  cursor: pointer;
  mask-image: url("../newicons/eye-off.svg");
  -webkit-mask-image: url("../newicons/eye-off.svg"); }

.reveal-icon--visible:before {
  mask-image: url("../newicons/eye-on.svg");
  -webkit-mask-image: url("../newicons/eye-on.svg"); }

.setting-icon:before {
  mask-image: url("../newicons/setting.svg");
  -webkit-mask-image: url("../newicons/setting.svg"); }

.globe-icon:before {
  mask-image: url("../newicons/globe.svg");
  -webkit-mask-image: url("../newicons/globe.svg"); }

.bell-icon:before {
  mask-image: url("../newicons/bell.svg");
  -webkit-mask-image: url("../newicons/bell.svg"); }

.badge-icon:before {
  width: 0.75rem;
  height: 0.75rem;
  background-color: var(--danger);
  mask-image: url("../newicons/badge.svg");
  -webkit-mask-image: url("../newicons/badge.svg"); }

.menu-icon:before {
  mask-image: url("../newicons/menu.svg");
  -webkit-mask-image: url("../newicons/menu.svg"); }

.info-icon:before {
  mask-image: url("../newicons/info.svg");
  -webkit-mask-image: url("../newicons/info.svg"); }

.close-icon:before {
  mask-image: url("../newicons/close.svg");
  -webkit-mask-image: url("../newicons/close.svg"); }

.search-icon:before {
  mask-image: url("../newicons/search.svg");
  -webkit-mask-image: url("../newicons/search.svg"); }

.clock-icon:before {
  mask-image: url("../newicons/clock.svg");
  -webkit-mask-image: url("../newicons/clock.svg"); }

.pen-icon:before {
  mask-image: url("../newicons/pen.svg");
  -webkit-mask-image: url("../newicons/pen.svg"); }

.video-icon:before {
  mask-image: url("../newicons/video.svg");
  -webkit-mask-image: url("../newicons/video.svg"); }

.file-icon:before {
  mask-image: url("../newicons/file.svg");
  -webkit-mask-image: url("../newicons/file.svg"); }

.trash-icon:before {
  mask-image: url("../newicons/trash.svg");
  -webkit-mask-image: url("../newicons/trash.svg"); }

.done-icon:before {
  mask-image: url("../newicons/done.svg");
  -webkit-mask-image: url("../newicons/done.svg"); }

.multiple-icon--on:before {
  mask-image: url("../newicons/multiple-on.svg");
  -webkit-mask-image: url("../newicons/multiple-on.svg"); }

.multiple-icon--off:before {
  mask-image: url("../newicons/multiple-off.svg");
  -webkit-mask-image: url("../newicons/multiple-off.svg"); }

.action-plan-icon:before {
  mask-image: url("../newicons/action-plan.svg");
  -webkit-mask-image: url("../newicons/action-plan.svg"); }

.bookmark-icon:before {
  background-color: var(--accent-800);
  mask-image: url("../newicons/bookmark.svg");
  -webkit-mask-image: url("../newicons/bookmark.svg"); }

.attachment-icon:before {
  mask-image: url("../newicons/attachment.svg");
  -webkit-mask-image: url("../newicons/attachment.svg"); }

.plus-icon:before {
  background-color: var(--white-000);
  mask-image: url("../newicons/plus.svg");
  -webkit-mask-image: url("../newicons/plus.svg"); }

.minus-icon:before {
  mask-image: url("../newicons/minus.svg");
  -webkit-mask-image: url("../newicons/minus.svg"); }

.circle-next-icon:before {
  mask-image: url("../newicons/circle-next.svg");
  -webkit-mask-image: url("../newicons/circle-next.svg"); }

.circle-prev-icon:before {
  mask-image: url("../newicons/circle-prev.svg");
  -webkit-mask-image: url("../newicons/circle-prev.svg"); }

.close-cirlcle-icon:before {
  mask-image: url("../newicons/close-cirlcle.svg");
  -webkit-mask-image: url("../newicons/close-cirlcle.svg"); }

.club-icon:before {
  mask-image: url("../newicons/club.svg");
  -webkit-mask-image: url("../newicons/club.svg"); }

.communication-icon:before {
  mask-image: url("../newicons/communication.svg");
  -webkit-mask-image: url("../newicons/communication.svg"); }

.copy-icon:before {
  mask-image: url("../newicons/copy.svg");
  -webkit-mask-image: url("../newicons/copy.svg"); }

.filter-list-icon {
  background-color: var(--accent-800); }

.filter-list-icon:hover {
  background-color: var(--accent-500); }

.filter-list-icon:before {
  mask-image: url("../newicons/filter-list.svg");
  -webkit-mask-image: url("../newicons/filter-list.svg");
  background-color: var(--white-000); }

.group-icon:before {
  mask-image: url("../newicons/group.svg");
  -webkit-mask-image: url("../newicons/group.svg"); }

.next-icon:before {
  mask-image: url("../newicons/next.svg");
  -webkit-mask-image: url("../newicons/next.svg"); }

.option-icon:before {
  mask-image: url("../newicons/option.svg");
  -webkit-mask-image: url("../newicons/option.svg"); }

.person-icon:before {
  mask-image: url("../newicons/person.svg");
  -webkit-mask-image: url("../newicons/person.svg"); }

.prev-icon:before {
  mask-image: url("../newicons/prev.svg");
  -webkit-mask-image: url("../newicons/prev.svg"); }

.preview-icon:before {
  mask-image: url("../newicons/preview.svg");
  -webkit-mask-image: url("../newicons/preview.svg"); }

.record-icon:before {
  mask-image: url("../newicons/record.svg");
  -webkit-mask-image: url("../newicons/record.svg"); }

.retry-icon:before {
  mask-image: url("../newicons/retry.svg");
  -webkit-mask-image: url("../newicons/retry.svg"); }

.send-icon:before {
  background-color: white;
  mask-image: url("../newicons/arrow-up.svg");
  -webkit-mask-image: url("../newicons/arrow-up.svg"); }

.expand-less-icon:before {
  mask-image: url("../newicons/expand-less.svg");
  -webkit-mask-image: url("../newicons/expand-less.svg"); }

.expand-more-icon:before {
  mask-image: url("../newicons/expand-more.svg");
  -webkit-mask-image: url("../newicons/expand-more.svg"); }

.download-icon:before {
  background-color: white;
  mask-image: url("../newicons/circle-arrow-down.svg");
  -webkit-mask-image: url("../newicons/circle-arrow-down.svg"); }

.upload-icon::before {
  mask-image: url("/newicons/upload.svg");
  -webkit-mask-image: url("/newicons/upload.svg"); }

.full-screen-icon:before {
  background-color: white;
  mask-image: url("../newicons/fullscreen.svg");
  -webkit-mask-image: url("../newicons/fullscreen.svg"); }

.folder-icon:before {
  background-color: white;
  mask-image: url("../newicons/folder.svg");
  -webkit-mask-image: url("../newicons/folder.svg"); }

.camera-icon:before {
  background-color: white;
  mask-image: url("../newicons/camera.svg");
  -webkit-mask-image: url("../newicons/camera.svg"); }

.name-select-icon {
  position: absolute;
  top: 50%;
  right: 0.5rem;
  transform: translateY(-50%);
  cursor: pointer; }

.name-select-icon::before {
  mask-image: url("/newicons/check-list.svg");
  -webkit-mask-image: url("/newicons/check-list.svg"); }

.back-icon:before {
  height: 1rem;
  width: 1rem;
  background-color: white !important;
  mask-image: url("../newicons/back.svg");
  -webkit-mask-image: url("../newicons/back.svg"); }

.philosophy-icon::before {
  mask-image: url("/newicons/philosophy.svg");
  -webkit-mask-image: url("/newicons/philosophy.svg"); }

.graph-icon::before {
  mask-image: url("/newicons/graph.svg");
  -webkit-mask-image: url("/newicons/graph.svg"); }

.report-icon::before {
  mask-image: url("/newicons/report.svg");
  -webkit-mask-image: url("/newicons/report.svg"); }

.account-icon::before {
  mask-image: url("/newicons/account.svg");
  -webkit-mask-image: url("/newicons/account.svg"); }

.logout-icon::before {
  mask-image: url("/newicons/logout.svg");
  -webkit-mask-image: url("/newicons/logout.svg"); }

.rotate-icon::before {
  mask-image: url("/newicons/rotate.svg");
  -webkit-mask-image: url("/newicons/rotate.svg"); }

.sort-icon::before {
  mask-image: url("/newicons/sort.svg");
  -webkit-mask-image: url("/newicons/sort.svg"); }

.change-icon::before {
  mask-image: url("/newicons/change.svg");
  -webkit-mask-image: url("/newicons/change.svg"); }

.link-icon::before {
  mask-image: url("/newicons/link.svg");
  -webkit-mask-image: url("/newicons/link.svg"); }

.unlink-icon::before {
  mask-image: url("/newicons/unlink.svg");
  -webkit-mask-image: url("/newicons/unlink.svg"); }

.users-icon::before {
  mask-image: url("/newicons/users.svg");
  -webkit-mask-image: url("/newicons/users.svg"); }

.book-icon::before {
  mask-image: url("/newicons/book.svg");
  -webkit-mask-image: url("/newicons/book.svg"); }

.popover-icon::before {
  mask-image: url("/newicons/popover.svg");
  -webkit-mask-image: url("/newicons/popover.svg");
  height: 1.25rem;
  width: 2.5rem;
  background-color: var(--grey-500); }

.star-icon::before {
  mask-image: url("/newicons/star.svg");
  -webkit-mask-image: url("/newicons/star.svg"); }

i.dropdown-icon {
  height: 0.6rem; }

.dropdown-icon::before {
  mask-image: url("../newicons/caret-down.svg");
  -webkit-mask-image: url("../newicons/caret-down.svg");
  height: 0.6rem;
  width: 0.75rem;
  background-color: var(--white-000);
  position: relative;
  top: 50%;
  transform: translateY(-50%); }

.rotate-icon::before {
  height: 1rem;
  width: 1rem;
  background-color: var(--white-000);
  mask-image: url("../newicons/rotate.svg");
  -webkit-mask-image: url("../newicons/rotate.svg"); }

.affiliation-icon::before {
  mask-image: url("/newicons/club2.svg");
  -webkit-mask-image: url("/newicons/club2.svg"); }

.flag-icon::before {
  height: 1rem;
  width: 1rem;
  mask-image: url("/newicons/flag.svg");
  -webkit-mask-image: url("/newicons/flag.svg"); }

.goal-icon::before {
  mask-image: url("/newicons/goal.svg");
  -webkit-mask-image: url("/newicons/goal.svg"); }

.seedling-icon::before {
  mask-image: url("/newicons/seedling.svg");
  -webkit-mask-image: url("/newicons/seedling.svg"); }

.people-roof-icon::before {
  mask-image: url("/newicons/people-roof.svg");
  -webkit-mask-image: url("/newicons/people-roof.svg"); }

.birthday-icon::before {
  mask-image: url("/newicons/birthday.svg");
  -webkit-mask-image: url("/newicons/birthday.svg"); }

.spark-icon:before {
  mask-image: url("../newicons/spark.svg");
  -webkit-mask-image: url("../newicons/spark.svg"); }

.crown-icon::before {
  mask-image: url("/newicons/crown.svg");
  -webkit-mask-image: url("/newicons/crown.svg"); }

.system-management-icon::before {
  mask-image: url("/newicons/system-management.svg");
  -webkit-mask-image: url("/newicons/system-management.svg"); }

.error-icon:before {
  mask-image: url("../newicons/error.svg");
  -webkit-mask-image: url("../newicons/error.svg"); }

.palette-icon:before {
  mask-image: url("../newicons/palette.svg");
  -webkit-mask-image: url("../newicons/palette.svg"); }

.question-icon::before {
  mask-image: url("/newicons/question.svg");
  -webkit-mask-image: url("/newicons/question.svg"); }

.expansion-icon::before {
  mask-image: url("/newicons/expansion.svg");
  -webkit-mask-image: url("/newicons/expansion.svg"); }

.lock-icon::before {
  mask-image: url("/newicons/lock.svg");
  -webkit-mask-image: url("/newicons/lock.svg"); }

.history-icon::before {
  mask-image: url("/newicons/history.svg");
  -webkit-mask-image: url("/newicons/history.svg"); }

.support-icon::before {
  mask-image: url("/newicons/support.svg");
  -webkit-mask-image: url("/newicons/support.svg"); }

.updated-icon::before {
  mask-image: url("/newicons/updated.svg");
  -webkit-mask-image: url("/newicons/updated.svg"); }

.pin-icon::before {
  mask-image: url("/newicons/pin.svg");
  -webkit-mask-image: url("/newicons/pin.svg");
  transform: rotate(35deg); }

.note-icon::before {
  mask-image: url("/newicons/note.svg");
  -webkit-mask-image: url("/newicons/note.svg"); }

.talk-icon::before {
  mask-image: url("/newicons/talk.svg");
  -webkit-mask-image: url("/newicons/talk.svg"); }

/* パスワードポリシー */
.password-policy {
  margin-top: 0.5rem;
  color: grey;
  font-size: 0.6rem; }

/* 操作ツールチップ */
.operation__wrapper {
  text-align: left; }
  .operation__wrapper .operation__button {
    padding: 0.25rem 1rem;
    border-bottom: 1px #BDBDBD solid;
    width: 100%;
    cursor: pointer;
    color: black; }
    .operation__wrapper .operation__button:last-child {
      border-bottom: unset; }

/* ポジション名 */
.position-name {
  outline: 0.125rem solid #E6E6E6;
  padding: 0rem 1.25rem;
  margin-right: 0.5rem;
  border-radius: 0.25rem; }

/* 画像トリミング */
.cropper-view-box,
.cropper-face {
  border-radius: 50%;
  cursor: grab;
  outline: initial; }

.cropper-face:active {
  cursor: grabbing; }

.point-e,
.point-n,
.point-w,
.point-s,
.cropper-center {
  display: none !important; }

.cropper-point {
  width: 1rem !important;
  height: 1rem !important;
  border-radius: 50%; }

/*.point-e {
    margin-top: -0.5rem !important;
    right: -0.5rem !important;
}

.point-n {
    margin-left: -0.5rem !important;
    top: -0.5rem !important;
}

.point-w {
    left: -0.5rem !important;
    margin-top: -0.5rem !important;
}

.point-s {
    bottom: -0.5rem !important;
    margin-left: -0.5rem !important;
}*/
.point-ne {
  top: -0.5rem !important;
  right: -0.5rem !important; }

.point-nw {
  top: -0.5rem !important;
  left: -0.5rem !important; }

.point-sw {
  bottom: -0.5rem !important;
  left: -0.5rem !important; }

.point-se {
  bottom: -0.5rem !important;
  right: -0.5rem !important; }

/*モーダル*/
.modal-header {
  padding: 0.5rem 1rem; }

.modal .close-icon {
  margin-left: auto; }
  .modal .close-icon:before {
    width: 1rem;
    height: 1rem; }

/*フリーワード検索*/
.word-search {
  border-radius: var(--border-radius-md);
  background-color: var(--grey-200);
  display: grid;
  grid-template-columns: 2.5rem 1fr 2.5rem;
  place-items: center;
  padding: 0.2rem 0; }
  .word-search__keyword {
    border: 0 !important;
    background-color: unset !important;
    padding-left: 0 !important;
    padding-right: 0 !important; }
    .word-search__keyword:focus {
      border: 0 !important;
      outline: 0 !important; }

/* ふりがな */
rt {
  display: none; }

rt.show {
  display: block; }

/* 日付検索 */
.date-search {
  display: flex !important;
  font-size: 0.875rem; }
  .date-search__date {
    position: relative; }
  .date-search__input {
    padding: 0.35rem 0 0.35rem 2.5rem !important;
    background-color: var(--grey-200) !important;
    border: 1px solid var(--white-000) !important;
    font-weight: bold; }
  .date-search__icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0.65rem;
    width: fit-content;
    height: fit-content;
    cursor: pointer; }
  .date-search__separator {
    margin: auto 0.25rem; }

.input-type-month {
  width: 7.25rem !important; }

.input-type-date {
  width: 8.5rem !important; }

.input-date--sm .input-type-date {
  width: 7.3rem !important;
  padding: 0.1rem 0.5rem !important;
  border-radius: var(--border-radius-sm) !important; }

.input-date--sm::after {
  right: 0.35rem !important; }

.input-date--hidden {
  height: 0 !important; }
  .input-date--hidden .input-type-date {
    width: 0 !important;
    padding: 0 !important;
    border: none !important;
    opacity: 0; }
  .input-date--hidden::after {
    display: none; }

.date-entry-aid .input-type-month,
.date-entry-aid .input-type-date {
  width: 2rem !important; }

/* flatpickr */
.flatpickr-current-month {
  /*padding-top: 15px;*/ }

.clear-link {
  padding-bottom: 0.25rem;
  cursor: pointer;
  color: var(--accent-700); }

/* 操作ボタン */
.option-icon,
.operation-button,
.filter-list-icon {
  width: 2rem;
  height: 2rem;
  align-content: center;
  align-self: center;
  border-radius: 50%;
  cursor: pointer; }

.operation-button {
  box-shadow: none;
  background-color: var(--accent-800); }
  .operation-button:hover {
    background-color: var(--accent-600); }
  .operation-button--sm {
    height: 1.5rem;
    width: 1.5rem; }
    .operation-button--sm i:before {
      height: 1rem;
      width: 1rem; }
  .operation-button:before {
    background-color: white; }

/* データコントロール */
.data-control {
  display: flex;
  margin: 0.5rem 1.25rem;
  justify-content: space-between; }

/* フローティングウィンドウ */
.floating-window {
  display: none;
  width: fit-content;
  border-radius: var(--border-radius-md);
  box-shadow: var(--icon-shadow);
  background-color: var(--grey-200);
  cursor: move;
  z-index: 50; }
  .floating-window__head {
    display: flex;
    align-items: center;
    background-color: var(--grey-700);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-md) var(--border-radius-md) 0 0; }
    .floating-window__head-text {
      color: white;
      margin-right: 1rem;
      display: flex;
      align-items: center; }
      .floating-window__head-text i {
        margin-left: 0.5rem; }
        .floating-window__head-text i:hover {
          background-color: var(--grey-500); }
        .floating-window__head-text i:before {
          background-color: white; }
    .floating-window__head-close {
      margin-left: auto;
      height: fit-content;
      width: fit-content;
      padding: 0.25rem; }
      .floating-window__head-close:before {
        background-color: white;
        height: 1rem;
        width: 1rem; }
      .floating-window__head-close:hover {
        background-color: var(--grey-500); }
  .floating-window__body {
    padding: 0.5rem 1rem;
    background-color: var(--grey-200);
    border-radius: 0 0 var(--border-radius-md) var(--border-radius-md);
    cursor: default; }
    .floating-window__body-content {
      height: 100%;
      overflow-y: auto; }
  .floating-window--show {
    display: block; }
  .floating-window--front {
    z-index: 51; }

/* 補足ラベル */
.description-label {
  color: var(--grey-500);
  height: 1.25rem; }

/*選択一覧*/
.select-list {
  display: grid;
  grid-template-columns: repeat(2, calc(50% - 0.35rem));
  gap: 0.7rem;
  /*margin-bottom: 1rem;*/
  padding: 0.5rem 0;
  max-height: 25rem;
  overflow-y: auto; }
  .select-list__item {
    border: 1px solid var(--grey-400);
    border-radius: var(--border-radius-md);
    padding: 1.25rem 0.5rem;
    cursor: pointer;
    position: relative; }
    .select-list__item:nth-child(n+3) {
      display: none; }
    .select-list__item:hover {
      border-color: var(--accent-600);
      background-color: var(--accent-050); }
    .select-list__item--selected {
      border-color: var(--accent-600); }
      .select-list__item--selected .select-list__selected {
        /*display: block !important;*/ }
    .select-list__item--locked {
      background: var(--grey-300); }
      .select-list__item--locked:hover {
        border-color: var(--grey-500);
        background-color: var(--grey-400); }
      .select-list__item--locked .select-list__locked {
        display: block !important; }
      .select-list__item--locked .select-list__favorite {
        display: none !important; }
    .select-list__item-label {
      width: 100%;
      font-weight: bold;
      cursor: pointer; }
    .select-list__item-version {
      /*padding-left: 0.5rem;*/
      font-size: 0.75rem; }
    .select-list__item input {
      display: none; }
    .select-list__item--add {
      padding: 1.5rem 0.5rem;
      border-style: dashed;
      align-content: center; }
      .select-list__item--add i:before {
        background-color: var(--accent-800);
        height: 2rem;
        width: 2rem; }
      .select-list__item--add .select-list__label {
        color: var(--accent-800);
        text-align: center;
        font-size: 1rem;
        margin-top: 0.5rem; }
  .select-list__selected {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    display: none;
    width: fit-content;
    color: white;
    font-size: 0.75rem;
    padding: 0.15rem 0.5rem;
    /*border: 1px solid var(--accent-400);*/
    border-radius: var(--border-radius-md);
    background: var(--accent-800); }
  .select-list__favorite {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem; }
    .select-list__favorite:before {
      background-color: var(--grey-400); }
    .select-list__favorite--active:before {
      background-color: var(--accent-600); }
  .select-list__locked {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    display: none; }
    .select-list__locked:before {
      background-color: var(--grey-600); }
  .select-list__data {
    display: flex;
    flex-direction: column;
    pointer-events: none;
    margin-bottom: 0.5rem; }
    .select-list__data:last-child {
      margin-bottom: 0; }
  .select-list__label {
    color: var(--grey-500); }
  .select-list__value {
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2; }
  .select-list--expand .select-list__item {
    display: block !important; }

/* ローディング */
#loading {
  display: inline-flex;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 9999; }

.loading-area {
  position: relative;
  margin: auto; }

.loading-image {
  color: var(--success);
  display: inline-block;
  position: relative;
  width: 6rem;
  height: 6rem;
  padding: 1rem;
  /*background-color: rgba(0, 0, 0, 0.4);*/
  border-radius: var(--border-radius-md); }
  .loading-image,
  .loading-image div,
  .loading-image div:after {
    box-sizing: border-box; }
  .loading-image div {
    transform-origin: 2rem 2rem;
    animation: lds-spinner 1.2s linear infinite; }
    .loading-image div:after {
      content: " ";
      display: block;
      position: absolute;
      top: 0px;
      left: calc(2rem - 2px);
      /* ローディング画像の半分 - (線の太さ / 2) */
      width: 4px;
      height: 1.1rem;
      border-radius: 3px;
      background: currentColor; }
    .loading-image div:nth-child(1) {
      transform: rotate(0deg);
      animation-delay: -1.1s; }
    .loading-image div:nth-child(2) {
      transform: rotate(30deg);
      animation-delay: -1s; }
    .loading-image div:nth-child(3) {
      transform: rotate(60deg);
      animation-delay: -0.9s; }
    .loading-image div:nth-child(4) {
      transform: rotate(90deg);
      animation-delay: -0.8s; }
    .loading-image div:nth-child(5) {
      transform: rotate(120deg);
      animation-delay: -0.7s; }
    .loading-image div:nth-child(6) {
      transform: rotate(150deg);
      animation-delay: -0.6s; }
    .loading-image div:nth-child(7) {
      transform: rotate(180deg);
      animation-delay: -0.5s; }
    .loading-image div:nth-child(8) {
      transform: rotate(210deg);
      animation-delay: -0.4s; }
    .loading-image div:nth-child(9) {
      transform: rotate(240deg);
      animation-delay: -0.3s; }
    .loading-image div:nth-child(10) {
      transform: rotate(270deg);
      animation-delay: -0.2s; }
    .loading-image div:nth-child(11) {
      transform: rotate(300deg);
      animation-delay: -0.1s; }
    .loading-image div:nth-child(12) {
      transform: rotate(330deg);
      animation-delay: 0s; }

.tap-shrink {
  transition: transform 0.1s ease; }
  .tap-shrink:active {
    transform: scale(0.95); }

@keyframes lds-spinner {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

.loading-message {
  margin: auto;
  margin-top: 1rem;
  background-color: var(--grey-800);
  color: white;
  padding: 0.5rem;
  border-radius: 0.375rem;
  text-align: center; }

/* NProgressバーのカスタマイズ */
#nprogress .bar {
  /*position: absolute;
    top: 0;
    left: 0;*/
  position: absolute;
  bottom: -4px;
  height: 4px;
  background: var(--accent-300);
  animation: move-right 2s linear infinite;
  z-index: 101; }

#nprogress .spinner {
  display: none; }

/* アニメーション定義 */
@keyframes move-right {
  0% {
    left: -100%;
    /* バーが画面外の左からスタート */
    width: 100%;
    /* 表示される幅 */ }
  50% {
    left: 50%;
    /* 画面中央まで移動 */
    width: 50%;
    /* 幅を縮小 */ }
  100% {
    left: 100%;
    /* 画面外の右側へ移動 */
    width: 0%;
    /* 完全に消える */ } }

/*quill.js*/
.ql-icon-picker:before {
  content: unset; }

.ql-container {
  resize: vertical;
  display: flex; }

.ql-wrapper {
  overflow: hidden;
  border: 1px solid var(--grey-600);
  border-radius: var(--border-radius); }

.ql-toolbar.ql-snow {
  border: none;
  border-radius: 1rem;
  background-color: var(--grey-200); }

.ql-container.ql-snow {
  border: none;
  min-height: 7.5rem;
  max-height: 20rem;
  overflow-y: auto; }

.ql-editor {
  height: unset;
  width: 100%; }

/* トグルボタン */
.toggleContainer {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /*width: fit-content;*/
  border: 1px solid var(--grey-800);
  border-radius: var(--border-radius-md);
  /*background: var(--grey-200);*/
  font-weight: bold;
  cursor: pointer; }

.toggleContainer::before {
  content: '';
  position: absolute;
  width: 50%;
  height: 100%;
  left: 0%;
  border-radius: var(--border-radius-md);
  background: var(--accent-800);
  transition: all 0.3s; }

.toggleCheckbox:checked + .toggleContainer::before {
  left: 50%; }

.toggleContainer div {
  padding: 0.5rem;
  text-align: center;
  z-index: 1; }

.toggleCheckbox {
  display: none; }

.toggleCheckbox:checked + .toggleContainer div:first-child {
  color: var(--grey-800);
  transition: color 0.3s; }

.toggleCheckbox:checked + .toggleContainer div:last-child {
  color: white;
  transition: color 0.3s; }

.toggleCheckbox + .toggleContainer div:first-child {
  color: white;
  transition: color 0.3s; }

.toggleCheckbox + .toggleContainer div:last-child {
  color: var(--grey-800);
  transition: color 0.3s; }

/* 絞り込み */
.search {
  position: relative;
  width: 100%; }
  .search__head {
    background-color: var(--grey-200);
    padding: 0.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer; }
  .search__header {
    padding: 0.5rem 1rem;
    margin-bottom: 0;
    display: flex;
    justify-content: space-between;
    align-items: center; }
  .search__accordion-icon--close::before {
    mask-image: url("../newicons/expand-more.svg");
    -webkit-mask-image: url("../newicons/expand-more.svg"); }
  .search__accordion-icon--open::before {
    mask-image: url("../newicons/expand-less.svg.svg");
    -webkit-mask-image: url("../newicons/expand-less.svg"); }
  .search__body {
    display: none;
    border-bottom-left-radius: 1rem;
    border-bottom-right-radius: 1rem;
    box-shadow: var(--small-shadow);
    padding: 1rem 1rem 0 1rem;
    position: absolute;
    z-index: 100;
    width: 100%;
    background-color: white;
    box-shadow: var(--icon-shadow);
    max-height: 70dvh;
    overflow-y: auto; }
    .search__body .button-area {
      background-color: white;
      position: sticky;
      bottom: 0;
      padding-bottom: 1rem;
      z-index: 3; }
  .search__condisions {
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding: 0.25rem 1rem; }
  .search__condisions-wrapper {
    background-color: var(--white-000);
    width: 100%;
    padding: 0.25rem 1rem; }
    .search__condisions-wrapper .search__condisions {
      padding: 0;
      min-height: unset;
      max-height: unset;
      overflow: hidden;
      white-space: inherit;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical; }
  .search .operation-area .search__condisions {
    padding-left: 0; }
  .search__keyword {
    display: inline-block;
    padding-right: 0.5rem; }
  .search__footer {
    display: grid;
    grid-template-columns: 2.5rem 1fr 2.5rem; }

.search-conditions {
  display: flex;
  flex-wrap: wrap;
  padding: 1rem;
  gap: 0 1.5vw; }
  .search-conditions .form-group {
    width: auto; }

@media (min-width: 992px) {
  .search__body-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem; }
    .search__body-wrapper .form-group {
      align-content: center;
      width: auto; }
      .search__body-wrapper .form-group input[type="checkbox"] {
        margin: 0.35rem 0.75rem 1rem; }
  .search__body-category {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem; }
    .search__body-category .form-group {
      width: auto; }
  .search__body .button-area {
    margin-top: 1rem;
    width: 60%;
    justify-self: center; } }

/* Slick */
.slick-dots li button:before {
  font-size: 0.85rem;
  /*ドットサイズ変更*/ }

/* SlickGrid */
.slick-footerrow-column {
  text-align: right; }
  .slick-footerrow-column.frozen {
    display: none; }
    .slick-footerrow-column.frozen:first-child {
      display: block;
      width: 100%; }

.slick-preheader-panel .slick-header-column {
  outline: 1px solid grey; }

.slick-header-column {
  align-items: center; }
  .slick-header-column [class*="-icon"] {
    width: 1rem;
    height: 1rem;
    margin: auto auto auto 0.5rem; }
    .slick-header-column [class*="-icon"]:before {
      width: 1rem;
      height: 1rem; }
  .slick-header-column .slick-sort-indicator {
    margin-top: auto;
    margin-bottom: auto; }
  .slick-header-column:has(input[type="checkbox"]) {
    justify-content: center; }

.slick-column-name:has(input[type="checkbox"]) {
  overflow: visible;
  display: flex; }

.slick-column-name input[type="checkbox"] {
  margin: 0; }

.slick-cell {
  vertical-align: middle;
  /*border-right: solid 1px var(--grey-600);*/
  border-bottom: solid 1px var(--grey-400);
  padding-top: 3px; }
  .slick-cell::before {
    content: '';
    display: block;
    position: absolute;
    top: 3px;
    right: 0;
    width: 1px;
    height: 100%;
    border-right: solid 1px var(--grey-400); }
  .slick-cell [class*="-icon"]:before {
    height: 1.25rem !important;
    width: 1.25rem !important; }
  .slick-cell a [class*="-icon"]:before {
    background-color: var(--accent-700); }
  .slick-cell.active {
    box-shadow: var(--alpine-cell-active-box-shadow, inset 0 0 0 1px var(--accent-400)); }
  .slick-cell.selected {
    /*background: var(--accent-050);*/
    background: linear-gradient(to bottom, transparent 0%, transparent 3px, var(--accent-050) 3px, var(--accent-050) 100%); }
  .slick-cell:has(input[type="checkbox"]) {
    display: flex;
    justify-content: center; }

.slick-row:hover {
  background-color: unset; }

.slick-row.odd {
  background-color: white; }

.slick-row.even {
  background-color: var(--grey-050); }

.slick-row:before {
  display: none; }

.slick-row.registerd .slick-cell {
  background: rgba(129, 193, 251, 0.3); }

.slick-row.not-registerd .slick-cell {
  background: var(--grey-200); }

.slick-row.invalid .slick-cell {
  background: rgba(237, 127, 127, 0.3); }

.slick-resizable-handle {
  box-shadow: unset;
  height: 100%;
  top: 0;
  width: 12px;
  /*position: relative;*/ }

.slick-resizable-handle::before {
  content: '';
  position: absolute;
  right: -1px;
  top: 0;
  width: 2px;
  height: 100%;
  background-color: var(--grey-800);
  transform: translateX(-50%); }

.slick-group .slick-cell {
  background-color: var(--grey-100);
  display: flex !important; }

.slick-group-toggle {
  flex-shrink: 0; }

.detail {
  /*display: block;
    overflow: hidden;*/ }
  .detail-label {
    width: 100%;
    padding: 0.5rem 1rem;
    background-color: #F1F1F1;
    margin: 0 1rem 1rem 0;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer; }
  .detail-input {
    padding: 0.5rem;
    width: 100%;
    display: none; }

a .grid-table__name {
  text-align: left;
  color: var(--accent-700); }

.grid-table__check {
  display: block;
  align-content: center;
  justify-self: center;
  height: 1.5rem;
  width: 1.5rem; }

.grid-table__input, .grid-table__number {
  padding: 0.25rem 0.5rem;
  font-size: 1rem;
  height: 1.25rem; }

.grid-table__number {
  text-align: right; }

.grid-table__edit {
  display: block;
  height: 1.25rem;
  width: 1.25rem;
  justify-self: center; }

/* 検索条件、検索結果の格納領域 */
#saveData {
  display: none; }

/* フェードイン */
.fade-in {
  opacity: 0; }

/*#mainArea {
    & * {
        pointer-events: none;
    }
}*/
.show {
  opacity: 1;
  transition: opacity 0.2s ease-in-out;
  /*&#mainArea * {
        pointer-events: unset;
    }*/ }

/* グローバルメニュー */
.global-menu {
  width: 0;
  height: fit-content;
  background-color: var(--grey-700);
  color: white;
  overflow: unset; }
  .global-menu__wrapper {
    display: none;
    padding: 0.5rem 1rem;
    position: sticky;
    top: 2.4rem;
    height: calc(100dvh - 2.4rem);
    overflow-y: auto;
    overflow-x: hidden;
    width: 18rem; }
  .global-menu__head {
    display: flex;
    align-items: center;
    width: 100%;
    margin: 0.75rem 0 0.5rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--grey-500);
    transition: transform 0.3s; }
    .global-menu__head-toggle {
      display: none;
      transition: transform 0.3s;
      margin-left: auto; }
      .global-menu__head-toggle:hover {
        background-color: var(--grey-500); }
      .global-menu__head-toggle:before {
        background-color: white; }
      .global-menu__head-toggle--expand {
        transform: rotate(180deg); }
  .global-menu__item {
    display: flex;
    align-items: center;
    width: 100%;
    color: white;
    padding: 0.5rem 0;
    white-space: nowrap;
    cursor: pointer; }
    .global-menu__item:hover {
      color: var(--accent-300); }
      .global-menu__item:hover .global-menu__item-icon:before {
        background-color: var(--accent-300) !important; }
    .global-menu__item-icon {
      /*width: 2.75rem;*/
      margin-right: 0.75rem; }
      .global-menu__item-icon--hidden {
        opacity: 0; }
      .global-menu__item-icon:before {
        background-color: white;
        margin-left: 0; }
      .global-menu__item-icon--badge {
        position: absolute;
        top: 0;
        right: -1rem;
        padding: 0; }
        .global-menu__item-icon--badge-menu {
          position: absolute;
          top: 10%;
          right: 5%;
          padding: 0; }
          .global-menu__item-icon--badge-menu:before {
            background-color: var(--accent-300) !important; }
        .global-menu__item-icon--badge--show {
          display: unset !important; }
          .global-menu__item-icon--badge--show:before {
            background-color: var(--accent-300); }
    .global-menu__item-name {
      position: relative; }
    .global-menu__item-toggle {
      transition: transform 0.3s;
      margin-left: auto; }
      .global-menu__item-toggle:before {
        background-color: white; }
      .global-menu__item-toggle--expand {
        transform: rotate(180deg); }
      .global-menu__item-toggle:hover {
        background-color: var(--grey-500); }
  .global-menu:not(.global-menu--show) {
    /*width: fit-content;*/
    /*height: fit-content !important;*/ }
  .global-menu--show {
    overflow: unset;
    width: 18rem !important;
    height: unset;
    transition: width 0.5s ease;
    /*transform: translateX(0);*/ }
    .global-menu--show .global-menu__wrapper {
      display: block;
      overflow-x: hidden; }
    .global-menu--show .layout__menu-btn {
      display: none; }
  .global-menu--no-animation {
    transition: unset !important; }

.sticky-top {
  position: sticky;
  top: 5.15rem;
  z-index: 100; }
  .sticky-top--1st {
    top: 2.4rem; }

.layout {
  display: flex;
  flex-grow: 1;
  position: relative; }
  .layout__menu-btn {
    display: none;
    padding: 0.5rem;
    background-color: var(--grey-700);
    color: white;
    cursor: pointer;
    height: fit-content;
    text-align: center;
    position: sticky;
    top: 6.2rem; }
    .layout__menu-btn i:before {
      background-color: white; }
  .layout__menu {
    flex-grow: 1;
    height: 100%;
    position: fixed;
    top: 2.4rem;
    right: 0;
    /*z-index: 1000;*/
    z-index: 102;
    order: 2; }
  .layout__content {
    order: 1;
    width: 100%;
    /*overflow-x: hidden;*/
    flex: 1;
    min-width: 0; }
  .layout--no-login .layout__menu {
    display: none; }
  .layout--no-login .layout__content {
    width: 100% !important; }

/** 団体切替ツールチップ **/
.groups {
  max-height: 15rem;
  overflow-y: auto; }
  .groups--sysadmin {
    max-height: 80dvh; }

/* newTable(基本データ、カルテ、フィジカルテストデータ、トレーニングデータ、コンディション）*/
.new-table {
  width: 100%;
  /* テーブルの幅を親要素に合わせる */
  overflow-x: auto;
  overflow-y: auto;
  /* 垂直スクロールを有効にする */
  display: block;
  /* テーブルをブロック要素として扱う */
  font-size: 1rem;
  height: calc(100dvh - 200px);
  /*justify-items: center;*/ }
  .new-table--hide {
    display: none; }
  .new-table__wrapper {
    table-layout: fixed;
    overflow-y: auto;
    border-collapse: separate;
    border-spacing: 0;
    overflow-x: auto;
    width: 100%; }
  .new-table__header-row {
    position: sticky;
    top: 0;
    z-index: 10;
    border-top: none; }
    .new-table__header-row--horizon:nth-child(2) {
      font-size: 5rem; }
      .new-table__header-row--horizon:nth-child(2) .new-table__header-cell--horizon {
        top: 2rem; }
    .new-table__header-row--vertical {
      display: none; }
  .new-table__header-cell {
    max-width: 11rem;
    width: 11rem;
    border-bottom: none;
    border-right: solid 3px var(--grey-800);
    color: var(--grey-800);
    background-color: var(--grey-100);
    /*font-weight: 800;*/
    font-size: 0.8rem;
    position: relative;
    padding: 0.1rem 0.25rem 0.1rem 0.5rem !important;
    height: 2rem;
    position: sticky;
    top: 0;
    z-index: 10;
    border-top: none; }
    .new-table__header-cell:last-child {
      border-right: none; }
    .new-table__header-cell--horizon {
      border-bottom: none;
      border-right: solid 2px var(--grey-800);
      color: var(--grey-800);
      background-color: var(--grey-100);
      font-weight: 800;
      font-size: 1rem;
      position: relative;
      padding: 0.1rem 0.25rem 0.1rem 0.5rem;
      height: 2rem;
      position: -webkit-sticky;
      position: sticky;
      top: 0;
      z-index: 5;
      border-top: none;
      white-space: nowrap; }
      .new-table__header-cell--horizon:last-child {
        border-right: none; }
      .new-table__header-cell--horizon span {
        display: inline-block;
        vertical-align: middle; }
    .new-table__header-cell--fixed {
      position: -webkit-sticky;
      position: sticky;
      top: 0;
      left: 0;
      z-index: 20; }
    .new-table__header-cell--fixed:nth-child(2) {
      position: -webkit-sticky;
      position: sticky;
      top: 0;
      left: 10rem;
      z-index: 20; }
    .new-table__header-cell--under:last-child {
      border-right: solid 3px var(--grey-800); }
  .new-table__header-avg {
    position: -webkit-sticky;
    position: sticky;
    right: 0;
    z-index: 20;
    width: 4rem;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.8);
    color: var(--accent-800);
    border-top-left-radius: var(--border-radius-md);
    box-shadow: -0.5rem 0 0.5rem 0rem var(--grey-500), 0 1rem var(--white-000) inset; }
  .new-table__header-name {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; }
  .new-table__data-row {
    height: 1.25rem; }
  .new-table__data-cell {
    padding: 0.5rem;
    font-size: 1rem;
    /*font-weight: bold;*/
    color: var(--grey-800);
    border-right: solid 1px var(--grey-600);
    border-bottom: solid 1px;
    border-bottom-color: var(--grey-600) !important;
    border-top: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; }
    .new-table__data-cell span {
      pointer-events: none; }
    .new-table__data-cell--focus {
      cursor: pointer; }
    .new-table__data-cell--right {
      text-align: right; }
    .new-table__data-cell--second {
      /*display: block;*/
      position: -webkit-sticky;
      position: sticky;
      left: 10rem;
      z-index: 10;
      background-color: var(--white-000); }
    .new-table__data-cell:last-child {
      border-right: none; }
  .new-table__data-head {
    padding: 0.5rem;
    font-size: 1rem;
    /*font-weight: bold;*/
    color: var(--grey-800);
    border-right: solid 1px var(--grey-600);
    border-bottom: solid 1px;
    border-bottom-color: var(--grey-600) !important;
    border-top: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    position: relative;
    min-width: 10rem;
    position: -webkit-sticky;
    position: sticky;
    left: 0;
    z-index: 10;
    background-color: var(--white-000); }
  .new-table__data-text--second {
    display: none; }
  .new-table__data-dummy {
    display: none; }
  .new-table__footer {
    position: -webkit-sticky;
    position: sticky;
    bottom: 0;
    z-index: 20; }
    .new-table__footer-row--horizonSum {
      /*position: -webkit-sticky;
                position: sticky;
                bottom: 2.6rem;
                z-index: 20;*/
      height: 1.75rem;
      background-color: var(--grey-100); }
    .new-table__footer-row--horizonAvg {
      /*position: -webkit-sticky;
                position: sticky;
                bottom: 0;
                z-index: 20;*/
      height: 1.75rem;
      background-color: var(--grey-100); }
    .new-table__footer-row--verticalSum {
      display: none; }
    .new-table__footer-row--verticalAvg {
      display: none; }
    .new-table__footer-avg, .new-table__footer-sum {
      padding: 0.5rem;
      border-left: none;
      border-top: none;
      border-right: 1px solid var(--grey-600);
      text-align: end; }
      .new-table__footer-avg--fixed, .new-table__footer-sum--fixed {
        padding: 0.5rem;
        position: -webkit-sticky;
        position: sticky;
        left: 0;
        z-index: 10;
        background-color: var(--grey-100);
        text-align: end;
        border-top: none;
        border-right: 1px solid var(--grey-600); }
      .new-table__footer-avg:last-child, .new-table__footer-sum:last-child {
        border-right: none !important; }
    .new-table__footer-avg {
      border-bottom: 1px solid var(--grey-600); }
      .new-table__footer-avg--fixed {
        border-bottom: 1px solid var(--grey-600); }
  .new-table__icon {
    display: flex;
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
    right: 0px;
    box-shadow: none;
    background-color: var(--white-000); }
  .new-table .file-icon::before {
    background-color: var(--accent-600); }

@media (max-width: 992px) {
  .new-table table {
    -ms-writing-mode: tb-lr;
    writing-mode: vertical-lr; }
  .new-table__header-row {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 10;
    border-top: none; }
    .new-table__header-row--horizon {
      display: none; }
    .new-table__header-row--vertical {
      display: table-row; }
  .new-table__header-cell--vertical {
    visibility: hidden;
    font-size: 0.5rem;
    line-height: 1;
    background-color: unset;
    border: unset;
    padding: 0;
    position: sticky;
    top: 0;
    left: 0; }
    .new-table__header-cell--vertical span {
      -ms-writing-mode: lr-tb;
      writing-mode: horizontal-tb;
      white-space: nowrap;
      position: absolute;
      top: 0;
      left: 0; }
  .new-table__header-cell--show {
    font-size: 0.6rem;
    line-height: 1;
    background-color: unset;
    border: unset;
    padding: 0;
    position: sticky;
    top: 0;
    left: 0; }
    .new-table__header-cell--show span {
      color: var(--grey-600);
      /*-ms-writing-mode: lr-tb;
                        writing-mode: horizontal-tb;
                        white-space: nowrap;
                        position: absolute;
                        top: 0.125rem;
                        left: 0.25rem;*/ }
      .new-table__header-cell--show span:first-child {
        left: 0.25rem; }
    .new-table__header-cell--show div {
      position: absolute;
      top: 0.125rem;
      left: 0.25rem;
      -ms-writing-mode: lr-tb;
      writing-mode: horizontal-tb;
      white-space: nowrap; }
      .new-table__header-cell--show div span {
        display: inline-block;
        vertical-align: bottom; }
  .new-table__header-cell--fixed {
    position: unset; }
  .new-table__data-head {
    width: 10rem;
    border-bottom: none;
    border-left: solid 1px var(--grey-800);
    color: var(--grey-800);
    background-color: var(--grey-100);
    font-weight: 800;
    font-size: 1rem;
    position: relative;
    padding: 0.5rem;
    height: 2rem;
    position: sticky;
    top: 0;
    left: unset;
    z-index: 10;
    border-top: none;
    white-space: nowrap;
    -ms-writing-mode: lr-tb;
    writing-mode: horizontal-tb; }
    .new-table__data-head span {
      display: block;
      position: absolute;
      left: 0.25rem;
      top: 50%;
      transform: translateY(-50%);
      -ms-writing-mode: lr-tb;
      writing-mode: horizontal-tb;
      white-space: nowrap; }
    .new-table__data-head div {
      height: 1.5rem;
      -ms-writing-mode: lr-tb;
      writing-mode: horizontal-tb; }
    .new-table__data-head i {
      position: absolute;
      right: 0rem;
      top: 60%;
      transform: translateY(-50%);
      -ms-writing-mode: lr-tb;
      writing-mode: horizontal-tb; }
  .new-table__data-cell {
    width: 10rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0 0.5rem 0 0.5rem;
    height: 1.75rem;
    align-content: end;
    -ms-writing-mode: lr-tb;
    writing-mode: horizontal-tb; }
    .new-table__data-cell span {
      -ms-writing-mode: lr-tb;
      writing-mode: horizontal-tb;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      font-size: 0.8rem;
      height: 1.25rem;
      display: block; }
    .new-table__data-cell--right {
      align-content: end; }
    .new-table__data-cell--second {
      display: none; }
    .new-table__data-cell:last-child {
      border-right: 1px solid var(--grey-600); }
  .new-table__data-text {
    max-width: 10rem;
    min-width: 7.5rem; }
    .new-table__data-text span {
      display: block;
      position: relative;
      left: 0.25rem;
      top: 50%;
      transform: translateY(-50%);
      -ms-writing-mode: lr-tb;
      writing-mode: horizontal-tb; }
    .new-table__data-text--second {
      display: block; }
  .new-table__data-dummy {
    height: 0.8rem;
    padding: 0.4rem;
    display: table-cell; }
  .new-table__footer {
    right: 0;
    z-index: 20;
    /*max-width: 0;
            transition: max-width 0.6s ease-out;*/
    /*display:none;*/
    opacity: 0;
    visibility: hidden;
    transition: .4s; }
    .new-table__footer--show {
      opacity: 1;
      visibility: visible;
      display: table-footer-group;
      /*max-width: 500px;
                transition: max-width 0.6s ease-in;*/ }
      .new-table__footer--show .new-table__footer-row--verticalSum, .new-table__footer--show .new-table__footer-row--verticalAvg {
        display: table-row; }
    .new-table__footer-row--horizonSum {
      display: none; }
    .new-table__footer-row--horizonAvg {
      display: none; }
    .new-table__footer-row--verticalSum {
      /*display: table-row;*/
      display: none;
      /*position: -webkit-sticky;
                    position: sticky;
                    right: 4rem;
                    z-index: 20;*/
      width: 4rem;
      text-align: center;
      background-color: var(--white-000);
      color: var(--accent-600);
      box-shadow: -0.5rem 0 0.5rem 0rem var(--grey-500);
      /*border-top-left-radius: var(--border-radius-md);
                    border-bottom-left-radius: var(--border-radius-md);*/ }
    .new-table__footer-row--verticalAvg {
      /*display: table-row;*/
      display: none;
      position: -webkit-sticky;
      position: sticky;
      right: 0;
      z-index: 20;
      width: 4rem;
      text-align: center;
      background-color: var(--white-000);
      color: var(--accent-600);
      box-shadow: -1px 0 var(--grey-600); }
    .new-table__footer-avg {
      -ms-writing-mode: lr-tb;
      writing-mode: horizontal-tb;
      border-color: var(--white-000);
      padding: 0 0.5rem;
      text-align: center;
      vertical-align: bottom;
      border: none; }
      .new-table__footer-avg span {
        display: block;
        height: 1.5rem;
        -ms-writing-mode: lr-tb;
        writing-mode: horizontal-tb; }
      .new-table__footer-avg--fixed {
        background-color: var(--white-000);
        -ms-writing-mode: lr-tb;
        writing-mode: horizontal-tb;
        border-bottom: none;
        border: none;
        text-align: center;
        top: 0; }
        .new-table__footer-avg--fixed span {
          display: block;
          height: 1.5rem;
          -ms-writing-mode: lr-tb;
          writing-mode: horizontal-tb; }
    .new-table__footer-sum {
      -ms-writing-mode: lr-tb;
      writing-mode: horizontal-tb;
      border-color: var(--white-000);
      padding: 0 0.5rem;
      text-align: center;
      vertical-align: bottom;
      border: none; }
      .new-table__footer-sum span {
        display: block;
        height: 1.5rem;
        -ms-writing-mode: lr-tb;
        writing-mode: horizontal-tb; }
      .new-table__footer-sum--fixed {
        background-color: var(--white-000);
        -ms-writing-mode: lr-tb;
        writing-mode: horizontal-tb;
        border-color: var(--white-000);
        border: none;
        /*border-top-left-radius: var(--border-radius-md);*/
        text-align: center;
        top: 0;
        z-index: 0; }
        .new-table__footer-sum--fixed span {
          display: block;
          height: 1.5rem;
          -ms-writing-mode: lr-tb;
          writing-mode: horizontal-tb; }
  .new-table__icon {
    display: block;
    top: 50%;
    transform: translateY(-30%);
    position: absolute;
    right: 0;
    box-shadow: none;
    background-color: var(--grey-100); } }

/** 加入プランモーダル **/
.subscription__caution {
  color: var(--danger);
  font-size: 1.5rem;
  font-weight: bold;
  padding: 1rem; }

.subscription__message {
  padding: 1rem;
  font-size: 1rem; }

.subscription__wrap {
  padding: 1rem;
  border: 1px solid var(--accent-700);
  border-radius: var(--border-radius-lg);
  background-color: var(--accent-050); }

.subscription__benefits {
  font-weight: bold;
  padding-bottom: 0.5rem; }

.subscription__offer {
  padding: 1rem;
  font-size: 1.25rem; }
  .subscription__offer span {
    border-bottom: 1px solid; }

.subscription__disabled {
  background-color: var(--grey-300) !important; }

/** 非所属ユーザグループアイコン **/
.group__icon {
  position: relative;
  margin-left: auto;
  width: 2rem;
  cursor: pointer; }
  .group__icon--dummy {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); }
  .group__icon--img {
    width: 1rem;
    height: 1rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); }
  .group__icon:hover i:before {
    background-color: var(--accent-300); }

/** メッセージ（データ０件の時）**/
.info-message {
  position: fixed;
  bottom: 50%;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.1rem;
  display: none;
  width: 90%; }
  .info-message--show {
    display: block; }
  .info-message__message {
    color: var(--grey-800);
    text-align: center; }
  .info-message__next-action {
    color: var(--grey-800);
    display: flex;
    justify-content: center; }
    .info-message__next-action__icon {
      margin-right: 0.1rem;
      margin-left: 0.1rem;
      border-radius: 2rem;
      background-color: var(--accent-800);
      height: 1.1rem;
      width: 1.1rem;
      align-self: center; }
      .info-message__next-action__icon:before {
        height: 1rem;
        width: 1rem; }

/*目標*/
.target-list {
  margin-top: 1.75rem;
  min-height: 4rem;
  border-bottom: 1px solid var(--grey-600); }
  .target-list:first-child {
    margin-top: 0; }
  .target-list .target-goal {
    white-space: break-spaces; }
  .target-list .target-label {
    color: var(--grey-500);
    margin-bottom: 1rem; }
  .target-list .target-input .target-label {
    margin-bottom: 0; }
  .target-list .target-content {
    font-size: 1rem;
    color: var(--grey-700);
    padding: 0.5rem 1.5rem;
    display: flex;
    grid-gap: 1rem;
    justify-content: space-between; }
  .target-list .target-content,
  .target-list .target-input__wrap {
    border-bottom: 1px dashed var(--grey-400); }
  .target-list .target-content:has( + .target-content.d-none),
  .target-list .target-content:last-child,
  .target-list .target-input__wrap:has( + .target-input__wrap.d-none),
  .target-list .target-input__wrap:last-child {
    border-bottom: unset; }
  .target-list .target-input:has(.target-input__wrap-3:not(.d-none)) .target-input__wrap-1 {
    /* 2番目が非表示、3番目が表示されている状態を考慮 */
    border-bottom: 1px dashed var(--grey-400); }
  .target-list .target-level {
    padding: 0.25rem 0.5rem;
    border-radius: 1rem;
    color: #222;
    font-size: 0.75rem;
    height: fit-content;
    flex-shrink: 0; }
  .target-list .target-level__input {
    display: flex;
    align-items: center;
    grid-gap: 1rem; }
  .target-list .target-level__label {
    padding-right: 0.75rem;
    position: relative; }
  .target-list .target-level__label::after {
    content: "：";
    position: absolute;
    right: 0; }
  .target-list--compact {
    margin-top: 0.75rem;
    min-height: 3rem; }
    .target-list--compact .target-label {
      font-size: 0.85rem;
      margin-bottom: 0; }
    .target-list--compact .target-content {
      font-size: 0.85rem;
      padding: 0.35rem 0.5rem; }
    .target-list--compact .target-level {
      padding: 0.1rem 0.5rem;
      text-align: center; }
  @media screen and (max-width: 768px) {
    .target-list .target-content {
      padding: 0.5rem 0.75rem; } }

.order-1 {
  order: 1 !important; }

.order-2 {
  order: 2 !important; }

.order-3 {
  order: 3 !important; }

.order-4 {
  order: 4 !important; }

.order-5 {
  order: 5 !important; }

.order-6 {
  order: 6 !important; }

.order-7 {
  order: 7 !important; }

.order-8 {
  order: 8 !important; }

.order-9 {
  order: 9 !important; }

.order-10 {
  order: 10 !important; }

.order-11 {
  order: 11 !important; }

.order-12 {
  order: 12 !important; }

.order-13 {
  order: 13 !important; }

.order-14 {
  order: 14 !important; }

.order-15 {
  order: 15 !important; }

.order-16 {
  order: 16 !important; }

.order-17 {
  order: 17 !important; }

.order-18 {
  order: 18 !important; }

.order-19 {
  order: 19 !important; }

.order-20 {
  order: 20 !important; }

/* 認証エリア */
/*.authentication-area {
    display: none;
    top: 0;
    left: 0;
    background-color: white;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 10;

    &__body {
        max-width: 25rem;
        margin: 2rem auto 0 auto;
    }
}

body.authenticating {
    overflow-y: hidden;

    .authentication-area {
        display: block;
    }
}*/
/* ドラッグアンドドロップ */
.ddarea {
  background-color: var(--grey-200);
  padding: 0.5rem 1rem 4rem 1rem;
  min-height: 7rem;
  margin-bottom: 1rem;
  position: relative;
  border: 2px dashed var(--grey-500);
  border-radius: var(--border-radius-md); }
  .ddarea.drag-here {
    background-color: var(--accent-100); }
  .ddarea__title-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem; }
  .ddarea__title {
    display: none;
    font-size: 1.2rem;
    font-weight: bold; }
    .ddarea__title-icon {
      height: 1rem;
      width: 1.25rem; }
      .ddarea__title-icon:before {
        background-color: var(--grey-400);
        height: 1rem;
        width: 1.25rem; }
    .ddarea__title--small {
      display: block;
      font-size: 0.75rem;
      font-weight: bold; }
  .ddarea__btn-area {
    position: absolute;
    right: 1rem;
    bottom: 0.5rem; }
    .ddarea__btn-area a {
      /*font-weight: bold;*/
      padding: 0.5rem 2.5rem; }

.no-regist {
  margin: 1.5rem 0;
  text-align: center;
  font-size: 1rem; }

/* プログレスバー */
.custom-progress {
  overflow-x: auto; }

.progress__container {
  display: block;
  margin-left: 0;
  /*width: calc(100%);*/
  padding: 1rem 0 0 0; }
  .progress__container .form-group__browse {
    border: none;
    display: block;
    padding: 0;
    text-align: center; }

.progress__bar {
  /*width: 80%;*/
  height: 1.25rem;
  /*margin: 1rem 0;*/
  display: flex;
  flex-direction: column-reverse;
  background-color: var(--grey-200);
  /*border-radius: var(--border-radius-md);*/
  position: relative;
  overflow: hidden; }
  .progress__bar-fill {
    height: 100%;
    /*border-radius: var(--border-radius-md);*/
    transition: width 0.5s ease;
    position: relative;
    /* widthとbackgroundは各画面で設定 */
    /*width: xxx;
            background: xxxx*/ }

.progress__items {
  flex-direction: unset;
  align-items: stretch;
  gap: 0;
  margin-top: 0;
  /* ポイントの高さ(半分)を引くことで、バーとポイントの高さ方向の位置を揃える */
  margin-top: calc(((1.25rem / 2) + (2rem / 2)) * -1);
  display: flex;
  justify-content: space-between;
  position: relative; }

.progress__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 0.25rem;
  cursor: default;
  /*margin: 0 calc((20% - 2rem) / 2);*/ }
  .progress__item--hoverable {
    cursor: pointer; }
    .progress__item--hoverable:hover .progress__label {
      background-color: var(--accent-100);
      border-radius: var(--border-radius-md); }

.progress__point {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: var(--white-000);
  position: relative;
  border: 1px solid var(--grey-200);
  flex-shrink: 0; }
  .progress__point--pending {
    background-color: var(--grey-200); }

.progress__labels {
  flex-direction: column-reverse;
  width: unset;
  margin-top: 0;
  margin-left: 1.5rem;
  display: flex;
  justify-content: space-between;
  /*margin-top: 0.5rem;*/
  color: var(--grey-800); }

.progress__label {
  width: 100%;
  display: flex;
  flex-direction: column;
  height: fit-content;
  align-items: center;
  padding: 0.5rem 0; }
  .progress__label-percent {
    /*width: 3.5rem;*/
    flex-shrink: 0; }
  .progress__label-date {
    font-size: 0.75rem;
    align-items: center;
    justify-content: center;
    place-content: center;
    flex-shrink: 0; }

.progress--goal {
  /* 0%を含めたアイテム数 */
  /* [100 / $item-count]の少数を切り捨てた値を設定 */ }
  .progress--goal .progress__item {
    /*width: $point-item-min-width;*/
    min-width: 5rem; }
  .progress--goal .progress__bar {
    width: calc(100% - 9%) !important;
    min-width: calc(5rem * (11 - 1)) !important;
    margin-left: 2.5rem !important; }

.progress--idp {
  /* 0%を含めたアイテム数 */
  /* [100 / $item-count]の少数を切り捨てた値を設定 */ }
  .progress--idp .progress__bar {
    width: calc(100% - 25% + 2rem) !important;
    margin-left: calc(12.5% - 1rem) !important; }

.step-flow {
  width: 100%;
  overflow: hidden; }
  .step-flow__items {
    display: flex;
    border-radius: var(--border-radius-sm); }
  .step-flow__item {
    flex: 1;
    text-align: center;
    line-height: 2rem;
    font-weight: bold;
    background-color: var(--grey-300);
    color: var(--grey-800);
    position: relative;
    user-select: none; }
    .step-flow__item:not(:last-child)::before, .step-flow__item:not(:last-child)::after {
      content: '';
      position: absolute;
      right: -13px;
      top: 0;
      width: 0;
      height: 0;
      border-top: 1rem solid transparent;
      border-bottom: 1rem solid transparent;
      border-left: 0.85rem solid var(--grey-300);
      z-index: 1; }
    .step-flow__item:not(:last-child)::after {
      right: -12px; }
    .step-flow__item:first-child {
      border-radius: var(--border-radius-md) 0 0 var(--border-radius-md); }
    .step-flow__item:last-child {
      border-radius: 0 var(--border-radius-md) var(--border-radius-md) 0; }
    .step-flow__item:not(:last-child)::before {
      border-left-color: var(--grey-600); }
    .step-flow__item:not(:last-child)::after {
      border-left-color: var(--grey-300); }
    .step-flow__item--completed {
      background-color: var(--accent-600);
      color: var(--grey-200);
      cursor: pointer; }
      .step-flow__item--completed:not(:last-child)::before {
        border-left-color: var(--grey-200); }
      .step-flow__item--completed:not(:last-child)::after {
        border-left-color: var(--accent-600); }
    .step-flow__item--active {
      background-color: var(--accent-800);
      color: var(--white-000); }
      .step-flow__item--active:not(:last-child)::before {
        border-left-color: var(--accent-800); }
      .step-flow__item--active:not(:last-child)::after {
        border-left-color: var(--accent-800); }
  .step-flow__explanation {
    background-color: var(--white-000);
    border-bottom-left-radius: var(--border-radius-md);
    border-bottom-right-radius: var(--border-radius-md);
    padding: 0.5rem 0.25rem;
    color: var(--grey-600);
    font-size: 0.75rem; }

.notfound-text {
  display: block;
  text-align: center;
  color: var(--grey-500);
  font-size: 1.5rem;
  width: 100%;
  margin-top: 1rem; }

.notregistered-text {
  color: var(--grey-500);
  font-size: 1rem;
  padding: 1rem; }

.table-scroll {
  max-height: 12rem;
  overflow: auto; }

table.custom-table {
  width: 100%;
  cursor: default; }
  table.custom-table thead {
    background: var(--white-000);
    position: sticky;
    top: 0; }
    table.custom-table thead::after {
      content: '';
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      height: 2px;
      background: var(--grey-300); }
    table.custom-table thead th {
      color: var(--grey-500);
      font-weight: unset;
      padding: 0.5rem;
      white-space: nowrap; }
  table.custom-table tbody tr {
    border-bottom: 1px solid var(--grey-400); }
    table.custom-table tbody tr:hover {
      background-color: var(--grey-050); }
  table.custom-table tbody td {
    margin: 0.5rem 0;
    padding: 0 0.5rem; }

.targetdate-icon {
  display: none;
  align-items: center; }
  .targetdate-icon:before {
    height: 1rem;
    width: 1rem; }
  .targetdate-icon--md:before {
    height: 1.25rem;
    width: 1.25rem; }
  .targetdate-icon--danger {
    display: flex;
    column-gap: 0.25rem;
    color: var(--danger);
    font-weight: bold; }
    .targetdate-icon--danger:before {
      background-color: var(--danger);
      mask-image: url("../newicons/error.svg");
      -webkit-mask-image: url("../newicons/error.svg"); }
  .targetdate-icon--warning1 {
    display: flex;
    column-gap: 0.25rem;
    right: 0.2rem; }
    .targetdate-icon--warning1:before {
      background-color: var(--warning);
      mask-image: url("../newicons/warning.svg");
      -webkit-mask-image: url("../newicons/warning.svg"); }
  .targetdate-icon--warning2 {
    display: flex;
    column-gap: 0.25rem;
    right: 0.1rem; }
    .targetdate-icon--warning2:before {
      background-color: var(--grey-500);
      mask-image: url("../newicons/warning.svg");
      -webkit-mask-image: url("../newicons/warning.svg"); }

@media (min-width: 576px) {
  /*.common-header {
        height: get-common-header-height($breakpoint-sm);
    }
    .sticky-top {
        top: get-common-header-height($breakpoint-sm);
    }*/ }

@media (min-width: 768px) {
  /*確認モーダル*/
  .confirm-modal {
    width: unset;
    max-width: 30rem; }
  /*.common-header {
        height: get-common-header-height($breakpoint-md);
    }
    .sticky-top {
        top: get-common-header-height($breakpoint-md);
    }*/ }

@media (min-width: 992px) {
  .btn-area--horizontal {
    display: flex;
    gap: 1rem; }
  .button-group__item--lg .button-group__item-icon:before {
    width: 1.75rem !important;
    height: 1.75rem !important; }
  .button-group__item--xlg .button-group__item-icon {
    width: 2.5rem !important;
    height: 2.5rem !important; }
    .button-group__item--xlg .button-group__item-icon:before {
      width: 2rem !important;
      height: 2rem !important; }
  .environment {
    font-size: 1.5rem; }
  .common-header {
    grid-template-rows: 1fr;
    grid-template-columns: auto 1fr 22rem;
    height: 6.2rem; }
    .common-header--no-login {
      max-height: 6.2rem; }
    .common-header__logo {
      margin: auto 1.5rem;
      grid-row: 1 / 3;
      grid-column: 1 / 2; }
      .common-header__logo img {
        /*width: 12rem;*/ }
      .common-header__logo--sp {
        display: none; }
      .common-header__logo--pc {
        display: block; }
    .common-header__environment {
      font-size: 1.5rem;
      margin: auto 0;
      grid-row: 1 / 3; }
    .common-header__menu {
      grid-row: 1 / 2;
      grid-column: 3 / 4; }
    .common-header__breadcrumb {
      grid-row: 2 / 3;
      grid-column: 2 / 3;
      border-top: unset; }
    .common-header__login-user {
      display: flex !important; }
    .common-header__group {
      display: block !important;
      grid-row: 2 / 3;
      grid-column: 2 / 3;
      margin-left: auto;
      margin-right: 1.25rem; }
  a[name='currentGroup'] .common-header__menu-icon {
    max-height: 3rem; }
  .layout__content {
    width: calc(100vw - 4rem); }
  .layout:has(.global-menu--show) .layout__content {
    width: calc(100vw - 18rem); }
  .layout:has(.global-menu--show) .global-menu {
    overflow: hidden; }
  /* サイドメニューの開閉用アニメーション */
  .change-width {
    transition: width 0.5s ease; }
  a:has(#menuBar) {
    display: none; }
  .common-header__current-group--sp {
    display: none !important; }
  .global-menu {
    width: 4rem;
    display: block; }
    .global-menu__wrapper {
      position: fixed;
      top: 6.2rem;
      height: calc(100dvh - 6.2rem); }
    .global-menu__head-toggle {
      display: flex; }
  .sticky-top {
    top: 8.95rem; }
    .sticky-top--1st {
      top: 6.2rem; }
  .bottom-sheet {
    width: 40rem;
    min-width: 30rem;
    max-width: 60%; }
    .bottom-sheet--center {
      width: inherit;
      position: fixed;
      top: 50%;
      left: 50%;
      bottom: unset;
      right: unset;
      transform: translate(-50%, -50%);
      max-width: 60%;
      overflow: hidden; }
      .bottom-sheet--center .bottom-sheet__body {
        border-radius: 0 0 1rem 1rem;
        overflow: hidden; }
    .bottom-sheet--lg {
      width: 75dvw;
      max-width: unset; }
      .bottom-sheet--lg .grid__wrapper {
        height: 50dvh; }
    .bottom-sheet__body-resize {
      display: block; }
    .bottom-sheet:has(.bottom-sheet__body-resize) .bottom-sheet__body-wrapper {
      border-left: 1px solid var(--grey-300); }
    .bottom-sheet__button-area--custom {
      display: flex;
      flex-direction: unset;
      gap: 1rem;
      margin: 0 0.75rem 0.75rem auto; }
      .bottom-sheet__button-area--custom-center {
        margin-right: auto; }
      .bottom-sheet__button-area--custom .bottom-sheet__button {
        border-top: unset;
        border-radius: var(--border-radius-md);
        width: fit-content;
        padding: 0.65rem 3.5rem; }
        .bottom-sheet__button-area--custom .bottom-sheet__button--secondary {
          color: var(--accent-800); }
          .bottom-sheet__button-area--custom .bottom-sheet__button--secondary-fill {
            color: var(--accent-800);
            border: 1px solid var(--accent-800);
            background-color: white; }
            .bottom-sheet__button-area--custom .bottom-sheet__button--secondary-fill:hover {
              background-color: var(--grey-200); }
        .bottom-sheet__button-area--custom .bottom-sheet__button--primary {
          color: var(--accent-800);
          font-weight: bold; }
          .bottom-sheet__button-area--custom .bottom-sheet__button--primary-fill {
            color: white;
            background-color: var(--accent-800); }
            .bottom-sheet__button-area--custom .bottom-sheet__button--primary-fill .button-group__item-icon:before {
              background-color: var(--white-000); }
            .bottom-sheet__button-area--custom .bottom-sheet__button--primary-fill:hover {
              background-color: var(--accent-600); }
        .bottom-sheet__button-area--custom .bottom-sheet__button--danger {
          color: var(--danger);
          font-weight: bold; }
          .bottom-sheet__button-area--custom .bottom-sheet__button--danger:hover {
            color: var(--danger); }
          .bottom-sheet__button-area--custom .bottom-sheet__button--danger-fill {
            color: white;
            font-weight: bold;
            background-color: var(--danger); }
            .bottom-sheet__button-area--custom .bottom-sheet__button--danger-fill:hover {
              background-color: var(--danger-light); }
          .bottom-sheet__button-area--custom .bottom-sheet__button--danger-outline {
            color: var(--danger);
            border: 1px solid var(--danger);
            background-color: white; }
  .layout {
    position: relative; }
    .layout__menu {
      flex-grow: unset;
      height: unset;
      position: unset;
      z-index: 102;
      order: 1; }
      .layout__menu-btn {
        display: block; }
    .layout__content {
      order: 2; }
  .tab-group__operation {
    display: flex; }
  .tab-group--main {
    top: 6.2rem; }
  .tab-group__item a {
    padding: 0.45rem 0.75rem 0.2rem 0.75rem; }
  .common-message {
    width: auto;
    min-width: 30%; }
  /* ドラッグアンドドロップ */
  .ddarea {
    min-height: 10rem;
    padding-bottom: 5.75rem; }
    .ddarea__title {
      display: block; }
      .ddarea__title-icon {
        height: 1.75rem;
        width: 2rem; }
        .ddarea__title-icon:before {
          height: 2rem;
          width: 2rem; }
      .ddarea__title--small {
        display: none; }
    .ddarea__btn-area {
      right: 1.25rem;
      bottom: 1.25rem; }
      .ddarea__btn-area a {
        padding: 0.75rem 3.5rem; }
  /* プログレスバー */
  .custom-progress:not(.custom-progress--vertical) .progress__container {
    display: block;
    padding: 1rem 0 0 0; }
  .custom-progress:not(.custom-progress--vertical) .progress__bar {
    /*width: 80%;
                height: 1rem;
                margin: 0 10%;*/ }
    .custom-progress:not(.custom-progress--vertical) .progress__bar-fill {
      height: 100% !important;
      transition: width 0.5s ease; }
  .custom-progress:not(.custom-progress--vertical) .progress__items {
    gap: 0;
    margin: 0;
    /* ポイントの高さ(半分)を引くことで、バーとポイントの高さ方向の位置を揃える */
    margin-top: calc(((1.25rem / 2) + (2rem / 2)) * -1); }
  .custom-progress:not(.custom-progress--vertical) .progress__item {
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    padding: 0; }
  .custom-progress:not(.custom-progress--vertical) .progress__points {
    flex-direction: unset;
    /* バーの左右の余白(半分)とポイントの幅(半分)を引くことで、バーとポイントの両端を揃える */
    padding: 0 calc(10% - (2rem / 2)); }
  .custom-progress:not(.custom-progress--vertical) .progress__point {
    margin: 0; }
  .custom-progress:not(.custom-progress--vertical) .progress__labels {
    flex-direction: unset;
    margin: 0; }
  .custom-progress:not(.custom-progress--vertical) .progress__label {
    gap: 0;
    flex-direction: column;
    text-align: center;
    height: fit-content;
    width: 100%;
    padding: 0.25rem 0;
    /* widthは各画面で設定 */
    /*width: xxx;*/ }
    .custom-progress:not(.custom-progress--vertical) .progress__label-percent {
      width: unset; }
    .custom-progress:not(.custom-progress--vertical) .progress__label-date {
      font-size: 0.75rem; }
  .step-flow__item {
    line-height: 3rem; }
    .step-flow__item:not(:last-child)::before, .step-flow__item:not(:last-child)::after {
      right: -1.25rem;
      border-top: 1.5rem solid transparent;
      border-bottom: 1.5rem solid transparent;
      border-left: 1.25rem solid var(--grey-300); }
    .step-flow__item:not(:last-child)::after {
      right: calc(-1.25rem + 2px); }
    .step-flow__item:not(:last-child)::before {
      border-left-color: var(--grey-600); }
    .step-flow__item:not(:last-child)::after {
      border-left-color: var(--grey-300); }
    .step-flow__item--completed:not(:last-child)::before {
      border-left-color: var(--grey-200); }
    .step-flow__item--completed:not(:last-child)::after {
      border-left-color: var(--accent-600); }
    .step-flow__item--active:not(:last-child)::before {
      border-left-color: var(--accent-800); }
    .step-flow__item--active:not(:last-child)::after {
      border-left-color: var(--accent-800); }
  .step-flow__explanation {
    font-size: 0.85rem; }
  /*選択一覧*/
  .select-list {
    grid-template-columns: repeat(3, calc(33.3% - 0.5rem));
    gap: 0.75rem; }
    .select-list__item:nth-child(n+3) {
      display: block; }
    .select-list__item:nth-child(n+4) {
      display: none; }
  /*フリーワード検索*/
  .word-search {
    max-width: 30rem; }
  .bottom-sheet .word-search {
    max-width: unset; }
  /* フローティングアクションボタン（FAB） */
  .fab {
    position: unset;
    transform: scale(1); }
  .input-date--sm .input-type-date {
    width: 6.8rem !important; } }

@media (min-width: 1200px) {
  .common-header {
    height: 6.2rem; }
  .sticky-top {
    top: 8.95rem; }
    .sticky-top--1st {
      top: 6.2rem; }
  .tab-group--main {
    top: 6.2rem; }
  /*イメージビューワー*/
  .image-viewer__content {
    min-width: 25rem; } }

@media (min-width: 1400px) {
  .common-header {
    height: 6.2rem; }
  .sticky-top {
    top: 8.95rem; }
    .sticky-top--1st {
      top: 6.2rem; }
  .tab-group--main {
    top: 6.2rem; } }

body.is-app input,
body.is-app textarea,
body.is-app select {
  /* iOS safariで入力項目にフォーカスを当てたとき、ズームさせないためのおまじない */
  font-size: 16px; }

input,
textarea,
select {
  /* iOS safariだとドロップダウンの文字色が青色になるので、文字色を明示的に指定 */
  color: var(--grey-900); }
