::before,
::after {
  box-sizing: border-box;
  border-width: 0;
  min-width: 0;
}

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -webkit-tap-highlight-color: transparent;
  /* 3*/
}

body {
  margin: 0;
}

main {
  display: block;
}

p,
table,
blockquote,
dl {
  margin: 0;
}

button {
  font-family: "Noto Sans JP" !important;
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

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

dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

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

svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

textarea {
  overflow: auto;
}

table {
  border-color: inherit;
  /* 1 */
  border-collapse: collapse;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: normal;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  height: 100%;
  margin: 0;
  letter-spacing: 0.03em;
}

body {
  font-size: 15px;
  font-family: "Noto Sans JP" !important;
  background-color: #EEF1F3;
  color: #252525;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  word-break: break-all;
}
body:has(#hamburger.active):after {
  position: fixed;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(0, 0, 0, 0.5);
}

h1 {
  font-weight: 500;
}

h2 {
  color: #004B89;
  font-size: 24px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  h2 {
    font-size: 21px;
  }
}

h3 {
  font-size: 20px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  h3 {
    font-size: 17px;
  }
}

li {
  list-style-type: none;
}

a {
  text-decoration: none;
  color: #252525;
  cursor: pointer;
  font-size: 15px;
  align-self: center;
  font-weight: 500;
}

.inter,
time {
  font-family: "inter";
  letter-spacing: 0.02em;
}

svg {
  display: inline-block;
}

label {
  cursor: pointer;
}

.accordion {
  display: grid;
  grid-template-rows: 32px 0fr;
  transition: 0.3s ease;
  margin-bottom: 8px;
}
@media screen and (max-width: 359px) {
  .accordion {
    grid-template-rows: 75px 0fr;
  }
}
.accordion:hover label p {
  color: #3887AB;
}
.accordion label {
  position: relative;
  align-self: center;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .accordion label {
    padding-left: 0;
    width: 95%;
  }
}
.accordion label.active .arrow {
  transform: scaleY(-1);
}
.accordion label .arrow {
  position: absolute;
  display: inline-block;
  right: -20px;
  top: 30%;
  width: 15px;
  height: 15px;
  transition: transform 0.3s ease;
}
.accordion label .arrow span {
  background-color: #929292;
  position: absolute;
  width: 8px;
  height: 1px;
  border-radius: 5px;
  display: inline-block;
  box-sizing: border-box;
}
.accordion label .arrow span:nth-of-type(1) {
  top: 50%;
  right: 5px;
  transform: rotate(40deg);
}
.accordion label .arrow span:nth-of-type(2) {
  top: 50%;
  right: 0;
  transform: rotate(-40deg);
}
.accordion:has(input:checked) {
  grid-template-rows: 32px 1fr;
}
@media screen and (max-width: 767px) {
  .accordion:has(input:checked) {
    gap: 20px;
  }
}
@media screen and (max-width: 359px) {
  .accordion:has(input:checked) {
    grid-template-rows: 75px 1fr;
  }
}
.accordion input {
  display: none;
}
.accordion .accordion--inner {
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .accordion .accordion--inner {
    width: 95%;
  }
}
.accordion .accordion--inner > div {
  margin-top: 20px;
  display: flex;
  align-items: center;
}

.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 100;
}
.modal.active {
  display: flex;
}
.modal .modal-content {
  max-width: 512px;
  background-color: #fff;
  padding: 48px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .modal .modal-content {
    width: 90%;
    padding: 36px 28px;
  }
}
.modal .modal-content #adduser .flex {
  gap: 5px;
}
@media screen and (max-width: 767px) {
  .modal .modal-content #adduser .flex {
    display: flex;
  }
}
.modal .modal-content #adduser > div:has(p.error-active) .flex {
  margin-bottom: 0;
}
.modal .modal-content h4 {
  font-size: 24px;
  margin-bottom: 36px;
}
@media screen and (max-width: 767px) {
  .modal .modal-content h4 {
    font-size: 21px;
    margin-bottom: 24px;
  }
}
.modal .modal-content .exit {
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 20px;
  width: 30px;
  height: 30px;
}
.modal .modal-content label {
  font-size: 13px;
  margin-bottom: 5px;
}
.modal .modal-content div:has(#admin) > label {
  margin-right: 20px;
}
.modal .modal-content button[type=submit] {
  width: 100%;
}
.modal .modal-content form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.modal-check,
.modal-complete {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .modal-check .modal-content,
  .modal-complete .modal-content {
    max-width: 345px;
  }
}
.modal-check .modal-content img,
.modal-complete .modal-content img {
  margin: 0 auto;
  width: 44px;
  height: 44px;
}
.modal-check .modal-content h4,
.modal-complete .modal-content h4 {
  margin-top: 24px;
  font-size: 24px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .modal-check .modal-content h4,
  .modal-complete .modal-content h4 {
    font-size: 20px;
    width: 80%;
    margin: 16px auto 0;
  }
}

.modal-check .modal-content h4 {
  margin-bottom: 0px;
}

.modal-complete .modal-content h4 {
  margin-bottom: 24px;
}
.modal-complete .modal-content p {
  max-width: 412px;
  text-align: left;
}

.btn {
  border: 1px solid transparent;
  border-radius: 30px;
  text-align: center;
  display: inline-block;
  padding: 15px 20px;
}

.btn-s,
.btn-m {
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn-s {
  width: 110px;
  font-weight: normal;
  transition: all 0.15s ease;
}

.btn-s:hover {
  color: #3887AB;
  background-color: #E0E9F1;
}

.btn-m {
  width: 100%;
  flex: 1;
}

.btn-arrow {
  width: 5px;
  height: 10px;
  stroke: #004B89;
}

a:hover .btn-arrow path {
  stroke: white;
}

.circle-btn {
  border: 1px solid #000000;
  border-radius: 30%;
}

.rounded {
  border-radius: 8px;
}

.border-grey {
  border: 1px solid rgb(225, 225, 225);
}

.bg-white {
  background-color: #fff;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
@media screen and (max-width: 882px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .grid {
    display: block;
  }
}

.pin {
  width: 18px;
}

.sub-grid {
  display: grid;
  gap: 8px;
}
.sub-grid > div:first-of-type {
  color: #004B89;
  display: flex;
  flex-wrap: wrap;
  align-content: baseline;
  font-weight: 500;
  font-size: 14px;
}
.sub-grid > div:first-of-type p,
.sub-grid > div:first-of-type span {
  display: inline;
}
.sub-grid > div:first-of-type span {
  margin: 0 5px;
}
@media screen and (max-width: 767px) {
  .sub-grid {
    margin-bottom: 4px;
  }
}

.hover-dark {
  color: #004B89;
  background-color: #E0E9F1;
  transition: all 0.15s ease;
}

.hover-dark:hover {
  color: #fff;
  background-color: #004B89;
}

.hover-light-blue {
  font-size: 14px;
  color: #fff;
  background-color: #004B89;
  transition: all 0.15s ease;
}

.hover-light-blue:hover {
  color: #004B89;
  background-color: #E0E9F1;
}

.tag {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 28px 0;
}
@media screen and (max-width: 767px) {
  .tag {
    margin: 32px 0;
  }
}

.eng {
  letter-spacing: 0.02em;
}

main {
  flex: 1;
}

main,
footer {
  width: calc(100% - 260px);
  margin: 56px 0 0 auto;
}
@media screen and (max-width: 1182px) {
  main,
  footer {
    width: 100%;
    margin: 65px 0 0 auto;
  }
}

section {
  margin: 40px 40px 0;
}
@media screen and (max-width: 1182px) {
  section {
    margin: 40px 20px 0;
  }
}

#dash-board h2 > img,
#service h2 > img,
#knowledge h2 > img,
#document h2 > img,
#faq h2 > img,
#meeting h2 > img {
  margin-right: 8px;
  vertical-align: middle;
}

#service,
#knowledge,
#document,
#faq,
#meeting {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  #service,
  #knowledge,
  #document,
  #faq,
  #meeting {
    font-size: 16px;
  }
}
#service h2,
#knowledge h2,
#document h2,
#faq h2,
#meeting h2 {
  margin-bottom: 16px;
}
#service > div:first-child p,
#knowledge > div:first-child p,
#document > div:first-child p,
#faq > div:first-child p,
#meeting > div:first-child p {
  font-size: 17px;
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  #service > div:first-child p,
  #knowledge > div:first-child p,
  #document > div:first-child p,
  #faq > div:first-child p,
  #meeting > div:first-child p {
    font-size: 16px;
  }
}

