@charset "UTF-8";
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  list-style: none;
}

hr {
  height: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

* {
  box-sizing: border-box;
}

img, object, embed {
  max-width: 100%;
}

input[type=text] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

a {
  color: #4e76ef;
}
a:link {
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
a:hover {
  text-decoration: none;
}

button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 10px 25px 10px 25px;
  margin: 15px 0;
  min-width: 130px;
  max-height: 44px;
  appearance: none;
  background: #6c7481;
  border-radius: 22px;
  color: #fff;
  font-size: 1.6rem;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
button:hover {
  opacity: 0.8;
}

html {
  font-family: sans-serif;
  line-height: 1.15;
  font-feature-settings: "palt";
  font-size: 62.5%;
  height: 100%;
}

body {
  font-family: "メイリオ", "Meiryo", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "ＭＳ ゴシック", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.6;
  color: #0d0d0d;
  height: 100%;
}

.flex {
  display: flex;
}

body {
  background: #f8f8f8;
}

.menuBg {
  position: fixed;
  top: 0;
  left: 0;
  background: rgb(0, 0, 0);
  opacity: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  visibility: hidden;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.menuBg.show {
  opacity: 0.6;
  visibility: visible;
}

header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 108px;
  background: #fff;
  box-shadow: 0 2px 2px 1px rgba(0, 0, 0, 0.1);
}
header .mobileBtn {
  position: relative;
  display: none;
  width: 51px;
  height: 51px;
  background: url("../img/mobileBtn.svg") no-repeat center;
  background-size: cover;
  margin: 15px 0 0 15px;
  cursor: pointer;
}
header .mobileBtn:hover {
  opacity: 0.8;
}
@media screen and (max-width: 768px) {
  header .mobileBtn {
    display: block;
    flex-shrink: 0;
    margin: 5px 0 0 5px;
  }
}
header::before {
  display: block;
  content: "";
  width: 100%;
  height: 3px;
  background: #ff6d00;
}
header .govNameWrap {
  min-height: 51px;
  margin: 15px 15px 8px;
  border-left: 5px solid #ffab40;
  padding-left: 8px;
}
@media screen and (max-width: 768px) {
  header .govNameWrap {
    margin: 5px 5px 5px;
  }
}
header .govNameWrap .flex {
  gap: 10px;
  align-items: center;
  margin-bottom: 5px;
}
@media screen and (max-width: 600px) {
  header .govNameWrap .flex {
    gap: 5px;
  }
}
header .govNameWrap .flex .govNamePrefix {
  font-size: 1.3rem;
  color: #6c7481;
}
@media screen and (max-width: 600px) {
  header .govNameWrap .flex .govNamePrefix {
    font-size: clamp(1rem, 2vw, 1.3rem);
    line-height: 1.1;
  }
}
header .govNameWrap .flex .date {
  display: inline-block;
  font-size: 1.2rem;
  color: #6c7481;
  line-height: 1.1;
  min-height: 18px;
  border: 1px solid #6c7481;
  padding: 3px 7px 0;
  white-space: nowrap;
}
@media screen and (max-width: 600px) {
  header .govNameWrap .flex .date {
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    padding: 3px 3px 0;
  }
}
header .govNameWrap .govName {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  line-height: 1.2;
}
header .govNameWrap .govName a {
  text-decoration: none;
  color: #0d0d0d;
  font-feature-settings: "palt";
}
header .govNameWrap .govName a:hover {
  text-decoration: underline;
}
header .menu {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 600px) {
  header .menu {
    width: 100%;
  }
}
header .menu ul {
  display: flex;
  justify-content: center;
  gap: 44px;
  width: 100%;
}
@media screen and (max-width: 600px) {
  header .menu ul {
    gap: 0;
  }
}
header .menu ul li {
  min-width: 100px;
}
@media screen and (max-width: 600px) {
  header .menu ul li {
    width: 33%;
  }
}
header .menu ul li.active a {
  color: #ff6d00;
  border-bottom: 2px solid #ff6d00;
}
header .menu ul li a {
  display: block;
  padding-bottom: 7px;
  color: #6c7481;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  text-align: center;
}
@media screen and (max-width: 768px) {
  header .menu ul li a {
    padding-bottom: 3px;
  }
}
@media screen and (max-width: 600px) {
  header .menu ul li a {
    padding-bottom: 1px;
  }
}

.mainWrap {
  display: flex;
  align-items: flex-start;
  padding: 12px 15px 12px;
  gap: 10px;
  height: calc(100vh - 108px);
}
.mainWrap nav {
  position: sticky;
  top: 120px;
  width: 280px;
  height: calc(100vh - 108px);
  overflow-y: auto;
  margin-top: -12px;
  padding-top: 12px;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
@media screen and (max-width: 768px) {
  .mainWrap nav {
    position: fixed;
    top: 0;
    left: -280px;
    height: 100vh;
    background: #f8f8f8;
    padding-top: 30px;
    margin-top: 0;
    z-index: 101;
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -ms-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
  }
  .mainWrap nav.open {
    left: 0;
  }
}
.mainWrap nav li span {
  display: flex;
  gap: 3px;
  padding: 5px;
  margin-bottom: 7px;
  line-height: 1.1;
  margin-top: 1px;
  color: #979da6;
  font-family: sans-serif;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.mainWrap nav li span.open {
  background: #fff;
  border-radius: 3px;
}
.mainWrap nav li span.open::before {
  content: "";
  background: #ffab40 url(../img/minus.svg) no-repeat center center;
  background-size: 9px 9px;
  cursor: pointer;
}
.mainWrap nav li span.open a {
  color: #0d0d0d;
}
.mainWrap nav li span::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 15px;
  height: 15px;
  background: #ffab40;
  border-radius: 3px;
  flex-shrink: 0;
  color: #fff;
  font-size: 1.2rem;
  line-height: 1.3;
  text-align: center;
  box-sizing: border-box;
}
.mainWrap nav li a {
  display: block;
  text-decoration: none;
  color: #6c7481;
  line-height: 1.1;
  margin-top: 1px;
}
.mainWrap nav li a:hover {
  color: #0d0d0d;
}
.mainWrap nav li a.active {
  color: #ff6d00 !important;
}
.mainWrap nav ul ul {
  margin-left: 1.4rem;
}
.mainWrap nav ul ul ul {
  margin-left: 1.4rem;
}
.mainWrap nav li:has(> ul) > span::before {
  content: "";
  background: #ffab40 url(../img/plus.svg) no-repeat center center;
  background-size: 9px 9px;
  cursor: pointer;
}
.mainWrap main {
  position: sticky;
  top: 120px;
  left: 290px;
  right: 15px;
  width: calc(100% - 280px);
  height: calc(100vh - 108px - 24px);
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 1px 4px 1px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 768px) {
  .mainWrap main {
    width: 100%;
  }
}
.mainWrap main .searchWrap {
  position: sticky;
  top: 120px;
  z-index: 99;
  display: flex;
  background: #fff;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 8px 5px;
  border-radius: 15px 15px 0 0;
  border-bottom: 1px solid #e6e7e9;
}
.mainWrap main .searchWrap .searchInputWrap {
  position: relative;
  max-width: 290px;
  min-width: 150px;
  height: 40px;
}
.mainWrap main .searchWrap .searchInputWrap::before {
  position: absolute;
  top: 11px;
  left: 15px;
  display: block;
  content: "";
  width: 18px;
  height: 18px;
  background: url("../img/search.svg") no-repeat left center;
  background-size: 18px 18px;
}
.mainWrap main .searchWrap .searchInputWrap input[type=text] {
  background: rgb(248, 248, 248);
  background: linear-gradient(180deg, rgb(240, 240, 240) 0%, rgb(248, 248, 248) 100%);
  width: 100%;
  height: 40px;
  border-radius: 20px;
  padding: 3px 15px 0 40px;
  line-height: 1;
  border: 1px solid transparent;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.mainWrap main .searchWrap .searchInputWrap input[type=text]::placeholder {
  color: #979da6;
}
.mainWrap main .searchWrap .searchInputWrap input[type=text]:hover {
  border: 1px solid #ff6d00;
}
.mainWrap main .searchWrap .searchInputWrap input[type=text]:focus {
  border: 1px solid #ff6d00;
  background: #fff3e0;
}
.mainWrap main .searchWrap button.searchReset {
  display: flex;
  align-items: center;
  margin: 0;
  max-height: 23px;
  min-width: 80px;
  color: #6c7481;
  font-size: 1.3rem;
  line-height: 1;
  padding: 5px 7px 5px 5px;
  background: #f8f8f8;
  border: 1px solid #6c7481;
  white-space: nowrap;
}
@media screen and (max-width: 600px) {
  .mainWrap main .searchWrap button.searchReset {
    gap: 2px;
  }
}
.mainWrap main .searchWrap button.searchReset::before {
  display: block;
  content: "";
  width: 13px;
  height: 13px;
  background: url("../img/reset.svg") no-repeat left center;
  background-size: cover;
  flex-shrink: 0;
}
.mainWrap main .contentWrap {
  position: relative;
  z-index: 97;
  padding: 30px 30px 20px;
  height: calc(100vh - 108px - 80px);
  overflow-x: auto;
}
.mainWrap main .contentWrap .catalogTitle {
  font-size: 1.7rem;
  font-weight: bold;
  line-height: 1.2;
  margin-left: 3px;
  margin-bottom: 5px;
}
.mainWrap main .contentWrap table.actTable {
  width: 100%;
  min-width: 650px;
  border: 1px solid #e6e7e9;
  border-radius: 15px;
  border-collapse: separate;
  border-spacing: 0;
}
.mainWrap main .contentWrap table.actTable + .catalogTitle {
  margin-top: 30px;
}
.mainWrap main .contentWrap table.actTable tr th {
  background: #f6f8fa;
  padding: 7px 20px 5px 20px;
  color: #6c7481;
  font-weight: bold;
  font-size: 1.3rem;
  text-align: left;
  border-bottom: 1px solid #e6e7e9;
}
.mainWrap main .contentWrap table.actTable tr th:first-child {
  border-radius: 15px 0 0 0;
}
.mainWrap main .contentWrap table.actTable tr th:last-child {
  border-radius: 0 15px 0 0;
}
.mainWrap main .contentWrap table.actTable tr th:nth-child(2) {
  width: 200px;
}
.mainWrap main .contentWrap table.actTable tr th:nth-child(3) {
  width: 120px;
}
.mainWrap main .contentWrap table.actTable tr td {
  background: #fff;
  padding: 7px 20px 5px;
  border-bottom: 1px solid #e6e7e9;
  vertical-align: middle;
  line-height: 1.4;
}
.mainWrap main .contentWrap table.actTable tr:last-child td {
  border-bottom: none;
}
.mainWrap main .contentWrap table.actTable tr:last-child td:first-child {
  border-radius: 0 0 0 15px;
}
.mainWrap main .contentWrap table.actTable tr:last-child td:last-child {
  border-radius: 0 0 15px 0;
}
.mainWrap main .contentWrap:has(#contentFrame) {
  padding: 0;
  height: calc(100vh - 108px - 24px);
}
.mainWrap main .contentWrap #contentFrame {
  width: 100%;
  height: 100%;
  display: block;
}

body.whatsNew .mainWrap {
  display: block;
}
body.whatsNew .mainWrap .whatsNewSubTitle {
  color: #6c7481;
  margin: 5px 0 10px 5px;
}
body.whatsNew .mainWrap main {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  background: none;
  box-shadow: none;
  border-radius: 0;
}
body.whatsNew .mainWrap main .contentWrap {
  height: auto;
  padding: 0;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 1px 4px 1px rgba(0, 0, 0, 0.1);
}
body.whatsNew .mainWrap main .contentWrap:not(:first-child) {
  margin-top: 15px;
}
body.whatsNew .mainWrap main .contentWrap .whatsNewTitle {
  background: #6c7481;
  color: #fff;
  font-size: 1.6rem;
  padding: 9px 15px;
  border-radius: 15px 15px 0 0;
  display: flex;
  align-items: flex-end;
  gap: 5px;
  line-height: 1;
}
body.whatsNew .mainWrap main .contentWrap .whatsNewTitle::before {
  display: block;
  content: "";
  width: 17px;
  height: 17px;
  border-radius: 3px;
  background: #ffab40;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  text-align: center;
  box-sizing: border-box;
}
body.whatsNew .mainWrap main .contentWrap .whatsNewContent {
  padding: 30px;
  overflow-x: auto;
}
body.whatsNew .mainWrap main .contentWrap:has(.catalogTitle) .whatsNewTitle {
  cursor: pointer;
}
body.whatsNew .mainWrap main .contentWrap:has(.catalogTitle) .whatsNewTitle::before {
  content: "";
  background: #ffab40 url(../img/plus.svg) no-repeat center center;
  background-size: 9px 9px;
}
body.whatsNew .mainWrap main .contentWrap:has(.catalogTitle) .whatsNewTitle.open::before {
  background: #ffab40 url(../img/minus.svg) no-repeat center center;
  background-size: 9px 9px;
}
body.whatsNew .mainWrap main .contentWrap table.actTable {
  min-width: 500px;
}
body.whatsNew .mainWrap main .contentWrap table.actTable tr th:nth-child(2) {
  width: 50%;
}
body.whatsNew .mainWrap main .contentWrap table.actTable tr th[colspan] {
  border-radius: 15px 15px 0 0;
}
body.whatsNew .mainWrap main .contentWrap table.actTable tr:has(td) + tr:has(th) th {
  border-radius: 0;
}
body.whatsNew .mainWrap main .contentWrap table.actTable tr:last-child td[colspan] {
  border-radius: 0 0 15px 15px;
}