@charset "UTF-8";
/*************

Noto Sans

**************/
@font-face {
  font-family: "NotoSans"; /* フォント名 */
  /* フォーマットごとにパスを指定 */
  src: url("../fonts/notosans/NotoSansJP-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap; /* display=swapの設定 */
  font-style: normal;
}
@font-face {
  font-family: "NotoSans"; /* フォント名 */
  /* フォーマットごとにパスを指定 */
  src: url("../fonts/notosans/NotoSansJP-Medium.ttf") format("truetype");
  font-weight: 500;
  font-display: swap; /* display=swapの設定 */
  font-style: normal;
}
@font-face {
  font-family: "NotoSans"; /* フォント名 */
  /* フォーマットごとにパスを指定 */
  src: url("../fonts/notosans/NotoSansJP-Bold.ttf") format("truetype");
  font-weight: 700;
  font-display: swap; /* display=swapの設定 */
  font-style: normal;
}
/*************

Oswald

**************/
@font-face {
  font-family: "Oswald"; /* フォント名 */
  /* フォーマットごとにパスを指定 */
  src: url("../fonts/oswald/Oswald-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap; /* display=swapの設定 */
  font-style: normal;
}
@font-face {
  font-family: "Oswald"; /* フォント名 */
  /* フォーマットごとにパスを指定 */
  src: url("../fonts/oswald/Oswald-Medium.ttf") format("truetype");
  font-weight: 500;
  font-display: swap; /* display=swapの設定 */
  font-style: normal;
}
@font-face {
  font-family: "Oswald"; /* フォント名 */
  /* フォーマットごとにパスを指定 */
  src: url("../fonts/oswald/Oswald-Bold.ttf") format("truetype");
  font-weight: 700;
  font-display: swap; /* display=swapの設定 */
  font-style: normal;
}
html,
body {
  position: relative;
  margin: 0;
  font-family: "NotoSans", sans-serif;
  font-size: 16px;
}

body {
  color: #333;
}

* {
  box-sizing: border-box;
}

img {
  max-width: 100%;
}

/* common header - header.html */
header {
  position: fixed;
  top: 0;
  width: 100vw;
  color: #fff;
  background-color: #000;
  z-index: 10;
}
header .container {
  max-width: 1300px;
  height: 80px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
}
header .container a {
  color: #fff;
  text-decoration: none;
}
header .container .head_logo {
  width: 210px;
  margin: 1em 0;
}
header .container .menu_sp {
  display: none;
}
header .container .menu .menu_1st {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  font-weight: normal;
}
header .container .menu .menu_1st > li {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: normal;
}
header .container .menu .menu_1st > li.now, header .container .menu .menu_1st > li:hover {
  background-color: #005B95;
}
header .container .menu .menu_1st > li > a {
  width: 100%;
  height: 100%;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
header .container .menu .menu_1st .menu_2nd {
  display: none;
  position: absolute;
  top: 80px;
  left: 0;
  width: 320px;
  background-color: #005B95;
  font-size: 14px;
  font-weight: normal;
}
header .container .menu .menu_1st .menu_2nd li {
  height: 100%;
  text-align: left;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
}
header .container .menu .menu_1st .menu_2nd li.now, header .container .menu .menu_1st .menu_2nd li:hover {
  background-color: #1989C7;
}
header .container .menu .menu_1st .menu_2nd li a {
  width: 100%;
  height: 100%;
  padding: 1em 2em;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
header .container .menu .menu_1st .menu_2nd.course {
  left: -164px;
  width: 780px;
  padding: 12px;
  display: none;
  flex-direction: row;
  justify-content: space-between;
}
header .container .menu .menu_1st .menu_2nd.course li {
  width: 142px;
  height: 142px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #1874AF;
  font-size: 12px;
}
header .container .menu .menu_1st .menu_2nd.course li a {
  width: 100%;
  height: 100%;
  margin: 0;
  justify-content: center;
}
header .container .menu .menu_1st .menu_2nd.course li .c_img_m {
  font-family: "Oswald", sans-serif;
  font-size: 60px;
  font-weight: 700;
}
header .container .menu .menu_1st .menu_2nd.course li:hover {
  background-color: #1989C7;
}
header .container .menu .menu_1st > li:hover .menu_2nd {
  display: block;
}
header .container .menu .menu_1st > li:hover .menu_2nd.course {
  display: flex;
}

@media (max-width: 1315px) {
  header .container .home_logo {
    margin-left: 15px;
  }
}
@media (max-width: 1165px) {
  header {
    z-index: 25;
  }
  header .container {
    position: relative;
  }
  header .container #mainmenu .menu_1st,
  header .container #mainmenu .menu_2nd {
    display: none;
  }
  header .container .menu_sp {
    position: fixed;
    top: 10px;
    right: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    width: 60px;
    cursor: pointer;
  }
  header .container .menu_sp span {
    position: absolute;
    content: "";
    display: block;
    height: 6px;
    width: 100%;
    background-color: #ffffff;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
  }
  header .container .menu_sp span:before, header .container .menu_sp span:after {
    position: absolute;
    content: "";
    display: block;
    height: 6px;
    width: 100%;
    background-color: #ffffff;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
  }
  header .container .menu_sp span:before {
    bottom: 15px;
  }
  header .container .menu_sp span:after {
    top: 15px;
  }
  header .container .menu_sp.on span {
    background-color: rgba(255, 255, 255, 0);
  }
  header .container .menu_sp.on span:before {
    bottom: 0;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
  }
  header .container .menu_sp.on span:after {
    top: 0;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
  }
  header .container #mainmenu {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100vw;
    height: 0;
    background-color: rgba(0, 0, 0, 0.75);
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    overflow-y: scroll;
  }
  header .container #mainmenu.on {
    height: calc(100vh - 80px);
  }
  header .container #mainmenu .menu_1st {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    background-color: #003D65;
    font-size: 14px;
  }
  header .container #mainmenu .menu_1st > li {
    display: block;
    width: 100%;
    margin-bottom: 2px;
    padding: 0;
    background-color: #005B95;
  }
  header .container #mainmenu .menu_1st > li.now, header .container #mainmenu .menu_1st > li:hover {
    background-color: #1989C7;
  }
  header .container #mainmenu .menu_1st > li a {
    width: 100%;
    padding: 30px 40px;
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  header .container #mainmenu .menu_1st > li a br {
    display: none;
  }
  header .container #mainmenu .menu_1st .has_child {
    cursor: pointer;
  }
  header .container #mainmenu .menu_1st .has_child > a {
    pointer-events: none;
  }
  header .container #mainmenu .menu_1st .has_child > a::after {
    display: block;
    content: url(/common/image/icon_plus.webp);
    width: 30px;
  }
  header .container #mainmenu .menu_1st .has_child.on {
    background-color: #1989C7;
  }
  header .container #mainmenu .menu_1st .has_child.on > a::after {
    content: url(/common/image/icon_minus.webp);
  }
  header .container #mainmenu .menu_1st .has_child .menu_2nd {
    position: relative;
    top: 0%;
    left: 0;
    width: 100%;
    height: 0;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
  }
  header .container #mainmenu.on .menu_1st .has_child.on .menu_2nd {
    display: flex;
    flex-direction: column;
    height: auto;
  }
  header .container #mainmenu.on .menu_1st .has_child .menu_2nd li {
    padding: 0 40px;
    background-color: #0D71AF;
  }
  header .container #mainmenu.on .menu_1st .has_child .menu_2nd li.now, header .container #mainmenu.on .menu_1st .has_child .menu_2nd li:hover {
    background-color: #1989C7;
  }
  header .container #mainmenu.on .menu_1st .has_child .menu_2nd.course {
    flex-direction: row;
    justify-content: space-between;
    background-color: #0D71AF;
    padding: 30px 8px;
  }
  header .container #mainmenu.on .menu_1st .has_child .menu_2nd.course li {
    position: relative;
    display: block;
    width: calc((100% - 32px) / 5);
    padding: calc((100% - 32px) / 5) 0 0;
    overflow: hidden;
  }
  header .container #mainmenu.on .menu_1st .has_child .menu_2nd.course li a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 10px;
    display: block;
    text-align: center;
    border: 2px solid #4995C3;
    background-color: #0D71AF;
  }
  header .container #mainmenu.on .menu_1st .has_child .menu_2nd li.now a,
  header .container #mainmenu.on .menu_1st .has_child .menu_2nd li a:hover {
    background-color: #1989C7;
  }
  header .container .menu .menu_1st .menu_2nd.course li div {
    font-size: 3.1vw;
    font-weight: 300;
    padding: 0.5em;
  }
  header .container .menu .menu_1st .menu_2nd.course li .c_img_m {
    font-family: "Oswald", sans-serif;
    font-size: 6vw;
    font-weight: 700;
    padding: 0;
  }
}
@media (max-width: 800px) {
  header .container {
    height: 13.33vw;
  }
  header .container .home_logo {
    margin-left: 4vw;
  }
  header .container #mainmenu {
    top: 13.33vw;
  }
  header .container #mainmenu.on {
    height: 100vh;
  }
  header .container .menu_sp {
    top: 1.33vw;
    right: 1.33vw;
    height: 8vw;
    width: 8vw;
    top: 2.66vw;
  }
  header .container .menu_sp span {
    height: 1.33vw;
    width: 100%;
    background-color: #ffffff;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
  }
  header .container .menu_sp span:before, header .container .menu_sp span:after {
    height: 1.33vw;
    width: 100%;
    background-color: #ffffff;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
  }
  header .container .menu_sp span:before {
    bottom: 2.66vw;
  }
  header .container .menu_sp span:after {
    top: 2.66vw;
  }
  header .container #mainmenu.on .menu_1st > li a {
    padding: 4vw 5.33vw;
    font-size: 4vw;
    line-height: 1em;
  }
  header .container #mainmenu.on .menu_1st .has_child > a::after {
    width: 4vw;
  }
}
/* パンくずナビ */
nav.breadcrumb {
  width: 100%;
  height: 40px;
  margin-top: 80px;
  background-color: #1a396f;
}
nav.breadcrumb .breadcrumb_list {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1300px;
  height: 100%;
  margin: 0 auto;
}
nav.breadcrumb .breadcrumb_list li {
  font-size: 12px;
  color: #fff;
  white-space: nowrap;
}
nav.breadcrumb .breadcrumb_list li::after {
  content: ">";
  vertical-align: middle;
  padding: 0 15px;
}
nav.breadcrumb .breadcrumb_list li:last-of-type {
  color: #647899;
  white-space: normal;
}
nav.breadcrumb .breadcrumb_list li:last-of-type::after {
  content: none;
}
nav.breadcrumb .breadcrumb_list li a {
  text-decoration: underline;
}