#service .btn-position,
#knowledge .btn-position,
#document .btn-position {
  margin: 15px 0 auto;
  text-align: center;
}
#service .btn-position a,
#knowledge .btn-position a,
#document .btn-position a {
  padding: 15px 20px;
  display: inline-flex;
  align-items: center;
  box-sizing: content-box;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  #service .bg-white:nth-child(n+4),
  #knowledge .bg-white:nth-child(n+4),
  #document .bg-white:nth-child(n+4) {
    display: none;
  }
}
#service .bg-white a,
#knowledge .bg-white a,
#document .bg-white a {
  margin-top: 12px;
}
#service .bg-white span,
#knowledge .bg-white span,
#document .bg-white span {
  align-self: center;
}
#service .bg-white .btn-s,
#knowledge .bg-white .btn-s,
#document .bg-white .btn-s {
  padding: 12px 10px;
  text-align: center;
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  #service .bg-white .btn-s,
  #knowledge .bg-white .btn-s,
  #document .bg-white .btn-s {
    font-size: 13px;
  }
}

#news time,
#knowledge time {
  color: rgb(170, 170, 170);
  display: block;
  font-size: 14px;
}

#dash-board span,
#service span,
#knowledge span,
#document span {
  display: inline-block;
  font-size: 14px;
  color: #004B89;
  font-weight: 500;
}

#faq,
#meeting {
  scroll-margin-top: 90px;
}

