@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+1p:wght@500;700;800;900&display=swap");
body {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック体", "Yu Gothic", "YuGothic", "メイリオ", "Meiryo", sans-serif;
  height: 100%;
  position: relative;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  padding-top: 0 !important;
  line-height: 1.8;
}
@media (max-width: 992px) {
  body {
    padding-top: 77px;
  }
}

/* AOS モバイル調整用CSS */
html, body {
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

a {
  color: #028dff;
  text-decoration: none;
  background-color: transparent;
  word-break: break-all;
}

a:hover {
  color: #0056b3;
  text-decoration: underline;
}

.h1 {
  font-size: 32px;
  font-size: 2rem;
}

.h2 {
  font-size: 28.8px;
  font-size: 1.8rem;
}

.h3 {
  font-size: 25.6px;
  font-size: 1.6rem;
}

.h4 {
  font-size: 22.4px;
  font-size: 1.4rem;
}

.h5 {
  font-size: 19.2px;
  font-size: 1.2rem;
}

a {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
a img {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

/*text-indent*/
.indent-text {
  text-indent: -0.8em;
  margin-left: 0.8em;
}

.indent-text1 {
  text-indent: -1em;
  margin-left: 1em;
}

.indent-text15 {
  text-indent: -1.5em;
  margin-left: 1.5em;
}

.indent-text2 {
  text-indent: -2em;
  margin-left: 2em;
}

.indent-text25 {
  text-indent: -2.5em;
  margin-left: 2.5em;
}

.indent-text3 {
  text-indent: -3em;
  margin-left: 3em;
}

.text-height-0 {
  line-height: 1 !important;
}

.text-height-1 {
  line-height: 1.2 !important;
}

.text-height-2 {
  line-height: 1.5 !important;
}

.text-height-3 {
  line-height: 2 !important;
}

.text-height-4 {
  line-height: 2.2 !important;
}

.text-height-5 {
  line-height: 2.5 !important;
}

.bace-color {
  color: #0267A4 !important;
}

.bace-bg {
  background-color: #0267A4 !important;
}

.rounded-30 {
  border-radius: 30px !important;
}

/*マーカー*/
span.marker {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(50%, #fffa7d));
  background: linear-gradient(transparent 50%, #fffa7d 50%);
}

/*btn*/
.btn {
  border-radius: 30px !important;
  position: relative;
  overflow: hidden;
  /*キラッと光る*/
  /*hoverした際の移動のアニメーション*/
}
.btn::before {
  content: "";
  /*絶対配置でキラッと光るの位置を決める*/
  position: absolute;
  top: 0;
  left: -75%;
  /*キラッと光る形状*/
  width: 50%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, .3)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
  -webkit-transform: skewX(-25deg);
          transform: skewX(-25deg);
}
.btn:hover::before {
  -webkit-animation: shine 0.7s;
          animation: shine 0.7s;
}

@-webkit-keyframes shine {
  100% {
    left: 125%;
  }
}

@keyframes shine {
  100% {
    left: 125%;
  }
}
/*
pc-nav
 */
.pc-nav {
  background: #004678;
  z-index: 70;
}
.pc-nav .global-nav {
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-left: 1px solid #ccc;
}
.pc-nav .global-nav:after {
  content: "";
  clear: both;
  display: block;
}
.pc-nav .global-nav a {
  padding: 1em 0.5em;
  display: block;
  color: #ffffff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.pc-nav .global-nav .consumer a {
  padding: 15px 0 9px;
}
.pc-nav .global-nav > li {
  border-right: 1px solid #ccc;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 16.6666666667%;
          flex: 0 0 16.6666666667%;
  position: relative;
}
.pc-nav .global-nav > li p {
  padding: 1em 0.5em;
  text-align: center;
  color: #ffffff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin: 0;
}
.pc-nav .global-nav > li > a {
  text-align: center;
}
.pc-nav .global-nav > li:hover > a, .pc-nav .global-nav > li:hover > p {
  background: #2e93e6;
  color: #fff;
  text-decoration: none;
}
.pc-nav .global-nav > li:hover .drop-menu {
  display: block;
}
.pc-nav .global-nav > li.current > a, .pc-nav .global-nav > li.current > p {
  background: #2e93e6;
  color: #fff;
  text-decoration: none;
}
.pc-nav .global-nav .drop-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  padding: 0;
  z-index: 99;
  background: #0065ab;
  border: 1px solid #ccc;
}
.pc-nav .global-nav .drop-menu li {
  border-top: 1px solid #ccc;
  list-style: none;
}
.pc-nav .global-nav .drop-menu li:first-child {
  border-top: none;
}
.pc-nav .global-nav .drop-menu li:hover a {
  background: #2e93e6;
  color: #fff;
  text-decoration: none;
}

/*
sp-nav
*/
.overlay {
  content: "";
  display: block;
  width: 0;
  height: 0;
  background-color: rgba(0, 0, 0, .5);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 60;
  opacity: 0;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
.overlay.open {
  width: 100%;
  min-height: 100%;
  opacity: 1;
}

.menu-trigger {
  display: inline-block;
  background: #0267A4;
  padding: 1em;
  border-radius: 8px;
  width: 64px;
  height: 64px;
  vertical-align: middle;
  cursor: pointer;
  position: fixed;
  left: calc(50% + 490px);
  top: 20px;
  z-index: 1000;
}
.menu-trigger span {
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  right: 0;
  left: 0;
  margin: 0 auto;
  width: 60%;
  height: 4px;
  background-color: #ffffff;
  border-radius: 8px;
}
.menu-trigger.active span {
  background-color: #fff;
}
.menu-trigger span:nth-of-type(1) {
  top: 16px;
}
.menu-trigger.active span:nth-of-type(1) {
  -webkit-transform: translateY(15px) rotate(-45deg);
          transform: translateY(15px) rotate(-45deg);
}
.menu-trigger span:nth-of-type(2) {
  top: 0;
  bottom: 0;
  margin: auto;
}
.menu-trigger.active span:nth-of-type(2) {
  opacity: 0;
}
.menu-trigger span:nth-of-type(3) {
  bottom: 16px;
}
.menu-trigger.active span:nth-of-type(3) {
  -webkit-transform: translateY(-12px) rotate(45deg);
          transform: translateY(-12px) rotate(45deg);
}
@media (max-width: 1199.98px) {
  .menu-trigger {
    left: 90%;
  }
}
@media (max-width: 767.98px) {
  .menu-trigger {
    left: auto;
    right: 10px;
  }
}

.sp-nav {
  width: 390px;
  height: 100%;
  padding: 3em 2.5em;
  background-color: #ffffff;
  position: fixed;
  top: 0;
  right: -390px;
  z-index: 1100;
  -webkit-transform: translate(390px);
          transform: translate(390px);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-box-shadow: -1px 2px 4px 0px rgba(0, 0, 0, .6);
          box-shadow: -1px 2px 4px 0px rgba(0, 0, 0, .6);
  overflow-y: auto;
  opacity: 0;
}
.sp-nav.open {
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  opacity: 1;
  right: 0;
}
.sp-nav ul {
  margin: 0;
  padding: 0;
  border-top: #777777 solid 1px;
  width: 100%;
}
.sp-nav ul li {
  list-style: none;
  border-bottom: #777777 solid 1px;
}
.sp-nav ul li button {
  border: none;
  background: none;
  color: #028dff;
}
.sp-nav ul li button:hover, .sp-nav ul li button:active {
  outline: none !important;
  -moz-outline-style: none;
}
.sp-nav ul li a, .sp-nav ul li button {
  display: block;
  width: 100%;
  padding: 1em 0.5em;
  text-align: left;
}
.sp-nav ul li a:hover, .sp-nav ul li button:hover {
  text-decoration: none;
}
.sp-nav ul li div > ul > li:last-child {
  border-bottom: none;
}
.sp-nav ul .current button, .sp-nav ul .current > a {
  pointer-events: none;
  background: #2e93e6;
}
@media (max-width: 576px) {
  .sp-nav {
    width: 100%;
    right: -100%;
    padding: 1.5em;
  }
}

/*下位ページヘッダ*/
.header {
  background: #E5EEFB;
  padding: 2em 0 0.5em;
}
.header .sitelogo {
  margin-bottom: 2.5em;
}
.header .pageTitle {
  font-size: 2em;
  color: #0267A4;
}
@media (max-width: 767.98px) {
  .header {
    padding: 2em 0;
  }
  .header .sitelogo {
    margin-bottom: 0;
  }
  .header .pageTitle,
  .header .headerImage {
    display: none;
  }
}

.spPageHeader {
  display: none;
}

@media (max-width: 767.98px) {
  .spPageHeader {
    display: block;
  }
  .spPageHeader h2 {
    font-size: 2em;
    color: #0267A4;
  }
}
/*背景アニメション*/
.tools {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.tool {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  list-style: none;
  color: rgba(218, 235, 255, .41);
  opacity: 0;
  -webkit-transition: opacity 1s ease-in-out;
  transition: opacity 1s ease-in-out;
  z-index: -10;
}

.tool.fade-in {
  opacity: 1;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.main-img {
  background: #eeeeee;
  -webkit-box-shadow: 0px 5px 6px -5px rgba(0, 0, 0, .6);
          box-shadow: 0px 5px 6px -5px rgba(0, 0, 0, .6);
}

.information .info-header {
  background: #004678;
  color: #ffffff;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
}
.information .info-header h3 {
  text-align: center;
}
.information dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 2em 0;
  border-bottom: #cccccc dashed 1px;
  margin: 0;
}
.information dl:first-child {
  border-top: #cccccc dashed 1px;
}
.information dl dt {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 120px;
          flex: 0 0 120px;
}
.information dl dd {
  margin: 0;
}

.top-message {
  background: #E6EDF2;
  padding: 2em 0;
  color: #004678;
}

#page-top {
  position: fixed;
  bottom: 200px;
  right: 40px;
  z-index: 1000;
}
#page-top a {
  background: #369;
  text-decoration: none;
  color: #fff;
  width: 80px;
  padding: 10px 0;
  text-align: center;
  display: block;
  border-radius: 10px;
  font-size: 2em;
}
#page-top a:hover {
  background: #93c8ed;
}
@media (max-width: 767.98px) {
  #page-top {
    left: auto;
    right: 10px;
    bottom: 185px;
  }
}

/* パンくず */
.breadcrumbs {
  width: 100%;
  margin: 1em auto 2em;
  padding: 0.5em 0;
  color: #666;
  background-color: transparent;
}
.breadcrumbs a {
  text-decoration: none;
}
.breadcrumbs a:hover {
  text-decoration: underline;
}

/*見出し*/
.heading {
  font-size: 1.5em;
  margin-bottom: 2em;
  border-bottom: solid 2px #D6D6D6;
  color: #0267A4;
  position: relative;
  padding-bottom: 0.5em;
}
.heading:after {
  position: absolute;
  content: " ";
  display: block;
  border-bottom: solid 2px #0267A4;
  bottom: -2px;
  width: 8%;
}
@media (max-width: 992px) {
  .heading {
    font-size: 1.4em;
  }
}

.sub-heading {
  color: #0267A4;
  background: #E5EEFB;
  padding: 0.3em 0.5em;
  font-size: 1.3em;
  margin-bottom: 2em;
}
@media (max-width: 992px) {
  .sub-heading {
    font-size: 1.2em;
  }
}

.sm-heading {
  color: #004678;
  padding: 0.5em;
  font-size: 1.1em;
  margin-top: 0;
  background: #f7f7f7;
  font-weight: bold;
}
@media (max-width: 992px) {
  .sm-heading {
    font-size: 1em;
  }
}

/*
試験案内
 */
@media (min-width: 991px) {
  .exam_guide_tbl dl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .exam_guide_tbl dl dt {
    color: #004678;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .exam_guide_tbl dl dt:after {
    content: ":";
    margin: 0 1em 0 auto;
    font-weight: normal;
  }
  .exam_guide_flow dl dt {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 90px;
            flex: 0 0 90px;
  }
  .exam_guide_guideline dl dt {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 140px;
            flex: 0 0 140px;
  }
}
@media (max-width: 992px) {
  .exam_guide_tbl dl {
    display: block;
  }
  .exam_guide_tbl dl dt {
    color: #004678;
    margin-bottom: 0.5em;
  }
  .exam_guide_tbl dl dd {
    margin-bottom: 1.5em;
  }
}
/*
プレスリリース
 */
.press_release dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  padding: 2em 0;
  margin: 0;
}
.press_release dl dt {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 120px;
          flex: 0 0 120px;
}
.press_release dl dd {
  margin: 0;
}
@media (max-width: 992px) {
  .press_release dl {
    display: block;
  }
  .press_release dl dt {
    width: 100%;
    margin-bottom: 0.5em;
  }
}

