@charset "UTF-8";
/* ==========================================================================
   Foundation
   ========================================================================== */
/* Document
 * ========================================================================== */
/**
 * 1. Add border box sizing in all browsers (opinionated).
 * 2. Backgrounds do not repeat by default (opinionated).
 */
*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  background-repeat: no-repeat; /* 2 */
}

/**
 * 1. Add text decoration inheritance in all browsers (opinionated).
 * 2. Add vertical alignment inheritance in all browsers (opinionated).
 */
::before,
::after {
  text-decoration: inherit; /* 1 */
  vertical-align: inherit; /* 2 */
}

/**
 * 1. Use the default cursor in all browsers (opinionated).
 * 2. Change the line height in all browsers (opinionated).
 * 3. Breaks words to prevent overflow in all browsers (opinionated).
 * 4. Use a 4-space tab width in all browsers (opinionated).
 * 5. Remove the grey highlight on links in iOS (opinionated).
 * 6. Prevent adjustments of font size after orientation changes in iOS.
 */
:where(:root) {
  cursor: default; /* 1 */
  line-height: 1.5; /* 2 */
  overflow-wrap: break-word; /* 3 */
  -moz-tab-size: 4; /* 4 */
  -o-tab-size: 4;
     tab-size: 4; /* 4 */
  -webkit-tap-highlight-color: transparent; /* 5 */
  -webkit-text-size-adjust: 100%; /* 6 */
  -moz-text-size-adjust: 100%;
       text-size-adjust: 100%; /* 6 */
}

/* Sections
 * ========================================================================== */
/**
 * Remove the margin in all browsers (opinionated).
 */