@media (max-width: 1315px) {
  nav .breadcrumb_list {
    padding-left: 15px;
  }
}
@media (max-width: 800px) {
  nav.breadcrumb {
    height: auto;
    margin-top: 13.33vw;
  }
  nav.breadcrumb .breadcrumb_list {
    padding: 1rem;
  }
}
article h1 {
  display: flex;
  align-items: center;
  margin: 0;
  background-image: url(/common/image/h1_bg.webp);
  background-repeat: repeat-x;
  color: #fff;
  text-align: left;
  height: 160px;
}
article h1 > div {
  width: 100%;
  max-width: 1300px;
  height: 90px;
  margin: 0 auto;
  padding-left: 20px;
  border-left: 4px solid #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
article h1 .title {
  display: block;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}
article h1 .sub_title {
  font-family: "Oswald", sans-serif;
  font-size: 14px;
  font-weight: 400;
  display: block;
}

@media (max-width: 1315px) {
  article h1 > div {
    margin-left: 15px;
  }
}
@media (max-width: 800px) {
  article h1 {
    height: auto;
    min-height: 130px;
  }
  article h1 > div {
    height: auto;
    min-height: 70px;
    margin-left: 20px;
  }
  article h1 .title {
    font-size: 24px;
    line-height: 30px;
  }
  article h1 .sub_title {
    font-size: 16px;
    line-height: 30px;
    font-weight: 300;
  }
}
.sub_links {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 70px;
  background-color: #F5F5F5;
  border-bottom: 1px solid #E3E3E3;
}
.sub_links ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  font-size: 14px;
}
.sub_links ul li {
  padding: 5px 20px;
}
.sub_links ul li:nth-child(n+2) {
  border-left: 1px solid #DEDEDE;
}
.sub_links ul li.now a,
.sub_links ul li a:hover {
  color: #1989C8;
  text-decoration: underline;
}

