@charset "UTF-8";
*,
::before,
::after {
  box-sizing: border-box;
}

html {
  line-height: 160%;
  -webkit-text-size-adjust: 100%;
  font-family: "Noto Sans JP", sans-serif;
  color: #222;
  scroll-behavior: smooth;
}

body {
  margin: 0;
}

hr {
  height: 0;
  color: inherit;
  border-width: 0 0 1px;
  border-style: solid;
  border-color: #ccc;
}

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

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}

fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

legend {
  padding: 0;
}

ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", Menlo, monospace;
  font-size: 1em;
}

table {
  text-indent: 0;
  border-color: inherit;
  border-collapse: collapse;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: inherit;
  color: inherit;
  margin: 0;
  padding: 0;
}

button,
select {
  text-transform: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
  background-color: transparent;
  background-image: none;
  cursor: pointer;
}

:disabled {
  cursor: default;
}

::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

:-moz-focusring {
  outline: 1px dotted ButtonText;
}

:-moz-ui-invalid {
  box-shadow: none;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

textarea {
  resize: vertical;
}

img,
svg,
video,
canvas,
audio,
iframe {
  vertical-align: middle;
}

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

em {
  font-style: normal;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
}
.wrapper main {
  flex-grow: 1;
}

.container {
  width: 100%;
  max-width: 1132px;
  padding: 0 16px;
  margin: 0 auto;
}

.header {
  border-top: 4px solid #006cb6;
  border-bottom: 1px solid #d5d5d5;
  background: #fff;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 67px;
}
@media (min-width: 768px) {
  .header-inner {
    height: 83px;
  }
}
@media (max-width: 767px) {
  .header-inner .logo {
    width: auto;
    height: 42px;
  }
}
@media (max-width: 767px) {
  .header-inner .logo-company {
    width: 96px;
  }
}

.footer {
  background: #f4f4f4;
}

.footer-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 32px;
  color: #999;
  font-size: 0.5625rem;
}
@media (min-width: 768px) {
  .footer-inner {
    justify-content: flex-end;
    height: 40px;
    font-size: 0.75rem;
  }
}

.footer-box {
  padding: 24px 0;
  border-bottom: 1px solid #d5d5d5;
}

.heading {
  font-size: 2rem;
  font-weight: 700;
  line-height: normal;
}
.heading::before, .heading::after {
  content: "";
  display: block;
}
.heading::before {
  margin-top: -0.23em;
}
.heading::after {
  margin-bottom: -0.23em;
}
.heading.small {
  font-size: 1.5rem;
}
@media (max-width: 767px) {
  .heading.small-sp {
    font-size: 1.5rem;
  }
}

.heading2 {
  font-size: 1.5rem;
  font-weight: 700;
}

.heading3 {
  font-size: 1.125rem;
  font-weight: 700;
}

.lead-text {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 160%;
}

.link {
  border: 0;
  color: #006cb6;
}
.link:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.anchor-link,
.download {
  color: #006cb6;
  word-break: break-all;
}
.anchor-link::after,
.download::after {
  content: "";
  display: inline-block;
  height: 16px;
  transform: translateY(2px);
}
.anchor-link:hover,
.download:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.download::after {
  width: 17px;
  margin-left: 4px;
  background: url("../img/icon/download.svg");
}

.anchor-link::after {
  width: 16px;
  background: url("../img/icon/anchor-link.svg");
}

.chevron-link {
  display: inline-flex;
  gap: 4px;
  align-items: baseline;
  color: #006cb6;
}
.chevron-link::before {
  flex-shrink: 0;
  content: "";
  width: 16px;
  height: 16px;
  transform: translateY(2px);
  background: url("../img/icon/chevron-right.svg");
}
.chevron-link:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.button {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 15px;
  border-radius: 4px;
  border: 1px solid #b6b6b6;
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.25);
  font-weight: 700;
  line-height: normal;
}
.button.primary {
  border-color: #dc1b1b;
  background: #dc1b1b;
  color: #fff;
  font-size: 1.125rem;
}
.button.secondary {
  border-color: #006cb6;
  background: #006cb6;
  color: #fff;
  font-size: 1.125rem;
}
.button.default {
  font-size: 1.125rem;
}
.button:disabled, .button.disabled {
  cursor: default;
  border-color: #dfdfdf;
  background: #dfdfdf;
  color: #fff;
  box-shadow: none;
}

.button-group {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
}
@media (min-width: 768px) {
  .button-group {
    flex-direction: row-reverse;
  }
}

.apply-note {
  padding: 24px 16px;
  background: #f8f8f8;
}
@media (min-width: 768px) {
  .apply-note {
    padding: 24px;
  }
}
.apply-note > dt {
  margin-bottom: 24px;
  font-weight: 700;
}
.apply-note ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.apply-note ul > li {
  position: relative;
  padding-left: 12px;
}
.apply-note ul > li::before {
  content: "";
  position: absolute;
  top: calc(0.8em - 2px);
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 100%;
  background: currentColor;
}

.policy-number {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.policy-number.disabled * {
  color: #ccc;
}
.policy-number.disabled .error.invalid {
  display: none;
}
.policy-number.disabled .input {
  border-color: #f8f8f8;
  background: #f8f8f8;
  box-shadow: none;
}

.label-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.label-wrap:has(input:disabled) * {
  color: #ccc;
}

.disc-item {
  position: relative;
  padding-left: 12px;
}
.disc-item::before {
  content: "";
  position: absolute;
  top: calc(0.8em - 2px);
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 100%;
  background: currentColor;
}

.disc-list {
  display: flex;
  flex-direction: column;
}
.disc-list > li {
  position: relative;
  padding-left: 1em;
}
.disc-list > li::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}

