@charset "UTF-8";
/*Reset
---------------------------------------------------------------------*/
/*html, body, div, span, object, iframe,*/
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  font-style: normal;
  background: transparent;
}

article, nav, section, header, footer, aside, main {
  display: block;
}

* {
  box-sizing: border-box;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

*:after, *:before {
  box-sizing: border-box;
}

:root {
  --header-height:120px;
  --header-height-sp:90px;
  --grd-am: linear-gradient(90deg,rgb(0,115,184) 0%, rgb(0,162,171) 50%, rgb(0,115,184) 100%);
  --grd-dl: linear-gradient(90deg,rgb(0,115,184) 0%, rgb(174,109,170) 50%, rgb(0,115,184) 100%);
  --main-rgb:0,39,122;
  --back-rgb:239,239,239;
  --text-rgb:51,51,51;
  --link-rgb:16,154,184;
  --red:243,30,81;
  --transition: all .2s;
  --radius:8px;
}

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

img {
  line-height: 0;
  border: none;
  max-width: 100%;
  height: auto;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/*共通
---------------------------------------------------------------------*/
html {
  font-size: clamp(0.875rem, 0.4696088795rem + 0.8456659619vw, 1.125rem);
}

.inner {
  width: 94%;
  margin: 0px auto;
  padding: 0% 0%;
  border-radius: 10px;
}
@media screen and (min-width: 992px) {
  .inner {
    max-width: 1280px;
  }
}
@media (min-width: 1600px) {
  .inner {
    max-width: 1400px;
  }
}

/*body
---------------------------------------------------------------------*/
body {
  margin: 0px;
  padding: 0px;
  background-color: #FFF;
  color: rgb(var(--text-rgb));
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  line-height: 1.75;
  font-family: "游ゴシック", Yu Gothic, "游ゴシック体", YuGothic, "ヒラギノ角ゴ Pro W3", Hiragino Kaku Gothic Pro, "ＭＳ Ｐゴシック", MS PGothic, sans-serif, monospace;
  overflow-wrap: break-word;
}

/*wrapper
---------------------------------------------------------------------*/
#WRAPPER {
  margin: 0px;
  padding: 0px;
  height: 100%;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

#overlay {
  content: "";
  display: block;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
  background-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
#overlay.open {
  opacity: 1;
  visibility: visible;
}

@media screen and (min-width: 992px) {
  #overlay {
    display: none;
  }
}
/*header
---------------------------------------------------------------------*/
#header {
  width: 100%;
  margin: 0 0 0 0;
  padding: 0px;
  border-top: 10px solid rgb(var(--main-rgb));
  background-color: rgba(255, 255, 255, 0.5);
  position: fixed;
  top: 0;
  transition: var(--transition);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 100;
  height: var(--header-height-sp);
}
@media screen and (min-width: 992px) {
  #header {
    height: var(--header-height);
  }
}
#header .header_inner {
  height: 100%;
  display: flex;
  justify-content: space-between;
  gap: 2%;
  padding: 0px 0 0;
}
#header #headerlogo {
  flex-grow: 2;
}
#header #headerlogo a {
  display: block;
}
#header #headerlogo a img {
  transition: var(--transition);
  max-height: var(--header-height);
}
@media screen and (min-width: 992px) {
  #header.fixed {
    height: var(--header-height-sp);
  }
}
#header.fixed #headerlogo a img {
  max-height: var(--header-height-sp);
}

/*スマホ・タブレット*/
#sp_nav {
  display: none;
}
@media screen and (max-width: 991px) {
  #sp_nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 0 0 20px;
  }
}

#menu_btn {
  position: relative;
  cursor: pointer;
  padding: 0 0px;
  width: 55px;
  height: 55px;
  z-index: 25;
  overflow: hidden;
  flex-shurink: 0;
  text-align: center;
  font-size: 15px;
  color: rgb(var(--main-rgb));
}
#menu_btn span:not(:nth-of-type(n+3)) {
  display: inline-block;
  transition: var(--transition);
  position: absolute;
  left: 25%;
  height: 2px;
  border-radius: 5px;
  background: rgb(var(--main-rgb));
  width: 50%;
}
#menu_btn span:nth-of-type(1) {
  top: 10px;
}
#menu_btn span:nth-of-type(2) {
  top: 26px;
}
#menu_btn span:nth-of-type(3) {
  display: inline-block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}