header > div {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  height: 56px;
  background-color: #fff;
  padding: 10px 24px;
  width: 100%;
  z-index: 100;
}
@media screen and (max-width: 1182px) {
  header > div {
    padding: 14px 16px;
    height: 64px;
  }
}
header > div #hamburger {
  display: none;
}
@media screen and (max-width: 1182px) {
  header > div #hamburger {
    align-self: center;
    position: relative;
    width: 36px;
    height: 36px;
    background: linear-gradient(#FB8E3A, #F0791E);
    border-radius: 50%;
    display: inline-block;
    transition: all 0.5s;
    box-sizing: border-box;
  }
  header > div #hamburger span {
    background-color: #fff;
    position: absolute;
    width: 14px;
    height: 2px;
    border-radius: 2px;
    transition: all 0.5s;
    box-sizing: border-box;
  }
  header > div #hamburger span:nth-of-type(1) {
    top: 12px;
    left: 11px;
  }
  header > div #hamburger span:nth-of-type(2) {
    top: 17px;
    left: 11px;
  }
  header > div #hamburger span:nth-of-type(3) {
    bottom: 12px;
    left: 11px;
  }
}
header > div #hamburger.active span:nth-of-type(1) {
  transform: translateY(5px) rotate(45deg);
}
header > div #hamburger.active span:nth-of-type(2) {
  opacity: 0;
}
header > div #hamburger.active span:nth-of-type(3) {
  transform: translateY(-5px) rotate(-45deg);
}
@media screen and (max-width: 1182px) {
  header > div > a {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
}
header > div a.flex {
  gap: 4px;
  font-size: 14px;
}
header > div a.flex p {
  color: #666666;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  header > div a.flex p {
    display: none;
  }
}
header > div a.flex path:nth-of-type(1) {
  stroke: #BDBDBD;
}
header > div a.flex path:nth-of-type(2), header > div a.flex path:nth-of-type(3) {
  fill: #929292;
}
header > div a.flex:hover p {
  color: rgba(146, 146, 146, 0.5);
}
header > div a.flex:hover path:nth-of-type(1) {
  stroke: rgba(189, 189, 189, 0.5);
}
header > div a.flex:hover path:nth-of-type(2), header > div a.flex:hover path:nth-of-type(3) {
  fill: rgba(189, 189, 189, 0.5);
}
header .flex {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  header .flex {
    gap: 16px;
  }
}
header .flex .menu-btn {
  display: flex;
  gap: 4px;
}
header .flex .menu-btn button {
  width: 36px;
  height: 32px;
  background-color: #929292;
  transition: background-color 0.15s ease;
  -webkit-mask-image: url("/assets/svg/mypage.svg");
          mask-image: url("/assets/svg/mypage.svg");
  -webkit-mask-size: cover;
          mask-size: cover;
  -webkit-mask-position: center;
          mask-position: center;
}
@media screen and (max-width: 767px) {
  header .flex .menu-btn button {
    width: 31.03px;
    height: 27.43px;
  }
}
header .flex .menu-btn .arrow {
  cursor: pointer;
  -webkit-mask-image: url("/assets/svg/arrow-down.svg");
          mask-image: url("/assets/svg/arrow-down.svg");
  width: 14px;
  height: 7px;
  background-color: #252525;
  transition: background-color 0.15s ease;
  -webkit-mask-size: cover;
          mask-size: cover;
  -webkit-mask-position: center;
          mask-position: center;
  align-self: center;
}
header .flex .menu-btn.active button {
  background-color: #80A5C4;
}
header .flex .menu-btn.active .arrow {
  background-color: #004B89;
}
header .flex .menu-btn.active + .menu {
  display: block;
}
header .flex .menu {
  position: absolute;
  padding: 24px;
  top: 50px;
  right: 25px;
  width: 284px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  display: none;
  border-radius: 4px;
}
@media screen and (max-width: 767px) {
  header .flex .menu {
    right: 10px;
    width: 250px;
  }
}
header .flex .menu p {
  color: rgb(170, 170, 170);
  margin-bottom: 20px;
  font-size: 15px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  header .flex .menu p {
    font-size: 14px;
  }
}
header .flex .menu div:first-of-type {
  margin-bottom: 20px;
}
header .flex .menu div:first-of-type button {
  font-size: 17px;
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  width: 100%;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  header .flex .menu div:first-of-type button {
    font-size: 16px;
  }
}
header .flex .menu a,
header .flex .menu .header-logout {
  display: block;
  font-size: 16px;
  font-weight: normal;
}
@media screen and (max-width: 767px) {
  header .flex .menu a,
  header .flex .menu .header-logout {
    font-size: 15px;
  }
}
header .flex .menu a {
  padding: 15px 0 12px;
  border-top: solid 1px #D9DDE0;
}
header .flex .menu .header-logout {
  margin-top: 0;
}
header .flex .menu a:hover,
header .flex .menu button:hover {
  color: #929292;
}
header nav {
  position: fixed;
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  top: 0;
  left: 0;
  width: 260px;
  height: 100%;
  color: #fff;
  background: linear-gradient(#004B89, #3887AB);
}
@media screen and (max-width: 1182px) {
  header nav {
    transform: translateX(-100%);
    transition: transform 0.5s ease;
    z-index: 10;
  }
}
header nav ul {
  margin-top: 56px;
  overflow-y: auto;
  flex: 1;
}
@media screen and (max-width: 1182px) {
  header nav ul {
    margin-top: 65px;
  }
}
header nav ul li {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
header nav ul li:nth-child(1) {
  border-top: none;
}
header nav ul li:nth-child(1) a img, header nav ul li:nth-child(2) a img, header nav ul li:nth-child(7) a img {
  width: 20px;
  height: 20px;
}
header nav ul li:nth-child(2) img {
  width: 20px;
  height: 19px;
}
header nav ul li:nth-child(2) a .external-link {
  width: 15px;
  height: 15px;
  text-align: right;
  margin-right: 0;
  margin-left: auto;
}
header nav ul li:nth-child(3) a img, header nav ul li:nth-child(4) a img, header nav ul li:nth-child(6) a img {
  width: 20px;
  height: 17px;
}
header nav ul li:nth-child(5) a img {
  width: 20px;
  height: 15px;
}
header nav ul li img {
  margin-right: 12px;
}
header nav ul li a {
  font-size: 16px;
  align-self: center;
  display: flex;
  padding: 21px 20px;
  color: #fff;
  align-items: center;
  transition: all 0.15s ease;
}
header nav ul li a:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
header nav > ul > li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
header nav > div {
  text-align: center;
  padding: 24px 0;
  background-color: #3887AB;
  width: 260px;
}
header nav > div a {
  padding: 17px 20px;
  background: linear-gradient(#FB8E3A, #F0791E);
  margin-bottom: 12px;
  transition: all 0.15s ease;
}
header nav > div a:hover {
  color: #F0791E;
  background: #fff;
}
header nav > div .btn {
  font-size: 17px;
  color: #fff;
  width: 85%;
  height: 60px;
}
header nav > div button.btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.4);
  transition: all 0.15s ease;
}
header nav > div button.btn:hover {
  color: #004B89;
  background-color: #fff;
}
@media screen and (max-width: 1182px) {
  header:has(#hamburger.active) nav {
    transform: translateX(0%);
  }
}

body > .modal .modal-content {
  width: 512px;
}
@media screen and (max-width: 767px) {
  body > .modal .modal-content {
    max-width: 345px;
    width: 80%;
  }
}
body > .modal .modal-content h4 {
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  body > .modal .modal-content h4 {
    font-size: 21px;
  }
}
body > .modal .modal-content p {
  font-size: 17px;
  font-weight: 400;
  margin-bottom: 28px;
}
body > .modal .modal-content p:nth-of-type(1) {
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  body > .modal .modal-content p {
    font-size: 16px;
    margin-bottom: 12px;
  }
}
body > .modal .modal-content p:nth-of-type(2), body > .modal .modal-content p:nth-of-type(3) {
  color: #004B89;
  font-size: 32px;
  font-weight: 500;
  display: flex;
  align-items: center;
  -moz-column-gap: 16px;
       column-gap: 16px;
  min-width: 0;
}
@media screen and (max-width: 767px) {
  body > .modal .modal-content p:nth-of-type(2), body > .modal .modal-content p:nth-of-type(3) {
    font-size: 25px;
  }
}
body > .modal .modal-content p:nth-of-type(2) img {
  vertical-align: baseline;
  width: 32px;
  height: 20.14px;
}
@media screen and (max-width: 767px) {
  body > .modal .modal-content p:nth-of-type(2) img {
    width: 28px;
    height: 18px;
  }
}
body > .modal .modal-content p:nth-of-type(3) img {
  width: 32px;
  height: 32px;
}
@media screen and (max-width: 767px) {
  body > .modal .modal-content p:nth-of-type(3) img {
    width: 28px;
    height: 28px;
  }
}
body > .modal .modal-content small {
  font-size: 15px;
  color: #004B89;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  body > .modal .modal-content small {
    font-size: 14px;
  }
}

#dash-board {
  position: relative;
}
#dash-board div:has(h2) {
  display: inline-flex;
  vertical-align: baseline;
  margin-bottom: 16px;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  #dash-board div:has(h2) {
    flex-direction: column;
    gap: 0;
  }
  #dash-board div:has(h2) h2 {
    margin-bottom: 12px;
  }
}
#dash-board div:has(h2) h2 > img {
  width: 28px;
  height: 26px;
}
@media screen and (max-width: 767px) {
  #dash-board div:has(h2) h2 > img {
    width: 24px;
    height: 23px;
  }
}
#dash-board div:has(h2) > div {
  color: #004B89;
  display: flex;
  flex-wrap: wrap;
  align-content: end;
  font-weight: 500;
  margin-left: 40px;
}
@media screen and (max-width: 767px) {
  #dash-board div:has(h2) > div {
    margin-left: 0;
  }
}
#dash-board div:has(h2) > div p,
#dash-board div:has(h2) > div span {
  display: inline;
}
#dash-board div:has(h2) > div span {
  margin: 0 5px;
}
#dash-board .grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
#dash-board h3 {
  padding-bottom: 15px;
}
@media screen and (max-width: 999px) {
  #dash-board .grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(2, 1fr);
  }
}

#news,
#on-going {
  position: relative;
}
#news ul li,
#on-going ul li {
  padding: 20px;
  border-bottom: 1px solid #D9DDE0;
}
#news ul li a div,
#on-going ul li a div {
  color: #004B89;
  display: inline;
}
#news ul li a div p,
#news ul li a div span,
#on-going ul li a div p,
#on-going ul li a div span {
  display: inline;
}
#news ul li a div span,
#on-going ul li a div span {
  margin: 0 5px;
}
#news > a, #news > .btn-position a,
#on-going > a,
#on-going > .btn-position a {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 32px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  #news > a, #news > .btn-position a,
  #on-going > a,
  #on-going > .btn-position a {
    bottom: 20px;
  }
}

@media screen and (max-width: 767px) {
  #news {
    margin-bottom: 10px;
  }
}
#news h3 {
  border-bottom: 1px solid #D9DDE0;
}
#news > div {
  padding: 32px 32px 110px;
}
@media screen and (max-width: 999px) {
  #news > div {
    padding: 20px 20px 100px;
  }
}
#news li a {
  font-size: 14px;
  transition: all 0.15s ease;
  display: flex;
  gap: 6px;
  flex-direction: column;
}
#news li a:hover {
  color: #3887AB;
}
#news li a > p {
  font-size: 16px;
}
#news .btn {
  width: 200px;
  font-size: 15px;
  gap: 40px;
}