@media (max-width: 800px) {
  .sub_links {
    height: auto;
  }
  .sub_links ul {
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    width: 340px;
    border-bottom: none;
  }
  .sub_links ul li {
    margin: 5px;
    padding: 0;
    width: 100%;
    max-width: 160px;
  }
  .sub_links ul li a {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 4px;
    text-align: center;
    border-bottom: 1px solid #ccc;
    font-size: 12px;
    line-height: 16px;
  }
  .sub_links ul li a::after {
    display: block;
    width: 12px;
    height: 10px;
    margin-top: 3px;
    margin-left: 10px;
    content: "";
    background: #333;
    mask-image: url(/common/image/icon_arrows_down.svg);
    -webkit-mask-image: url(/common/image/icon_arrows_down.svg);
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-position: center;
  }
  .sub_links ul li:nth-child(n+2) {
    border-left: none;
  }
}
/* リンクボタンの矢印 */
.link_arrow::after {
  display: inline-block;
  width: 28px;
  height: 5px;
  margin-left: 8px;
  content: url(/common/image/icon_arrow.svg);
  vertical-align: baseline;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
}
.link_arrow:hover::after {
  transform: translateX(10px);
  -webkit-transform: translateX(10px);
  -moz-transform: translateX(10px);
  -ms-transform: translateX(10px);
  -o-transform: translateX(10px);
}

