:root {
  --scale-2: min(100vw / 750 * 2, 2px);
  --scale-4: min(100vw / 750 * 4, 4px);
  --scale-8: min(100vw / 750 * 8, 8px);
  --scale-16: min(100vw / 750 * 16, 16px);
  --scale-20: min(100vw / 750 * 20, 20px);
  --scale-24: min(100vw / 750 * 24, 24px);
  --scale-32: min(100vw / 750 * 32, 32px);
  --scale-40: min(100vw / 750 * 40, 40px);
  --scale-56: min(100vw / 750 * 56, 56px);
  --scale-80: min(100vw / 750 * 80, 80px);
  --scale-96: min(100vw / 750 * 96, 96px);

  --typo-12: min(100vw / 375 * 11, 12px);
  --typo-14: min(100vw / 375 * 13, 14px);
  --typo-16: min(100vw / 375 * 14, 16px);
  --typo-18: min(100vw / 375 * 15, 18px);
  --typo-20: min(100vw / 375 * 16, 20px);
  --typo-24: min(100vw / 375 * 20, 24px);
  --typo-32: min(100vw / 375 * 24, 32px);
  --typo-40: min(100vw / 375 * 28, 40px);

  --surface: #ffffff;
  --surface-variant: #f5f5f5;
  --on-surface: #000000;
  --on-surface-variant: #606060;
  --border: #cacfd6;
  --primary: #358cf0;
  --secondary: #f17836;
  --tertiary: #4aae0c;
  --primary-container: #ecf6fd;
  --secondary-container: #fff5e7;
  --tertiary-container: #e5f8d9;
  --primary-container-variant: #c5e0f4;
  --secondary-container-variant: #fedcb9;
  --green: var(--tertiary);
  --yellow: var(--secondary);
  --red: #d1181b;
  --neutral-container: #e7eaed;
  --neutral-container-variant: #8b939e;
  --green-container: var(--tertiary-container);
  --red-container: #ffedee;
  --on-primary-container: #074b84;
  --on-secondary-container: #e06915;
  --on-tertiary-container: #005039;
  --on-green-container: var(--on-tertiary-container);
  --on-red-container: #8a0002;
  --black-curtain: rgba(0, 0, 0, 0.08);
}

.mar-t-32 {
  margin-top: var(--scale-32);
}