#on-going > div:first-child {
  padding: 32px 32px 110px;
}
@media screen and (max-width: 767px) {
  #on-going > div:first-child {
    padding: 20px 20px 80px;
  }
}
#on-going > div:first-child p {
  display: none;
  color: #929292;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#on-going > div:first-child .table-wrap {
  overflow: auto;
}
#on-going table {
  width: 100%;
}
#on-going thead {
  position: sticky;
  top: 0;
  z-index: 9;
  box-shadow: 0 -1px 0 #fff;
}
#on-going thead tr {
  color: #2C9A7A;
  background-color: #EEF1F3;
  border-bottom: none;
}
#on-going tr {
  position: relative;
  border-bottom: 1px solid #D9DDE0;
}
#on-going tr a {
  font-size: 16px;
}
#on-going tr th {
  padding: 8px 20px;
  font-size: 15px;
}
#on-going tr td {
  vertical-align: baseline;
  border: none;
}
#on-going tr td div {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-right: 10px;
}
#on-going tr td span {
  font-size: 8px;
}
#on-going tr td:first-child {
  font-size: 16px;
  padding: 20px;
  vertical-align: middle;
  width: 75%;
}
@media screen and (max-width: 767px) {
  #on-going tr td:first-child {
    padding: 12px 12px 12px 16px;
  }
}
#on-going tr td:last-child {
  min-width: 80px;
  font-size: 14px;
  line-height: 18px;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  #on-going tr td:last-child {
    line-height: 16px;
    padding: 10px;
  }
}
#on-going tr a:hover {
  color: #2C9A7A;
}
#on-going > div:last-child {
  margin: 0 35px;
}
@media screen and (max-width: 767px) {
  #on-going > div:last-child {
    margin-top: 20px;
  }
}
#on-going > div:last-child a {
  width: 190px;
  color: #fff;
  background-color: #2C9A7A;
  transition: all 0.15s ease;
  font-size: 15px;
  gap: 19px;
}
@media screen and (max-width: 767px) {
  #on-going > div:last-child a {
    font-size: 14px;
  }
}
#on-going > div:last-child a:hover {
  color: #2C9A7A;
  background-color: #DDEFEA;
}
#on-going > div:last-child a:hover .external-link {
  stroke: #2C9A7A;
}
#on-going .external-link {
  width: 15px;
  height: 15px;
  display: inline-block;
  stroke: white;
  vertical-align: middle;
}

#dash-board + .modal .modal-content {
  width: 512px;
}
#dash-board + .modal p {
  margin-bottom: 36px;
}

#service h2 > img {
  width: 28px;
  height: 23.5px;
}
@media screen and (max-width: 767px) {
  #service h2 > img {
    width: 24px;
    height: 20.14px;
  }
}
#service .sub-grid {
  padding: 24px;
  grid-template-rows: 0fr 0fr 1fr 0fr;
}
@media screen and (max-width: 767px) {
  #service .sub-grid {
    margin-bottom: 8px;
  }
}
#service .sub-grid > p {
  align-self: start;
}
@media screen and (max-width: 767px) {
  #service .sub-grid > p {
    font-size: 14px;
  }
}
#service .sub-grid > div:has(.btn-s) {
  display: block;
}
#service div:has(.no-result) {
  position: relative;
  height: 50vh;
}
#service div:has(.no-result) .no-result {
  color: #929292;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#knowledge h2 > img {
  width: 28px;
  height: 22.8px;
}
@media screen and (max-width: 767px) {
  #knowledge h2 > img {
    width: 24px;
    height: 19.56px;
  }
}
#knowledge .grid img {
  width: 100%;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  aspect-ratio: 16/9;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  #knowledge .grid .bg-white {
    margin-bottom: 12px;
  }
}
#knowledge .grid .bg-white .sub-grid {
  padding: 18px 24px;
  align-items: center;
  margin-bottom: 0;
  grid-template-rows: 0fr 0fr 1.5fr 0fr;
}
#knowledge .grid .bg-white .sub-grid > p {
  font-weight: 500;
  align-self: start;
  font-size: 17px;
}
@media screen and (max-width: 767px) {
  #knowledge .grid .bg-white .sub-grid > p {
    font-size: 16px;
  }
}
#knowledge .grid .bg-white .sub-grid div {
  color: #004B89;
}
#knowledge .grid .bg-white .sub-grid div span {
  margin: 0 5px;
}

#document h2 > img {
  width: 28px;
  height: 20px;
}
@media screen and (max-width: 767px) {
  #document h2 > img {
    width: 24px;
    height: 17.78px;
  }
}
#document .sub-grid {
  padding: 20px 24px;
  grid-template-rows: 0fr 0fr 1fr 0fr;
}
@media screen and (max-width: 767px) {
  #document .sub-grid {
    margin-bottom: 12px;
  }
}
#document .sub-grid > div:first-child p {
  font-size: 14px;
}
#document .sub-grid > div:last-child {
  display: flex;
  gap: 8px;
  justify-content: flex-start;
}
#document .sub-grid > div:last-child .btn-s {
  flex: 55;
  width: auto;
  max-width: 110px;
}
#document .sub-grid > div:last-child .btn-m {
  flex: 93;
}
#document .sub-grid > div:last-child:not(:has(.btn-s)) .btn-m {
  max-width: none;
  width: 100%;
}

#faq h2 > img {
  width: 28px;
  height: 23px;
}
@media screen and (max-width: 767px) {
  #faq h2 > img {
    width: 24px;
    height: 20px;
  }
  #faq h2 > img > div:first-child p {
    margin-bottom: 12px;
  }
}
#faq .category-change {
  font-weight: 600;
  padding-top: 12px;
  margin-bottom: 16px;
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  #faq .category-change {
    flex-direction: column;
    gap: 8px;
  }
}
#faq .category-change label {
  display: flex;
}
@media screen and (max-width: 767px) {
  #faq .category-change label {
    font-size: 14px;
  }
}
#faq .category-change input {
  margin-right: 8px;
  margin-top: 0;
}
#faq .accordion {
  padding: 24px 40px 24px 24px;
}
@media screen and (max-width: 767px) {
  #faq .accordion {
    padding: 20px 16px;
  }
}
#faq .accordion label p {
  font-weight: 500;
  align-self: center;
}
#faq .accordion .accordion--inner > div {
  margin-top: 24px;
  display: flex;
}
@media screen and (max-width: 767px) {
  #faq .accordion .accordion--inner > div {
    margin-top: 0;
  }
}
#faq .accordion p,
#faq .accordion .accordion--inner div {
  font-size: 17px;
}
@media screen and (max-width: 767px) {
  #faq .accordion p,
  #faq .accordion .accordion--inner div {
    font-size: 16px;
  }
}
#faq .accordion .faq-icon {
  width: 32px;
  height: 32px;
  margin-right: 12px;
}
@media screen and (max-width: 767px) {
  #faq .accordion .faq-icon {
    width: 28px;
    height: 28px;
    margin-right: 8px;
  }
}
#faq .accordion a {
  color: #000;
  display: inline-block;
  text-decoration: underline;
  font-size: 17px;
  font-weight: normal;
}
#faq .accordion[data-category] {
  display: none;
}
#faq .accordion.show-category {
  display: grid;
}