.link_btn {
  position: relative;
  display: block;
  width: 580px;
  height: 60px;
  margin: 0 auto;
}
.link_btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  text-align: center;
  font-size: 18px;
  color: #fff;
  background-color: #333;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
}
.link_btn a:hover {
  opacity: 0.6;
}
.link_btn::after {
  position: absolute;
  top: 22px;
  right: 40px;
  display: inline-block;
  width: 28px;
  height: 5px;
  content: url(/common/image/icon_arrow.svg);
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
}
.link_btn:hover::after {
  transform: translateX(10px);
  -webkit-transform: translateX(10px);
  -moz-transform: translateX(10px);
  -ms-transform: translateX(10px);
  -o-transform: translateX(10px);
}

@media (max-width: 800px) {
  .link_btn {
    width: 89.33vw;
  }
}
/* section - スクロールで表示 */
section {
  opacity: 0;
  transform: translate(0, 100px);
  transition: all 1s;
  -webkit-transform: translate(0, 100px);
  -moz-transform: translate(0, 100px);
  -ms-transform: translate(0, 100px);
  -o-transform: translate(0, 100px);
}
section.active {
  opacity: 1;
  transform: translate(0, 0);
}

/* contact - contact.html */
#contact {
  background: linear-gradient(180deg, #D6D6D6 0%, rgba(229, 229, 229, 0.8) 100%);
}
#contact h2 {
  position: relative;
  font-size: 36px;
  line-height: 46px;
  font-weight: 700;
  text-align: center;
  padding: 60px 0;
  z-index: 2;
}
#contact h2 span {
  position: absolute;
  right: 0;
  font-family: "Oswald", sans-serif;
  font-size: 130px;
  font-weight: 500;
  line-height: 36px;
  letter-spacing: 0em;
  text-align: right;
  color: rgba(255, 255, 255, 0.5);
  z-index: -1;
}
#contact .contact_links {
  font-family: "Oswald", "NotoSans", sans-serif;
  font-weight: 500;
  display: flex;
  justify-content: center;
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
}
#contact .contact_links .email-box {
  width: calc((100% - 20px) / 2);
  max-width: 640px;
  margin: 0 10px 56px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
}
#contact .contact_links .email-box .name {
  font-size: 28px;
  line-height: 40px;
  font-weight: 700;
  color: #333;
  text-align: center;
}
#contact .contact_links .email-box .email {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  line-height: 40px;
  font-weight: 700;
  color: #333;
}
#contact .contact_links .email-box .email::before {
  display: block;
  margin-top: 0.33em;
  margin-right: 0.25em;
  content: "";
  width: 1em;
  height: 1em;
  background-image: url(/common/image/icon_mail.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

@media (max-width: 1300px) {
  #contact h2 span {
    font-size: 9.84vw;
  }
}
@media (max-width: 800px) {
  #contact {
    padding-bottom: 24px;
  }
  #contact h2 {
    padding: 30px 0;
    font-size: 22px;
    line-height: 28px;
  }
  #contact h2 span {
    display: none;
  }
  #contact .contact_links {
    flex-direction: column;
    align-items: center;
  }
  #contact .contact_links .email-box {
    width: 100%;
    margin-bottom: 20px;
  }
  #contact .contact_links .email-box .name {
    font-size: 20px;
    line-height: 28px;
  }
  #contact .contact_links .email-box .email {
    font-size: 18px;
    line-height: 28px;
  }
}
/* footer banner - footer_banner.html */
.footer_banner .upper {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
}
.footer_banner .upper .nict {
  width: 200px;
  margin: 60px 70px;
}
.footer_banner .upper .mic {
  width: 160px;
}
.footer_banner .lower {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  background-color: #E5E5E5;
  padding: 30px 10px 20px;
}
.footer_banner .lower li {
  margin: 0 5px 10px;
}
.footer_banner .lower li.one-line {
  display: flex;
  justify-content: center;
  width: 100%;
}
.footer_banner .lower li a {
  display: block;
}
.footer_banner .lower li a img {
  height: 60px;
}
.footer_banner .lower li a:hover {
  opacity: 0.6;
}