#menu_btn span:nth-of-type(4) {
  display: inline-block;
  position: absolute;
  height: auto;
  left: 0;
  right: 0;
  bottom: 0;
}
#menu_btn span:nth-of-type(4):after {
  content: "MENU";
  font-size: 12px;
}
#menu_btn.active {
  color: rgb(var(--main-rgb));
}
#menu_btn.active span:nth-of-type(1) {
  top: 12px;
  transform: translateY(6px) rotate(-155deg);
}
#menu_btn.active span:nth-of-type(2) {
  top: 24px;
  transform: translateY(-6px) rotate(155deg);
}

@media screen and (max-width: 991px) {
  #mainnavi {
    padding: var(--header-height) 0 0 0;
    background-color: rgba(255, 255, 255, 0.9);
    z-index: 20;
    width: 100vw;
    overflow: auto;
    position: fixed;
    top: 0;
    left: 0px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
  }
  #mainnavi.active {
    opacity: 1;
    visibility: visible;
  }
}
@media screen and (min-width: 992px) {
  #body_top .mainmenu li.nav_top {
    display: none;
  }
}
.mainmenu {
  border-top: 1px dotted rgb(var(--main-rgb));
}
.mainmenu li a {
  line-height: 1.2;
  display: block;
  position: relative;
  padding: 1.5em 0.5em 1.5em 2em;
  margin: 0;
  font-weight: bold;
  border-bottom: 1px dotted rgb(var(--main-rgb));
}
.mainmenu li a:before {
  display: block;
  position: absolute;
  top: 0;
  left: -0.75em;
  content: "";
  height: 100%;
  width: 100%;
  background: url(../img/arr.svg) no-repeat 1.2em center;
  background-size: 0.75em;
}
#body_kyogikai .mainmenu li.nav_kyogikai a,
#body_kanrisha .mainmenu li.nav_kanrisha a,
#body_seido .mainmenu li.nav_seido a,
#body_koshu .mainmenu li.nav_koshu a,
#body_jiko .mainmenu li.nav_jiko a,
#body_news .mainmenu li.nav_news a,
#body_link .mainmenu li.nav_link a,
#body_top .mainmenu li.nav_top a,
.mainmenu li a:hover {
  background-color: rgb(var(--main-rgb));
  color: #FFF;
}
#body_kyogikai .mainmenu li.nav_kyogikai a::before,
#body_kanrisha .mainmenu li.nav_kanrisha a::before,
#body_seido .mainmenu li.nav_seido a::before,
#body_koshu .mainmenu li.nav_koshu a::before,
#body_jiko .mainmenu li.nav_jiko a::before,
#body_news .mainmenu li.nav_news a::before,
#body_link .mainmenu li.nav_link a::before,
#body_top .mainmenu li.nav_top a::before,
.mainmenu li a:hover::before {
  background: url(../img/arr_w.svg) no-repeat 1.2em center;
  background-size: 0.75em;
}

/*main
---------------------------------------------------------------------*/
#main {
  flex: 1;
  margin-top: var(--header-height);
}
@media screen and (min-width: 992px) {
  #main {
    margin-top: calc(var(--header-height) + 40px);
  }
  #main #main_wrap {
    display: flex;
    gap: 4%;
  }
  #main #mainnavi {
    flex-shrink: 0;
    width: 25%;
  }
  #main #maincol {
    flex-grow: 2;
  }
}

#body_top #topicpath {
  display: none;
}

#topicpath {
  padding: 0;
  font-size: 0.8rem;
  margin: 0 auto 0;
}

/*sidecol
---------------------------------------------------------------------*/
/*footer
---------------------------------------------------------------------*/
#footer {
  width: 100%;
  margin: 0px auto 0;
  padding: 30px 0 0 0;
  background-color: rgb(var(--back-rgb));
}
#footer #footerlogo {
  margin: 0 5% 30px;
}
#footer #footerlogo a {
  color: rgb(var(--text-rgb));
}
#footer #copyright {
  margin: 0px auto 0px;
  padding: 10px 0px;
  font-size: 0.8rem;
  text-align: center;
  background: rgb(var(--main-rgb));
  color: #FFF;
}

/*common
---------------------------------------------------------------------*/
#maincol article {
  margin: 0px 0;
  padding: 0 0 40px 0;
}

#maincol h1 {
  margin: 0 0 1em;
  padding: 10px 0;
  letter-spacing: 0px;
  font-size: clamp(1.5rem, 0.689217759rem + 1.6913319239vw, 2rem);
  text-align: center;
  background-color: rgba(var(--link-rgb), 0.1);
  border-radius: var(--radius);
  color: rgb(var(--link-rgb));
}