html,
body {
  color: var(--on-surface, #000);
  font-family: "Noto Sans JP", serif;
  font-size: var(--typo-16, 16px);
  overscroll-behavior-x: none;
  line-height: 170%;
}

a {
  color: var(--primary, #358cf0);
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 500;
  line-height: 170%;
}

.container {
  width: calc(100% - var(--scale-80, 80px));
  margin-inline: auto;
  max-width: 1080px;
}

main {
  background: var(--surface-variant, #f9f9f9);
  padding: var(--scale-80, 80px) 0px;
  display: flex;
  gap: var(--scale-80, 80px);
  flex-direction: column;
}

select,
input[type="text"],
input[type="date"] {
  appearance: auto;
  border-radius: var(--scale-4, 4px);
  border: var(--scale-2) solid var(--border, #cacfd6);
  display: flex;
  width: 8em;
  max-width: 100%;
  padding: var(--scale-8, 8px) var(--scale-16, 16px);
  justify-content: center;
  align-items: center;
  gap: var(--scale-16, 16px);
  background: var(--surface);
}

/*============================
components
============================*/
.c-buttons {
  display: flex;
  justify-content: flex-end;
  gap: var(--scale-16, 16px);
  align-self: stretch;
  margin-top: var(--scale-40, 40px);
}

.c-button {
  display: flex;
  padding: var(--scale-8, 8px) var(--scale-16, 16px);
  justify-content: center;
  align-items: center;
  border-radius: var(--scale-40, 40px);
  color: var(--surface, #fff);
  text-align: center;
  font-size: var(--typo-20, 20px);
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  gap: 0.5em;
  width: 100%;
  min-width: 8em;
  max-width: min(100vw / 375 * 160, 200px);
  background: var(--primary, #358cf0);
}

.c-button .material-symbols-outlined {
  font-size: 1em;
}

.c-button--primary {
  background: var(--primary, #358cf0);
}

.c-button--tertiary {
  background: var(--tertiary, #4aae0c);
}

.c-button--outline {
  background: var(--surface, #fff);
  border: 1px solid;
  color: var(--primary, #358cf0);
}

.c-button--natural.c-button--outline {
  color: var(--on-surface-variant, #606060);
}

.c-button--tertiary.c-button--outline {
  color: var(--tertiary);
}

.c-button--small {
  padding: var(--scale-8, 8px);
  font-size: var(--typo-16, 16px);
}

.c-button--primary span.label {
  padding-right: 0.5em;
}

.c-message {
  display: flex;
  padding: var(--scale-8, 8px);
  flex-direction: column;
  align-items: flex-start;
  gap: var(--scale-8, 8px);
  align-self: stretch;
  border-radius: var(--scale-8, 8px);
  background: var(--primary-container, #ecf6fd);
  border: 1px solid var(--primary);
  margin-bottom: var(--scale-24, 24px);
}

.c-message--success {
  border: 1px solid var(--tertiary);
  background: var(--green-container, #f2ffea);
}

.c-message--error {
  border: 1px solid var(--red);
  background: var(--red-container, #ffedee);
}

.c-message .c-message__heading {
  align-self: stretch;
  font-family: "Noto Sans JP";
  font-size: var(--typo-14, 14px);
  font-style: normal;
  font-weight: 500;
  line-height: 170%;
  /* 23.8px */
  padding: 0 var(--scale-16, 16px);
  color: var(--on-primary-container, #074b84);
}

.c-message--success .c-message__heading {
  color: var(--on-green-container, #005039);
}

.c-message--error .c-message__heading {
  color: var(--on-red-container, #8a0002);
}

.c-message .c-message__body {
  display: flex;
  padding: var(--scale-16, 16px);
  flex-direction: column;
  align-items: flex-start;
  gap: 1em;
  align-self: stretch;
  border-radius: var(--scale-4, 4px);
  background: var(--surface, #fff);
}

.c-heading {
  display: flex;
  align-items: flex-start;
  gap: var(--scale-32, 32px);
  align-self: stretch;
  margin-bottom: var(--scale-24, 24px);
}

.c-heading h2 {
  font-family: "Noto Sans JP";
  font-size: var(--typo-24, 24px);
  font-style: normal;
  font-weight: 500;
  line-height: 170%;
  /* 40.8px */
  flex: 1 0 0;
}

.c-heading--h3 {
  font-family: "Noto Sans JP";
  font-size: var(--typo-20, 20px);
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
  /* 40.8px */
  flex: 1 0 0;
  white-space: nowrap;
  align-items: center;
  justify-content: space-between;
}

.c-input-container {
  display: flex;
  align-items: flex-end;
  gap: var(--scale-8, 8px);
}

.c-radio-container,
.c-checkbox-container {
  display: flex;
  align-items: flex-start;
  align-self: stretch;
}

:is(.c-radio-container, .c-checkbox-container) input {
  display: none;
}

:is(.c-radio-container, .c-checkbox-container) input + label {
  display: flex;
  padding: var(--scale-8, 8px) var(--scale-16, 16px);
  justify-content: center;
  align-items: center;
  flex: 1 0 0;
  border-left: 1px solid var(--border, #cacfd6);
  border-top: 1px solid var(--border, #cacfd6);
  border-bottom: 1px solid var(--border, #cacfd6);
  background: var(--surface, #fff);
  white-space: nowrap;
}

:is(.c-radio-container, .c-checkbox-container) input:checked + label {
  border: 1px solid var(--primary, #358cf0);
  background: var(--primary-container, #ecf6fd);
  color: var(--on-primary-container);
}

:is(.c-radio-container, .c-checkbox-container) label:first-of-type {
  border-radius: var(--scale-4, 4px) 0px 0px var(--scale-4, 4px);
}

:is(.c-radio-container, .c-checkbox-container) label:last-of-type {
  border-radius: 0 var(--scale-4, 4px) var(--scale-4, 4px) 0px;
  border-right: 1px solid var(--border, #cacfd6);
}

.c-pagination {
  margin-top: var(--scale-16);
  margin-bottom: var(--scale-16);
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: end;
  gap: var(--scale-16);
}

.c-pagination a {
  color: var(--on-surface);
}

.copy-icon {
  margin-left: 1em;
  width: calc(1em / 16 * 24);
  height: calc(1em / 16 * 24);
  position: relative;
}

.copy-icon.success:before {
  content: "クリップボードにコピーしました";
  position: absolute;
  top: 0;
  right: 0;
  font-size: var(--typo-11, 11px);
  width: fit-content;
  white-space: nowrap;
  line-height: 150%;
  background: var(--green-container, #f2ffea);
  color: var(--on-green-container, #005039);
  display: block;
  transform: translateY(-100%);
  padding: 0.2em 0.4em;
}

.c-container-box {
  display: flex;
  padding: var(--scale-20, 20px);
  flex-direction: column;
  gap: var(--scale-24, 24px);
  border-radius: var(--scale-16, 16px);
  border: 1px solid var(--border, #cacfd6);
  background: var(--surface, #fff);
}

.c-overview {
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: stretch;
}

.c-overview .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.c-overview .body {
  border-radius: var(--scale-8, 8px);
  border: 1px solid var(--border, #cacfd6);
  background: var(--surface, #fff);
  border-collapse: separate;
  width: 100%;
  padding: var(--scale-8, 8px);
}

@media screen and (max-width: 960px) {
  .c-overview .body {
    overflow-x: scroll;
  }
}

.c-overview table {
  width: 100%;
}

.c-overview table tr.excluded {
  background: var(--neutral-container);
}

.c-overview .body thead :is(td, th) {
  color: var(--on-surface, #000);
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: var(--typo-14, 14px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  padding: 0.4em;
  vertical-align: middle;
  white-space: nowrap;
}

.c-overview .body thead th {
  border: 1px solid var(--surface, #fff);
  background: var(--primary-container, #ecf6fd);
  color: var(--on-primary-container, #074b84);
}

.c-overview .body tbody {
  padding: var(--scale-8, 8px);
}

.c-overview .body tbody td {
  border-top: 1px solid var(--border, #cacfd6);
  width: var(--scale-56, 56px);
  height: 41px;
  padding: var(--scale-8, 8px);
  align-items: center;
  text-align: center;
  color: var(--on-surface, #000);
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: var(--typo-14, 14px);
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  /* 21px */
  align-content: center;
  white-space: nowrap;
}

.c-overview .body tbody td.implementation-period {
  text-align: left;
}

.c-overview .body tbody td div.progress-container div.bar {
  border: 1px solid var(--border, #cacfd6);
  border-radius: var(--scale-2, 2px);
}

.c-overview .body tbody td div.progress-container div.bar .bar__fill {
  height: var(--scale-4, 4px);
}

.c-overview .body tbody td div.score-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--scale-4, 4px);
  align-self: stretch;
  line-height: 100%;
}

.c-overview .body tbody td div.score-container .score-icon {
  height: var(--scale-8, 8px);
  width: var(--scale-8, 8px);
  border-radius: 1000px;
}

.c-overview .body tbody td a {
  display: block;
  padding: var(--scale-2, 2px) var(--scale-8, 8px);
  align-self: stretch;
  border-radius: var(--scale-4, 4px);
  border: 1px solid var(--primary, #358cf0);
  background: var(--surface);
}

.c-overview .status:before {
  content: "調査中";
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1 0 0;
  border: 1000px;
  border-radius: 1000px;
  background: var(--green-container, #f2ffea);
  color: var(--on-green-container, #005039);
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: var(--typo-14, 14px);
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  /* 23.8px */
}

.c-overview .status--completed:before {
  content: "終了";
  background: var(--neutral-container);
  color: var(--on-surface-variant, #606060);
}

/*============================
#login
============================*/
section#login.login {
  display: flex;
  padding: var(--scale-80, 80px) 0px;
  justify-content: center;
  align-items: center;
  flex: 1 0 0;
  background: var(--surface-variant, #f9f9f9);
}

section#login.login form.form {
  display: flex;
  max-width: 400px;
  padding: var(--scale-40, 40px);
  flex-direction: column;
  align-items: center;
  gap: var(--scale-24, 24px);
  border-radius: var(--scale-16, 16px);
  border: 1px solid var(--border, #cacfd6);
  background: var(--surface, #fff);
  width: calc(100% - var(--scale-80, 80px));
  margin-inline: auto;
}

section#login.login form.form div.login__heading {
  display: flex;
  gap: var(--scale-8, 8px);
  flex-direction: column;
}

section#login.login form.form div.subtitle {
  align-self: stretch;
  color: var(--on-surface, #000);
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: var(--typo-20, 20px);
  font-style: normal;
  font-weight: 700;
  line-height: 170%;
  /* 34px */
}

section#login.login form.form h1 {
  align-self: stretch;
  color: var(--on-surface, #000);
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: var(--typo-24, 24px);
  font-style: normal;
  font-weight: 500;
  line-height: 170%;
  /* 40.8px */
}

section#login.login form.form div.form-grounp {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--scale-8, 8px);
  align-self: stretch;
}

section#login.login form.form div.form-grounp label {
  align-self: stretch;
  color: var(--on-surface, #000);
  font-family: "Noto Sans JP";
  font-size: var(--typo-18, 18px);
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

section#login.login form.form div.form-grounp div.form__input {
  display: flex;
  padding: var(--scale-8, 8px) var(--scale-16, 16px);
  justify-content: center;
  align-items: center;
  gap: var(--scale-16, 16px);
  align-self: stretch;
  border-radius: var(--scale-4, 4px);
  border: 1px solid var(--border, #cacfd6);
}

section#login.login form.form div.form-grounp div.form__input input {
  flex: 1 0 0;
  font-family: "Noto Sans JP";
  font-size: var(--typo-16, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  /* 27.2px */
  width: 100%;
  max-width: unset;
  border: none;
  padding: 0;
}

section#login.login
  form.form
  div.form-grounp
  div.form__input
  span.material-symbols-outlined {
  color: var(--border, #cacfd6);
}

section#login.login form.form .form__info {
  align-self: stretch;
  color: var(--on-surface-variant, #606060);
  font-family: "Noto Sans JP";
  font-size: var(--typo-14, 14px);
  font-style: normal;
  font-weight: 500;
  line-height: 170%;
}

section#login.login form.form .c-button--primary {
  max-width: unset;
}

/*============================
#header
============================*/
header#header {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--primary, #358cf0);
  position: sticky;
  left: 0;
  top: 0;
  z-index: 100;
}

header#header div.header__container {
  width: calc(100% - var(--scale-80, 80px));
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 59px;
}

header#header div.header__container div.header__site-name {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: var(--scale-4, 4px) 0;
}

header#header div.header__container div.header__site-name a {
  color: var(--surface, #fff);
  font-family: "Noto Sans JP";
  font-size: var(--typo-20, 20px);
  font-style: normal;
  font-weight: 700;
  line-height: 170%;
  /* 34px */
  height: 100%;
  display: flex;
  align-items: center;
}

header#header nav#pc-nav {
  height: 100%;
}

header#header nav#sp-nav {
  display: none;
}

header#header div.header__container nav ul {
  display: flex;
  align-items: center;
  height: 100%;
  flex: 0 0 auto;
}

header#header div.header__container nav ul li {
  height: 100%;
}

header#header div.header__container nav :is(a, button) {
  display: flex;
  padding: var(--scale-4, 4px) var(--scale-16, 16px);
  justify-content: center;
  align-items: center;
  color: var(--surface, #fff);
  font-family: "Noto Sans JP";
  font-size: var(--typo-16, 16px);
  font-style: normal;
  font-weight: 500;
  line-height: 170%;
  /* 27.2px */
  height: 100%;
}

header#header div.header__container nav a.current {
  background: var(--secondary, #f17836);
}

header#header div.header__container nav #logout-button {
  margin-left: var(--scale-40, 40px);
}

header#header #hamburger-button {
  display: none;
}

header#header div.header__border {
  width: 100%;
  height: var(--scale-8, 8px);
  background: var(--secondary, #f17836);
}

@media screen and (max-width: 750px) {
  header#header div.header__container nav#pc-nav {
    display: none;
  }

  header#header nav#sp-nav {
    position: fixed;
    right: 0;
    top: calc(59px + var(--scale-8, 8px));
    background: rgba(0, 0, 0, 0.95);
    height: 100%;
    padding: var(--scale-40, 40px);
    display: none;
    width: 100%;
  }

  header#header nav#sp-nav ul {
    flex-direction: column;
    width: 100%;
    display: flex;
  }

  header#header nav#sp-nav ul li {
    height: auto;
    width: 100%;
  }

  header#header nav#sp-nav ul li a {
    width: 100%;
    display: block;
    color: var(--surface, #fff);
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    font-size: var(--typo-20, 20px);
    padding: var(--scale-20, 20px);
  }

  header#header nav#sp-nav #logout-button {
    margin-left: 0px;
    margin-top: var(--scale-40, 40px);
    width: 100%;
    color: var(--surface, #fff);
    text-align: center;
    font-size: var(--typo-20, 20px);
    padding: var(--scale-20, 20px);
  }

  header#header #hamburger-button {
    display: block;
    height: 100%;
    width: 40px;
  }

  header#header #hamburger-button div,
  header#header #hamburger-button div:before,
  header#header #hamburger-button div:after {
    width: 100%;
    height: 4px;
    background: var(--surface, #fff);
    position: relative;
    transition: 0.2s linear;
  }

  header#header #hamburger-button div:before,
  header#header #hamburger-button div:after {
    width: 100%;
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
  }

  header#header #hamburger-button div:before {
    transform: translateY(-300%);
  }

  header#header #hamburger-button div:after {
    transform: translateY(300%);
  }

  header#header.open #hamburger-button div {
    transform: rotate(0);
    background-color: rgba(255, 255, 255, 0);
  }

  header#header.open #hamburger-button div:before {
    transform: translate(0) rotate(45deg);
  }

  header#header.open #hamburger-button div:after {
    transform: translate(0) rotate(135deg);
  }
}

/*============================
#footer
============================*/
footer {
  text-align: center;
  font-size: var(--typo-12, 12px);
  padding: var(--scale-40, 40px);
  color: var(--on-surface-variant, #606060);
}

/*============================
#h1
============================*/
section#h1.c-h1 {
  padding: var(--scale-40, 40px) 0px;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
  background: var(--surface, #ffffff);
}

section#h1.c-h1 div.c-h1__container.container {
  display: flex;
  flex-direction: column;
  gap: var(--scale-24, 24px);
  max-width: 1080px;
  flex-wrap: wrap;
}

section#h1.c-h1 div.c-h1__container.container h1 {
  color: #000;
  font-family: "Noto Sans JP";
  font-size: var(--typo-32, 32px);
  font-style: normal;
  font-weight: 500;
  line-height: 170%;
  /* 54.4px */
}

section#h1.c-h1 div.c-h1__container.container div.step {
  display: flex;
  align-items: center;
}

section#h1.c-h1 div.c-h1__container.container div.step div.dot.current {
  background: var(--primary);
  border-color: var(--on-primary);
}

section#h1.c-h1 div.c-h1__container.container div.step div.bar {
  width: var(--scale-20, 20px);
  height: var(--scale-2, 2px);
  background: var(--border);
  display: block;
}

section#h1.c-h1 div.c-h1__container.container:has(.step) {
  flex-direction: row;
  justify-content: space-between;
}

section#h1.c-h1 div.c-h1__container.container div.step div.dot {
  border: var(--scale-2, 2px) solid var(--border);
  background: var(--surface);
  border-radius: 1000px;
  width: var(--scale-24);
  height: var(--scale-24);
  display: block;
}

/*============================
#page-kd-new
============================*/

#page-kd-new .container div.form-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--scale-32, 32px) var(--scale-16, 16px);
  align-self: stretch;
}

/*============================
#search
============================*/
section#list.list
  div.list__container.container
  div.list__content
  .c-container-box
  form#search {
}

section#list.list
  div.list__container.container
  div.list__content
  .c-container-box
  form#search
  .form-row {
  display: flex;
  align-items: flex-start;
  gap: var(--scale-24, 24px);
  align-self: stretch;
  flex-wrap: wrap;
}

section#list.list
  div.list__container.container
  div.list__content
  .c-container-box
  form#search
  div.form-grounp {
  flex: 1 1 auto;
}

section#list.list
  div.list__container.container
  div.list__content
  .c-container-box
  form#search
  div.form-grounp
  input {
  width: 100%;
}

@media screen and (max-width: 1200px) {
  section#list.list
    div.list__container.container
    div.list__content
    div.c-container-box {
    overflow-x: scroll;
  }
}

section#list.list
  div.list__container.container
  div.list__content
  div.c-container-box
  table {
}

section#list.list
  div.list__container.container
  div.list__content
  div.c-container-box
  table
  thead {
}

section#list.list
  div.list__container.container
  div.list__content
  div.c-container-box
  table
  thead
  tr {
}

section#list.list
  div.list__container.container
  div.list__content
  div.c-container-box
  table
  thead
  tr
  th {
  color: var(--on-surface, #000);
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: var(--typo-16, 16px);
  font-style: normal;
  font-weight: 700;
  align-content: center;
  white-space: nowrap;
}

section#list.list
  div.list__container.container
  div.list__content
  div.c-container-box
  table
  thead
  tr
  th
  a {
  display: flex;
  padding: var(--scale-4, 4px) var(--scale-8, 8px);
  justify-content: center;
  align-items: center;
  align-self: stretch;
}

section#list.list
  div.list__container.container
  div.list__content
  div.c-container-box
  table
  thead
  tr
  th
  a
  span.label {
  color: var(--on-surface, #000);
  line-height: 1.4;
}

section#list.list
  div.list__container.container
  div.list__content
  div.c-container-box
  table
  thead
  tr
  th
  a
  span.material-symbols-outlined {
}

section#list.list
  div.list__container.container
  div.list__content
  div.c-container-box
  table
  tbody {
}

section#list.list
  div.list__container.container
  div.list__content
  div.c-container-box
  table
  tbody
  tr {
}

section#list.list
  div.list__container.container
  div.list__content
  div.c-container-box
  table
  tbody
  tr
  td {
  color: var(--on-surface, #000);
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: var(--typo-14, 14px); /* 熊本修正 */
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  /* 24px */
  padding: var(--scale-4, 4px) var(--scale-16, 16px);
  border-top: 1px solid var(--border, #cacfd6);
  vertical-align: middle;
  white-space: nowrap;
}

section#list.list
  div.list__container.container
  div.list__content
  div.c-container-box
  table
  tbody
  tr
  td
  dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--scale-4, 4px);
}

section#list.list
  div.list__container.container
  div.list__content
  div.c-container-box
  table
  tbody
  tr
  td
  dl
  dt {
  color: var(--on-surface-variant, #606060);
  font-family: "Noto Sans JP";
  font-size: var(--typo-12, 12px);
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  /* 18px */
  text-align: left;
}

section#list.list
  div.list__container.container
  div.list__content
  div.c-container-box
  table
  tbody
  tr
  td
  dl {
  color: var(--on-surface, #000);
  font-family: "Noto Sans JP";
  font-size: var(--typo-14, 14px);
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  /* 21px */
  text-align: left;
}

section#list.list
  dd {
  color: var(--on-surface, #000);
  font-family: "Noto Sans JP";
  font-size: var(--typo-10, 10px); /* 熊本修正 */
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  /* 21px */
  text-align: left;
  align-content: center;
}

#statement-tab {
  background-color: var(--neutral-container);
  padding: var(--scale-16, 16px) 0;
}

#statement-tab ul {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: var(--scale-4, 4px);
}

@media screen and (max-width: 1280px) {
  #statement-tab ul {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 750px) {
  #statement-tab ul {
    grid-template-columns: 1fr;
  }
}

#statement-tab ul li label {
  background: var(--surface);
  padding: var(--scale-8, 8px);
  text-align: center;
  display: flex;
  width: 100%;
  height: 100%;
  font-size: var(--typo-14, 14px);
  gap: var(--scale-8, 8px);
  border-radius: var(--scale-4, 4px);
}
input#statement-nav--step1:checked
  ~ #statement-tab
  label[for="statement-nav--step1"],
input#statement-nav--step2:checked
  ~ #statement-tab
  label[for="statement-nav--step2"],
input#statement-nav--step3:checked
  ~ #statement-tab
  label[for="statement-nav--step3"],
input#statement-nav--step4:checked
  ~ #statement-tab
  label[for="statement-nav--step4"],
input#statement-nav--step5:checked
  ~ #statement-tab
  label[for="statement-nav--step5"],
input#statement-nav--step6:checked
  ~ #statement-tab
  label[for="statement-nav--step6"],
input#statement-nav--step7:checked
  ~ #statement-tab
  label[for="statement-nav--step7"],
input#statement-nav--step8:checked
  ~ #statement-tab
  label[for="statement-nav--step8"] {
  background: var(--primary);
  color: var(--surface);
}

#statement-tab ul li label span {
  flex: 1 0 auto;
}

#statement-tab ul li label span.step {
  flex: 0 0 auto;
}

input[name="statement-nav"] {
  display: none;
}
input[name="statement-nav"] ~ section.statement--view {
  display: none;
}
input#statement-nav--step1:checked ~ .statement--view--step1,
input#statement-nav--step2:checked ~ .statement--view--step2,
input#statement-nav--step3:checked ~ .statement--view--step3,
input#statement-nav--step4:checked ~ .statement--view--step4,
input#statement-nav--step5:checked ~ .statement--view--step5,
input#statement-nav--step6:checked ~ .statement--view--step6,
input#statement-nav--step7:checked ~ .statement--view--step7,
input#statement-nav--step8:checked ~ .statement--view--step8 {
  display: block;
}
section.statement h4 {
  margin: var(--scale-24) 0 var(--scale-16);
}

section.statement h4:first-child {
  margin-top: 0;
}

section.statement div.statement__container.container div.statement__content {
  display: flex;
  flex-direction: column;
  gap: var(--scale-20, 20px);
}

section.statement
  div.statement__container.container
  div.statement__content
  div.c-container-box {
  flex: 1 1 auto;
}

section.statement
  div.statement__container.container
  div.statement__content
  div.c-container-box
  .statement__entry {
  display: flex;
  flex-direction: column;
  gap: var(--scale-4, 4px);
  align-self: stretch;
}

section.statement--view
  div.statement__container.container
  div.statement__content
  div.c-container-box
  .statement__entry {
  gap: 0;
}

section.statement
  div.statement__container.container
  div.statement__content
  div.c-container-box
  div.form-group {
  display: flex;
  justify-content: space-between;
  align-self: stretch;
  background: var(--neutral-container, #e7eaed);
  flex-wrap: wrap;
}

section.statement--view
  div.statement__container.container
  div.statement__content
  div.c-container-box
  div.form-group {
  background: var(--surface);
  border-top: 1px solid var(--border);
}

section.statement
  div.statement__container.container
  div.statement__content
  div.c-container-box--subtotal
  div.form-group {
  background: var(--primary-container-variant, #c5e0f4);
}

section.statement--view
  div.statement__container.container
  div.statement__content
  div.c-container-box--subtotal
  div.form-group {
  background: none;
}

section.statement
  div.statement__container.container
  div.statement__content
  div.c-container-box--total
  div.form-group {
  background: var(--secondary-container-variant, #fedcb9);
}

section.statement--view
  div.statement__container.container
  div.statement__content
  div.c-container-box--total
  div.form-group {
  background: none;
}

section.statement
  div.statement__container.container
  div.statement__content
  div.c-container-box
  div.form-group--sub {
  background: var(--surface-variant, #f9f9f9);
  width: calc(100% - var(--scale-20));
  margin-inline-end: 0;
  margin-inline-start: auto;
}

section.statement--view
  div.statement__container.container
  div.statement__content
  div.c-container-box
  div.form-group--sub {
  background: var(--surface);
}

@media screen and (max-width: 960px) {
  section.statement
    div.statement__container.container
    div.statement__content
    div.c-container-box
    div.form-group {
    flex-direction: column;
  }
}

section.statement
  div.statement__container.container
  div.statement__content
  div.c-container-box
  div.form-group:has(input:focus) {
  background: var(--primary-container);
}

section.statement
  div.statement__container.container
  div.statement__content
  div.c-container-box
  div.form-group:hover {
  background: var(--primary-container);
}

section.statement--view
  div.statement__container.container
  div.statement__content
  div.c-container-box
  .statement__entry
  div.form-group:hover {
  background: var(--surface);
}

section.statement
  div.statement__container.container
  div.statement__content
  div.c-container-box--subtotal
  div.form-group:hover {
  background: var(--surface);
}

section.statement
  div.statement__container.container
  div.statement__content
  div.c-container-box
  div.form-group
  label {
  display: flex;
  padding: var(--scale-8, 8px);
  align-items: center;
  align-self: stretch;
  color: var(--on-surface, #000);
  font-family: "Noto Sans JP";
  font-size: var(--typo-14, 14px);
  font-style: normal;
  font-weight: 600;
  white-space: nowrap;
  line-height: normal;
}

section.statement--view
  div.statement__container.container
  div.statement__content
  div.c-container-box
  div.form-group
  label {
  padding: var(--scale-4, 4px);
}

section.statement--view
  div.statement__container.container
  div.statement__content
  div.c-container-box
  div.form-group
  label {
  padding: var(--scale-4, 4px);
  cursor: auto;
}

section.statement
  div.statement__container.container
  div.statement__content
  div.c-container-box
  div.form-row {
  display: flex;
  gap: 0;
  flex: 1 1 auto;
}

@media screen and (max-width: 960px) {
  section.statement
    div.statement__container.container
    div.statement__content
    div.c-container-box
    div.form-row {
    flex-direction: column;
  }

  section.statement
    div.statement__container.container
    div.statement__content
    div.c-container-box
    div.form-row
    > label {
    width: 100%;
  }
}

section.statement
  div.statement__container.container
  div.statement__content
  div.c-container-box
  div.form-group-container {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--scale-4, 4px);
  align-self: stretch;
}

section.statement
  div.statement__container.container
  div.statement__content
  div.c-container-box
  div.form-row {
}

section.statement
  div.statement__container.container
  div.statement__content
  div.c-container-box
  div.form-row
  > label {
  display: flex;
  padding: var(--scale-8, 8px);
  align-items: flex-start;
  width: 10em;
  align-self: stretch;
  background: var(--neutral-container-variant, #8b939e);
  color: var(--surface, #fff);
  font-size: var(--typo-16, 16px);
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

section.statement--view
  div.statement__container.container
  div.statement__content
  div.c-container-box
  div.form-row
  > label {
  background: var(--surface-variant);
  color: var(--on-surface);
  border-top: 1px solid var(--border);
}

section.statement
  div.statement__container.container
  div.statement__content
  div.c-container-box--subtotal
  div.form-row
  > label {
  background: var(--on-primary-container, #074b84);
}

section.statement--view
  div.statement__container.container
  div.statement__content
  div.c-container-box--subtotal
  div.form-row
  > label {
  background: var(--primary-container-variant);
}

section.statement
  div.statement__container.container
  div.statement__content
  div.c-container-box--total
  div.form-row
  > label {
  background: var(--on-secondary-container, #e06915);
}

section.statement--view
  div.statement__container.container
  div.statement__content
  div.c-container-box--total
  div.form-row
  > label {
  background: var(--secondary-container-variant);
}

section.statement
  div.statement__container.container
  div.statement__content
  div.c-container-box
  div.form-group
  .c-input-container {
  display: flex;
  padding: var(--scale-8, 8px);
  justify-content: flex-end;
  align-items: flex-end;
  gap: var(--scale-8, 8px);
  flex: 1 1 auto;
  font-size: var(--typo-14);
}

section.statement--view
  div.statement__container.container
  div.statement__content
  div.c-container-box
  div.form-group
  .c-input-container {
  padding: var(--scale-4, 4px);
}

section.statement
  div.statement__container.container
  div.statement__content
  div.c-container-box
  div.form-group
  input {
  max-width: 9em;
  width: 100%;
  font-size: var(--typo-16);
}

section.statement
  div.statement__container.container
  div.statement__content
  div.c-container-box
  div.form-group
  select {
  max-width: 12em;
  width: 100%;
  font-size: var(--typo-16);
}

section.statement
  div.statement__container.container
  div.statement__content
  div.c-container-box
  div.form-group:hover
  :is(input:not(:read-only), select) {
  border: var(--scale-2, 2px) solid var(--primary);
}

section.statement
  div.statement__container.container
  div.statement__content
  div.c-container-box
  div.form-group
  :is(input:focus, select:focus) {
  border: var(--scale-2, 2px) solid var(--primary);
}

section.statement {
}

section.statement div.statement__container.container {
}

section.statement
  div.statement__container.container
  div.statement__heading.c-heading {
  flex-direction: column;
  gap: var(--scale-20);
  margin-bottom: var(--scale-40);
}

section.statement
  div.statement__container.container
  div.statement__heading.c-heading
  div.heading__categories {
  display: flex;
  align-items: center;
  gap: var(--scale-8, 8px);
}

section.statement
  div.statement__container.container
  div.statement__heading.c-heading
  div.heading__categories
  span.current {
  border-radius: var(--scale-2, 2px);
  background: var(--primary, #358cf0);
  color: #fff;
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 500;
  line-height: 170%;
  /* 27.2px */
}

section.statement
  div.statement__container.container
  div.statement__heading.c-heading
  div.heading__categories
  span {
  display: flex;
  padding: var(--scale-4, 4px) var(--scale-8, 8px);
  justify-content: center;
  align-items: center;
  border-radius: var(--scale-2, 2px);
  background: var(--neutral-container, #e7eaed);
  color: var(--neutral-container-variant, #8b939e);
  font-family: "Noto Sans JP";
  font-size: min(100vw / 375 * 12, 16px);
  font-style: normal;
  font-weight: 500;
  line-height: 170%;
  /* 27.2px */
}

section.statement
  div.statement__container.container
  div.statement__heading.c-heading
  h2 {
}

section.statement
  div.statement__container.container
  div.statement__heading.c-heading
  p {
}

section.statement div.statement__container.container {
}

section.statement div.statement__container.container div.statement__content {
}

section.statement
  div.statement__container.container
  div.statement__content
  div.c-container-box {
  gap: 0;
}

section.statement
  div.statement__container.container
  div.statement__content
  div.c-container-box
  div.c-heading.c-heading--h3 {
}

section.statement
  div.statement__container.container
  div.statement__content
  div.c-container-box
  div.c-heading.c-heading--h3
  h3 {
}

section.statement
  div.statement__container.container
  div.statement__content
  div.c-container-box
  div.c-heading.c-heading--h3
  div {
}

section.statement
  div.statement__container.container
  div.statement__content
  div.c-container-box
  div.statement__entry {
}

section.statement
  div.statement__container.container
  div.statement__content
  div.c-container-box
  div.statement__entry
  div.form-group {
}

section.statement
  div.statement__container.container
  div.statement__content
  div.c-container-box
  div.statement__entry
  div.form-group
  label {
}

section.statement
  div.statement__container.container
  div.statement__content
  div.c-container-box
  div.statement__entry
  div.form-group
  div.c-input-container {
}

section.statement
  div.statement__container.container
  div.statement__content
  div.c-container-box
  .number-input {
  text-align: right;
}

section.statement
  div.statement__container.container
  div.statement__content
  div.c-container-box
  input:read-only {
  font-size: var(--typo-16);
  font-weight: 600;
  background: none;
  border: none;
}

section.statement
  div.statement__container.container
  div.statement__content
  div.c-container-box
  div.statement__entry
  div.add-button-container {
  display: flex;
  padding: var(--scale-8, 8px);
  justify-content: center;
  align-items: flex-start;
  gap: var(--scale-16, 16px);
  align-self: stretch;
  background: var(--tertiary-container, #f2ffea);
}

section.statement
  div.statement__container.container
  div.statement__content
  div.c-container-box
  div.statement__entry
  div.add-button-container
  button {
  max-width: 640px;
}

section.statement
  div.statement__container.container
  div.statement__content
  div.c-container-box
  div.statement__entry
  div.add-button-container
  button.c-button.c-button--outline.c-button--tertiary
  span.material-symbols-outlined {
}

section.statement
  div.statement__container.container
  div.statement__content
  div.c-container-box
  div.statement__entry
  div.add-button-container
  button.c-button.c-button--outline.c-button--tertiary
  span.label {
}

section.statement
  div.statement__container.container
  div.statement__content
  div.content__row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: var(--scale-20, 20px);
  width: 100%;
}

section.statement
  div.statement__container.container
  div.statement__content
  div.content__row
  div.row__col {
  display: flex;
  flex-direction: column;
  gap: var(--scale-20);
  flex: 1 0 80px;
}

section.statement
  div.statement__container.container
  div.statement__content
  div.content__row
  div.c-container-box
  div.c-heading.c-heading--h3 {
}

section.statement
  div.statement__container.container
  div.statement__content
  div.c-container-box
  div.category {
  border-radius: 0px var(--scale-4, 4px) var(--scale-4, 4px) 0px;
  background: var(--primary, #358cf0);
  display: flex;
  padding: var(--scale-2, 2px) var(--scale-8, 8px);
  justify-content: center;
  align-items: center;
  color: var(--surface, #fff);
  font-family: "Noto Sans JP";
  font-size: var(--typo-16, 16px);
  font-style: normal;
  font-weight: 700;
  line-height: 170%;
  /* 27.2px */
  width: fit-content;
  margin-left: calc(-1 * var(--scale-20));
  margin-bottom: var(--scale-8);
}

section.statement
  div.statement__container.container
  div.statement__content
  div.content__row
  div.c-container-box
  div.c-heading.c-heading--h3
  h3 {
}

section.statement
  div.statement__container.container
  div.statement__content
  div.content__row
  div.c-container-box
  div.c-heading.c-heading--h3
  div {
}

section.statement
  div.statement__container.container
  div.statement__content
  div.content__row
  div.c-container-box
  div.statement__entry {
}

section.statement
  div.statement__container.container
  div.statement__content
  div.content__row
  div.c-container-box
  div.statement__entry
  div.form-group {
}

section.statement
  div.statement__container.container
  div.statement__content
  div.content__row
  div.c-container-box
  div.statement__entry
  div.form-group
  label {
}

section.statement
  div.statement__container.container
  div.statement__content
  div.content__row
  div.c-container-box
  div.statement__entry
  div.form-group
  div.c-input-container {
}

section.statement
  div.statement__container.container
  div.statement__content
  div.content__row
  div.c-container-box
  div.statement__entry
  div.add-button-container {
}

section.statement
  div.statement__container.container
  div.statement__content
  div.content__row
  div.c-container-box
  div.statement__entry
  div.add-button-container
  button.c-button.c-button--outline.c-button--tertiary {
}

section.statement
  div.statement__container.container
  div.statement__content
  div.content__row
  div.c-container-box
  div.statement__entry
  div.add-button-container
  button.c-button.c-button--outline.c-button--tertiary
  span.material-symbols-outlined {
}

section.statement
  div.statement__container.container
  div.statement__content
  div.content__row
  div.c-container-box
  div.statement__entry
  div.add-button-container
  button.c-button.c-button--outline.c-button--tertiary
  span.label {
}

section.statement
  div.statement__container.container
  div.statement__content
  div.c-container-box.c-container-box--subtotal {
  border: 1px solid var(--primary, #358cf0);
  background: var(--primary-container, #ecf6fd);
  color: var(--on-primary-container);
  gap: var(--scale-8, 8px);
}

section.statement
  div.statement__container.container
  div.statement__content
  div.c-container-box.c-container-box--subtotal
  div.c-heading.c-heading--h3 {
  margin-bottom: 0;
}

section.statement
  div.statement__container.container
  div.statement__content
  div.c-container-box.c-container-box--subtotal
  div.c-heading.c-heading--h3
  h3 {
}

section.statement
  div.statement__container.container
  div.statement__content
  div.c-container-box.c-container-box--subtotal
  div.c-heading.c-heading--h3
  div {
}

section.statement
  div.statement__container.container
  div.statement__content
  div.c-container-box.c-container-box--subtotal
  div.c-heading.c-heading--h4 {
  justify-content: space-between;
  margin-bottom: 0;
  align-items: center;
}

section.statement
  div.statement__container.container
  div.statement__content
  div.c-container-box.c-container-box--subtotal
  div.c-heading.c-heading--h4
  h4 {
}

section.statement
  div.statement__container.container
  div.statement__content
  div.c-container-box.c-container-box--subtotal
  div.c-heading.c-heading--h4
  div {
}

section.statement
  div.statement__container.container
  div.statement__content
  div.c-container-box.c-container-box--total {
  color: var(--on-secondary-container, #e06915);
  gap: var(--scale-8, 8px);

  border: 1px solid var(--secondary, #f17836);
  background: var(--secondary-container, #fff5e7);
}

section.statement
  div.statement__container.container
  div.statement__content
  div.c-container-box.c-container-box--total
  div.c-heading.c-heading--h3 {
  margin-bottom: 0;
}

section.statement
  div.statement__container.container
  div.statement__content
  div.c-container-box.c-container-box--total
  div.c-heading.c-heading--h4 {
  justify-content: space-between;
  margin-bottom: 0;
  align-items: center;
}

section.statement
  div.statement__container.container
  div.statement__content
  div.c-container-box.c-container-box--total
  div.c-heading.c-heading--h3
  h3 {
}

section.statement
  div.statement__container.container
  div.statement__content
  div.c-container-box.c-container-box--total
  div.c-heading.c-heading--h3
  div {
}

section.statement
  div.statement__container.container
  div.c-buttons:has(button:nth-last-of-type(2)) {
  justify-content: space-between;
}

section.statement
  div.statement__container.container
  div.c-buttons
  button.c-button.c-button--tertiary.c-button--outline {
}

section.statement
  div.statement__container.container
  div.c-buttons
  button.c-button.c-button--tertiary {
}

section.statement
  div.statement__container.container
  div.c-buttons
  button.c-button.c-button--natural.c-button--outline {
}

/*=================================
管理画面作成にあたり、この下追記しました。
ここまでは変更ありません(築澤様)
=================================*/

/*============================
#client
============================*/
section#client.client {
  display: flex;
  padding: var(--scale-2, 2px) var(--scale-4, 4px);
  justify-content: center;
  align-items: center;
  align-self: stretch;
  background: var(--secondary, #f17836);
  color: var(--surface, #fff);
  font-family: "Noto Sans JP";
  font-size: var(--typo-18, 18px);
  font-style: normal;
  font-weight: 700;
  line-height: 170%;
  /* 30.6px */
}

section#client.client div.client__container.container {}

.subnav {
  background-color: var(--neutral-container);
  padding: var(--scale-16, 16px) 0;
}

.subnav ul {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: var(--scale-4, 4px);
}

@media screen and (max-width: 1280px) {
  .subnav ul {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 750px) {
  .subnav ul {
    grid-template-columns: 1fr;
  }
}

.subnav ul li a {
  background: var(--surface);
  padding: var(--scale-8, 8px);
  text-align: center;
  display: flex;
  width: 100%;
  height: 100%;
  font-size: var(--typo-14, 14px);
  gap: var(--scale-8, 8px);
  border-radius: var(--scale-4, 4px);
  color: var(--on-surface);
}

.subnav ul li a.current {
  background: var(--primary);
  color: var(--surface);
}

.subnav ul li a span {
  flex: 1 0 auto;
}

.subnav ul li a span.step {
  flex: 0 0 auto;
}

/*============================
#link-settings
============================*/

section.link-settings div.link-settings__container.container form div.link-settings__content {
  display: flex;
  flex-direction: column;
}

section.link-settings div.link-settings__container.container form div.link-settings__content div.link-settings__heading.c-heading {
  flex-direction: column;
  gap: var(--scale-20);
}

section.link-settings div.link-settings__container.container form div.link-settings__content div.c-container-box {
  gap: 0;
  margin-top: var(--scale-24, 24px);
}

section.link-settings div.link-settings__container.container form div.link-settings__content div.c-container-box div.category {
  border-radius: 0px var(--scale-4, 4px) var(--scale-4, 4px) 0px;
  background: var(--primary, #358cf0);
  display: flex;
  padding: var(--scale-2, 2px) var(--scale-8, 8px);
  justify-content: center;
  align-items: center;
  color: var(--surface, #fff);
  font-family: "Noto Sans JP";
  font-size: var(--typo-16, 16px);
  font-style: normal;
  font-weight: 700;
  line-height: 170%;
  width: fit-content;
  margin-left: calc(-1 * var(--scale-20));
  margin-bottom: var(--scale-8);
}

section.link-settings div.link-settings__container.container form div.link-settings__content div.c-container-box div.link-settings__entry {
  display: grid;
  grid-template-columns: 3em auto auto 16em 1fr;
  align-items: flex-start;
  gap: var(--scale-4, 4px) 0;
}

section.link-settings div.link-settings__container.container form div.link-settings__content div.c-container-box div.link-settings__entry div.form-group {
  display: grid;
  grid-template-columns: subgrid;
  grid-column: span 5;
  align-items: center;
  align-self: stretch;
  background: var(--neutral-container, #e7eaed);
}

section.link-settings div.link-settings__container.container form div.link-settings__content div.c-container-box div.link-settings__entry div.form-group:hover {
  background: var(--primary-container);
}

section.link-settings div.link-settings__container.container form div.link-settings__content div.c-container-box div.link-settings__entry div.form-group:hover select {
  border: var(--scale-2, 2px) solid var(--primary);
}

section.link-settings div.link-settings__container.container form div.link-settings__content div.c-container-box div.link-settings__entry div.form-group .id {
  display: flex;
  padding: var(--scale-8, 8px);
  justify-content: center;
  align-items: center;
  align-self: stretch;
  color: var(--on-surface, #000);
  text-align: center;
  font-size: var(--typo-14, 14px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

section.link-settings div.link-settings__container.container form div.link-settings__content div.c-container-box div.link-settings__entry div.form-group label {
  display: flex;
  padding: var(--scale-8, 8px);
  align-items: center;
  align-self: stretch;
  color: var(--on-surface, #000);
  font-family: "Noto Sans JP";
  font-size: var(--typo-14, 14px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

section.link-settings div.link-settings__container.container form div.link-settings__content div.c-container-box div.link-settings__entry div.form-group div.link-line {
  display: flex;
  align-items: center;
  width: 100%;
  min-width: 40px;
  max-width: 60px;
  height: 8px;
  justify-content: space-between;
  background: linear-gradient(to bottom,
      transparent 40%,
      var(--primary, #358cf0) 40%,
      var(--primary, #358cf0) 60%,
      transparent 60%);
}

@media screen and (max-width: 768px) {
  section.link-settings div.link-settings__container.container form div.link-settings__content div.c-container-box div.link-settings__entry {
    grid-template-columns: 3em auto 1fr;
  }

  section.link-settings div.link-settings__container.container form div.link-settings__content div.c-container-box div.link-settings__entry div.form-group {
    grid-column: span 3;
  }

  section.link-settings div.link-settings__container.container form div.link-settings__content div.c-container-box div.link-settings__entry div.form-group div.c-input-container {
    grid-column: span 2;
  }

  section.link-settings div.link-settings__container.container form div.link-settings__content div.c-container-box div.link-settings__entry div.form-group .link-line {}
}

section.link-settings div.link-settings__container.container form div.link-settings__content div.c-container-box div.link-settings__entry div.form-group div.link-line:before,
section.link-settings div.link-settings__container.container form div.link-settings__content div.c-container-box div.link-settings__entry div.form-group div.link-line:after {
  content: "";
  width: var(--scale-8, 8px);
  height: var(--scale-8, 8px);
  background-color: var(--primary, #358cf0);
  display: block;
  border-radius: 10000px;
}

section.link-settings div.link-settings__container.container form div.link-settings__content div.c-container-box div.link-settings__entry div.form-group div.c-input-container {
  display: flex;
  padding: var(--scale-8, 8px);
  flex-direction: column;
  align-items: flex-start;
}

section.link-settings div.link-settings__container.container form div.link-settings__content div.c-container-box div.link-settings__entry div.form-group div.c-input-container select {
  width: 100%;
}

section.link-settings div.link-settings__container.container form div.link-settings__content div.c-container-box div.link-settings__entry div.form-group div.major-category {
  color: var(--on-surface, #000);
  font-size: var(--typo-14, 14px);
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  padding: var(--scale-8, 8px);
}

section.link-settings div.link-settings__container.container form div.link-settings__content div.c-container-box div.link-settings__entry div.form-group div.major-category input {
  border: none;
  background: transparent;
}

section.link-settings div.c-buttons {
  justify-content: space-between;
}

/*============================
#reclassification-settings
============================*/



section.reclassification-settings div.reclassification-settings__container.container form div.reclassification-settings__content {
  display: flex;
  flex-direction: column;
  gap: var(--scale-20, 20px);
}

section.reclassification-settings div.reclassification-settings__container.container form div.reclassification-settings__content div.reclassification-settings__heading.c-heading {
  flex-direction: column;
  gap: var(--scale-20);
  margin-bottom: var(--scale-40);
}

section.reclassification-settings div.c-container-box {
  display: grid;
  grid-template-columns: 3em auto auto auto 8em auto 8em 1fr;
  gap: 0;
}




section.reclassification-settings :is(div.c-container-box.c-container-box--subtotal,
  div.c-container-box.c-container-box--total) {
  display: flex;
  flex-direction: column;
  gap: var(--scale-8, 8px);
}

section.reclassification-settings div.c-container-box div.category {
  border-radius: 0px var(--scale-4, 4px) var(--scale-4, 4px) 0px;
  background: var(--primary, #358cf0);
  padding: var(--scale-2, 2px) var(--scale-8, 8px);
  justify-content: center;
  align-items: center;
  color: var(--surface, #fff);
  font-family: "Noto Sans JP";
  font-size: var(--typo-16, 16px);
  font-style: normal;
  font-weight: 700;
  line-height: 170%;
  width: fit-content;
  margin-left: calc(-1 * var(--scale-20));
  margin-bottom: var(--scale-8);
  grid-column: span 8;
}

section.reclassification-settings div.c-container-box div.c-heading.c-heading--h3 {
  display: grid;
  grid-template-columns: subgrid;
  grid-column: span 8;
  gap: 0;
  margin-bottom: 0;
}

section.reclassification-settings :is(div.c-container-box.c-container-box--subtotal,
  div.c-container-box.c-container-box--total) div.c-heading.c-heading--h3 {
  display: flex;
  flex: 1 0 0;
  white-space: nowrap;
  align-items: center;
  justify-content: space-between;
}

section.reclassification-settings div.c-container-box div.c-heading.c-heading--h3 h3 {
  display: grid;
  grid-column: span 2;
  font-family: "Noto Sans JP";
  font-size: var(--typo-20, 20px);
  font-style: normal;
  font-weight: 700;
  line-height: 170%;
  /* 34px */
}

section.reclassification-settings :is(div.c-container-box.c-container-box--subtotal,
  div.c-container-box.c-container-box--total) div.c-heading.c-heading--h3 h3 {
  display: flex;
  grid-column: none;
}

section.reclassification-settings div.c-container-box div.c-heading.c-heading--h3 div.current {
  color: var(--on-surface, #000);
  text-align: right;
  font-family: "Noto Sans JP";
  font-size: var(--typo-16, 16px);
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  padding: var(--scale-8, 8px);
}

section.reclassification-settings div.c-container-box div.c-heading.c-heading--h3 div.sign {
  color: var(--primary, #358cf0);
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: var(--typo-20, 20px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

section.reclassification-settings div.c-container-box div.c-heading.c-heading--h3 div.c-input-container {
  display: flex;
  padding: var(--scale-16, 16px);
  justify-content: center;
  align-items: center;
}

section.reclassification-settings div.c-container-box input:read-only {
  text-align: right;
  font-family: "Noto Sans JP";
  font-size: var(--typo-14, 14px);
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  border: none;
  width: 100%;
  background: none;
}

section.reclassification-settings div.c-container-box div.c-heading.c-heading--h3 input:read-only {
  font-size: var(--typo-16, 16px);
  field-sizing: content;
  padding-left: 0;
  padding-right: 0;
}

section.reclassification-settings :is(div.c-container-box--total, div.c-container-box--subtotal) div.c-heading.c-heading--h3 input:read-only {
  padding-left: var(--scale-16, 16px);
  padding-right: var(--scale-16, 16px);
}

section.reclassification-settings :is(div.c-container-box.c-container-box--subtotal,
  div.c-container-box.c-container-box--total) input:read-only {
  width: auto;
}

section.reclassification-settings div.c-container-box div.c-heading.c-heading--h3 div.sign.sign--equal {}

section.reclassification-settings div.c-container-box div.c-heading.c-heading--h3 div.total {}

section.reclassification-settings div.c-container-box div.reclassification-settings__entry {
  gap: var(--scale-4, 4px) 0;

  display: grid;
  grid-template-columns: subgrid;
  grid-column: span 8;
}

section.reclassification-settings div.c-container-box div.reclassification-settings__entry:nth-last-of-type(n + 2) {
  margin-bottom: var(--scale-24, 24px);
}

section.reclassification-settings div.c-container-box div.reclassification-settings__entry div.form-group {
  display: grid;
  grid-template-columns: subgrid;
  grid-column: span 8;
  align-items: center;
  align-self: stretch;
  background: var(--neutral-container, #e7eaed);
}

section.reclassification-settings div.c-container-box div.reclassification-settings__entry div.form-group--sub {
  background: var(--surface-variant, #f9f9f9);
  border-left: var(--scale-20, 20px) solid var(--surface);
}

section.reclassification-settings div.c-container-box div.reclassification-settings__entry div.form-group:hover {
  background: var(--primary-container);
}

section.reclassification-settings div.c-container-box div.reclassification-settings__entry div.form-group:hover input:not(:read-only) {
  border: var(--scale-2, 2px) solid var(--primary);
}

section.reclassification-settings div.c-container-box div.reclassification-settings__entry div.form-group div.id {
  display: flex;
  padding: var(--scale-8, 8px);
  justify-content: center;
  align-items: center;
  align-self: stretch;
  width: 3em;
  color: var(--on-surface, #000);
  text-align: center;
  font-size: var(--typo-14, 14px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

section.reclassification-settings div.c-container-box div.reclassification-settings__entry div.form-group label {
  display: flex;
  padding: var(--scale-8, 8px);
  align-items: center;
  align-self: stretch;
  color: var(--on-surface, #000);
  font-family: "Noto Sans JP";
  font-size: var(--typo-14, 14px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

section.reclassification-settings div.c-container-box div.reclassification-settings__entry div.form-group div.current {
  padding: var(--scale-8, 8px);
  justify-content: center;
  align-items: center;
  color: var(--on-surface, #000);
  text-align: right;
  font-family: "Noto Sans JP";
  font-size: var(--typo-14, 14px);
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

section.reclassification-settings div.c-container-box div.reclassification-settings__entry div.form-group div.sign {
  color: var(--primary, #358cf0);
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: var(--typo-20, 20px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

section.reclassification-settings div.c-container-box div.reclassification-settings__entry div.form-group div.c-input-container {
  display: flex;
  padding: var(--scale-8, 8px);
  flex-direction: column;
  align-items: flex-start;
  text-align: right;
  font-family: "Noto Sans JP";
  font-size: var(--typo-14, 14px);
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  /* 23.8px */
}

div.c-input-container--memo input {
  text-align: left;
}

section.reclassification-settings div.c-container-box div.reclassification-settings__entry div.form-group div.c-input-container input {
  width: 100%;
}

section.reclassification-settings div.c-container-box div.reclassification-settings__entry div.form-group div.sign.sign--equal {}

section.reclassification-settings div.c-container-box div.reclassification-settings__entry div.form-group div.total {}

@media screen and (max-width: 768px) {
  section.reclassification-settings div.reclassification-settings__container.container form div.reclassification-settings__content div.c-container-box {
    grid-template-columns: 3em 1fr auto 8em auto 8em;
  }

  section.reclassification-settings div.reclassification-settings__container.container form div.reclassification-settings__content div.c-container-box div.c-heading.c-heading--h3 {
    grid-column: span 6;
  }

  section.reclassification-settings div.reclassification-settings__container.container form div.reclassification-settings__content div.c-container-box div.c-heading.c-heading--h3 h3 {
    grid-column: span 6;
  }

  section.reclassification-settings div.reclassification-settings__container.container form div.reclassification-settings__content div.c-container-box div.c-heading.c-heading--h3 .current {
    grid-column: span 2;
  }

  section.reclassification-settings div.reclassification-settings__container.container form div.reclassification-settings__content div.c-container-box div.reclassification-settings__entry {
    grid-column: span 6;
  }

  section.reclassification-settings div.reclassification-settings__container.container form div.reclassification-settings__content div.c-container-box div.reclassification-settings__entry div.form-group {
    grid-column: span 6;
  }

  section.reclassification-settings div.reclassification-settings__container.container form div.reclassification-settings__content div.c-container-box div.reclassification-settings__entry div.form-group label {
    grid-column: span 5;
  }

  section.reclassification-settings div.reclassification-settings__container.container form div.reclassification-settings__content div.c-container-box div.reclassification-settings__entry div.form-group div.current {
    grid-column: span 2;
  }

  section.reclassification-settings div.reclassification-settings__container.container form div.reclassification-settings__content div.c-container-box div.reclassification-settings__entry div.form-group div.c-input-container--memo {
    grid-column: span 6;
  }
}

section.reclassification-settings div.reclassification-settings__container.container div.reclassification-settings__content div.content__row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: var(--scale-20, 20px);
  width: 100%;
}

section.reclassification-settings div.reclassification-settings__container.container div.reclassification-settings__content div.content__row div.row__col {
  display: flex;
  flex-direction: column;
  gap: var(--scale-20);
  flex: 1 0 80px;
}

section.reclassification-settings div.reclassification-settings__container.container div.reclassification-settings__content div.c-container-box.c-container-box--subtotal {
  border: 1px solid var(--primary, #358cf0);
  background: var(--primary-container, #ecf6fd);
  color: var(--on-primary-container);
  gap: var(--scale-8, 8px);
}

section.reclassification-settings div.reclassification-settings__container.container div.reclassification-settings__content div.c-container-box.c-container-box--subtotal div.c-heading.c-heading--h3 {
  margin-bottom: 0;
}

section.reclassification-settings div.reclassification-settings__container.container div.reclassification-settings__content div.c-container-box.c-container-box--subtotal div.c-heading.c-heading--h3 h3 {}

section.reclassification-settings div.reclassification-settings__container.container div.reclassification-settings__content :is(div.c-container-box.c-container-box--subtotal,
  div.c-container-box.c-container-box--total) div.c-heading div {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
}

section.reclassification-settings div.reclassification-settings__container.container div.reclassification-settings__content :is(div.c-container-box.c-container-box--subtotal,
  div.c-container-box.c-container-box--total) div.c-heading div input {
  field-sizing: content;
}

section.reclassification-settings div.reclassification-settings__container.container div.reclassification-settings__content div.c-container-box.c-container-box--subtotal div.c-heading.c-heading--h4 {
  justify-content: space-between;
  margin-bottom: 0;
  align-items: center;
}

section.reclassification-settings div.reclassification-settings__container.container div.reclassification-settings__content div.c-container-box.c-container-box--subtotal div.c-heading.c-heading--h4 h4 {}

section.reclassification-settings div.reclassification-settings__container.container div.reclassification-settings__content div.c-container-box.c-container-box--subtotal div.c-heading.c-heading--h4 div {}

section.reclassification-settings div.reclassification-settings__container.container div.reclassification-settings__content div.c-container-box.c-container-box--total {
  color: var(--on-secondary-container, #e06915);
  gap: var(--scale-8, 8px);

  border: 1px solid var(--secondary, #f17836);
  background: var(--secondary-container, #fff5e7);
}

section.reclassification-settings div.reclassification-settings__container.container div.reclassification-settings__content div.c-container-box.c-container-box--total div.c-heading.c-heading--h3 {
  margin-bottom: 0;
}

section.reclassification-settings div.reclassification-settings__container.container div.reclassification-settings__content div.c-container-box.c-container-box--total div.c-heading.c-heading--h4 {
  justify-content: space-between;
  margin-bottom: 0;
  align-items: center;
}

section.reclassification-settings div.reclassification-settings__container.container div.c-buttons:has(button:nth-last-of-type(2)) {
  justify-content: space-between;
}

section.reclassification-settings div.c-buttons {
  justify-content: space-between;
}


/*===================
キャッシュフロー計算書
=====================*/

body.page-admin-reclassification-settings-cash-flow-statement section.reclassification-settings div.c-container-box {
  grid-template-columns: 1fr auto;

}

body.page-admin-reclassification-settings-cash-flow-statement section.reclassification-settings div.c-container-box div.c-heading.c-heading--h3 {
  grid-column: span 2;
}

body.page-admin-reclassification-settings-cash-flow-statement section.reclassification-settings div.c-container-box div.c-heading.c-heading--h3 h3 {
  grid-column: span 1;
  font-size: min(100vw / 375 * 13, 20px);
}

body.page-admin-reclassification-settings-cash-flow-statement section.reclassification-settings div.c-container-box div.reclassification-settings__entry {
  grid-column: span 2;
}

body.page-admin-reclassification-settings-cash-flow-statement section.reclassification-settings div.c-container-box div.reclassification-settings__entry div.form-group {
  grid-column: span 2;
}