#meeting {
  margin-top: 40px;
}
#meeting h2 {
  margin-bottom: 10px;
}
#meeting h2 > img {
  width: 28px;
  height: 28px;
}
@media screen and (max-width: 767px) {
  #meeting h2 > img {
    width: 24px;
    height: 23px;
  }
}
#meeting h2 + p {
  margin-bottom: 28px;
}
#meeting .tag {
  margin: 0 0 20px;
}
#meeting .tag .btn {
  background-color: #FFF;
  padding: 8px 20px;
  color: #24A69A;
  font-weight: 500;
}
#meeting .tag .btn.active {
  background-color: #24A69A;
  color: #fff;
}
#meeting #widget-area {
  margin: 0 auto;
  min-height: 200px;
  position: relative;
}
#meeting #widget-area p {
  text-align: center;
  color: #929292;
  font-size: 17px;
  font-weight: 500;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
@media screen and (max-width: 767px) {
  #meeting #widget-area p {
    font-size: 16px;
  }
}
#meeting #widget-area p br {
  display: none;
}
@media screen and (max-width: 767px) {
  #meeting #widget-area p br {
    display: inline;
  }
}
#meeting #widget-area #timerex_calendar > div {
  border-radius: 16px;
  overflow: hidden;
  height: 1067px;
}
@media screen and (max-width: 767px) {
  #meeting #widget-area #timerex_calendar > div {
    height: 1053px;
  }
}

footer {
  padding: 40px 0;
  margin-top: 40px;
  background-color: rgba(37, 37, 37, 0.0509803922);
}
@media screen and (max-width: 767px) {
  footer {
    text-align: center;
    padding: 40px 55px 20px;
    margin-top: 40px;
  }
}
footer div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 64px;
}
@media screen and (max-width: 767px) {
  footer div {
    display: block;
  }
}
footer img {
  padding-left: 40px;
}
@media screen and (max-width: 767px) {
  footer img {
    padding-left: 0px;
  }
}
footer .flex {
  display: flex;
  gap: 32px;
}
@media screen and (max-width: 767px) {
  footer .flex {
    flex-flow: column;
    gap: 20px;
    text-align: center;
    margin: 32px 0;
  }
}
footer .flex a {
  font-size: 13px;
  font-weight: normal;
}
footer p {
  color: rgba(0, 0, 0, 0.5);
  font-size: 10px;
  padding-right: 40px;
}
@media screen and (max-width: 767px) {
  footer p {
    font-size: 9px;
    padding-right: 0;
  }
}
footer li a:hover {
  color: rgba(0, 0, 0, 0.5);
}

#list section .tag a {
  font-size: 13px;
  padding: 8px 20px;
  color: #004B89;
  background-color: #fff;
  width: auto;
  font-weight: 500;
}
#list section .tag a.active {
  color: #fff;
  background-color: #004B89;
}
#list .select {
  text-align: center;
}
@media screen and (max-width: 767px) {
  #list .select {
    margin-top: 16px;
  }
}
#list .select .bg-white {
  padding: 15px 20px;
  width: auto;
  display: inline-flex;
  font-size: 14px;
  font-weight: 400;
  gap: 11px;
  align-items: center;
}
#list .select .bg-white img {
  opacity: 0.4;
  pointer-events: none;
  margin-top: 2px;
}
#list .select .bg-white .page-arrow {
  padding: 0 8px;
}
#list .select .bg-white a {
  display: inline-flex;
  margin-top: 0;
  font-weight: 400;
}
#list .select .bg-white a > img {
  opacity: inherit;
  pointer-events: auto;
}
#list .select .bg-white p {
  width: 30px;
}
#list .select .bg-white .selected {
  position: relative;
  z-index: 0;
  flex-shrink: 0;
}
#list .select .bg-white .selected::after {
  position: absolute;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #EEF1F3;
  z-index: -1;
}
#list .grid {
  margin-bottom: 24px;
}
#list #news h2 {
  padding-bottom: 0;
}
#list #news h2 > img {
  width: 28px;
  height: 29.22px;
  margin-right: 8px;
}
@media screen and (max-width: 767px) {
  #list #news h2 > img {
    width: 24px;
    height: 25px;
  }
}
#list #news > div {
  padding: 0;
  margin: 28px 0;
}
#list #news ul {
  margin-bottom: 24px;
}
#list #news ul li {
  padding: 20px;
}
@media screen and (max-width: 767px) {
  #list #news ul li {
    padding: 16px;
  }
}
#list #news ul li a:hover {
  color: #3887AB;
}
@media screen and (max-width: 767px) {
  #list #service .bg-white:nth-child(n+4),
  #list #knowledge .bg-white:nth-child(n+4),
  #list #document .bg-white:nth-child(n+4) {
    display: grid;
  }
}
#list #service {
  position: relative;
}
#list #service h2 {
  margin-bottom: 0;
}
#list #service #filter-btn > div:nth-of-type(1) {
  display: inline-flex;
  flex-wrap: wrap;
  margin: 28px 0;
}
@media screen and (max-width: 1182px) {
  #list #service #filter-btn > div:nth-of-type(1) {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  #list #service #filter-btn > div:nth-of-type(1) {
    flex-flow: column;
    gap: 16px;
  }
}
#list #service #filter-btn > div:nth-of-type(1) label:has(svg) {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 12px 28px;
  margin-right: 24px;
  width: 183px;
}
#list #service #filter-btn > div:nth-of-type(1) label:has(svg):hover svg path {
  fill: #004B89;
}
@media screen and (max-width: 767px) {
  #list #service #filter-btn > div:nth-of-type(1) label:has(svg) {
    padding: 12px 24px;
    vertical-align: text-top;
    width: 170px;
  }
}
#list #service #filter-btn > div:nth-of-type(1) label:has(svg) p {
  font-size: 15px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  #list #service #filter-btn > div:nth-of-type(1) label:has(svg) p {
    font-size: 14px;
  }
}
#list #service #filter-btn > div:nth-of-type(1) label:has(svg) svg {
  width: 20px;
  height: 12px;
  fill: white;
}
@media screen and (max-width: 767px) {
  #list #service #filter-btn > div:nth-of-type(1) label:has(svg) svg {
    width: 16px;
    height: 10px;
  }
}
#list #service #filter-btn > div:nth-of-type(1) label:has(svg) input[type=checkbox] {
  display: none;
}
#list #service #filter-btn > div:nth-of-type(1) > p {
  align-self: center;
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  #list #service #filter-btn > div:nth-of-type(1) > p {
    margin-bottom: -18px;
  }
}
#list #service #filter-btn > div:nth-of-type(2) p {
  color: #004B89;
  font-weight: 400;
  font-size: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 3px;
}
@media screen and (max-width: 767px) {
  #list #service #filter-btn > div:nth-of-type(2) p {
    font-size: 13px;
  }
}
#list #service #filter-btn > div:nth-of-type(2) p:first-child {
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 500;
}
#list #service #filter-btn > div:nth-of-type(2) p:last-child {
  color: #252525;
  margin-bottom: 28px;
}
#list #service #filter-btn #search-filter.active {
  display: flex;
}
#list #service #filter-btn #search-filter.active .search-filter {
  padding: 48px;
  width: 80%;
  max-width: none;
  max-height: 80vh;
  overflow-y: auto;
}
@media screen and (max-width: 767px) {
  #list #service #filter-btn #search-filter.active .search-filter {
    padding: 36px 28px;
  }
}
#list #service #filter-btn #search-filter.active .search-filter h3 {
  text-align: center;
  margin-bottom: 28px;
}
@media screen and (max-width: 767px) {
  #list #service #filter-btn #search-filter.active .search-filter h3 {
    font-size: 21px;
    margin-bottom: 28px;
  }
}
#list #service #filter-btn #search-filter.active .search-filter > div {
  padding: 28px 0;
  border-top: 1px solid #D9DDE0;
  display: grid;
  gap: 40px;
  grid-template-columns: 100px auto;
}
@media screen and (max-width: 767px) {
  #list #service #filter-btn #search-filter.active .search-filter > div {
    display: block;
    padding: 24px 0;
  }
}
#list #service #filter-btn #search-filter.active .search-filter > div label {
  font-size: 16px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  #list #service #filter-btn #search-filter.active .search-filter > div label {
    font-size: 15px;
  }
}
#list #service #filter-btn #search-filter.active .search-filter > div p {
  font-size: 16px;
  color: #252525;
}
@media screen and (max-width: 767px) {
  #list #service #filter-btn #search-filter.active .search-filter > div p {
    margin-bottom: 16px;
    font-size: 15px;
  }
}
#list #service #filter-btn #search-filter.active .search-filter > div > div {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 40px;
       column-gap: 40px;
  row-gap: 8px;
}
#list #service #filter-btn #search-filter.active .search-filter .sub-grid > p {
  font-weight: 400;
}
#list #service #filter-btn #search-filter.active .search-filter > div:last-child {
  display: flex;
  gap: 16px;
  justify-content: center;
  padding-bottom: 0;
}
#list #service #filter-btn #search-filter.active .search-filter > div:last-child .btn {
  border-radius: 10px;
  text-align: center;
  padding: 16px 0;
}
@media screen and (max-width: 767px) {
  #list #service #filter-btn #search-filter.active .search-filter > div:last-child .btn {
    padding: 12px 0;
  }
}
#list #service #filter-btn #search-filter.active .search-filter > div:last-child .btn:first-child {
  width: 40%;
  max-width: 160px;
  border: 1px solid #D9DDE0;
}
#list #service #filter-btn #search-filter.active .search-filter > div:last-child .btn:last-child {
  max-width: 300px;
  width: 80%;
}
@media screen and (max-width: 767px) {
  #list #service #filter-btn:has(.info) > div:nth-of-type(1) {
    margin-bottom: 40px;
  }
}
#list #service #filter-btn:has(.info) #keyword_name,
#list #service #filter-btn:has(.info) #c-section__number {
  margin-bottom: 0;
}
#list #document .sub-grid div:last-child:not(:has(.btn-s)) .btn-m {
  width: 100%;
}