/*よくある質問*/
.faq dl {
  margin-bottom: 1.5em;
}
.faq dl dt {
  margin: 0;
}
.faq dl dt button {
  background: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: left;
  width: 100%;
  padding: 0.5em;
  border: #cccccc solid 1px;
  border-radius: 8px;
}
.faq dl dt button::before {
  content: "Ｑ．";
  color: #0b72b4;
}
.faq dl dt button:hover, .faq dl dt button:active, .faq dl dt button:focus {
  outline: none !important;
  -moz-outline-style: none;
  color: #0b72b4;
}
.faq dl dd {
  margin: 0;
  padding: 0;
}
.faq dl dd .answer {
  margin: 1em 0 0 2.5em;
  padding-bottom: 0.5em;
}

/*講習動画*/
.video-lists .video-list {
  border: 1px solid #dee2e6;
}
.video-lists .video-list .video-content {
  display: none;
  /*position: absolute;
  background: #f3f7ff;
  border: 2px solid #dee2e6;
  border-top: none;
  z-index: 9999;
  font-size: .9em;
  margin: 0 -1.8px;
  width: 101.8%;*/
}
.video-lists .video-list:hover {
  /*border-bottom: none;*/
  background: #f3f7ff;
}

.videoPageHeader {
  border-left: 8px solid #004678;
  color: #004678;
  padding-left: 0.5em;
}