#maincol h2 {
  margin: 1em 0 1em;
  padding: 0;
  font-size: clamp(1.25rem, 0.8446088795rem + 0.8456659619vw, 1.5rem);
  position: relative;
  text-align: center;
  display: flex;
  align-items: center;
  color: rgb(var(--main-rgb));
  gap: 0.5em;
  flex-shrink: 0;
}
#maincol h2 span {
  position: relative;
  display: inline-block;
  padding: 0 3em;
}
#maincol h2::after {
  content: "";
  flex-shrink: 0;
  flex-grow: 2;
  height: 6px;
  border-top: solid 1px currentColor;
  border-bottom: solid 1px currentColor;
}

#maincol h3 {
  margin: 1em 0 0.75em;
  padding: 0 0 0;
  font-size: clamp(1.125rem, 0.9223044397rem + 0.422832981vw, 1.25rem);
  position: relative;
  color: rgb(var(--main-rgb));
}
#maincol h3 small {
  font-weight: normal;
  display: block;
}
#maincol h3::before {
  display: inline-block;
  content: "";
  height: 0.8em;
  width: 0.8em;
  margin-right: 0.5em;
  background-color: currentColor;
  border-radius: 50%;
}

#maincol h4 {
  margin: 1em 0 0.75em;
  padding: 0 0 0;
  font-size: clamp(1rem, 0.7973044397rem + 0.422832981vw, 1.125rem);
  position: relative;
}

p {
  margin: 0 0 1em;
}

.center {
  text-align: center !important;
}

.txtleft {
  text-align: left !important;
}

.txtright {
  text-align: right !important;
}

.small {
  font-size: 80%;
}

.large {
  font-size: 120%;
}

strong {
  font-weight: bold;
  font-size: 110%;
}

.red, em {
  color: rgb(var(--red)) !important;
}

.margin-top {
  margin-top: 30px;
}

a {
  text-decoration: none;
  color: rgb(var(--link-rgb));
  transition: var(--transition);
}
a:hover {
  color: rgb(var(--main-rgb));
}

.linkbtn a {
  line-height: 1.2;
  display: inline-block;
  position: relative;
  padding: 0.5em 1.5em;
  margin: 5px 0;
  background-color: rgb(var(--link-rgb));
  border: solid 1px rgb(var(--link-rgb));
  color: #FFF;
  border-radius: 50px;
  font-weight: bold;
}
@media (hover: hover) {
  .linkbtn a:hover {
    color: rgb(var(--link-rgb));
    background-color: #FFF;
  }
}

a.pdf::after,
a.doc::after,
a.xls::after {
  display: inline-block;
  content: "";
  border-radius: 20px;
  font-size: 70%;
  padding: 3px 8px;
  line-height: 1;
  margin-left: 0.2em;
  background-color: #FFF;
  border: solid 1px #000;
}

a.pdf {
  position: relative;
}
a.pdf::after {
  content: "PDF";
  border-color: red;
  color: red;
}

a.doc {
  position: relative;
}
a.doc::after {
  content: "Word";
  border-color: blue;
  color: blue;
}

a.xls {
  position: relative;
}
a.xls::after {
  content: "Excel";
  border-color: green;
  color: green;
}

a.blank {
  position: relative;
  padding-right: 1.2em;
}
a.blank::after {
  content: "　";
  display: inline-block;
  margin: 0 0 0 3px;
  width: 14px;
  background-image: url("../img/blank.svg");
  background-repeat: no-repeat;
  background-size: 14px;
  background-position: center;
}

table.default {
  border-collapse: collapse;
  margin: 0 0 15px;
}
table.default tr {
  border-left: solid 1px #DDD;
  border-top: solid 1px #DDD;
}
table.default th, table.default td {
  padding: 0.5em 1em;
  border-right: solid 1px #DDD;
  border-bottom: solid 1px #DDD;
}
table.default th {
  font-weight: bold;
}
table.default thead th {
  text-align: center;
  background-color: rgba(var(--main-rgb), 0.2);
}
table.default tbody th {
  text-align: center;
  vertical-align: middle;
  background-color: rgba(var(--text-rgb), 0.1);
}
table.default tbody td {
  vertical-align: middle;
}

table.jiko tbody td {
  text-align: right;
}