.circled-decimal-list {
  display: flex;
  flex-direction: column;
}
.circled-decimal-list > li {
  position: relative;
  padding-left: calc(1em + 8px);
}
.circled-decimal-list > li::before {
  content: attr(data-no);
  position: absolute;
  top: 0;
  left: 0;
}

.parenthesized-decimal-list {
  display: flex;
  flex-direction: column;
}
.parenthesized-decimal-list > li {
  position: relative;
  padding-left: 2.5em;
}
.parenthesized-decimal-list > li::before {
  content: "（" counter(list-item) "）";
  position: absolute;
  top: 0;
  left: 0;
}
.parenthesized-decimal-list.half > li {
  padding-left: 20px;
}
.parenthesized-decimal-list.half > li::before {
  content: "(" counter(list-item) ")";
}

.troubleshooting {
  display: flex;
  flex-direction: column;
  padding: 64px 16px 0;
}
@media (min-width: 768px) {
  .troubleshooting {
    padding: 80px 40px 0;
  }
}
.troubleshooting > dt {
  margin-bottom: 40px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 160%;
}
.troubleshooting > dd {
  position: relative;
  padding-left: 12px;
}
.troubleshooting > dd + dd {
  margin-top: 16px;
}
.troubleshooting > dd::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 100%;
  background: currentColor;
}