#chatbot {
  position: fixed;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .25);
  z-index: 99999;
  overflow: auto;
  padding: 0 10px 10px 0;
}
#chatbot .frame {
  cursor: pointer;
}
#chatbot .frame p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0;
  padding: 10px 15px 0;
  border-radius: 5px 5px 0 0;
  background-color: #00afec;
  font-weight: bold;
  color: #ffffff;
  text-align: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
#chatbot .frame p:after {
  content: "×";
  display: block;
}
#chatbot .frame .iframe {
  width: 360px;
  height: 500px;
  padding: 10px;
  background-color: #00afec;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
#chatbot .frame .iframe iframe {
  width: 100%;
  height: 100%;
  border: none;
  background-color: #ffffff;
}
#chatbot.botclose {
  position: fixed;
  top: auto;
  left: 0;
  right: 0;
  bottom: 10px;
  width: auto;
  height: auto;
  margin: auto;
  background-color: transparent;
  overflow: auto;
}
#chatbot.botclose .frame {
  -webkit-box-shadow: none;
          box-shadow: none;
}
#chatbot.botclose .frame p {
  display: inline-block;
}
#chatbot.botclose .frame p:after {
  content: none;
}
#chatbot.botclose .frame .iframe {
  height: 85px;
  background-image: url("../img/chatbot.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: calc(100% - 20px) 65px;
}
#chatbot.botclose .frame .iframe iframe {
  display: none;
}
#chatbot .frame, #chatbot.botclose .frame .iframe {
  -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, .5);
          box-shadow: 5px 5px 5px rgba(0, 0, 0, .5);
}