@media screen and (max-width: 991px) {
  table.cellblock tr {
    display: block;
    margin-bottom: 3px;
  }
  table.cellblock th, table.cellblock td {
    display: block;
    padding: 0.5em;
  }
  .scroll {
    overflow: auto;
    margin: 0 0 2em;
  }
  .scroll table {
    position: relative;
    width: auto;
  }
  .scroll th, .scroll td {
    white-space: nowrap;
  }
}
ul.arr {
  margin: 0;
  padding: 0;
  list-style: none;
}
ul.arr li {
  margin: 0 0 0.25em;
  padding: 0 0 0 1em;
  position: relative;
}
ul.arr li:before {
  content: "";
  height: 0.5em;
  width: 0.5em;
  border-radius: 50%;
  background-color: rgb(var(--link-rgb));
  position: absolute;
  top: 0.5em;
  left: 0;
}

ol.ol_maru {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: li;
}
ol.ol_maru > li {
  position: relative;
  padding-left: 2em;
  margin-top: 0.5em;
}
ol.ol_maru > li::before {
  counter-increment: li;
  content: counter(li);
  position: absolute;
  left: 0;
  top: 0.2em;
  display: block;
  width: 1.5em;
  height: 1.5em;
  border-radius: 50%;
  background-color: rgb(var(--link-rgb));
  font-size: 1em;
  color: #fff;
  line-height: 1.5em;
  text-align: center;
}

li ul {
  margin: 0;
  padding-left: 1em;
}
li ul > li {
  list-style-type: disc;
}

ol.ol_none {
  margin: 0;
  padding-left: 1em;
  list-style: none;
}
ol.ol_none li {
  margin-left: 1em;
  text-indent: -1em;
}

ol.ol_kome_num li {
  list-style: none;
  margin: 0 0 1em 1em;
}
ol.ol_kome_num li span {
  display: inline-block;
  margin: 0 0.5em 0 -2.5em;
  padding: 0 0.25em;
}

.koshuChiku a {
  padding: 0 0.25em;
}

.koshuKome1 {
  background-color: hsl(0deg, 100%, 90%);
}

.koshuKome2 {
  background-color: hsl(30deg, 100%, 90%);
}

.koshuKome3 {
  background-color: hsl(60deg, 100%, 90%);
}

.koshuKome4 {
  background-color: hsl(90deg, 100%, 90%);
}

.koshuKome5 {
  background-color: hsl(120deg, 100%, 90%);
}

.koshuKome6 {
  background-color: hsl(150deg, 100%, 90%);
}

.koshuKome7 {
  background-color: hsl(180deg, 100%, 90%);
}

.koshuKome8 {
  background-color: hsl(210deg, 100%, 90%);
}

.koshuKome9 {
  background-color: hsl(240deg, 100%, 90%);
}

dl.dl_default div {
  margin: 0 0 1em 0em;
}
dl.dl_default dt {
  margin: 0 0 0.25em;
  padding: 0 0 0 1em;
  position: relative;
}
dl.dl_default dt:before {
  content: "";
  height: 0.75em;
  width: 0.75em;
  background-color: rgb(var(--text-rgb));
  position: absolute;
  top: 0.4em;
  left: 0;
}
dl.dl_default dd {
  margin: 0 0 0.5em 1em;
}

dl.qa dt {
  margin: 0 0 0 2.5em;
  text-indent: -2.5em;
  padding: 0 0 0;
  font-weight: bold;
  position: relative;
}
dl.qa dt:not(:first-child) {
  margin-top: 2em;
}
dl.qa dd:not(.note) {
  margin: 0 0 0 2.6em;
  text-indent: -2.6em;
  color: rgb(var(--red));
}
dl.qa dd.note {
  margin: 0 0 0 2.8em;
  font-size: 0.9rem;
}

/**/
h1#topmainimage {
  line-height: 0.1;
  padding: 0;
  overflow: hidden;
}

.whatsnew {
  border-top: dotted 1px rgb(var(--main-rgb));
}
.whatsnew div {
  display: flex;
  gap: 1em;
  padding: 0.5em;
  border-bottom: dotted 1px rgb(var(--main-rgb));
}
.whatsnew dt {
  flex-shrink: 0;
}
.whatsnew dd {
  margin: 0;
}

.box {
  border-radius: var(--radius);
  background-color: #FFF;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
  padding: 10px 3% 2em !important;
  margin-bottom: 40px !important;
  border-top: 5px solid rgb(var(--main-rgb));
}

@media screen and (max-width: 991px) {
  .sp {
    display: block;
  }
  .sp_none {
    display: none;
  }
  .pc {
    display: none;
  }
}
@media screen and (min-width: 992px) {
  .pc {
    display: block;
  }
  .pc_none {
    display: none;
  }
  .sp {
    display: none;
  }
  .flex_box {
    display: flex;
    justify-content: space-between;
  }
}

/*# sourceMappingURL=base.css.map */