:where(body) {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Edge, Firefox, and Safari.
 */
:where(h1) {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
 * ========================================================================== */
/**
 * Remove the margin on nested lists in Chrome, Edge, and Safari.
 */
:where(dl, ol, ul) :where(dl, ol, ul) {
  margin: 0;
}

/**
 * 1. Correct the inheritance of border color in Firefox.
 * 2. Add the correct box sizing in Firefox.
 */
:where(hr) {
  color: inherit; /* 1 */
  height: 0; /* 2 */
}

/**
 * Remove the list style on navigation lists in all browsers (opinionated).
 */
:where(nav) :where(ol, ul) {
  list-style-type: none;
  padding: 0;
}

/**
 * Prevent VoiceOver from ignoring list semantics in Safari (opinionated).
 */
:where(nav li)::before {
  content: "​";
  float: left;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 * 3. Prevent overflow of the container in all browsers (opinionated).
 */
:where(pre) {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
  overflow: auto; /* 3 */
}

/* Text-level semantics
 * ========================================================================== */
/**
 * Add the correct text decoration in Safari.
 */
:where(abbr[title]) {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
:where(b, strong) {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
:where(code, kbd, samp) {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
:where(small) {
  font-size: 80%;
}

/* Embedded content
 * ========================================================================== */
/*
 * Change the alignment on media elements in all browsers (opinionated).
 */
:where(audio, canvas, iframe, img, svg, video) {
  vertical-align: middle;
}

/**
 * Remove the border on iframes in all browsers (opinionated).
 */
:where(iframe) {
  border-style: none;
}

/**
 * Change the fill color to match the text color in all browsers (opinionated).
 */
:where(svg:not([fill])) {
  fill: currentColor;
}

/* Tabular data
 * ========================================================================== */
/**
 * 1. Collapse border spacing in all browsers (opinionated).
 * 2. Correct table border color in Chrome, Edge, and Safari.
 * 3. Remove text indentation from table contents in Chrome, Edge, and Safari.
 */
:where(table) {
  border-collapse: collapse; /* 1 */
  border-color: currentColor; /* 2 */
  text-indent: 0; /* 3 */
}

/* Forms
 * ========================================================================== */
/**
 * Remove the margin on controls in Safari.
 */
:where(button, input, select) {
  margin: 0;
}

/**
 * Correct the inability to style buttons in iOS and Safari.
 */
:where(button, [type=button i], [type=reset i], [type=submit i]) {
  -webkit-appearance: button;
}

/**
 * Change the inconsistent appearance in all browsers (opinionated).
 */
:where(fieldset) {
  border: 1px solid #a0a0a0;
}

/**
 * Add the correct vertical alignment in Chrome, Edge, and Firefox.
 */
:where(progress) {
  vertical-align: baseline;
}

/**
 * 1. Remove the margin in Firefox and Safari.
 * 3. Change the resize direction in all browsers (opinionated).
 */
:where(textarea) {
  margin: 0; /* 1 */
  resize: vertical; /* 3 */
}

/**
 * 1. Correct the odd appearance in Chrome, Edge, and Safari.
 * 2. Correct the outline style in Safari.
 */
:where([type=search i]) {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Safari.
 */
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/**
 * Correct the text style of placeholders in Chrome, Edge, and Safari.
 */
::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54;
}

/**
 * Remove the inner padding in Chrome, Edge, and Safari on macOS.
 */
::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style upload buttons in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
 * ========================================================================== */
/*
 * Add the correct styles in Safari.
 */
:where(dialog) {
  background-color: white;
  border: solid;
  color: black;
  height: -moz-fit-content;
  height: fit-content;
  left: 0;
  margin: auto;
  padding: 1em;
  position: absolute;
  right: 0;
  width: -moz-fit-content;
  width: fit-content;
}

:where(dialog:not([open])) {
  display: none;
}

/*
 * Add the correct display in Safari.
 */
:where(details > summary:first-of-type) {
  display: list-item;
}

/* Accessibility
 * ========================================================================== */
/**
 * Change the cursor on busy elements in all browsers (opinionated).
 */
:where([aria-busy=true i]) {
  cursor: progress;
}

/*
 * Change the cursor on disabled, not-editable, or otherwise
 * inoperable elements in all browsers (opinionated).
 */
:where([aria-disabled=true i], [disabled]) {
  cursor: not-allowed;
}

/*
 * Change the display on visually hidden accessible elements
 * in all browsers (opinionated).
 */
:where([aria-hidden=false i][hidden]) {
  display: initial;
}

:where([aria-hidden=false i][hidden]:not(:focus)) {
  clip: rect(0, 0, 0, 0);
  position: absolute;
}

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

[class^=icon-isn-], [class*=" icon-isn-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "iSaleNote" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-caret-down-solid:before {
  content: "\e900";
}

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

.icon-sort-down-solid:before {
  content: "\e902";
}

.icon-sort-up-solid:before {
  content: "\e903";
}

.icon-chevron-up-solid:before {
  content: "\e910";
}

.icon-chevron-down-solid:before {
  content: "\e901";
}

.icon-up-down-solid:before {
  content: "\e905";
}

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

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

.icon-chevron-left-solid-full:before {
  content: "\e907";
}

.icon-chevron-right-solid-full:before {
  content: "\e90f";
}

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

.icon-circle-exclamation-solid:before {
  content: "\e90a";
}

.icon-circle-check-solid:before {
  content: "\e90b";
}

.icon-circle-info-solid:before {
  content: "\e90c";
}

.icon-circle-plus-solid:before {
  content: "\e90d";
}

.icon-wand-sparkles-solid-full:before {
  content: "\e90e";
}

.icon-isn-link-solid-full:before {
  content: "\ec01";
}

.icon-isn-paperclip-solid-full:before {
  content: "\ec02";
}

:root {
  --color-main: #03314f;
  --color-main-relative: white;
  --color-nav-icon: #333;
}

* {
  margin: 0;
  padding: 0;
}

*[disabled] {
  pointer-events: none;
}

body {
  color: #333;
  font-size: clamp(14px, 1.33vw, 16px);
  font-family: "YakuHanJP_NotoSansJP", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
}

div::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
div::-webkit-scrollbar-track {
  background-color: #f3f3f3;
  border-radius: 5px;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

:where(button, [type=button i], [type=reset i], [type=submit i]) {
  border: none;
  color: #333;
  font-size: clamp(14px, 1.33vw, 16px);
}

/* ==========================================================================
   Layout
   ========================================================================== */
.l-header {
  background-color: #005a5c;
  color: var(--color-main-relative);
  border-bottom: 5px solid #8d8f28;
}
.l-header:has(.--unauth) {
  background: none;
  color: #333;
  border-bottom: none;
}

.l-header__inner {
  padding: 10px;
  display: flex;
  justify-content: flex-end;
}
.l-header__inner.--unauth {
  display: inline-block;
}

.l-sidebar {
  width: 200px;
  height: 100vh;
  position: fixed;
  z-index: 70;
  transition: 0.35s ease-in-out;
  background-color: #f8f8f8;
  display: flex;
  flex-direction: column;
}

.l-sidebar__head {
  flex: 0 0 auto;
}

.l-sidebar__body {
  padding: 0 10px;
  flex: 1 1 auto;
  display: flex; /* 子navを伸ばすためにflex */
  flex-direction: column;
  overflow-y: auto;
  overflow-x: hidden;
}

.l-sidebar__foot {
  padding: 0 10px;
  flex: 0 0 auto;
}

.l-menu-section {
  margin-top: 1.5em;
  margin-bottom: 1.5em;
}

.l-global-nav {
  padding: 0 0.5rem;
  flex: 1 1 auto; /* 縦いっぱいに伸ばす */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 0;
  height: 100%;
}

.l-main {
  min-height: 100vh;
}

.l-body {
  padding: 20px 20px 20px 40px;
}

.l-page-body {
  container-type: inline-size;
  container-name: page-body;
  min-height: calc(100vh - 40px - 50px - 30px);
}

.l-page-section {
  padding: 3.25rem 0;
}

.l-modal {
  display: none;
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 90;
}

.l-modal__back {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}

.l-modal__pane {
  position: absolute;
  padding: 5px 0;
  min-width: max(30%, min(90%, 450px));
  max-width: 90%;
  max-height: 80vh;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #ffffff;
  border-radius: 10px;
  display: inline-block;
}
.l-modal__pane.--zoom {
  min-width: max(75%, min(90%, 450px));
}

.l-modal__pane-inner {
  padding: 0.5rem 2rem 1rem;
  width: 100%;
  max-height: calc(80vh - 10px);
  overflow-y: scroll;
}

.l-modal__close {
  position: relative;
  cursor: pointer;
}
.l-modal__close::after {
  position: absolute;
  right: -0.75rem;
  display: inline-block;
  font-family: "components";
  font-size: 1.5rem;
  content: "\e906";
}

.l-modal__contents {
  padding-top: 1.5rem;
}

/* ==========================================================================
   Object
   ========================================================================== */
/* Component
   ----------------------------------------------------------------- */
.c-nav.--child {
  padding-left: 1.5rem;
  max-height: 0;
  overflow: hidden;
}

.c-nav__item {
  border: 1px dashed var(--color-nav-icon);
  border-width: 0 0 1px 0;
  color: var(--color-nav-icon);
}
.c-nav__item a {
  padding: 0.5em 0;
  display: block;
  width: 100%;
  position: relative;
}
.c-nav__item a:has(.--child)::after {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  font-family: "components";
  font-size: 1em;
  content: "\e90f";
  z-index: -1;
}
.c-nav__item.--active .c-nav {
  max-height: 100%;
}

.c-nav-item__icon {
  display: inline-block;
  vertical-align: middle;
  width: 2.2rem;
}
.c-nav-item__icon::after {
  position: relative;
  left: 50%;
  transform: translate(-50%, 0);
  display: inline-block;
  font-size: 1.8rem;
  color: var(--color-nav-icon);
}

.c-nav-item__text {
  display: inline-block;
  vertical-align: middle;
  line-height: 1.1;
}

.c-form {
  display: flex;
  flex-direction: column;
  gap: 1.5em 0;
  margin-bottom: 1.5em;
}
.c-form.--vertical .c-form-item {
  flex-direction: column;
}
.c-form.--horizon .c-form-item {
  flex-direction: row;
}
@container page-body (max-width: 375px) {
  .c-form.--horizon .c-form-item {
    flex-direction: column;
  }
}

.c-form-item {
  display: flex;
  gap: 0 0.5em;
}
.c-form-item:has(.c-select__list.--active) {
  z-index: 50;
}

.c-form-item__label {
  padding-right: 0.5em;
  flex: 0 1 max(20%, 150px);
  font-weight: bold;
  font-size: 1.1em;
}
.c-form-item__label.--req::after {
  content: "(必須)";
  color: rgb(190, 28, 28);
  font-size: 0.8em;
  font-weight: normal;
}
fieldset .c-form-item__label.--req::after {
  margin-left: 0.25em;
}
.c-form-item__label:has(+ .c-form-item__element .c-input__item:has([type=text i], [type=password i], [type=email i], [type=tel i])) {
  padding-top: 1.025em;
  padding-bottom: 1.025em;
}

.c-form-item__element {
  flex: 2 0 calc(100% - max(20%, 150px));
  container-type: inline-size;
  container-name: input-item;
}
.c-form-item__element:not(:has([class*=c-input__], [type=text])) {
  padding-left: 1em;
}

.c-form-item__help {
  font-size: 0.85em;
  font-weight: normal;
  color: rgb(91.8, 91.8, 91.8);
}

input[type=text],
input[type=password],
input[type=email],
input[type=tel] {
  width: 100%;
  padding: 0.8em 0.6em;
  border-radius: 4px;
  border: 1px solid #afafaf;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

textarea {
  display: block;
  width: 100%;
  height: 8em;
  padding: 0.8em 0.6em;
  border-radius: 4px;
  border: 1px solid #afafaf;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  resize: vertical;
}
textarea.--half {
  height: 4em;
}

fieldset {
  border: none;
}

:not(.c-group) > [class*=c-input__]:has(+ [class*=c-input__]:not(:empty)) {
  margin-bottom: 0.7em;
}

[class*=c-input__].--small {
  width: 30%;
}
[class*=c-input__].--medium {
  width: 55%;
}
[class*=c-input__].--large {
  width: 100%;
}
@container input-item (max-width: 375px) {
  [class*=c-input__].--small {
    width: 100%;
  }
  [class*=c-input__].--medium {
    width: 100%;
  }
  [class*=c-input__].--large {
    width: 100%;
  }
}

.c-input__select {
  position: relative;
  min-width: 100px;
}
.c-input__select:before {
  margin: auto;
  position: absolute;
  top: 50%;
  right: 0.7em;
  transform: translate(0, -50%);
  pointer-events: none;
  display: inline-block;
  font-family: "components";
  font-size: 0.8rem;
  content: "\e900";
}
.c-input__select select {
  padding: 0.8em 2em 0.8em 0.6em;
  width: 100%;
  border-radius: 4px;
  background-color: #fff;
  box-shadow: 0 0 0 1px #afafaf inset;
  border: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
}

option[value=""] {
  color: rgb(91.8, 91.8, 91.8);
}

.c-input__check input[type=checkbox] {
  display: none;
}
.c-input__check input[type=checkbox]:checked + label:after {
  opacity: 1;
}
.c-input__check input[type=checkbox]:disabled + label {
  opacity: 0.5;
}
.c-input__check input[type=checkbox]:disabled + label:before {
  border-color: rgba(175, 175, 175, 0.5);
}
.c-input__check label {
  position: relative;
  padding-left: 1.5em;
  cursor: pointer;
}
.c-input__check label:before, .c-input__check label:after {
  content: "";
  position: absolute;
  display: block;
}
.c-input__check label:before {
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  width: 1em;
  height: 1em;
  border: 1px solid #afafaf;
}
.c-input__check label:after {
  top: 0.125em;
  left: 0.3em;
  width: 0.4em;
  height: 0.8em;
  border-bottom: 2px solid #333;
  border-right: 2px solid #333;
  transform: rotate(45deg);
  opacity: 0;
}

.c-input__radio input[type=radio] {
  display: none;
}
.c-input__radio input[type=radio]:checked + label:after {
  opacity: 1;
}
.c-input__radio label {
  position: relative;
  padding-left: 1.5em;
  cursor: pointer;
}
.c-input__radio label:before, .c-input__radio label:after {
  content: "";
  position: absolute;
  display: block;
  border-radius: 50%;
  transform: translateY(-50%);
  top: 50%;
}
.c-input__radio label:before {
  background-color: #fff;
  border: 1px solid #afafaf;
  width: 1em;
  height: 1em;
}
.c-input__radio label:after {
  background-color: #333;
  width: 0.6em;
  height: 0.6em;
  left: 0.2em;
  opacity: 0;
}

.c-input__label__icon {
  color: var(--color-main);
  padding-left: 1em;
  font-weight: bold;
}

.c-input__file {
  display: flex;
  gap: 0 1em;
  align-items: flex-start;
}

.c-file__select {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  flex: 0 0 max(50%, 350px);
}

@container input-item (max-width: 500px) {
  .c-input__file {
    gap: 1em 0;
    flex-direction: column;
    align-items: stretch;
  }
  .c-file__select {
    width: 100%;
  }
}
.c-file__input label {
  position: relative;
  display: block;
  border: 2px dashed #ccc;
  padding: 0.375rem 0.75rem;
  height: 100px;
  color: #888;
}
.c-file__input label::before {
  position: absolute;
  content: "ここにファイルをドラッグ&ドロップ";
  top: 50%;
  transform: translate(0, -50%);
}
.c-file__input input[type=file] {
  position: absolute;
  opacity: 0;
  width: calc(100% - 1.5rem);
  height: calc(100% - 0.75rem);
}

.c-file__select-button {
  text-align: right;
}

.c-file__dialog {
  padding: 0.5em 1.5em;
  background-color: #eee;
  border-radius: 1.5em;
  font-size: 0.85em;
  display: inline-block;
  position: relative;
  transition: 0.3s;
}
.c-file__dialog:not(:disabled) {
  cursor: pointer;
}

.c-variation__button {
  padding: 0.5em 1.5em;
  background-color: #eee;
  border-radius: 1.5em;
  font-size: 0.85em;
  display: inline-block;
  position: relative;
  transition: 0.3s;
  margin-top: 0.4em;
}
.c-variation__button:not(:disabled) {
  cursor: pointer;
}

.c-file__preview {
  overflow-y: auto;
  overflow-x: hidden;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  flex-grow: 2;
}
.c-file__preview.--image {
  max-height: 300px;
}
.c-file__preview.--file {
  max-height: 150px;
  flex-direction: row;
}

.c-file-preview__item.--image {
  width: 150px;
}
.c-file-preview__item.--image img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  max-height: 100px;
}
.c-file-preview__item.--file {
  padding-right: 2em;
}

.c-file__reset {
  position: relative;
  cursor: pointer;
}
.c-file__reset::after {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  display: inline-block;
  font-family: "components";
  content: "\e906";
  margin-left: 1em;
}

.c-input__auto {
  display: flex;
  gap: 0 0.5em;
  flex-wrap: nowrap;
  align-items: center;
}

.c-auto__input {
  position: relative;
  min-width: 100px;
  flex: 1;
}
.c-auto__input:before {
  margin: auto;
  position: absolute;
  top: 50%;
  right: 0.5em;
  transform: translate(0, -50%);
  pointer-events: none;
  display: inline-block;
  font-family: "components";
  font-size: 1.5em;
  color: #afafaf;
  content: "\e90e";
}

.c-auto__clear {
  text-decoration: underline;
  font-size: 0.9em;
}

.c-select__over {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.c-select__list {
  display: none;
  padding: 0.5em 0 0.5em 0.5em;
  border: 1px solid #afafaf;
  border-radius: 10px;
  background-color: #fff;
  width: 100%;
  position: absolute;
  z-index: 1;
}
.c-select__list.--active {
  display: block;
}

.c-select__list-inner {
  position: relative;
  max-height: 7em;
  overflow-y: scroll;
}

.c-select__selected {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25em;
}

.c-tag {
  position: relative;
  padding: 0.25em 2em 0.25em 0.8em;
  background-color: #eee;
  border-radius: 5px;
  font-size: 0.85em;
  display: inline-block;
}
.c-tag .c-file__reset::after {
  top: calc(50% + 0.1em);
  margin-left: 0.5em;
}

.c-select__radio input[type=radio] {
  display: none;
}
.c-select__radio label {
  cursor: pointer;
  display: inline-block;
  margin: 0.2em 0.2em 0.2em 0;
  width: calc(100% - 0.2em);
}
.c-select__radio label:hover {
  background-color: rgba(238, 238, 238, 0.5);
}

.c-input__toggle {
  position: relative;
  width: 3.6em;
  height: 1.8em;
}

.c-toggle__input {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.c-toggle__label {
  width: 3.6em;
  height: 1.8em;
  background: #ced4da;
  border: 2px solid #ced4da;
  position: relative;
  display: inline-block;
  border-radius: 40px;
  box-sizing: border-box;
}
.c-toggle__label::after {
  content: "";
  position: absolute;
  width: calc(1.8em - 6px);
  height: calc(1.8em - 6px);
  border-radius: 100%;
  left: 1px;
  top: 1px;
  background: #fff;
  transition: 0.4s;
}

.c-toggle__input:checked + .c-toggle__label {
  border: 3px solid #777;
  background: #777;
}
.c-toggle__input:checked + .c-toggle__label::after {
  left: 1.8em;
  top: 0;
}

.c-input__variation {
  display: flex;
  gap: 1em;
  align-items: end;
}

.c-variation__input {
  flex: 1;
}

.c-variation__item {
  display: flex;
  gap: 0 0.5em;
}

.c-variation__deleted {
  cursor: pointer;
}
.c-variation__deleted::after {
  position: relative;
  transform: translate(0, 25%);
  display: inline-block;
  font-family: "components";
  content: "\e906";
  font-size: 1.2em;
}

.c-variation__added {
  background-color: transparent;
  cursor: pointer;
}
.c-variation__added::after {
  font-family: "components";
  content: "\e90d";
  font-size: 2em;
  color: var(--color-main);
}

.js-pulldowncheck-list {
  display: none;
}

.js-pulldowncheck-list.--active {
  display: block;
}

.c-buttons {
  margin-left: -20px;
  margin-right: -20px;
  padding: 1em 20px;
  display: flex;
  justify-content: center;
  gap: 0 1em;
}
.c-buttons .c-btn {
  flex-grow: 1;
}
.c-buttons.--between {
  justify-content: space-between;
  align-items: flex-end;
}
@container page-body (max-width: 375px) {
  .c-buttons {
    flex-direction: column;
    row-gap: 0.5em;
  }
  .c-buttons .c-btn {
    max-width: 100%;
  }
  .c-buttons.--between {
    align-items: normal;
  }
}

.c-btn {
  padding: max(1em + (1rem - 1em) * 0.2, 0.4em);
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: #ccc;
  border-radius: 2em;
  min-width: 200px;
  position: relative;
  transition: 0.3s;
}
.c-btn.--outline {
  border: 2px solid #ccc;
  background-color: #fff;
}
.c-btn.--proceed {
  background-color: var(--color-main);
  color: var(--color-main-relative);
}
.c-btn.--proceed.--outline {
  border-color: var(--color-main);
  color: var(--color-main);
  background-color: #fff;
}
.c-btn.--full {
  width: 100%;
  height: 100%;
  min-width: auto;
}
.c-btn:hover {
  filter: brightness(1.1);
}
.c-btn[disabled] {
  background-color: #d5d5d5;
}

.c-action {
  padding: 0.5em 2.3em 0.5em 1.5em;
  background-color: #ccc;
  border-radius: 1.5em;
  font-size: 0.85em;
  display: inline-block;
  position: relative;
  transition: 0.3s;
  cursor: pointer;
  width: -moz-max-content;
  width: max-content;
}
.c-action::after {
  position: absolute;
  right: 0.8em;
  transform: translate(0, 0.1em);
  font-family: "components";
  font-size: 1em;
  content: "\e90f";
}
.c-action.--outline {
  border: 2px solid #ccc;
  background-color: #fff;
}
.c-action.--proceed {
  background-color: var(--color-main);
  color: var(--color-main-relative);
}
.c-action.--proceed.--outline {
  border-color: var(--color-main);
  color: var(--color-main);
  background-color: #fff;
}

.c-action[disabled] {
  background-color: gray;
}

.c-warning {
  color: rgb(190, 28, 28);
}

.c-message {
  padding: 0 1em;
  font-size: 1.2em;
}

.c-heading {
  font-weight: bold;
}

.c-note {
  font-size: 0.85em;
  font-weight: normal;
  color: rgb(91.8, 91.8, 91.8);
}

.c-link-text {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.c-link-download::after {
  margin-left: 0.5rem;
  display: inline-block;
  font-family: "components";
  font-size: 1.1em;
  content: "\e909";
}

.c-bullet-list {
  padding-left: 1.2em;
}

#loader {
  display: table;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fff;
  opacity: 0.3;
  z-index: 1500;
}

.c-loader__msg {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
}

.c-loader__spinner::after {
  display: inline-block;
  font-family: "components";
  font-size: 1.5em;
  content: "\e904";
  animation: 3s linear infinite rotation;
}

@keyframes rotation {
  0% {
    transform: rotateZ(0);
  }
  100% {
    transform: rotateZ(360deg);
  }
}
.c-logo {
  padding: 5px;
}

.c-section {
  --section-margin: 2.25rem;
  margin: var(--section-margin) 0;
}
.c-section.--bottom-3x {
  margin-bottom: calc(var(--section-margin) * 3);
}
.c-section.--bottom-4x {
  margin-bottom: calc(var(--section-margin) * 4);
}

.c-section__title {
  margin-bottom: 0.5em;
  border-bottom: 1px dashed #afafaf;
  font-size: 1.32em;
  display: flex;
  align-items: center;
  padding: 0.3em 0;
}
.c-section__title::before {
  display: inline-block;
  width: 8px;
  height: 1.5em;
  margin-right: 0.5em;
  background-color: var(--color-main);
  content: "";
}

.c-section__label {
  padding-left: 0.5em;
  margin-bottom: 0.5em;
  font-size: 1.2em;
  border-left: 6px double var(--color-main);
}

.c-search-pane {
  padding: 0.5rem;
  background-color: #fff;
  width: max(50%, 500px);
}
.c-search-pane.--large {
  width: max(80%, 1000px);
}
@container page-body (max-width: 500px) {
  .c-search-pane {
    width: 100%;
  }
}

.c-list-pane__head {
  margin-bottom: 1.5rem;
}

.c-list-pane__body {
  margin: 1.5rem 0;
}

.c-list-pane__foot {
  margin-top: 1.5rem;
}

.c-actions-pane.--follow {
  position: sticky;
  z-index: 2;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.7);
}

.c-breadcrumb {
  display: flex;
  gap: 0 1em;
  font-size: 0.875em;
}

.c-breadcrumb__item:not(:last-child):after {
  margin-left: 0.5rem;
  display: inline-block;
  font-family: "components";
  content: "\e90f";
}
.c-breadcrumb__item a {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.c-title-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1em;
  margin-bottom: 0.5em;
  border-bottom: 1px dashed #afafaf;
  padding: 0.3em 0;
}

.c-title-group__title {
  font-size: 1.32em;
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: auto;
  align-self: center;
}

.c-title-group__ {
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: auto;
  font-size: 0.8em;
}

.c-title-group__actions {
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: auto;
  display: flex;
  gap: 0.5em;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.c-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5em 1.5em;
}
.c-group.--even {
  flex-wrap: nowrap;
}
.c-group.--even > .c-group__item {
  flex: 1;
}
.c-group.--period {
  -moz-column-gap: 2em;
       column-gap: 2em;
}
.c-group.--period > .c-group__item:not(:empty) + .c-group__item::before {
  content: "~";
}
.c-group.--period > .c-group__item:empty + .c-group__item:not(:empty)::before {
  content: "~";
}
.c-group.--separator {
  -moz-column-gap: 2em;
       column-gap: 2em;
}
.c-group.--separator > .c-group__item:not(:empty) + .c-group__item::before {
  content: "/";
}
.c-group.--separator > .c-group__item:empty + .c-group__item:not(:empty)::before {
  content: "/";
}
.c-group.--suppl > .c-group__item:not(:empty) + .c-group__item::before {
  content: ":";
}
.c-group.--suppl > .c-group__item:empty + .c-group__item:not(:empty)::before {
  content: ":";
}
.c-group.--flow {
  -moz-column-gap: 2em;
       column-gap: 2em;
}
.c-group.--flow > .c-group__item:not(:empty) + .c-group__item::before {
  content: ">";
}
.c-group.--flow > .c-group__item:empty + .c-group__item:not(:empty)::before {
  content: ">";
}
@container input-item (max-width: 200px) {
  .c-group {
    flex-direction: column;
  }
}

.c-group__item {
  position: relative;
}

.c-group__item:not(:empty) + .c-group__item:not(:empty)::before,
.c-group__item:not(:empty) + .c-group__item:empty::before,
.c-group__item:empty + .c-group__item:not(:empty)::before {
  position: absolute;
  top: 50%;
  left: -1.75em;
  transform: translate(0, -50%);
  margin-left: 0.5em;
  margin-right: 0.5em;
}

.c-thumbnail {
  max-height: 100px;
  position: relative;
}
.c-thumbnail.--zoom img {
  transition: filter 0.3s ease;
}
.c-thumbnail.--zoom::after {
  font-family: "components";
  content: "\e914";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 3rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.c-thumbnail.--zoom:hover img {
  filter: brightness(0.7);
}
.c-thumbnail.--zoom:hover::after {
  opacity: 1;
}

.c-list {
  width: 100%;
}
.c-list.--grid {
  display: grid;
  border-collapse: collapse;
  font-family: sans-serif;
}
.c-list.--fixed {
  table-layout: fixed;
}
.c-list.--follow thead {
  position: sticky;
  z-index: 1;
  top: 0;
}
.c-list th {
  padding: 0.625em 1em;
  background-color: #c5c5c5;
  text-align: left;
}
.c-list tr {
  border-width: 0 0 1px 0;
  border-style: solid;
  border-color: #333;
}
.c-list tr:hover {
  background-color: rgb(249.3, 249.4, 244.25);
}
.c-list tr.is-invalid {
  background-color: #efefef;
}
.c-list tr:has(+ .--child) {
  border-style: dashed;
}
.c-list td {
  padding: 0.625em 1em;
  max-width: 100%;
  word-break: break-word;
}
.c-list td.abbreviation {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100px;
}
.c-list tbody {
  background-color: #fff;
}
.c-list .actions {
  width: 0;
  white-space: nowrap;
}
.c-list .actions .c-btn:not(.c-btn-group > .c-btn) {
  min-width: auto;
  padding: 0.6em;
}
@media screen and (max-width: 768px) {
  .c-list thead {
    display: none;
  }
  .c-list td {
    display: block;
    padding-left: calc(1em + max(20%, 125px));
  }
  .c-list td::before {
    content: attr(data-label);
    float: left;
    font-weight: bold;
    margin-left: min(-20%, -125px);
    width: max(18%, 115px);
  }
  .c-list .actions {
    padding-left: 1em;
  }
}

.c-list__item {
  position: relative;
}
.c-list__item.--link {
  cursor: pointer;
}
.c-list__item.--link::after {
  position: absolute;
  top: 50%;
  right: 0.5em;
  transform: translate(0, -50%);
  font-family: "components";
  font-size: 1em;
  content: "\e90f";
}
.c-list__item.--link td:last-child {
  padding-right: 1.5em;
}

.c-list__header,
.c-list__row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr)); /* カラム幅調整 */
  padding: 0.625em 0;
  border-bottom: 1px solid #afafaf;
}

.c-list__header {
  background-color: #c5c5c5;
  font-weight: bold;
}

.c-list__row {
  text-decoration: none;
  color: inherit;
  transition: background 0.2s;
}

.c-list__item {
  padding: 0 0.5em;
}

.c-list__row:hover {
  background-color: #f7f7f7;
}

@media screen and (max-width: 768px) {
  .c-list__header {
    display: none;
  }
}
.c-list-wrap {
  overflow: auto;
}

.c-list__fixed {
  position: sticky;
  background: none;
}
.c-list__fixed::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
}
.c-list__fixed.--col {
  left: 0;
}

.c-list__sort {
  position: relative;
  cursor: pointer;
}
.c-list__sort::after {
  position: absolute;
  right: 0;
  transform: translate(-50%, 0);
  display: inline-block;
  font-family: "components";
  content: "\e908";
  font-size: 1rem;
  color: #878787;
  fill: currentColor;
}
.c-list__sort.--asc::after {
  color: #040000;
  content: "\e903";
}
.c-list__sort.--desc::after {
  color: #040000;
  content: "\e902";
}

.c-list-bar > * {
  margin-bottom: 0.7em;
}
.c-list-bar > *:last-child {
  margin-bottom: 0;
}

.c-list-bar__item {
  padding: 1em;
  border: 1px solid #afafaf;
  border-radius: 5px;
}
.c-list-bar__item.--desabled {
  background-color: #e9ecef;
}
.c-list-bar__item:has(.c-list-bar__link) {
  padding: 0;
}
.c-list-bar__item:has(.c-list-bar__info) {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@container page-body (max-width: 375px) {
  .c-list-bar__item:has(.c-list-bar__info) {
    flex-direction: column;
  }
}

.c-list-bar__link {
  display: block;
  padding: 0.7em 2em 0.7em 0.5em;
  position: relative;
  transition: 0.3s;
}
.c-list-bar__link::after {
  display: inline-block;
  font-family: "components";
  content: "\e90f";
  position: absolute;
  top: 50%;
  right: 0.5em;
  translate: 0 -50%;
}
.c-list-bar__link:hover {
  opacity: 0.7;
}

.c-list-bar__actions {
  flex-shrink: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em;
  justify-content: end;
  align-items: center;
}
@container page-body (max-width: 375px) {
  .c-list-bar__actions {
    justify-content: flex-end;
  }
}

.c-list-bar__handle {
  cursor: move;
}
.c-list-bar__handle::after {
  font-family: "components";
  content: "\e905";
  top: 50%;
  right: 0.5em;
  translate: 0 -50%;
  font-size: 1.3em;
}

.c-item:has(+ .c-item) {
  margin-bottom: 0.5rem;
}

.c-item__column {
  display: flex;
  flex-flow: row wrap;
  align-items: baseline;
  gap: 0.5em 2em;
}

.c-item__element {
  line-height: 1.25;
}
.c-item__element.--main {
  font-size: 1.4em;
}
.c-item__element.--tips {
  font-size: 0.875em;
  color: rgb(91.8, 91.8, 91.8);
}

.c-pagination {
  display: flex;
  justify-content: flex-end;
  gap: 0 0.2em;
}

.c-pagination__item {
  border-radius: 5px;
}
.c-pagination__item.--active {
  background-color: var(--color-main);
}
.c-pagination__item.--active a {
  color: var(--color-main-relative);
}
.c-pagination__item:hover:not(.--active, .--disable) {
  background-color: #c5c5c5;
}
.c-pagination__item:not(:has(a)) {
  padding: 0.5em;
}
.c-pagination__item a {
  padding: 0.5em;
  display: inline-block;
}

.c-dropdown {
  padding: 0.3em;
  background-color: #fff;
  color: #333;
  border: 1px solid #afafaf;
}

.c-dropdown__group:not(:last-child) {
  border-bottom: 1px solid #afafaf;
}

.c-dropdown__item {
  display: block;
  width: 100%;
  padding: 0.4em 0.5em;
  white-space: nowrap;
}
.c-dropdown__item:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.c-panel {
  padding: 0.7em 0.5em;
  background-color: #fff;
}

.c-panel__head {
  margin-top: 0.7em;
  padding-bottom: 0.7em;
  border-bottom: 1px solid #afafaf;
}

.c-panel__body {
  margin: 0.7em 0;
}

.c-panel__foot {
  margin-bottom: 0.7em;
  padding-top: 0.7em;
  border-top: 1px solid #afafaf;
}

.c-alert {
  padding: 0.7em 1em 0.7em 2.5em;
  margin: 1em 0;
  background-color: color-mix(in srgb, #afafaf 20%, transparent);
  border-radius: 0.25em;
  display: inline-block;
  position: relative;
  min-width: 50%;
  display: none;
}
.c-alert:not(:has(p:empty)) {
  display: block;
}
.c-alert:before {
  position: absolute;
  left: 0.5em;
  display: inline-block;
  font-family: "components";
  font-size: 1.3em;
  transform: translate(0, -0.2em);
}
.c-alert.--success:before {
  content: "\e90b";
}
.c-alert.--warning {
  color: rgb(190, 28, 28);
  background-color: rgb(248.5, 232.3, 232.3);
}
.c-alert.--warning:before {
  content: "\e90a";
}
.c-alert.--info:before {
  content: "\e90c";
}
.c-alert p {
  margin: 0;
  padding: 0 0 0 0.7em;
  border-left: 1px solid #fff;
}

.c-popup {
  position: fixed;
  padding: 1em;
  min-width: 25vw;
  max-width: 50vw;
  max-height: 50vh;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.4);
  display: none;
  text-align: center;
  color: #fff;
}
@media only screen and (max-width: 768px) {
  .c-popup {
    max-height: 90%;
  }
}

.progress {
  display: flex;
  height: 0.75rem;
  overflow: hidden;
  font-size: 0.75rem;
  background-color: #e9ecef;
  border-radius: 0.25rem;
}

.progress-bar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  background-color: #03314f;
  transition: width 0.6s ease;
}

@media (prefers-reduced-motion: reduce) {
  .progress-bar {
    transition: none;
  }
}
.progress-bar-striped {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: 1rem 1rem;
}

.progress-bar-animated {
  animation: 1s linear infinite progress-bar-stripes;
}

@media (prefers-reduced-motion: reduce) {
  .progress-bar-animated {
    animation: none;
  }
}
.c-badge {
  padding: 0.3em 0.8em;
  background-color: #333;
  font-size: 0.85em;
  display: inline-block;
  color: #fff;
}
.c-badge.--invert {
  border: 1px solid #333;
  background-color: #fff;
  color: #333;
}

.c-readmore {
  position: relative;
  padding: 0 0 30px;
}

.c-readmore__label {
  position: absolute;
  display: table;
  right: 0.5em;
  bottom: 0;
  margin: 0 auto;
  cursor: pointer;
  z-index: 1;
}
.c-readmore__label::before {
  content: attr(data-open-label);
  transition: 0.2s;
}
.c-readmore__label::after {
  display: inline-block;
  font-family: "components";
  content: "\e901";
  padding: 0 0.5em;
  transform: translate(0, 0.15em);
  transition: rotate 0.5s ease-in-out;
}

.c-readmore__switch {
  display: none;
}
.c-readmore__switch:checked ~ .c-readmore__label::before {
  content: attr(data-close-label);
}
.c-readmore__switch:checked ~ .c-readmore__label::after {
  rotate: 180deg;
  transform: translate(0, -0.25em);
}
.c-readmore__switch:checked ~ .c-readmore__content {
  height: auto;
  height: calc-size(auto, size);
}
.c-readmore__switch:checked ~ .c-readmore__content::before {
  display: none;
}

.c-readmore__content {
  --h: 200px;
  position: relative;
  height: var(--h);
  overflow: hidden;
  transition: height 500ms ease;
}
.c-readmore__content::before {
  position: absolute;
  display: block;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 75px;
  background: linear-gradient(rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 50%, #fff 100%);
  z-index: 1;
}

.c-card {
  border: 1px solid #afafaf;
  border-radius: 10px;
  overflow: hidden;
  padding: 0.5em;
}
.c-card.--no-frame {
  border: none;
  background-color: rgb(249.3, 249.4, 244.25);
}

.c-card__header {
  padding: 0.5rem;
}

.c-card__body {
  padding: 0.5rem;
  flex-grow: 1;
}

.c-card__footer {
  padding: 0.5rem;
}

.c-card__title {
  font-size: 1.32em;
  padding: 0.3em 0;
  border-bottom: 1px dashed #afafaf;
}

.c-tooltip {
  position: relative;
  display: inline-block;
  cursor: pointer;
}
.c-tooltip::after {
  content: attr(data-tooltip);
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translateY(-50%);
  margin-left: 0.3em;
  background-color: #333;
  color: #fff;
  padding: 6px 10px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
  font-size: 0.9em;
  z-index: 10;
}

.c-tree {
  margin: 0.7em 0;
}
.c-tree .c-tree {
  padding-left: 2em;
}

.c-tab {
  display: flex;
  flex-wrap: wrap;
}

.c-tab__label {
  flex: 1 1;
  order: -1;
  min-width: 70px;
  padding: 0.7em 1em 0.5em;
  border-bottom: 1px solid #f0f0f0;
  border-radius: 0;
  background-color: #e9ecef;
  color: #535353;
  font-size: 0.9em;
  text-align: center;
  cursor: pointer;
}
.c-tab__label:hover {
  opacity: 0.8;
}
.c-tab__label:has(:checked) {
  background-color: #fff;
  border-color: #03314f #f0f0f0 #fff;
  border-style: solid;
  border-width: 4px 1px 1px;
  border-radius: 5px;
  color: #333;
}
.c-tab__label:has(:checked) + .c-tab__content {
  display: block;
}

.c-tab__switch {
  display: none;
}

.c-tab__content {
  display: none;
  width: 100%;
  padding: 1.2em 1em;
  background-color: #fff;
}

details.c-accordion {
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 0.5em;
  transition: all 0.3s ease;
}
details.c-accordion[open] {
  background: #f9f9f9;
  border: none;
}
details.c-accordion[open] summary.c-accordion__heading::before {
  content: "\e910";
}

summary.c-accordion__heading {
  cursor: pointer;
  font-weight: bold;
  list-style: none;
  position: relative;
  padding-left: 1.5em;
}
summary.c-accordion__heading::-webkit-details-marker {
  display: none;
}
summary.c-accordion__heading::marker {
  content: "";
}
summary.c-accordion__heading::before {
  font-family: "components";
  content: "\e901";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
  transition: transform 0.2s;
}

.c-accordion__content {
  padding: 1em;
}

.c-reflect-arrow {
  display: inline-block;
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 16px solid #333;
  margin-bottom: 0.6em;
}

/* Project
   ----------------------------------------------------------------- */
.p-logo__symbol {
  width: 33px;
}

.p-logo__text {
  width: 148px;
}

.p-icon::after {
  font-family: "iSaleNote";
}
.p-icon.--external-link::after {
  font-family: "components";
  content: "\e913";
}

.p-main {
  margin-left: 200px;
}

.p-navigation.--collapse + .p-main {
  margin-left: 70px;
}

.p-header__logo {
  max-width: 250px;
}

.p-userinfo {
  display: flex;
  gap: 0 0.3em;
  padding-right: 1.5rem;
  position: relative;
}

.p-userinfo__icon {
  width: 35px;
  display: grid;
  place-items: center;
}

.p-userinfo__name {
  font-size: 1.1rem;
  line-height: 1.2;
  position: relative;
  display: flex;
  flex-direction: column;
  align-self: center;
  max-width: 300px;
  cursor: pointer;
}
.p-userinfo__name::after {
  position: absolute;
  top: 50%;
  bottom: 0;
  right: -1.3em;
  transform: translate(0, -50%);
  font-family: "components";
  font-size: 1em;
  content: "\e901";
}

.p-userinfo__group {
  font-size: 0.9rem;
}
.p-userinfo__group .c-group {
  flex-wrap: nowrap;
}

.p-userinfo__nav {
  display: none;
  position: absolute;
  top: 40px;
  right: 0;
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.35);
}
.p-userinfo__nav.--active {
  display: block;
}

.p-site__name {
  text-align: center;
  line-height: 1;
  padding-bottom: 1em;
}
.p-site__name::before, .p-site__name::after {
  content: "-";
}

.p-login-pane {
  margin: 3.25rem auto;
  width: 50%;
  min-width: 500px;
  display: flex;
  align-items: center;
}

.p-login__logo {
  padding: 3em 3em 3em 0;
  text-align: center;
  width: calc(50% - 1.5em);
}

.p-login__action {
  border-left: 1px solid #afafaf;
  padding: 1.5em 0 1.5em 3em;
  flex-grow: 1;
}

.p-login__operate {
  margin-top: 2em;
  text-align: center;
}

@media screen and (max-width: 720px) {
  .p-login-pane {
    display: block;
    min-width: 100%;
    padding-right: 20px;
  }
  .p-login__logo {
    margin: auto;
    padding: 3em 0;
    width: 100%;
    max-width: 500px;
  }
  .p-login__action {
    border-left: none;
    padding: 0;
  }
}
.p-error-pane {
  margin: 3.25rem auto;
  width: 50%;
  min-width: 500px;
  display: flex;
  align-items: center;
}

.p-error__logo {
  padding: 1.5em 3em 1.5em 0;
  flex: 1;
  text-align: center;
  width: calc(50% - 1.5em);
}

.p-error__content {
  border-left: 1px solid #afafaf;
  padding: 1.5em 0 1.5em 3em;
  flex: 1;
}

.p-error__code {
  font-size: 3.3em;
  font-weight: bold;
  line-height: 1;
}

.p-error__title {
  font-size: 1.8em;
  font-weight: bold;
}

@media screen and (max-width: 720px) {
  .p-error-pane {
    display: block;
    min-width: 100%;
    padding-right: 20px;
  }
  .p-error__logo {
    margin: auto;
    padding: 1.5em 0 3em 0;
    width: 100%;
    max-width: 350px;
  }
  .p-error__content {
    border-left: none;
    padding: 0;
    text-align: center;
  }
  .p-error__status {
    gap: 2em;
    justify-content: center;
    align-items: baseline;
  }
}
.p-navigation.--collapse {
  width: 70px;
}
.p-navigation.--collapse .c-logo {
  text-align: center;
}
.p-navigation.--collapse .p-logo__text {
  display: none;
}
.p-navigation.--collapse .p-logo__symbol {
  width: 45px;
  margin: 0 auto;
}
.p-navigation.--collapse .l-sidebar__body {
  overflow-x: visible;
  overflow-y: visible;
}
.p-navigation.--collapse .l-global-nav {
  padding: 0;
}
.p-navigation.--collapse .c-nav__item {
  border: none;
  text-align: center;
  line-height: normal;
}
.p-navigation.--collapse .c-nav-item__text {
  font-size: 10px;
}
.p-navigation.--collapse .p-navigation__toggle::after {
  content: "\e912";
}
.p-navigation.--collapse .c-nav .c-tooltip:hover::after {
  opacity: 1;
}

.p-navigation__toggle {
  padding: 0 10px;
  display: flex;
  justify-content: flex-end; /* ← 右寄せ */
  align-items: center;
}
.p-navigation__toggle::after {
  content: "\e911";
  font-family: "components";
  font-size: 1.8rem;
  color: var(--color-main);
}

.c-nav-item__icon::after {
  font-family: "iSaleNote";
  color: var(--color-main);
}
.c-nav-item__icon.--dashboard::after {
  content: "\e905";
}
.c-nav-item__icon.--account::after {
  content: "\e902";
}
.c-nav-item__icon.--sale::after {
  content: "\e903";
}
.c-nav-item__icon.--researcher::after {
  content: "\e904";
}
.c-nav-item__icon.--settings::after {
  content: "\e901";
}
.c-nav-item__icon.--manual::after {
  content: "\e906";
}

.p-pass-setting {
  margin: 3.25rem auto;
  width: 35%;
  min-width: 500px;
}

.p-researcher-profile {
  display: flex;
  gap: 3em;
  flex-wrap: wrap;
  container-type: inline-size;
  container-name: content-pane;
}

.p-researcher-profile__pane {
  flex: 1;
}

@container content-pane (max-width: 840px) {
  .p-researcher-profile__pane {
    flex-basis: 100%;
  }
}
.p-reference__link {
  cursor: pointer;
}
.p-reference__link::after {
  position: relative;
  transform: translate(0, 25%);
  display: inline-block;
  font-size: 1.2em;
}

.p-researcher-sales {
  display: flex;
  gap: 2em;
  flex-wrap: wrap;
  container-type: inline-size;
  container-name: sales-pane;
}

.p-researcher-sales__filter {
  flex: 1;
  margin: 1.5rem 0;
}

.p-researcher-sales__record {
  flex: 2;
}

.p-researcher-sales__group {
  margin: 1rem 0;
}

@container sales-pane (max-width: 700px) {
  .p-researcher-sales__filter {
    flex-basis: 100%;
  }
  .p-researcher-sales__record {
    flex-basis: 100%;
  }
}
.p-sale-select {
  display: flex;
  gap: 1em;
  flex-wrap: wrap;
  container-type: inline-size;
  container-name: content-pane;
}

.p-sale-select__pane-group {
  flex: 1;
  display: flex;
  gap: 1em;
  flex-wrap: wrap;
  padding: 0.6rem 0 0 0.6rem;
}

.p-sale-select > .p-sale-select__pane-group:only-of-type {
  padding: 0;
}

.p-sale-select__pane-group.--select {
  background-color: #f5f5f5;
  border-radius: 8px;
}

.p-sale-select__pane {
  flex: 1;
}

.p-sale-select__pane.--sub {
  max-width: 36%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
}

.p-researcher-group {
  line-height: 1.6;
  padding: 0;
  position: relative;
}
.p-researcher-group:not(:first-child)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  border-left: 1px solid #333;
}
.p-researcher-group input[type=checkbox] {
  opacity: 0;
  display: none;
  position: relative;
  left: -6px;
}
.p-researcher-group ul {
  display: none;
}
.p-researcher-group input[type=checkbox]:checked + label + span + ul,
.p-researcher-group input[type=checkbox]:checked + label:nth-of-type(n) + span + ul {
  display: block;
}

.p-researcher-group li {
  list-style-type: none;
  padding-left: 1.5em;
  position: relative;
}
.p-researcher-group li::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 1em;
  border-top: 1px solid #333;
}
.p-researcher-group li:last-child::before {
  height: 100%;
  background-color: #FFF;
}
.p-researcher-group li:has(.p-researcher-group)::after {
  position: absolute;
  top: 0;
  left: 1em;
  font-family: "components";
  font-size: 1em;
  content: "\e90f";
}
.p-researcher-group li label {
  cursor: pointer;
  display: inline-block;
  width: 1em;
  height: 1em;
  position: relative;
  left: -15px;
  z-index: 1;
}
.p-researcher-group li:has(.p-researcher-group):has(input[type=checkbox]:checked)::after {
  transform: rotate(90deg);
}

.p-researcher-group__name {
  cursor: pointer;
}
.p-researcher-group__name.is-current {
  font-weight: bold;
}

.p-action-toggle-wrap {
  margin-bottom: 0.35em;
  display: flex;
  gap: 0 0.5em;
}

.p-action-toggle {
  padding: 0.2em 1.8em 0.2em 0.7em;
  border-radius: 1.5em;
  font-size: 0.85em;
  display: inline-block;
  position: relative;
  transition: 0.3s;
  cursor: pointer;
  width: -moz-max-content;
  width: max-content;
  border: 1px solid #afafaf;
  background-color: #fff;
}
.p-action-toggle::before {
  position: absolute;
  top: 50%;
  right: 0.5em;
  transform: translate(0, -50%);
  font-family: "iSaleNote";
  font-size: 1em;
}
.p-action-toggle.--select::before {
  content: "\e908";
}
.p-action-toggle.--deselect::before {
  content: "\e907";
}
.p-action-toggle:hover {
  background-color: rgb(249.3, 249.4, 244.25);
}

.p-researcher-info {
  display: flex;
  gap: 1em 3em;
}

@container page-body (max-width: 375px) {
  .p-researcher-info {
    flex-wrap: wrap;
  }
}
.p-researcher-photo {
  width: 150px;
  height: 150px;
  border: 2px dashed #ccc;
  border-radius: 50%;
  text-align: center;
  color: #888;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  transition: background 0.3s ease;
  position: relative;
}
.p-researcher-photo:hover {
  box-shadow: inset 0 0 0 160px rgba(0, 0, 0, 0.1);
}

.p-researcher-photo__helper {
  width: 150px;
  font-size: 0.9em;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.p-researcher-photo__delete {
  display: block;
  width: -moz-fit-content;
  width: fit-content; /* 幅を必要最小限に */
  margin: 0 auto;
  color: #888;
  font-size: 0.9em;
  text-decoration: underline;
}

.p-researcher-photo__upload {
  display: none;
}

.p-iresearch-link {
  margin: 0.5em 0;
  padding: 0.35em 2em 0.35em 0.6em;
  background-color: #465b79;
  border-radius: 1.5em;
  font-size: 0.85em;
  color: white;
  display: inline-block;
  position: relative;
  transition: 0.3s;
  cursor: pointer;
  width: -moz-max-content;
  width: max-content;
}
.p-iresearch-link::before {
  content: "";
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  background-image: url("../images/iResearch-icon.svg");
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  margin-right: 0.5em;
  margin-bottom: 0.1em;
}
.p-iresearch-link::after {
  position: absolute;
  top: 50%;
  right: 0.5em;
  transform: translate(0, -50%);
  font-family: "components";
  font-size: 1em;
  content: "\e90f";
}
.p-iresearch-link:hover {
  filter: brightness(1.3);
}

.p-sale-info {
  display: flex;
  justify-content: flex-end;
}

.p-scope {
  font-size: 0.75em;
}
.p-scope.--group {
  background-color: #8d8f28;
  color: black;
}
.p-scope.--department {
  background-color: rgb(175.2, 176.6, 104.5);
  color: black;
}
.p-scope.--institute {
  background-color: rgb(226.5, 227, 201.25);
  color: black;
}

.p-setting {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 3em;
}

.p-setting__info {
  align-self: center;
  min-width: 17em;
}

.p-setting__actions {
  flex-basis: auto;
}

.p-record {
  display: flex;
  flex-wrap: wrap;
  gap: 0 20px;
}

.p-record__item {
  flex: 1 1 100%;
}
.p-record__item.--self {
  flex: 1 1 calc(50% - 10px); /* gap を考慮 */
}

.p-record__list {
  max-height: 300px;
  overflow-y: auto;
}

.p-manual {
  display: flex;
  flex-direction: column;
  gap: 2em;
  counter-reset: item; /* カウンターを初期化 */
}

.p-manual__item {
  display: flex;
  flex-direction: column;
  gap: 0.7em;
}

.p-manual__title {
  font-size: 1.5em;
  border-bottom: 1px solid #8d8f28;
  counter-increment: item; /* li がくるたび +1 */
}
.p-manual__title::before {
  content: counter(item) ". "; /* 1. 2. 3. のように表示 */
}

.p-manual__images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(auto, 500px));
  gap: 2.5em;
}

.p-manual__image-photo {
  max-width: 100%;
  display: block;
  position: relative;
  transition: filter 0.3s ease;
}
.p-manual__image-photo::after {
  font-family: "components";
  content: "\e914";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 3rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.p-manual__image-photo:hover img {
  filter: brightness(0.7);
}
.p-manual__image-photo:hover::after {
  opacity: 1;
}

.p-manual__image-caption {
  text-align: center;
  font-size: 0.85em;
  color: #878787;
}

.p-manual__link {
  position: relative;
  padding-left: 1.5em;
}
.p-manual__link::before {
  font-family: "components";
  content: "\e90f";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
  text-decoration: none;
}
.p-manual__link:hover {
  text-decoration: underline;
}

.p-manual__alert {
  padding: 1em 1.2em;
  border: 2px solid #8d8f28;
  border-radius: 5px;
}

.p-manual__alert-title {
  margin-bottom: 0.8em;
  padding-left: 1.8em;
  position: relative;
}
.p-manual__alert-title::before {
  font-family: "components";
  content: "\e90c";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.3em;
  color: #8d8f28;
}
.p-manual__alert-title.--attention::before {
  content: "\e90a";
}

.p-manual__desc dt {
  font-weight: bold;
}
.p-manual__desc dd {
  padding-left: 1em;
}

.p-manual__auth {
  flex-shrink: 0;
  width: -moz-max-content;
  width: max-content;
  table-layout: auto;
}
.p-manual__auth tr {
  border-bottom: 1px dashed #afafaf;
}
.p-manual__auth th {
  padding: 0.5em 1em;
  text-align: left;
}
.p-manual__auth td {
  padding: 0.5em 1em;
}

.p-manual__media {
  display: flex;
  gap: 1em 3em;
}

.p-manual__media-image {
  max-width: 500px; /* 最大幅 */
  position: relative;
  transition: filter 0.3s ease;
}
.p-manual__media-image::after {
  font-family: "components";
  content: "\e914";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 3rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.p-manual__media-image:hover img {
  filter: brightness(0.7);
}
.p-manual__media-image:hover::after {
  opacity: 1;
}

@media (max-width: 768px) {
  .p-manual__media {
    flex-direction: column;
  }
}
.p-toc {
  display: flex;
  flex-direction: column;
  gap: 2.5em;
}

.p-toc__item {
  display: flex;
  flex-direction: column;
  gap: 0.7em;
}

.p-toc__title {
  border-left: 3px solid #8d8f28;
  padding-left: 0.5em;
  font-size: 1.2em;
}

.p-toc__list {
  padding: 1em 0.8em;
  background-color: rgb(245.88, 246.04, 237.8);
}

.p-manual__pagetop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #8d8f28;
  color: #fff;
  padding: 12px 18px;
  border-radius: 6px;
  text-decoration: none;
  z-index: 100;
}

.ui-datepicker {
  background-color: #fff;
  border: 1px solid #afafaf;
  /*下部ボタン（今日・削除・閉じる）*/
  /* カレンダー移動 */
  /*配色*/
  /* Interaction states
    ----------------------------------*/
  /*上部年月*/
  /* Interaction Cues
    ----------------------------------*/
}
.ui-datepicker .ui-widget-header {
  border-width: 0 0 1px 0;
  background: none;
}
.ui-datepicker .ui-widget-header .ui-icon {
  background-image: none;
}
.ui-datepicker .ui-datepicker-title select {
  font-size: 0.9em;
}
.ui-datepicker table {
  font-size: 0.8em;
}
.ui-datepicker .ui-widget-content .ui-priority-secondary {
  opacity: 1;
}
.ui-datepicker .ui-widget-content .ui-corner-all {
  border-radius: 0;
}
.ui-datepicker .ui-datepicker-prev::after {
  display: inline-block;
  position: relative;
  left: 6px;
  transform: translate(0, 10%);
  font-family: "components";
  content: "\e907";
}
.ui-datepicker .ui-datepicker-prev.ui-state-disabled::after {
  color: #ccc;
}
.ui-datepicker .ui-datepicker-next::after {
  display: inline-block;
  position: relative;
  left: 6px;
  transform: translate(0, 15%);
  font-family: "components";
  content: "\e90f";
}
.ui-datepicker .ui-datepicker-next.ui-state-disabled::after {
  color: #ccc;
}
.ui-datepicker .ui-state-default,
.ui-datepicker .ui-widget-content .ui-state-default,
.ui-datepicker .ui-widget-header .ui-state-default,
.ui-datepicker .ui-button,
.ui-datepicker html .ui-button.ui-state-disabled:hover,
.ui-datepicker html .ui-button.ui-state-disabled:active {
  border: none;
  background: #fff;
  font-weight: normal;
  color: #000;
  text-align: center;
}
.ui-datepicker .ui-datepicker-unselectable .ui-state-default {
  color: #ccc;
}
.ui-datepicker .ui-widget-content {
  /*下部ボタン（今日）*/
  /*下部ボタン(削除) */
  /*下部ボタン(閉じる) */
}
.ui-datepicker .ui-widget-content .ui-priority-secondary {
  background: #eee;
  font-weight: bold;
}
.ui-datepicker .ui-widget-content .ui-priority-primary {
  outline: 1px solid gray;
  outline-offset: -1px;
}
.ui-datepicker .ui-widget-content .ui-datepicker-close {
  background-color: #6c757d;
  color: #FFF;
  outline: none;
  outline-offset: 0;
}
.ui-datepicker .ui-state-default a,
.ui-datepicker .ui-state-default a:link,
.ui-datepicker .ui-state-default a:visited,
.ui-datepicker a.ui-button,
.ui-datepicker a:link.ui-button,
.ui-datepicker a:visited.ui-button,
.ui-datepicker .ui-button {
  color: #454545;
  text-decoration: none;
}
.ui-datepicker .ui-state-hover,
.ui-datepicker .ui-widget-content .ui-state-hover,
.ui-datepicker .ui-widget-header .ui-state-hover,
.ui-datepicker .ui-state-focus,
.ui-datepicker .ui-widget-content .ui-state-focus,
.ui-datepicker .ui-widget-header .ui-state-focus,
.ui-datepicker .ui-button:hover,
.ui-datepicker .ui-button:focus {
  border: none;
  background: #ccc;
  font-weight: normal;
  color: #2b2b2b;
}
.ui-datepicker .ui-state-hover a,
.ui-datepicker .ui-state-hover a:hover,
.ui-datepicker .ui-state-hover a:link,
.ui-datepicker .ui-state-hover a:visited,
.ui-datepicker .ui-state-focus a,
.ui-datepicker .ui-state-focus a:hover,
.ui-datepicker .ui-state-focus a:link,
.ui-datepicker .ui-state-focus a:visited,
.ui-datepicker a.ui-button:hover,
.ui-datepicker a.ui-button:focus {
  color: #2b2b2b;
  text-decoration: none;
}
.ui-datepicker .ui-visual-focus {
  box-shadow: 0 0 3px 1px rgb(94, 158, 214);
}
.ui-datepicker .ui-state-active,
.ui-datepicker .ui-widget-content .ui-state-active,
.ui-datepicker .ui-widget-header .ui-state-active,
.ui-datepicker a.ui-button:active,
.ui-datepicker .ui-button:active,
.ui-datepicker .ui-button.ui-state-active:hover {
  border: none;
  background: color-mix(in srgb, var(--color-main) 40%, transparent);
  font-weight: normal;
}
.ui-datepicker .ui-icon-background,
.ui-datepicker .ui-state-active .ui-icon-background {
  border: none;
  background-color: #ffffff;
}
.ui-datepicker .ui-state-active a,
.ui-datepicker .ui-state-active a:link,
.ui-datepicker .ui-state-active a:visited {
  color: #ffffff;
  text-decoration: none;
}
.ui-datepicker .ui-state-highlight,
.ui-datepicker .ui-widget-content .ui-state-highlight,
.ui-datepicker .ui-widget-header .ui-state-highlight {
  border: none;
  background: #eee;
  font-weight: bold;
}

.ui-widget input,
.ui-widget select,
.ui-widget textarea,
.ui-widget button {
  font-size: 1rem;
}

.ui-sortable .ui-state-highlight {
  margin-bottom: 0.5em;
  background: #eee;
}

.ui-autocomplete.ui-widget-content {
  border-radius: 10px;
  max-height: 10em;
  overflow-y: scroll;
}
.ui-autocomplete.ui-widget-content::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.ui-autocomplete.ui-widget-content::-webkit-scrollbar-track {
  background-color: #f3f3f3;
  border-radius: 10px;
}
.ui-autocomplete.ui-widget-content::-webkit-scrollbar-thumb {
  background-color: #d7d7d7;
  border-radius: 10px;
}
.ui-autocomplete.ui-widget-content .ui-state-active {
  border: none;
  background: none;
  color: #333;
}
.ui-autocomplete.ui-menu .ui-state-active {
  margin: 0;
}

/* ==========================================================================
   print
   ========================================================================== *//*# sourceMappingURL=style.css.map */