#category-list {
  margin-top: 100px;
}

#post section a {
  font-weight: 400;
}
#post section:first-of-type {
  border-radius: 10px;
  padding: 48px;
}
#post section:first-of-type p {
  display: block;
}
@media screen and (max-width: 767px) {
  #post section:first-of-type {
    padding: 32px 24px;
  }
}
#post section:first-of-type div:has(h1) {
  display: grid;
  gap: 20px;
  margin-bottom: 24px;
}
#post section:first-of-type div:has(h1) time {
  color: #252525;
  font-size: 16px;
}
#post section:first-of-type div:has(h1) h1 {
  font-size: 30px;
  border-left: 8px solid #004B89;
  padding-left: 20px;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  #post section:first-of-type div:has(h1) h1 {
    font-size: 24px;
  }
}
#post section:first-of-type div:has(h1) > div {
  display: flex;
  background-color: #EBF3F7;
  border-radius: 10px;
  padding: 20px;
  margin: 12px 0;
}
#post section:first-of-type div:has(h1) > div p {
  color: #004B89;
  font-weight: 500;
  font-size: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 3px;
}
@media screen and (max-width: 767px) {
  #post section:first-of-type div:has(h1) > div p {
    font-size: 13px;
  }
}
#post section:first-of-type .btn {
  margin-top: 44px;
}
@media screen and (max-width: 767px) {
  #post section:first-of-type .btn {
    margin-top: 36px;
  }
}
#post section:nth-of-type(2) h2 {
  color: #252525;
  font-size: 20px;
  margin-bottom: 16px;
  padding-bottom: 0;
}
#post section:nth-of-type(2) .grid {
  margin-bottom: 40px;
}
#post section:nth-of-type(2) .grid .sub-grid {
  grid-template-rows: 0.5fr 0.5fr 1fr 62px;
}
#post section:nth-of-type(2) > a {
  font-size: 14px;
  justify-content: center;
  display: flex;
  gap: 12px;
  align-items: center;
}
#post section:nth-of-type(2) > a:hover {
  color: #929292;
}
@media screen and (max-width: 767px) {
  #post section:nth-of-type(2) > a {
    font-size: 13px;
  }
}
#post section:nth-of-type(2) > a img {
  width: 4px;
  height: 8px;
}
#post #service section:first-of-type div:nth-of-type(3) {
  padding: 32px;
  background-color: #EBF3F7;
  margin-top: 44px;
}
#post #service section:first-of-type div:nth-of-type(3) .br {
  display: none;
}
@media screen and (max-width: 767px) {
  #post #service section:first-of-type div:nth-of-type(3) .br {
    display: block;
  }
}
#post #service section:first-of-type div:nth-of-type(3) p {
  text-align: center;
  color: #004B89;
}
#post #knowledge section:nth-of-type(2) .bg-white {
  padding: 24px;
}
#post #document .btn {
  border-radius: 10px;
  width: 80%;
  max-width: 400px;
  text-align: center;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  #post #document .btn {
    width: 100%;
    max-width: none;
    display: block;
    box-sizing: border-box;
  }
}