@media screen and (min-width: 768px) {
  #chatbot {
    position: fixed;
    top: auto;
    left: auto;
    right: 0;
    bottom: 10px;
    width: auto;
    height: auto;
    background-color: transparent;
  }
}
@media screen and (min-width: 768px) {
  #chatbot .frame .iframe {
    width: 380px;
  }
}
@media screen and (min-width: 768px) {
  #chatbot.botclose {
    position: fixed;
    top: auto;
    left: auto;
    right: 0;
    bottom: 10px;
    display: block;
    width: auto;
    height: auto;
    background-color: transparent;
    z-index: 9999;
    overflow: auto;
  }
}
@media screen and (max-width: 768px) {
  #chatbot {
    bottom: 0 !important;
  }
  #chatbot .botclose {
    bottom: 0 !important;
  }
}
/* WEB化案内　*/
.webBasedWrap .card {
  border: #DC3545 solid 4px;
  border-radius: 30px;
  background: #fff7df;
}
.webBasedWrap .card .card-header {
  font-size: 40px;
  font-size: 2.5rem;
  border-radius: 25px 25px 0 0;
}
.webBasedWrap .card .card-body {
  padding: 32px;
  padding: 2rem;
  background-size: 42%;
}
.webBasedWrap .card .card-body .webBasedSubHeader {
  background: #004678;
  font-size: 32px;
  font-size: 2rem;
  display: inline-block;
  color: #ffffff;
  border-radius: 30px;
  padding: 0 32px;
  padding: 0 2rem;
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
}
.webBasedWrap .card .card-body ul {
  font-size: 24px;
  font-size: 1.5rem;
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
}
.webBasedWrap .card .card-body ul li {
  list-style-type: none;
  padding-left: 0.5em;
}
.webBasedWrap .card .card-body ul li::marker {
  font-family: "Font Awesome 5 Free";
  content: "\f00c";
  color: #DC3545;
  margin-right: 0.5em;
  font-weight: bold;
}
.webBasedWrap .card .card-body .webBasedContents {
  background: #ffffff;
  padding: 24px;
  padding: 1.5rem;
  border-radius: 30px;
  border: #cccccc solid 1px;
}
.webBasedWrap .card .card-body .webBasedContents dl dt {
  font-size: 24px;
  font-size: 1.5rem;
}
.webBasedWrap .card .card-body .webBasedContents dl dd span {
  border-bottom: #DC3545 solid 1px;
}
@media (max-width: 1199.98px) {
  .webBasedWrap .card .card-body {
    background-size: 36%;
  }
}
@media (max-width: 992px) {
  .webBasedWrap .card .card-header {
    font-size: 1.8rem;
  }
  .webBasedWrap .card .card-body {
    background-size: 33%;
  }
  .webBasedWrap .card .card-body .webBasedSubHeader {
    font-size: 1.4rem;
  }
  .webBasedWrap .card .card-body ul {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
  }
  .webBasedWrap .card .card-body ul li {
    list-style-type: none;
    padding-left: 0.5em;
  }
  .webBasedWrap .card .card-body .webBasedContents dl dt {
    font-size: 1.2rem;
  }
}
@media (max-width: 768px) {
  .webBasedWrap .card .card-body {
    background: none;
    padding: 1rem;
  }
}
/*# sourceMappingURL=maps/style.css.map */
