@charset "UTF-8";
@import url("https://cdn.jsdelivr.net/npm/destyle.css@4.0.1/destyle.min.css");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
html {
  font-size: 12px;
  font-family: "Noto Sans JP", sans-serif;
  font-feature-settings: "palt";
  font-optical-sizing: auto;
  line-height: 1.3333333333;
}

a {
  color: rgb(0, 153, 255);
}

button:not(.no-style), a.button {
  border-radius: 0.25rem;
  background-color: rgb(0, 153, 255);
  color: #ffffff;
  border: 1px rgb(0, 153, 255) solid;
  padding: calc(0.5rem - 1px) calc(1rem - 1px);
  display: inline-block;
}
button:not(.no-style).button-outline, a.button.button-outline {
  border: 1px rgb(0, 153, 255) solid;
  background-color: #ffffff;
  color: rgb(0, 153, 255);
}
button:not(.no-style).button-small, a.button.button-small {
  padding: calc(0.3333333333rem - 1px) calc(0.6666666667rem - 1px);
}

input[type=text], input[type=password], select, textarea {
  border: 1px solid #aaaaaa;
  padding: calc(0.5rem - 1px);
  border-radius: 0.25rem;
}
input[type=text]::-moz-placeholder, input[type=password]::-moz-placeholder, select::-moz-placeholder, textarea::-moz-placeholder {
  color: #cccccc;
}
input[type=text]::placeholder, input[type=password]::placeholder, select::placeholder, textarea::placeholder {
  color: #cccccc;
}
input[type=text]:disabled, input[type=password]:disabled, select:disabled, textarea:disabled {
  background-color: #eeeeee;
  color: #666666;
}

textarea {
  min-height: 5rem;
  resize: vertical;
  field-sizing: content;
}

html {
  height: 100%;
}
html body {
  height: 100%;
  display: flex;
  flex-direction: column;
  overscroll-behavior: none;
}
html body main {
  flex-grow: 1;
  flex-shrink: 1;
  margin: 1rem;
  overflow: auto;
}

section + section {
  margin-top: 1rem;
}

h1 {
  border-left: 0.25rem solid rgb(0, 153, 255);
  padding-left: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0;
  padding-bottom: 0;
  height: 2rem;
  margin-bottom: 1rem;
}
h1 + * {
  margin-top: 0.5rem;
}

h2 {
  -webkit-text-decoration: underline 0.25rem rgb(0, 153, 255);
          text-decoration: underline 0.25rem rgb(0, 153, 255);
}
h2 + * {
  margin-top: 0.5rem;
}

th, td {
  border: 1px solid #000000;
  padding: 0.25rem 0.5rem;
}

th {
  background-color: #dddddd;
}

span.link {
  color: rgb(0, 153, 255);
  cursor: pointer;
}

.hidden {
  display: none !important;
}

.checkbox {
  display: inline-block;
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  border: 1px solid #aaaaaa;
  border-radius: 0.25rem;
}
.checkbox:checked {
  position: relative;
  border-color: rgb(0, 153, 255);
  background-color: rgb(0, 153, 255);
}
.checkbox:checked::after {
  content: "";
  position: absolute;
  top: 0.2rem;
  left: 0.175rem;
  width: 0.75rem;
  height: 0.5rem;
  border-bottom: 0.2rem solid #ffffff;
  border-left: 0.2rem solid #ffffff;
  transform: rotate(-45deg);
}

.radio {
  display: inline-block;
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  border: 1px solid #aaaaaa;
  border-radius: 9999rem;
}
.radio:checked {
  position: relative;
  border-color: rgb(0, 153, 255);
  background-color: rgb(0, 153, 255);
}
.radio:checked::after {
  content: "";
  position: absolute;
  inset: 0.25rem;
  border-radius: 9999rem;
  background-color: #ffffff;
}

ul.list {
  padding-left: 1rem;
  list-style-position: outside;
  list-style-type: "・";
}
ul.list ul {
  padding-left: 1rem;
}
ul.list li + li, ul.list li > ul > li {
  margin-top: 0.5rem;
}

ul.jouken {
  border-top: 1px solid transparent;
  padding-top: calc(0.5rem - 1px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.25rem;
}
ul.jouken > li {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
ul.jouken > li > input[type=radio] + label + div {
  width: 100%;
}
ul.jouken > li > input[type=radio]:not(:checked) + label + div {
  display: none !important;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}
.breadcrumb li:not(:last-of-type)::after {
  content: "›";
  margin: 0 0.6em;
  color: #777;
}

.blue-group {
  width: 100%;
  border: 1px solid rgb(0, 153, 255);
  border-radius: 0.5rem;
  padding: 1rem;
}

.internal-form {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 0.5rem 1rem;
}
.internal-form > :nth-child(2n+1) {
  border-top: 1px solid transparent;
  padding-top: calc(0.5rem - 1px);
  border-bottom: 1px solid transparent;
  padding-bottom: calc(0.5rem - 1px);
}
.internal-form > :nth-child(2n).internal-form-field {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.internal-form > :nth-child(2n).internal-form-field-url {
  display: flex;
  gap: 0.5rem;
}
.internal-form > :nth-child(2n).internal-form-field-url > input[type=text] {
  flex-grow: 1;
}
.internal-form > :nth-child(2n).internal-form-field-url > button {
  flex-shrink: 0;
}
.internal-form > .internal-form-buttons {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: end;
  gap: 0.5rem;
  grid-column: 1/3;
}

div.jouken-select > ul {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.25rem;
}
div.jouken-select > ul > li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
div.jouken-select > ul > li > input[type=text].nenrei {
  width: 4rem;
}

div.jouken-detail {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
div.jouken-detail > ul {
  display: flex;
  gap: 1rem;
}
div.jouken-detail > ul > li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.label.label-required::after {
  content: "*";
  color: red;
}

.buttons {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  gap: 0.5rem;
}