#my-page section h2 {
  padding-bottom: 16px;
}
#my-page section h2 img {
  width: 28px;
  height: 26px;
  margin-right: 8px;
}
#my-page section h3 {
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  #my-page section h3 {
    margin-bottom: 20px;
  }
}
#my-page section .btn {
  font-weight: 500;
}
#my-page section dl {
  display: grid;
  -moz-column-gap: 40px;
       column-gap: 40px;
  row-gap: 38px;
  grid-template-columns: 1fr 3fr;
  align-items: center;
}
@media screen and (max-width: 767px) {
  #my-page section dl {
    grid-template-columns: 80px 1fr;
    -moz-column-gap: 16px;
         column-gap: 16px;
    row-gap: 20px;
  }
}
#my-page section dl dt {
  font-size: 15px;
  font-weight: normal;
}
#my-page section dl dt br {
  display: none;
}
@media screen and (max-width: 767px) {
  #my-page section dl dt br {
    display: inline-block;
  }
}
#my-page section dl dd {
  font-weight: 500;
}
#my-page section dl dd > p {
  word-break: break-all;
}
#my-page section dl dd:has(#password-edit) {
  font-size: 10px;
  display: flex;
  gap: 10px;
  align-self: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  #my-page section dl dd:has(#password-edit) {
    font-size: 8px;
  }
}
#my-page section dl dd .btn {
  padding: 3px 15px;
  font-size: 10px;
}
#my-page section .bg-white {
  padding: 32px;
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  #my-page section .bg-white {
    padding: 20px;
  }
}
#my-page section .bg-white .border-grey {
  padding: 24px;
}
@media screen and (max-width: 767px) {
  #my-page section .bg-white .border-grey {
    padding: 16px;
  }
}
#my-page section .bg-white .border-grey p:first-child {
  font-size: 17px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  #my-page section .bg-white .border-grey p:first-child {
    font-size: 16px;
  }
}
#my-page section .bg-white .border-grey p:last-child {
  word-break: break-all;
}
@media screen and (max-width: 767px) {
  #my-page section .bg-white .border-grey p:last-child {
    font-size: 14px;
  }
}
#my-page section .bg-white:has(#password-edit) {
  margin-bottom: 32px;
}
#my-page section .grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
@media screen and (max-width: 767px) {
  #my-page section .grid .border-grey {
    margin-bottom: 10px;
  }
  #my-page section .grid .border-grey:last-child {
    margin-bottom: 0;
  }
  #my-page section .grid .border-grey p {
    overflow-wrap: break-word;
  }
}
#my-page section .flex {
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  #my-page section .flex {
    display: block;
  }
}
#my-page section .flex #add-user {
  height: 58px;
  width: 243px;
}
@media screen and (max-width: 767px) {
  #my-page section .flex #add-user {
    height: 48px;
    width: 100%;
  }
}
#my-page section .flex p {
  flex: 2;
}
@media screen and (max-width: 767px) {
  #my-page section .flex p {
    margin-bottom: 20px;
  }
}
#my-page section .modal-user > .modal-content {
  min-width: 816px;
}
@media screen and (max-width: 767px) {
  #my-page section .modal-user > .modal-content {
    min-width: 80%;
  }
}

#post .rte,
#faq .rte {
  font-size: 17px;
}
@media screen and (max-width: 767px) {
  #post .rte,
  #faq .rte {
    font-size: 16px;
  }
}
#post .rte h2,
#post .rte h2 > span,
#faq .rte h2,
#faq .rte h2 > span {
  color: #252525;
  font-size: 22px;
  padding-bottom: 0;
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  #post .rte h2,
  #post .rte h2 > span,
  #faq .rte h2,
  #faq .rte h2 > span {
    font-size: 19px;
  }
}
#post .rte h3,
#post .rte h3 > span,
#faq .rte h3,
#faq .rte h3 > span {
  color: #252525;
  font-size: 20px;
  padding-bottom: 0;
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  #post .rte h3,
  #post .rte h3 > span,
  #faq .rte h3,
  #faq .rte h3 > span {
    font-size: 17px;
  }
}
#post .rte p,
#post .rte p > span,
#post .rte li,
#post .rte li > span,
#post .rte p > strong > span,
#post .rte p > span,
#post .rte p > span > span > a,
#faq .rte p,
#faq .rte p > span,
#faq .rte li,
#faq .rte li > span,
#faq .rte p > strong > span,
#faq .rte p > span,
#faq .rte p > span > span > a {
  color: #252525;
}
#post .rte ol,
#faq .rte ol {
  margin-left: 24px;
}
#post .rte ol li,
#faq .rte ol li {
  list-style-type: decimal;
}
#post .rte ul li,
#faq .rte ul li {
  list-style-type: disc;
  margin-left: 24px;
}
#post .rte img,
#faq .rte img {
  width: 100%;
  height: auto;
  margin-bottom: 0;
}
#post .rte p > strong > span,
#faq .rte p > strong > span {
  font-weight: 500;
  color: inherit;
}
#post .rte p > span,
#faq .rte p > span {
  padding: 0;
  text-align: left;
  font-weight: 400;
  color: inherit;
}
#post .rte p > a,
#post .rte p > span > a,
#post .rte p > span > span > a,
#post .rte a,
#faq .rte p > a,
#faq .rte p > span > a,
#faq .rte p > span > span > a,
#faq .rte a {
  color: #2E8BAA;
  text-decoration: underline;
}
#post .rte p > a:hover,
#post .rte p > span > a:hover,
#post .rte p > span > span > a:hover,
#post .rte a:hover,
#faq .rte p > a:hover,
#faq .rte p > span > a:hover,
#faq .rte p > span > span > a:hover,
#faq .rte a:hover {
  text-decoration: none;
}
#post .rte table,
#faq .rte table {
  margin: 0 auto;
}
#post .rte table colgroup col:nth-of-type(1),
#faq .rte table colgroup col:nth-of-type(1) {
  background-color: rgba(37, 37, 37, 0.0509803922);
}
#post .rte table td,
#post .rte table tr,
#faq .rte table td,
#faq .rte table tr {
  padding: 15px;
  font-size: 17px;
}
@media screen and (max-width: 767px) {
  #post .rte table td,
  #post .rte table tr,
  #faq .rte table td,
  #faq .rte table tr {
    font-size: 16px;
  }
}
#post .rte table td,
#faq .rte table td {
  word-break: auto-phrase;
}

input[type=text],
input[type=email],
input[type=password] {
  width: 100%;
  padding: 20px;
  border-radius: 5px;
}
@media screen and (max-width: 767px) {
  input[type=text],
  input[type=email],
  input[type=password] {
    padding: 16px;
  }
}

input::-moz-placeholder {
  color: #929292;
}

input::placeholder {
  color: #929292;
}

div:has(#passwordConfirm) {
  margin-top: 4px;
}

form span {
  display: inline-block;
  font-size: 11px;
  padding-bottom: 5px;
  padding-top: 2px;
}

.kana1.error-active,
.kana2.error-active,
.name1.error-active,
.name2.error-active,
#email.error-active,
#password.error-active,
#passwordConfirm.error-active,
#text.error-active,
#now-password.error-active {
  border: 1px solid rgba(225, 66, 90, 0.5);
  background-color: rgba(225, 66, 90, 0.05);
}
.kana1.error-active::-moz-placeholder, .kana2.error-active::-moz-placeholder, .name1.error-active::-moz-placeholder, .name2.error-active::-moz-placeholder, #email.error-active::-moz-placeholder, #password.error-active::-moz-placeholder, #passwordConfirm.error-active::-moz-placeholder, #text.error-active::-moz-placeholder, #now-password.error-active::-moz-placeholder {
  color: #E1425A;
}
.kana1.error-active::placeholder,
.kana2.error-active::placeholder,
.name1.error-active::placeholder,
.name2.error-active::placeholder,
#email.error-active::placeholder,
#password.error-active::placeholder,
#passwordConfirm.error-active::placeholder,
#text.error-active::placeholder,
#now-password.error-active::placeholder {
  color: #E1425A;
}

