:root {
  --color-blue: #009AC2;
  --color-beige: #E1A96E;
  --color-black: #1A1A1A;
  --color-gray: #e5e7eb;
  --color-red: #f23030;
  --color-l-red: #f97474;
}

.tab,
.tab2,
.br-sp {
  display: none;
}

.br-pc {
  display: block;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--color-black);
}

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

a {
  max-width: 100%;
  transition: 0.3s;
}

.flex {
  display: flex;
  justify-content: center;
  align-items: center;
}

button {
  max-width: 100%;
  background: var(--color-blue);
  color: white;
  transition: 0.3s;
}

button:hover {
  background: var(--color-beige);
}

input,
select,
textarea {
  -webkit-appearance: none;
  appearance: none;
  background: white;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 0.5rem 0.8rem !important;
}

aside.error,
aside.success {
  background: #aff3c8;
  color: #21412c;
  text-align: center;
  border: none;
  border-radius: 5px;
  padding: 0.5rem;
  margin: 1rem auto;
}

.red {
  color: var(--color-red);
}

input[type="date"],
input[type="time"] {
  max-width: 100%;
  width: 100%;
  height: 2.5em;
  position: relative;
}

input[type="date"]::-webkit-calendar-picker-indicator,
input[type="time"]::-webkit-calendar-picker-indicator {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
}

input[type="date"]::-webkit-inner-spin-button,
input[type="time"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

input[type="date"]::-webkit-clear-button,
input[type="time"]::-webkit-clear-button {
  -webkit-appearance: none;
}

input[type="date"]::-webkit-date-and-time-value,
input[type="time"]::-webkit-date-and-time-value {
  text-align: left;
}

input[type="date"]::after,
input[type="time"]::after {
  content: "\f133";
  font-family: 'Font Awesome 6 Free';
  font-weight: 400;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

input[type="time"]::after {
  content: "\f017";
}

input[type="checkbox"] {
  width: 1rem;
  height: 1rem;
  border: none;
  padding: 0 !important;
  position: relative;
}

input[type="checkbox"]::before {
  content: "\f0c8";
  font-family: 'Font Awesome 6 Free';
  color: var(--color-blue);
  font-size: 1.3rem;
  vertical-align: middle;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

input[type="checkbox"]:checked::before {
  content: "\f14a";
  font-weight: bold;
}

.select {
  position: relative;
}

.select::after {
  content: "\f107";
  font-family: 'Font Awesome 6 Free';
  font-weight: bold;
  position: absolute;
  top: 55%;
  right: 10px;
  transform: translateY(-50%);
  pointer-events: none;
}

select {
  appearance: none;
}

button.toggle-password {
  width: auto !important;
  height: auto !important;
  background: none !important;
  padding: 0;
  right: 0.5rem;
}

button.toggle-password:hover {
  background: none !important;
}

.caution {
  margin-top: 5px;
}

summary {
  display: flex !important;
  align-items: center;
  border: 1px solid var(--color-blue);
  padding: 0 10px;
}

summary::marker {
  content: none !important;
}

summary::before {
  content: "\f0da";
  font-family: 'Font Awesome 6 Free';
  font-weight: bold;
  font-size: 1.5rem;
  margin-right: 5px;
}

details[open] summary::before {
  content: "\f0d7";
}

table {
  border: none;
}





@media screen and (max-width: 1200px) {

  .br-pc,
  .tab2,
  .br-sp {
    display: none;
  }

  .tab {
    display: block;
  }

  aside.error,
  aside.success {
    width: 70%;
  }
}





@media screen and (max-width: 1024px) {

  .br-pc,
  .tab,
  .br-sp {
    display: none;
  }

  .tab2 {
    display: block;
  }
}





@media screen and (max-width: 767px) {
  body {
    padding-bottom: 3rem;
  }

  .br-pc,
  .tab,
  .tab2 {
    display: none;
  }

  .br-sp {
    display: block;
  }

  p {
    font-size: 14px;
  }

  aside.error,
  aside.success {
    width: 90%;
    font-size: 14px;
  }

  .overflow-x-auto table {
    width: max-content;
    margin: 0;
  }
}