.staff-list .staff-list-head {
  display: none;
}
.staff-list .staff-list-body {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.staff-list .staff-list-data::before {
  content: counter(list-item) "人目";
  display: block;
  margin-bottom: 16px;
  font-size: 1.125rem;
  font-weight: 700;
}
.staff-list .cell {
  display: flex;
  border-bottom: 1px solid #ccc;
}
.staff-list .cell:first-of-type {
  border-top: 1px solid #ccc;
}
.staff-list .cell > dt {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  width: 50%;
  padding: 16px;
  background: #f0f9ff;
  font-weight: 700;
}
@supports (width: min(50%, 300px)) {
  .staff-list .cell > dt {
    width: min(50%, 300px);
  }
}
.staff-list .cell > dd {
  flex-grow: 1;
  display: flex;
  flex-wrap: wrap;
  column-gap: 1em;
  padding: 16px;
  background: #fff;
  word-break: break-all;
}
.staff-list .error-box {
  display: none;
}
.staff-list .remove-button {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 16px;
  margin-left: auto;
  border: 0;
  font-size: 0.875rem;
  line-height: 160%;
}
.staff-list .remove-button::before {
  content: "";
  width: 16px;
  height: 16px;
  background: url("../img/icon/remove.svg");
}
.staff-list .remove-button:disabled {
  color: #c4c4c4;
}
.staff-list .remove-button:disabled::before {
  background: url("../img/icon/remove-light.svg");
}
.staff-list + .button.add {
  gap: 8px;
  width: 100%;
  height: 48px;
  margin-top: 24px;
}
.staff-list + .button.add::before {
  content: "";
  width: 16px;
  height: 16px;
  background: url("../img/icon/plus.svg");
}
.staff-list + .button.add:disabled::before {
  background: url("../img/icon/plus-white.svg");
}
@media (min-width: 960px) {
  .staff-list .staff-list-head {
    display: flex;
    gap: 1px;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    background: #f0f9ff;
  }
  .staff-list .staff-list-head > span {
    padding: 16px 8px;
    font-weight: 700;
  }
  .staff-list .staff-list-head > span:first-of-type {
    flex: 0 0 27px;
  }
  .staff-list .staff-list-head > span:nth-of-type(5), .staff-list .staff-list-head > span:nth-of-type(4), .staff-list .staff-list-head > span:nth-of-type(3), .staff-list .staff-list-head > span:nth-of-type(2) {
    flex: 0 0 140px;
  }
  .staff-list .staff-list-head > span:nth-of-type(6) {
    flex: 0 0 110px;
  }
  .staff-list .staff-list-head > span:nth-of-type(7) {
    flex: 0 0 72px;
  }
  .staff-list .staff-list-head > span:nth-of-type(8) {
    flex-grow: 1;
  }
  .staff-list .staff-list-head small {
    font-size: 0.875rem;
    line-height: 160%;
    white-space: nowrap;
  }
  .staff-list .staff-list-body {
    gap: 0;
    background: #fff;
  }
  .staff-list .staff-list-body > li {
    border-bottom: 1px solid #ccc;
  }
  .staff-list .staff-list-body.edit .staff-list-data {
    align-items: center;
  }
  .staff-list .staff-list-data {
    display: flex;
    gap: 1px;
  }
  .staff-list .staff-list-data::before {
    content: counter(list-item, decimal-leading-zero);
    flex: 0 0 27px;
    padding: 16px 0;
    margin-bottom: 0;
    font-size: 1rem;
  }
  .staff-list .cell {
    display: contents;
  }
  .staff-list .cell > dt {
    display: none;
  }
  .staff-list .cell > dd {
    display: contents;
  }
  .staff-list .cell > dd > span {
    padding: 16px 7px;
    margin: -1px 0;
    border: 1px solid transparent;
  }
  .staff-list .cell:nth-of-type(2) > dd > span, .staff-list .cell:first-of-type > dd > span {
    flex: 0 0 140px;
  }
  .staff-list .cell:nth-of-type(3) > dd > span {
    flex: 0 0 110px;
  }
  .staff-list .cell:nth-of-type(4) > dd > span {
    flex: 0 0 72px;
  }
  .staff-list .cell:nth-of-type(5) > dd > span {
    flex-grow: 1;
  }
  .staff-list .cell .error {
    border-color: #dc1b1b;
    background: #f9e6e6;
  }
  .staff-list .lightgray .cell {
    color: #999;
  }
  .staff-list .form-field {
    display: contents;
  }
  .staff-list .form-field > dt {
    display: none;
  }
  .staff-list .form-field:nth-of-type(2) > dd, .staff-list .form-field:first-of-type > dd {
    display: contents;
  }
  .staff-list .form-field:nth-of-type(2) .form-control, .staff-list .form-field:first-of-type .form-control {
    flex: 0 0 140px;
  }
  .staff-list .form-field:nth-of-type(3) .form-control {
    flex: 0 0 110px;
  }
  .staff-list .form-field:nth-of-type(4) .form-control {
    flex: 0 0 72px;
  }
  .staff-list .form-field:nth-of-type(5) .form-control {
    flex-grow: 1;
  }
  .staff-list .name-field {
    display: contents;
  }
  .staff-list .name-field label > span {
    display: none;
  }
  .staff-list .form-control {
    padding: 16px 8px;
  }
  .staff-list .form-control .select,
  .staff-list .form-control .input {
    width: 100%;
    height: 40px;
  }
  .staff-list .form-control .input {
    padding: 0 5px;
  }
  .staff-list .form-control .select {
    padding-left: 8px;
    padding-right: 30px;
    background-position: center right 8px;
  }
  .staff-list .form-control .select:has(option:checked[value=""]) {
    color: #f8f8f8;
  }
  .staff-list .form-control .select:has(option:checked[value=""]).invalid {
    color: #f9e6e6;
  }
  .staff-list .form-control .invalid + .error {
    display: none;
  }
  .staff-list .error-box {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .staff-list .error-box:has(.invalid) {
    margin-bottom: 16px;
  }
  .staff-list .remove-button {
    flex-shrink: 0;
    flex-direction: column;
    margin-top: 0;
    margin-left: 8px;
    font-size: 0.75rem;
    line-height: 1;
  }
  .staff-list + .button.add {
    width: auto;
  }
}

.stepper {
  display: flex;
}
.stepper > li {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: flex-end;
  gap: 9px;
}
.stepper > li:not(:last-of-type)::before {
  position: absolute;
  top: 7px;
  left: 50%;
  content: "";
  width: 100%;
  height: 2px;
  background: #e8e8e8;
}
.stepper > li::after {
  content: "";
  z-index: 1;
  width: 16px;
  height: 16px;
  border-radius: 100%;
  background: #e8e8e8;
}
.stepper > li .label {
  color: #ccc;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: normal;
}
@media (max-width: 767px) {
  .stepper > li .label {
    display: none;
  }
}
.stepper > li:not(.active ~ li):not(.active)::before {
  background: #006cb6;
}
.stepper > li:not(.active ~ li):not(.active)::after {
  background: #fff;
  border: 2px solid #006cb6;
}
.stepper > li.active::after {
  background: #006cb6;
}
.stepper > li.active .label {
  color: #006cb6;
}

.modal {
  display: none;
}

.backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.edit-dialog,
.alert-dialog {
  position: fixed;
  top: 50%;
  left: 50%;
  width: calc(100% - 32px);
  max-height: 100%;
  border-radius: 8px;
  background: #fff;
  transform: translate(-50%, -50%);
  overflow-y: auto;
  scroll-behavior: smooth;
  overscroll-behavior: contain;
  z-index: 2;
}

.edit-dialog {
  max-width: 1000px;
  max-height: calc(100vh - 32px);
  padding: 40px 16px 80px;
}
@media (min-width: 768px) {
  .edit-dialog {
    padding-left: 40px;
    padding-right: 40px;
  }
}

.edit-dialog,
.alert-dialog,
.backdrop {
  opacity: 1;
  transition-property: opacity, display;
  transition-duration: 0.4s;
  transition-behavior: allow-discrete;
}
@starting-style {
  .edit-dialog,
  .alert-dialog,
  .backdrop {
    opacity: 0;
  }
}
.edit-dialog.hidden,
.alert-dialog.hidden,
.backdrop.hidden {
  opacity: 0;
}

.file-upload {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px;
  background: #f8f8f8;
}
.file-upload .button {
  width: 160px;
  height: 32px;
}
.file-upload .error-box {
  align-self: flex-start;
}
.file-upload .error-box:has(.invalid) {
  margin-top: 24px;
}

.file-input {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
  padding: 40px;
  border: 1px dashed #006cb6;
  background: #fff;
}
.file-input input[type=file] {
  display: none;
}
.file-input em {
  color: #006cb6;
}
.file-input:hover {
  cursor: pointer;
}
.file-input:hover em {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.company-name {
  display: flex;
  flex-direction: column;
  row-gap: 24px;
  column-gap: 32px;
}
@media (min-width: 768px) {
  .company-name {
    flex-direction: row;
    align-items: baseline;
  }
}

.service-list {
  color: #000;
}
.service-list .service-list-head {
  display: none;
}
.service-list .service-list-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.service-list .cell {
  display: flex;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
.service-list .cell:first-of-type {
  border-top: 1px solid #ccc;
}
.service-list .cell > dt {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  width: 109px;
  padding: 16px 12px;
  background: #f0f9ff;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: normal;
}
@supports (width: min(109px, 300px)) {
  .service-list .cell > dt {
    width: 109px;
  }
}
.service-list .cell > dd {
  flex-grow: 1;
  padding: 16px;
  border-left: 1px solid #ccc;
  background: #fff;
  line-height: normal;
  word-break: break-all;
}
@media (min-width: 768px) {
  .service-list .service-list-head {
    display: flex;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    background: #f0f9ff;
  }
  .service-list .service-list-head > span {
    padding: 16px;
    border-left: 1px solid #ccc;
    font-size: 0.875rem;
    font-weight: 700;
    line-height: normal;
    text-align: center;
  }
  .service-list .service-list-head > span:first-of-type {
    flex: 0 0 250px;
  }
  .service-list .service-list-head > span:nth-of-type(3), .service-list .service-list-head > span:nth-of-type(2) {
    flex: 0 0 120px;
  }
  .service-list .service-list-head > span:nth-of-type(4) {
    flex-grow: 1;
    border-right: 1px solid #ccc;
  }
  .service-list .service-list-body {
    gap: 0;
  }
  .service-list .service-list-body > li {
    display: flex;
  }
  .service-list .service-list-body .cell {
    display: contents;
  }
  .service-list .service-list-body .cell > dt {
    display: none;
  }
  .service-list .service-list-body .cell > dd {
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-bottom: 1px solid #ccc;
  }
  .service-list .service-list-body .cell:first-of-type > dd {
    flex: 0 0 250px;
    text-align: center;
  }
  .service-list .service-list-body .cell:nth-of-type(3) > dd, .service-list .service-list-body .cell:nth-of-type(2) > dd {
    flex: 0 0 120px;
    text-align: center;
  }
  .service-list .service-list-body .cell:nth-of-type(4) > dd {
    flex-grow: 1;
    border-right: 1px solid #ccc;
  }
}

.service-nav {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  column-gap: 24px;
}
@media (min-width: 768px) {
  .service-nav {
    flex-direction: row;
  }
}
.service-nav a {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  border-radius: 4px;
  border: 1px solid #b6b6b6;
  background: #fff;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.25);
}
.service-nav a dl {
  display: contents;
}
.service-nav a dl > dt {
  font-weight: 700;
  color: #006cb6;
}

.kencoplus-member {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.875rem;
  line-height: 140%;
  color: #666;
}
.kencoplus-member > dt {
  padding-left: 1em;
  text-indent: -1em;
}
.kencoplus-member > dd {
  position: relative;
  padding-left: 12px;
  display: flex;
  column-gap: 1em;
  flex-wrap: wrap;
  margin-left: 1em;
}
.kencoplus-member > dd::before {
  content: "";
  position: absolute;
  top: calc(0.8em - 2px);
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 100%;
  background: rgba(102, 102, 102, 0.4);
}

.csv-upload-button {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 200px;
  height: 48px;
  padding: 0 15px;
  border-radius: 4px;
  border: 1px solid #b6b6b6;
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.25);
  font-size: 1rem;
  font-weight: 700;
  line-height: normal;
}
.csv-upload-button input[type=file] {
  display: none;
}

.inquiry-box {
  display: flex;
  flex-direction: column;
  border: 1px solid #006cb8;
  font-weight: 700;
  text-align: center;
}
@media (min-width: 1132px) {
  .inquiry-box {
    flex-direction: row;
  }
}
.inquiry-box h2 {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px 0 13px;
  background: #006cb8;
  color: #fff;
  font-size: 1.125rem;
  line-height: 120%;
}
@media (min-width: 1132px) {
  .inquiry-box h2 {
    width: 400px;
    font-size: 1.25rem;
  }
}
.inquiry-box .inquiry-box-inner {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  padding: 10px 15px;
  background: #fff;
  font-size: 0.875rem;
  line-height: 140%;
}
@media (min-width: 1132px) {
  .inquiry-box .inquiry-box-inner {
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
}
.inquiry-box .inquiry-box-inner p {
  padding-top: 9px;
}
@media (min-width: 1132px) {
  .inquiry-box .inquiry-box-inner p {
    padding-top: 0;
    padding-left: 39px;
    text-align: left;
  }
}

.inquiry-tel {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  padding-bottom: 9px;
  border-bottom: 1px solid #006cb8;
}
@media (min-width: 1132px) {
  .inquiry-tel {
    align-items: flex-start;
    padding-bottom: 0;
    padding-right: 39px;
    border-bottom: 0;
    border-right: 1px solid #006cb8;
  }
}
.inquiry-tel > dt {
  line-height: 120%;
}
.inquiry-tel > dd a {
  display: flex;
  gap: 8px;
  align-items: baseline;
  color: #006cb8;
  font-size: 2rem;
  line-height: 120%;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .inquiry-tel > dd a {
    font-size: 2.5rem;
    pointer-events: none;
  }
}
@media (min-width: 375px) {
  .inquiry-tel > dd a {
    letter-spacing: 2.88px;
  }
}
.inquiry-tel > dd a::before {
  content: "";
  width: 24px;
  height: 25px;
  background: url("../img/icon/tel.svg");
  background-size: contain;
}
@media (min-width: 768px) {
  .inquiry-tel > dd a::before {
    width: 28px;
    height: 29px;
  }
}

.hamburger-header {
  position: relative;
  border-top: 4px solid #006cb6;
  border-bottom: 1px solid #d5d5d5;
  background: #fff;
}
@media (max-width: 895px) {
  .hamburger-header .logo-company {
    display: none;
  }
}

.hamburger-menu {
  background: #fff;
}
@media (max-width: 895px) {
  .hamburger-menu {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    width: 100%;
    padding: 0 16px;
    z-index: 2;
  }
}
@media (min-width: 896px) {
  .hamburger-menu {
    display: flex;
    gap: 16px;
  }
}
.hamburger-menu a {
  flex-shrink: 0;
  display: flex;
  gap: 4px;
  align-items: center;
  min-height: 64px;
  color: #006cb6;
}
@media (min-width: 896px) {
  .hamburger-menu a {
    min-height: 32px;
    padding: 3px 7px;
    border-radius: 4px;
    border: 1px solid #b6b6b6;
    font-size: 0.875rem;
    line-height: 160%;
  }
}
.hamburger-menu a::before {
  content: "";
  width: 24px;
  height: 24px;
  background-size: contain;
}
@media (min-width: 896px) {
  .hamburger-menu a::before {
    width: 16px;
    height: 16px;
  }
}
.hamburger-menu a.top::before {
  background-image: url("../img/icon/home.svg");
}
.hamburger-menu a.logout::before {
  background-image: url("../img/icon/logout.svg");
}
@media (max-width: 895px) {
  .hamburger-menu a + a {
    border-top: 1px solid #f4f4f4;
  }
}

.hamburger-backdrop {
  display: none;
}

@media (max-width: 895px) {
  body:has(.hamburger-menu.open) {
    position: fixed;
  }
  .hamburger-backdrop {
    --header-height: 72px;
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    width: 100%;
    height: calc(100dvh - var(--header-height));
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
  }
  .hamburger-menu,
  .hamburger-backdrop {
    display: none;
    opacity: 0;
    transition-property: opacity, display;
    transition-duration: 0.3s;
    transition-behavior: allow-discrete;
  }
  .hamburger-menu.open,
  .hamburger-backdrop.open {
    display: block;
    opacity: 1;
  }
  @starting-style {
    .hamburger-menu.open,
    .hamburger-backdrop.open {
      opacity: 0;
    }
  }
}
.hamburger-button {
  display: flex;
  flex-direction: column;
  gap: 6px;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 4px;
  border: 0;
}
@media (min-width: 896px) {
  .hamburger-button {
    display: none;
  }
}
.hamburger-button::before, .hamburger-button::after,
.hamburger-button span {
  content: "";
  width: 24px;
  height: 2.5px;
  border-radius: 3px;
  background: #006cb6;
  transition: 0.3s;
}
.open + .hamburger-button::before {
  transform: translateY(8px) rotate(45deg);
}
.open + .hamburger-button span {
  opacity: 0;
}
.open + .hamburger-button::after {
  transform: translateY(-9px) rotate(-45deg);
}

.member-input-list .member-list-head {
  display: none;
}
.member-input-list .member-list-body {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.member-input-list .member-list-data .no {
  display: block;
  margin-bottom: 16px;
  font-size: 1.125rem;
  font-weight: 700;
}
@media (max-width: 1099px) {
  .member-input-list .member-list-data .no::after {
    content: "人目";
  }
}
.member-input-list .cell {
  display: flex;
  border-bottom: 1px solid #ccc;
}
.member-input-list .cell:first-of-type {
  border-top: 1px solid #ccc;
}
.member-input-list .cell > dt {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  width: 50%;
  padding: 16px;
  background: #f0f9ff;
  font-weight: 700;
}
@supports (width: min(50%, 300px)) {
  .member-input-list .cell > dt {
    width: min(50%, 300px);
  }
}
.member-input-list .cell > dd {
  flex-grow: 1;
  display: flex;
  flex-wrap: wrap;
  column-gap: 1em;
  padding: 16px;
  background: #fff;
  word-break: break-all;
}
.member-input-list .cell:nth-of-type(6) > dd ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.member-input-list .cell:nth-of-type(6) > dd ul > li.checked::before {
  content: attr(data-label);
}
@media (max-width: 1099px) {
  .member-input-list .cell:nth-of-type(6) > dd ul > li:not(.checked) {
    display: none;
  }
}
.member-input-list .error-box {
  display: none;
}
.member-input-list .remove-button {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 16px;
  margin-left: auto;
  border: 0;
  font-size: 0.875rem;
  line-height: 160%;
}
.member-input-list .remove-button::before {
  content: "";
  width: 16px;
  height: 16px;
  background: url("../img/icon/remove.svg");
}
.member-input-list .remove-button:disabled {
  color: #c4c4c4;
}
.member-input-list .remove-button:disabled::before {
  background: url("../img/icon/remove-light.svg");
}
.member-input-list + .button.add {
  gap: 8px;
  width: 100%;
  height: 48px;
  margin-top: 24px;
}
.member-input-list + .button.add::before {
  content: "";
  width: 16px;
  height: 16px;
  background: url("../img/icon/plus.svg");
}
.member-input-list + .button.add:disabled::before {
  background: url("../img/icon/plus-white.svg");
}
@media (min-width: 1100px) {
  .member-input-list .member-list-head {
    display: flex;
    gap: 16px;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    background: #f0f9ff;
  }
  .member-input-list .member-list-head > span {
    padding: 16px 0;
    font-weight: 700;
  }
  .member-input-list .member-list-head > span:first-of-type {
    flex: 0 0 25px;
  }
  .member-input-list .member-list-head > span:nth-of-type(5), .member-input-list .member-list-head > span:nth-of-type(4), .member-input-list .member-list-head > span:nth-of-type(3), .member-input-list .member-list-head > span:nth-of-type(2) {
    flex: 0 0 80px;
  }
  .member-input-list .member-list-head > span:nth-of-type(6) {
    flex: 0 0 87px;
  }
  .member-input-list .member-list-head > span:nth-of-type(7) {
    flex: 0 0 56px;
  }
  .member-input-list .member-list-head > span:nth-of-type(8) {
    flex-grow: 1;
  }
  .member-input-list .member-list-head > span:nth-of-type(9) {
    flex: 0 0 24px;
  }
  .member-input-list .member-list-head small {
    font-size: 0.875rem;
    line-height: 160%;
    white-space: nowrap;
  }
  .member-input-list .member-list-head-service {
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 2px 0 1px;
  }
  .member-input-list .member-list-head-service ul {
    display: flex;
    gap: 16px;
    justify-content: center;
    padding-top: 1px;
    margin-top: 1px;
    border-top: 1px dashed #ccc;
  }
  .member-input-list .member-list-head-service ul > li {
    width: 80px;
  }
  .member-input-list .member-list-body {
    gap: 0;
    background: #fff;
  }
  .member-input-list .member-list-body > li {
    border-bottom: 1px solid #ccc;
  }
  .member-input-list .member-list-body.edit .member-list-data {
    align-items: center;
  }
  .member-input-list .member-list-data {
    display: flex;
    gap: 16px;
    line-height: 110%;
  }
  .member-input-list .member-list-data .no {
    flex: 0 0 25px;
    padding: 16px 0;
    margin-bottom: 0;
    font-size: 0.875rem;
  }
  .member-input-list .cell {
    display: contents;
  }
  .member-input-list .cell > dt {
    display: none;
  }
  .member-input-list .cell > dd {
    display: contents;
  }
  .member-input-list .cell > dd > span {
    padding: 16px 0;
  }
  .member-input-list .cell:nth-of-type(2) > dd > span, .member-input-list .cell:first-of-type > dd > span {
    flex: 0 0 80px;
  }
  .member-input-list .cell:nth-of-type(3) > dd > span {
    flex: 0 0 87px;
  }
  .member-input-list .cell:nth-of-type(4) > dd > span {
    flex: 0 0 56px;
  }
  .member-input-list .cell:nth-of-type(5) > dd > span {
    flex-grow: 1;
  }
  .member-input-list .cell:nth-of-type(6) > dd ul {
    flex-shrink: 0;
    flex-direction: row;
    justify-content: center;
    min-width: 128px;
  }
  .member-input-list .cell:nth-of-type(6) > dd ul > li {
    width: 80px;
    padding: 16px 0;
    text-align: center;
  }
  .member-input-list .cell:nth-of-type(6) > dd ul > li::before {
    content: "ー";
  }
  .member-input-list .cell:nth-of-type(6) > dd ul > li.checked::before {
    content: "○";
  }
  .member-input-list .cell .error {
    border-color: #dc1b1b;
    background: #f9e6e6;
  }
  .member-input-list .form-field {
    display: contents;
  }
  .member-input-list .form-field > dt {
    display: none;
  }
  .member-input-list .form-field:nth-of-type(2) > dd, .member-input-list .form-field:first-of-type > dd {
    display: contents;
  }
  .member-input-list .form-field:nth-of-type(2) .form-control, .member-input-list .form-field:first-of-type .form-control {
    flex: 0 0 80px;
  }
  .member-input-list .form-field:nth-of-type(3) .form-control {
    flex: 0 0 87px;
  }
  .member-input-list .form-field:nth-of-type(4) .form-control {
    flex: 0 0 56px;
  }
  .member-input-list .form-field:nth-of-type(5) .form-control {
    flex-grow: 1;
  }
  .member-input-list .form-field:nth-of-type(6) .form-control {
    flex-shrink: 0;
    flex-direction: row;
    justify-content: center;
    min-width: 128px;
  }
  .member-input-list .form-field:nth-of-type(6) .form-control .check-wrap {
    align-items: center;
    justify-content: center;
    width: 80px;
  }
  .member-input-list .form-field:nth-of-type(6) .form-control .check-wrap input {
    margin: 0;
  }
  .member-input-list .form-field:nth-of-type(6) .form-control .check-wrap span {
    display: none;
  }
  .member-input-list .name-field {
    display: contents;
  }
  .member-input-list .name-field label > span {
    display: none;
  }
  .member-input-list .form-control {
    padding: 16px 0;
  }
  .member-input-list .form-control .select,
  .member-input-list .form-control .input {
    width: 100%;
    height: 40px;
  }
  .member-input-list .form-control .input {
    padding: 0 5px;
  }
  .member-input-list .form-control .select {
    padding-left: 8px;
    padding-right: 30px;
    background-position: center right 8px;
  }
  .member-input-list .form-control .select:has(option:checked[value=""]) {
    color: #f8f8f8;
  }
  .member-input-list .form-control .select:has(option:checked[value=""]).invalid {
    color: #f9e6e6;
  }
  .member-input-list .form-control .invalid.error,
  .member-input-list .form-control .invalid + .error {
    display: none;
  }
  .member-input-list .error-box {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .member-input-list .error-box:has(.invalid) {
    margin-bottom: 16px;
  }
  .member-input-list .remove-button {
    flex-shrink: 0;
    flex-direction: column;
    margin-top: 0;
    font-size: 0.75rem;
    line-height: 1;
  }
  .member-input-list + .button.add {
    width: auto;
  }
}

.member-list .member-list-head {
  display: none;
}
.member-list .member-list-body {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
@media (max-width: 1099px) {
  .member-list .member-list-body > li {
    pointer-events: none;
  }
}
.member-list .member-list-data .no {
  display: none;
}
.member-list .member-data-head {
  display: flex;
  flex-direction: column;
}
.member-list .member-data-head .mado {
  min-height: 50px;
  padding: 16px 0;
  border-top: 1px solid #ccc;
  color: #006cb6;
  font-weight: 700;
  line-height: 110%;
}
.member-list .member-data-head .mado.edited {
  background: #fff9a4;
  color: #dc1b1b;
}
.member-list .member-data-head .mado br {
  display: none;
}
.member-list .action-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.member-list .action-box .no {
  font-size: 1.125rem;
  font-weight: 700;
}
.member-list .action-box .no::after {
  content: "人目";
}
.member-list .action-button-group {
  display: flex;
  align-items: center;
  gap: 24px;
}
.member-list .cell {
  display: flex;
  border-bottom: 1px solid #ccc;
}
.member-list .cell:first-of-type {
  border-top: 1px solid #ccc;
}
.member-list .cell > dt {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  width: 50%;
  padding: 16px;
  background: #f0f9ff;
  font-weight: 700;
}
@supports (width: min(50%, 300px)) {
  .member-list .cell > dt {
    width: min(50%, 300px);
  }
}
.member-list .cell > dd {
  flex-grow: 1;
  display: flex;
  flex-wrap: wrap;
  column-gap: 1em;
  padding: 16px;
  background: #fff;
  word-break: break-all;
}
.member-list .cell > dd.edited {
  background: #fff9a4;
}
.member-list .member-list-service {
  display: flex;
  border-bottom: 1px solid #ccc;
}
.member-list .member-list-service > dt {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  width: 50%;
  padding: 8px 16px;
  background: #f0f9ff;
  font-weight: 700;
}
@supports (width: min(50%, 300px)) {
  .member-list .member-list-service > dt {
    width: min(50%, 300px);
  }
}
@media (max-width: 1099px) {
  .member-list .member-list-service > dd {
    flex-grow: 1;
  }
}
.member-list .member-service {
  display: flex;
  flex-direction: column;
  gap: 13px;
  padding: 16px;
  line-height: 110%;
}
.member-list .member-service + .member-service {
  border-top: 1px dashed #ccc;
}
.member-list .member-service > dt {
  font-weight: 700;
}
.member-list .member-service > dd {
  word-break: break-all;
}
.member-list .member-service.edited {
  background: #fff9a4;
}
.member-list .disabled .action-box::before,
.member-list .disabled .member-list-data::before,
.member-list .disabled .member-service,
.member-list .disabled .cell span {
  color: #999;
}
@media (min-width: 1100px) {
  .member-list {
    font-size: 0.875rem;
    line-height: 160%;
  }
  .member-list .member-list-head {
    display: flex;
    gap: 12px;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    background: #f0f9ff;
  }
  .member-list .member-list-head > span {
    padding: 16px 0;
    font-weight: 700;
  }
  .member-list .member-list-head > span:first-of-type {
    flex: 0 0 69px;
  }
  .member-list .member-list-head > span:nth-of-type(5), .member-list .member-list-head > span:nth-of-type(4), .member-list .member-list-head > span:nth-of-type(3), .member-list .member-list-head > span:nth-of-type(2) {
    flex: 0 0 70px;
  }
  .member-list .member-list-head > span:nth-of-type(6) {
    flex: 0 0 63px;
  }
  .member-list .member-list-head > span:nth-of-type(7) {
    flex: 0 0 28px;
  }
  .member-list .member-list-head > span:nth-of-type(8) {
    flex-grow: 1;
  }
  .member-list .member-list-head > span:nth-of-type(9) {
    flex: 0 0 48px;
  }
  .member-list .member-list-head-service {
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 2px 0;
  }
  .member-list .member-list-head-service ul {
    display: flex;
    gap: 24px;
    justify-content: center;
    padding-top: 2px;
    margin-top: 2px;
    border-top: 1px dashed #ccc;
  }
  .member-list .member-list-head-service ul > li {
    width: 110px;
  }
  .member-list .member-list-body {
    gap: 0;
    background: #fff;
  }
  .member-list .member-list-body > li {
    position: relative;
    padding-left: 44px;
    border-bottom: 1px solid #ccc;
  }
  .member-list .member-list-body > li.disabled {
    pointer-events: none;
  }
  .member-list .member-list-body.edit > li:not(.disabled):hover {
    background: #e4e4e4;
    cursor: pointer;
  }
  .member-list .member-list-data {
    display: flex;
    gap: 12px;
    line-height: 110%;
  }
  .member-list .member-list-data .no {
    flex: 0 0 25px;
    display: block;
    padding: 16px 0;
    margin-bottom: 0;
    font-size: 0.875rem;
  }
  .member-list .member-data-head {
    display: contents;
  }
  .member-list .member-data-head .mado {
    position: absolute;
    top: 0;
    left: 8px;
    width: 24px;
    height: 100%;
    min-height: auto;
    padding-top: 12px;
    border: 0;
    font-size: 0.6875rem;
    text-align: center;
  }
  .member-list .member-data-head .mado br {
    display: block;
  }
  .member-list .action-box {
    display: none;
  }
  .member-list .cell {
    display: contents;
  }
  .member-list .cell > dt {
    display: none;
  }
  .member-list .cell > dd {
    display: contents;
  }
  .member-list .cell > dd > span {
    padding: 16px 0;
  }
  .member-list .cell > dd.edited > span {
    background: #fff9a4;
  }
  .member-list .cell:nth-of-type(4) > dd > span, .member-list .cell:nth-of-type(3) > dd > span, .member-list .cell:nth-of-type(2) > dd > span, .member-list .cell:first-of-type > dd > span {
    flex: 0 0 70px;
  }
  .member-list .cell:nth-of-type(5) > dd > span {
    flex: 0 0 63px;
  }
  .member-list .cell:nth-of-type(6) > dd > span {
    flex: 0 0 28px;
  }
  .member-list .cell:nth-of-type(7) > dd > span {
    flex-grow: 1;
  }
  .member-list .member-list-service {
    display: contents;
  }
  .member-list .member-list-service > dt {
    display: none;
  }
  .member-list .member-list-service > dd {
    flex-shrink: 0;
    display: flex;
    gap: 24px;
    justify-content: center;
    text-align: center;
    min-width: 169px;
  }
  .member-list .member-service {
    display: contents;
  }
  .member-list .member-service > dt {
    display: none;
  }
  .member-list .member-service > dd {
    width: 110px;
    padding: 16px 0;
  }
  .member-list .member-service.edited > dd {
    background: #fff9a4;
  }
}

.member-list-mado-note,
.member-list-note {
  color: #dc1b1b;
  font-size: 0.875rem;
  line-height: 160%;
}
@media (max-width: 1099px) {
  .member-list-mado-note,
  .member-list-note {
    margin-top: 8px;
  }
}
@media (min-width: 1100px) {
  .member-list-mado-note,
  .member-list-note {
    margin-bottom: 16px;
  }
}

.member-list-fixed-box {
  position: relative;
  height: 144px;
}
@media (min-width: 1100px) {
  .member-list-fixed-box {
    height: 64px;
  }
}

.member-list-fixed-target {
  position: absolute;
  top: 0;
}

.member-list-fixed-header {
  z-index: 1;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding-bottom: 10px;
  pointer-events: none;
}
.member-list-fixed-header.fixed {
  position: fixed;
}

.member-list-fixed-header-shadow {
  transition: 0.3s;
  background: #fff;
  pointer-events: auto;
}
.fixed .member-list-fixed-header-shadow {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.24);
}

.member-list-fixed-header-box {
  transition: 0.3s;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  max-width: 1100px;
  padding: 16px 0;
  margin: 0 auto;
}
@media (min-width: 1100px) {
  .member-list-fixed-header-box {
    flex-direction: row;
    justify-content: space-between;
  }
}
@media (min-width: 1100px) {
  .fixed .member-list-fixed-header-box {
    padding: 24px 0;
  }
}

.member-list-fixed-footer {
  z-index: 1;
  position: sticky;
  bottom: 0;
  background: #fff;
  box-shadow: 0 -4px 8px 0 rgba(0, 0, 0, 0.24);
}

.member-list-fixed-footer-box {
  display: flex;
  flex-direction: column-reverse;
  gap: 16px;
  align-items: center;
  padding-top: 16px;
  padding-bottom: 16px;
}
@media (min-width: 1100px) {
  .member-list-fixed-footer-box {
    flex-direction: row-reverse;
    justify-content: space-between;
  }
}

.member-list-fixed-footer-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  color: #dc1b1b;
  font-size: 0.875rem;
  line-height: 160%;
}
@media (min-width: 1100px) {
  .member-list-fixed-footer-text {
    flex-direction: row;
  }
}
.member-list-fixed-footer-text .tag {
  padding: 8px 16px;
  color: #000;
  border-radius: 14px;
  background: #fff9a4;
  line-height: 100%;
}

.member-list-search {
  display: flex;
  gap: 8px;
}
.member-list-search .input {
  width: 200px;
  height: 32px;
  background: #fff;
}
.member-list-search .button {
  padding: 0 8px;
  border: 0;
  background: #006cb6;
  color: #fff;
  font-size: 0.875rem;
}

.edit-button,
.undo-button {
  display: flex;
  align-items: center;
  gap: 4px;
  border: 0;
  color: #006cb6;
  pointer-events: auto;
}
.edit-button::before,
.undo-button::before {
  content: "";
  width: 16px;
  height: 16px;
}
.edit-button:disabled,
.undo-button:disabled {
  color: #c4c4c4;
}

.undo-button::before {
  background: url("../img/icon/undo.svg");
}
.undo-button:disabled::before {
  background: url("../img/icon/undo-light.svg");
}
@media (min-width: 1100px) {
  .undo-button {
    flex-shrink: 0;
    flex-direction: column;
    justify-content: center;
    font-size: 0.75rem;
    line-height: 1;
  }
}
@media (max-width: 1099px) {
  .member-list-data .undo-button {
    display: none;
  }
}
.disabled .undo-button {
  visibility: hidden;
  pointer-events: none;
}

.edit-button::before {
  background: url("../img/icon/edit.svg");
}
.edit-button:disabled::before {
  background: url("../img/icon/edit-light.svg");
}

.member-edit-service-wrap {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 16px;
}
@media (min-width: 768px) {
  .member-edit-service-wrap {
    gap: 24px;
    padding: 24px;
  }
}

.member-edit-service-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (min-width: 768px) {
  .member-edit-service-list {
    gap: 24px;
  }
}
.member-edit-service-list > li {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 768px) {
  .member-edit-service-list > li {
    gap: 8px;
  }
}

.member-edit-service {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 768px) {
  .member-edit-service {
    flex-direction: row;
    flex-wrap: wrap;
    column-gap: 32px;
  }
  .member-edit-service legend {
    width: 13.75em;
  }
}
.member-edit-service.readonly, .readonly .member-edit-service {
  color: #ccc;
}
.member-edit-service .radio-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .member-edit-service .radio-group {
    flex-direction: row;
    column-gap: 32px;
  }
}

.pagination {
  display: flex;
  gap: 16px;
  align-items: center;
  line-height: 1;
}
.pagination .current,
.pagination .page {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border: 0;
}
.pagination .page {
  color: #006cb6;
}
.pagination .current {
  border-bottom: 1px solid #006cb6;
  color: inherit;
}
.pagination .next,
.pagination .prev {
  width: 16px;
  height: 24px;
  border: 0;
  background: url("../img/icon/chevron-right.svg") no-repeat;
  background-position: center;
}
.pagination .next.disabled,
.pagination .prev.disabled {
  visibility: hidden;
}
.pagination .prev {
  transform: scale(-1, 1);
}