/* common footer - footer.html */
#florting_btn {
  position: fixed;
  top: 127px;
  right: 0;
  width: 65px;
  z-index: 10;
  border-radius: 10px 0px 0px 10px;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  height: 210px;
}
#florting_btn ul {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: -14px;
}
#florting_btn ul li {
  margin-top: 19px;
  width: 40px;
}

@media (max-width: 800px) {
  .footer_banner .upper {
    flex-direction: column;
    margin: 13.33vw 0;
  }
  .footer_banner .upper .nict,
  .footer_banner .upper .mic {
    margin: 0 0 12vw;
  }
  .footer_banner .lower {
    margin: 0;
    padding: 40px 0 30px;
  }
  .footer_banner .lower li,
  .footer_banner .lower li.one-line {
    display: flex;
    justify-content: center;
    width: 89.46vw;
    margin: 0 auto 15px;
  }
  #florting_btn {
    display: none;
  }
}
#pagetop_btn {
  display: none;
  position: fixed;
  right: 0;
  bottom: 80px;
  z-index: 10;
}
#pagetop_btn a {
  width: 70px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #19396F;
}
#pagetop_btn a svg {
  width: 25px;
  fill: #fff;
}

#download {
  background: top url(/image/bg_download.webp) no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding: 90px 0;
}
#download .book_img img {
  width: 233px;
}
#download .desc {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-left: 60px;
}
#download .desc .new_mark {
  position: relative;
  width: 125px;
  height: 125px;
}
#download .desc .new_mark span {
  font-family: "Oswald", sans-serif;
  font-size: 36px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background-color: #FE1033;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
#download .desc .text {
  font-family: "Oswald", "NotoSans", sans-serif;
  font-size: 20px;
  font-weight: 700;
  padding: 20px 0;
}
#download .desc .download_btn {
  width: 400px;
  height: 50px;
  display: flex;
  align-items: center;
}
#download .desc .download_btn a {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  width: 100%;
  padding: 16px 0;
  text-align: center;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  background-color: #19396F;
}
#download .desc .download_btn a::before {
  display: inline-block;
  width: 1.2em;
  height: 1.2em;
  margin-right: 10px;
  content: url(/common/image/icon_download.svg);
  vertical-align: middle;
}
#download .desc .download_btn a:hover {
  opacity: 0.6;
}
#download .desc .file_size {
  text-align: center;
  margin-top: 10px;
}