.error-pw,
.error-pwConfirm,
.error-kana,
.error-mail,
.error-empty,
.error-empty-pw,
.error-empty-pwConfirm,
.error-empty-kana,
.error-empty-name,
.error-empty-mail,
.error-empty-now-password,
.error-now-password {
  color: #E1425A;
  font-size: 13px;
  display: none;
}
.error-pw.error-active,
.error-pwConfirm.error-active,
.error-kana.error-active,
.error-mail.error-active,
.error-empty.error-active,
.error-empty-pw.error-active,
.error-empty-pwConfirm.error-active,
.error-empty-kana.error-active,
.error-empty-name.error-active,
.error-empty-mail.error-active,
.error-empty-now-password.error-active,
.error-now-password.error-active {
  display: block;
}

.auth main {
  margin: 0;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .auth main {
    width: 80%;
  }
}
.auth main h2 {
  color: #000;
  padding-bottom: 36px;
}
@media screen and (max-width: 767px) {
  .auth main h2 {
    padding-bottom: 24px;
  }
}
.auth main h3 {
  padding-bottom: 36px;
}
@media screen and (max-width: 767px) {
  .auth main h3 {
    font-size: 16px;
  }
}
.auth main > img {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .auth main > img {
    margin-bottom: 32px;
    width: 115px;
  }
}
.auth main a {
  font-weight: 400;
  font-size: 14px;
  justify-content: center;
  display: flex;
  gap: 12px;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .auth main a {
    font-size: 13px;
  }
}
.auth main section {
  margin: 0 auto;
  padding: 48px;
  max-width: 512px;
}
@media screen and (max-width: 767px) {
  .auth main section {
    padding: 36px 28px;
  }
}
.auth main section > p {
  padding-bottom: 36px;
}
@media screen and (max-width: 767px) {
  .auth main section > p {
    padding-bottom: 24px;
  }
  .auth main section > p br {
    display: none;
  }
}
.auth main section form div:has(input) {
  text-align: left;
}
.auth main section form input[type=submit] {
  width: 100%;
  margin-top: 16px;
}
.auth main section form label {
  display: block;
  font-size: 14px;
}
.auth main section form div:last-child {
  border-top: 0.5px solid #D9DDE0;
}
.auth main section form div:last-child > p {
  margin-top: 20px;
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .auth main section form div:last-child > p {
    margin: 20px auto 0;
    font-size: 13px;
  }
}
.auth main section form p:has(a) {
  font-size: 14px;
}
.auth main section form p a {
  color: #004B89;
  text-decoration: underline;
  text-decoration-color: rgba(0, 75, 137, 0.5);
}
.auth main .modal-check h4 {
  font-weight: 500;
  font-size: 24px;
  margin: 24px 0;
}
@media screen and (max-width: 767px) {
  .auth main .modal-check h4 {
    font-size: 21px;
  }
}
.auth main .modal-check p {
  font-size: 17px;
}
@media screen and (max-width: 767px) {
  .auth main .modal-check p {
    font-size: 16px;
  }
}
.auth main .modal-check a {
  font-weight: 400;
  margin-top: 24px;
}
.auth main .modal-check:not(:has(p)) a {
  margin-top: 0;
}
.auth form {
  display: grid;
  gap: 20px;
}
.auth form button {
  margin-top: 16px;
}

.complete,
.form {
  display: none;
}
.complete.active,
.form.active {
  display: block;
}

#pw-setting main section:nth-of-type(2) {
  max-width: 512px;
}
@media screen and (max-width: 767px) {
  #pw-setting main section:nth-of-type(2) {
    max-width: 345px;
  }
}
@media screen and (max-width: 767px) {
  #pw-setting main section:nth-of-type(2) div:last-child h4 {
    width: 65%;
  }
}
#pw-setting main section:nth-of-type(2) div:last-child::after {
  content: none;
}

#pw-forgot form a {
  font-size: 14px;
}
#pw-forgot .modal-check div:has(p) p {
  font-size: 17px;
}

#pw-reset .complete {
  max-width: 512px;
}

#temp-login div:last-child > p {
  margin-top: 0;
}

#not-found main {
  display: flex;
  flex-direction: column;
  gap: 28px;
  text-align: center;
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
@media screen and (max-width: 767px) {
  #not-found main {
    width: 85%;
  }
}
#not-found main h1 {
  font-size: 128px;
  font-weight: 700;
  color: #004B89;
}
@media screen and (max-width: 767px) {
  #not-found main h1 {
    font-size: 64px;
  }
}
#not-found main h2 {
  font-size: 40px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  #not-found main h2 {
    font-size: 28px;
  }
}
#not-found main h3 {
  font-size: 24px;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  #not-found main h3 {
    font-size: 21px;
  }
}
#not-found main p {
  font-size: 17px;
}
@media screen and (max-width: 767px) {
  #not-found main p {
    font-size: 16px;
  }
}
#not-found main a {
  font-size: 14px;
  justify-content: center;
  display: flex;
  gap: 12px;
  align-items: center;
  font-weight: 400;
}

#login main a {
  display: inline-block;
}

form button {
  margin-top: 16px;
}

#redirect h2 {
  font-size: 32px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  #redirect h2 {
    font-size: 26px;
  }
}
#redirect h3 {
  font-size: 17px;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  #redirect h3 {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  #redirect section {
    padding: 32px 28px;
  }
}
#redirect section > div a {
  color: #fff;
  font-size: 16px;
}
#redirect section > div a:nth-of-type(1) {
  background: linear-gradient(#FB8E3A, #F0791E);
  margin-bottom: 16px;
}
#redirect section > div a:nth-of-type(1):hover {
  color: #F0791E;
  background: rgba(240, 121, 30, 0.2);
}
#redirect section > div a:nth-of-type(2) {
  background-color: #1DA2D8;
  margin-bottom: 36px;
}
#redirect section > div a:nth-of-type(2):hover {
  color: #1DA2D8;
  background-color: rgba(29, 162, 216, 0.2);
}
@media screen and (max-width: 767px) {
  #redirect section > div a:nth-of-type(2) {
    margin-bottom: 24px;
  }
}
#redirect section p {
  font-size: 14px;
  padding-bottom: 20px;
}
@media screen and (max-width: 767px) {
  #redirect section p {
    font-size: 13px;
    padding-bottom: 16px;
  }
}
#redirect section p br {
  display: block;
}
#redirect section p > a {
  display: inline-block;
  text-decoration: underline;
  color: #3887AB;
  background: transparent;
}
#redirect section p > a:hover {
  text-decoration: none;
}
#redirect section > div:last-of-type {
  border-top: 0.5px solid #D9DDE0;
}
#redirect section > div:last-of-type p {
  padding: 0;
  margin-top: 20px;
}
#redirect section > div:last-of-type p br {
  display: none;
}
@media screen and (max-width: 767px) {
  #redirect section > div:last-of-type p br {
    display: block;
  }
}/*# sourceMappingURL=style.css.map */