@media (max-width: 800px) {
  #download {
    flex-direction: column;
    padding: 20vw 0;
    background: center center url(/image/bg_download_sp.webp) no-repeat;
  }
  #download .book_img {
    margin: 0 auto;
    width: 65.33vw;
  }
  #download .book_img img {
    width: 100%;
  }
  #download .desc {
    padding-left: 0;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  #download .desc .new_mark {
    width: 29.33vw;
    height: 29.33vw;
  }
  #download .desc .new_mark span {
    position: absolute;
    top: -30%;
  }
  #download .desc .text {
    width: 65.33vw;
    padding-left: 2.66vw;
    font-size: 4.8vw;
  }
  #download .desc .download_btn {
    width: 89.33vw;
  }
}
footer {
  padding-top: 40px;
  color: #fff;
  background-color: #000;
}
footer .container {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
}
footer .container .left {
  width: 50%;
}
footer .container .footer_logo {
  width: 290px;
}
footer .container .snslink {
  width: 290px;
}
footer .container .snslink ul {
  display: flex;
  justify-content: center;
}
footer .container .snslink ul li {
  margin: 20px 15px;
  display: flex;
  align-items: flex-end;
}
footer .container .snslink img {
  width: 40px;
}
footer .container .right {
  width: 50%;
}
footer .container .right ul {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
footer .container .right ul li {
  padding-right: 30px;
  margin-bottom: 25px;
}
footer .container .right .poricy a {
  position: relative;
  color: #aaa;
}
footer .container .right .poricy a.site_nict::before {
  display: inline-block;
  width: 1em;
  height: 1em;
  margin-right: 10px;
  content: url(/common/image/icon_link_footer.svg);
  vertical-align: middle;
  fill: #aaa;
}
footer .copyright {
  width: 100%;
  padding: 1em 0;
  font-family: "Oswald", sans-serif;
  text-align: center;
  color: #aaa;
  background-color: #333;
}
footer .copyright br {
  display: none;
}

@media (max-width: 1315px) {
  footer .container .left {
    padding-left: 15px;
  }
}
@media (max-width: 800px) {
  footer {
    padding-top: 6.66vw;
  }
  footer .container {
    flex-direction: column;
  }
  footer .container .left {
    width: 100%;
  }
  footer .container .footer_logo {
    display: none;
  }
  footer .container .snslink {
    width: 100%;
  }
  footer .container .snslink ul li {
    margin: 0 4.66vw;
  }
  footer .container .snslink svg {
    width: 11.6vw;
    height: 11.6vw;
  }
  footer .container .snslink img {
    width: 12vw;
  }
  footer .container .right {
    width: 100%;
  }
  footer .container .right ul {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  footer .container .right .menu {
    display: none;
  }
  footer .container .right .poricy {
    margin: 2.66vw 0;
    font-size: 2.93vw;
  }
  footer .container .right ul li {
    padding-right: 30px;
    margin: 2.66vw 0;
  }
  footer .copyright {
    font-size: 2.66vw;
  }
  footer .copyright br {
    display: block;
  }
}
table.sh_base {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 50px;
  border: 1px solid #ccc;
  border-collapse: collapse;
  line-height: 1.75em;
}
table.sh_base tr,
table.sh_base th,
table.sh_base td {
  border: 1px solid #ccc;
  border-collapse: collapse;
}
table.sh_base thead th {
  color: #fff;
  background-color: #999;
  text-align: center;
  vertical-align: middle;
  font-weight: 500;
  padding: 12px;
}
table.sh_base tbody th {
  padding: 20px;
  background-color: #f5f5f5;
  font-weight: 500;
}
table.sh_base tbody td {
  padding: 20px;
}

a.outside {
  color: #005B95;
  text-decoration: underline;
}
a.outside::after {
  display: inline-block;
  content: "";
  width: 1em;
  height: 1em;
  margin-top: 5px;
  margin-left: 2px;
  background-color: #005B95;
  mask-image: url(/common/image/icon_link_2.svg);
  -webkit-mask-image: url(/common/image/icon_link_2.svg);
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-position: center;
}
a.outside:hover {
  color: #1989c8;
}
a.outside:hover::after {
  background-color: #1989c8;
}
a.link_blue {
  color: #005B95;
  text-decoration: underline;
}
a.link_blue:hover {
  color: #1989c8;
}
a.link_blue:hover::after {
  background-color: #1989c8;
}
a.pdf::after {
  display: inline-block;
  content: "";
  width: 1em;
  height: 1em;
  margin-top: 5px;
  margin-left: 2px;
  background-color: #005B95;
  mask-image: url(/common/image/icon_file_pdf.svg);
  -webkit-mask-image: url(/common/image/icon_file_pdf.svg);
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-position: center;
}
a.pdf:hover::after {
  background-color: #1989c8;
}
a.common-link {
  color: #005B95;
  text-decoration: underline;
}
a.common-link:hover {
  color: #1989c8;
}

.trainer_card {
  width: 29.23vw;
  max-width: 380px;
  margin: 15px;
  padding: 50px 20px;
  background-color: #fff;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.trainer_card .photo {
  width: 20vw;
  max-width: 260px;
  height: 20vw;
  max-height: 260px;
  margin-bottom: 20px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  overflow: hidden;
}
.trainer_card .photo img {
  object-fit: cover;
}
.trainer_card .photo.border_on {
  border: 1px solid #999;
}
.trainer_card .name {
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  margin-bottom: 20px;
}
.trainer_card .company {
  margin-bottom: 20px;
  line-height: 24px;
}
.trainer_card .memo {
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 22px;
  text-align: left;
}
.trainer_card .memo span {
  font-weight: 700;
}
.trainer_card .link {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 21.53vw;
  max-width: 280px;
  height: 44px;
  color: #fff;
  text-align: center;
  background-color: #005B95;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
}
.trainer_card .link a {
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 26px;
  width: 100%;
  padding-right: 1.5em;
}
.trainer_card .link_arrow::after {
  position: absolute;
  top: -5px;
  right: 26px;
  vertical-align: unset;
}
.trainer_card.course_master {
  position: relative;
}
.trainer_card.course_master::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "コースマスター";
  font-size: 18px;
  font-weight: 700;
  line-height: 32px;
  text-align: center;
  color: #fff;
  display: block;
  width: 100%;
  height: 36px;
  background-color: #999;
  border-radius: 15px 15px 0 0;
  -webkit-border-radius: 15px 15px 0 0;
  -moz-border-radius: 15px 15px 0 0;
  -ms-border-radius: 15px 15px 0 0;
  -o-border-radius: 15px 15px 0 0;
}

@media (max-width: 800px) {
  .trainer_card {
    width: 100%;
  }
  .trainer_card .photo {
    width: 51.28vw;
    max-width: 200px;
    height: 51.28vw;
    max-height: 200px;
  }
  .trainer_card .name {
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 10px;
  }
  .trainer_card .company {
    margin-bottom: 16px;
    line-height: 24px;
  }
  .trainer_card.course_master::before {
    font-size: 16px;
    line-height: 24px;
    height: 34px;
    padding-top: 4px;
  }
  .trainer_card .link {
    width: 210px;
    height: 44px;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
  }
  .trainer_card .link a {
    font-size: 14px;
    line-height: 26px;
  }
  .trainer_card .link_arrow::after {
    position: absolute;
    top: -5px;
    right: 16px;
    vertical-align: unset;
  }
}
.modaal-content-container {
  padding: 0;
}

.modal_head {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
  background-color: #000;
}
.modal_head img {
  width: 180px;
}

.modal_body {
  display: flex;
  flex-wrap: wrap;
  max-width: 860px;
  margin: 0 auto;
  padding: 30px;
}
.modal_body .photo {
  width: 210px;
  height: 210px;
  margin-bottom: 20px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  overflow: hidden;
}
.modal_body .photo img {
  object-fit: cover;
}
.modal_body .photo.border_on {
  border: 1px solid #999;
}
.modal_body .prof {
  width: calc(100% - 210px - 50px);
  margin-left: 50px;
}
.modal_body .prof .name {
  border-top: 4px solid rgba(100, 121, 158, 0.6980392157);
  border-bottom: 4px solid rgba(100, 121, 158, 0.6980392157);
  font-size: 28px;
  font-weight: 700;
  line-height: 36px;
  padding: 10px 0;
}
.modal_body .prof .name span {
  display: block;
  width: 100%;
  font-size: 20px;
  line-height: 36px;
}
.modal_body .prof .info {
  padding: 10px 0;
  line-height: 28px;
}
.modal_body dl {
  width: 100%;
}
.modal_body dl dt {
  display: flex;
  align-items: center;
  width: 100%;
  font-weight: 700;
  line-height: 30px;
}
.modal_body dl dt::before {
  display: block;
  content: "";
  width: 1em;
  height: 1em;
  margin-right: 10px;
  background-color: #64799E;
}
.modal_body dl dd {
  width: 100%;
  padding-left: 24px;
  padding-bottom: 1em;
  line-height: 28px;
}
.modal_body a {
  color: #005B95;
  text-decoration: underline;
}
.modal_body a:hover {
  color: #1989c8;
}

.modal_footer {
  height: 30px;
  background-color: #000;
}

@media (max-width: 800px) {
  .modaal-content-container {
    height: 100%;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
  }
  .modal_head {
    height: 60px;
  }
  .modal_body {
    padding: 20px;
  }
  .modal_body .photo {
    width: 160px;
    height: 160px;
    margin-left: auto;
    margin-right: auto;
  }
  .modal_body .prof {
    width: 100%;
    margin-left: 0;
    margin-bottom: 50px;
  }
  .modal_body .prof .name {
    font-size: 20px;
    line-height: 32px;
  }
  .modal_body dl dd a {
    word-break: break-all;
  }
}
/*---------------------------------

共通クラス（ここから）

 ---------------------------------*/
._heading-var1 {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  position: relative;
}
._heading-var1 .jp-text {
  position: relative;
  z-index: 2;
}
._heading-var1 .en-text {
  z-index: 1;
  position: absolute;
  color: #F6F6F6;
  text-align: right;
  font-family: Oswald;
  font-size: 120px;
  font-style: normal;
  font-weight: 700;
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
}

._heading-var2 {
  text-align: center;
  position: relative;
  font-size: 28px;
  line-height: 1.14;
  font-weight: bold;
}
._heading-var2:before {
  width: 70%;
  height: 1px;
  background-color: #000;
  position: absolute;
  display: block;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
._heading-var2 span {
  display: inline-block;
  background: #fff;
  position: relative;
  z-index: 1;
  padding: 0px 15px;
}

._btn-blue {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background-color: #005B95;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
}

._btn-blue2 {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background-color: #1A396F;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
}

._inner1300 {
  width: 1300px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

._circleIconList {
  margin-top: 30px;
  align-items: flex-start;
}
._circleIconList li {
  display: flex;
  align-items: flex-start;
}
._circleIconList li .heading {
  padding-left: 18px;
  text-indent: -18px;
  font-weight: bold;
}
._circleIconList li .heading--no-bold {
  font-weight: normal;
}
._circleIconList li .heading::before {
  display: inline-block;
  content: "";
  width: 10px;
  height: 10px;
  margin-right: 8px;
  line-height: 32px;
  background-color: #77A0BB;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

@media (max-width: 768px) {
  ._circleIconList {
    margin-top: 0px;
  }
  ._circleIconList li {
    align-items: flex-start;
    flex-direction: column;
  }
  ._circleIconList li .heading {
    min-width: 100px;
  }
}
@media (max-width: 1300px) {
  ._inner1300 {
    width: auto;
  }
}
.sp-only {
  display: block;
}

.pc-only {
  display: none;
}

@media (max-width: 768px) {
  ._heading-var1 {
    font-size: 24px;
  }
  ._heading-var1 .en-text {
    display: none;
  }
  ._heading-var2 {
    font-size: 24px;
  }
  .sp-only {
    display: none;
  }
  .pc-only {
    display: block;
  }
  ._btn-blue {
    width: auto !important;
  }
  ._btn-blue2 {
    width: auto !important;
  }
}
#sub_wrap.sp {
  display: none !important;
}

body.s2020:after,
body.s2021:after,
body.s2022:after,
body.s2023:after {
  background: none !important;
}

@media (max-width: 768px) {
  .modaal-video-wrap {
    margin-left: 20px !important;
    margin-right: 20px !important;
  }
}
/*---------------------------------

共通クラス（ここまで）

 ---------------------------------*/