/* Setup Common
   ========================================================================== */
@import url('https://fonts.googleapis.com/css?family=Lato:400,400i,700,700i&display=swap');

* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: #333;
}

img {
  max-height: 100%;
}

a {
  color: #59b8d7;
}

a:hover {
  text-decoration: none;
}

.ly_wrapper {
  padding-left: 11.56rem;
  padding-top: 7.56rem;
  position: relative;
  overflow-x: hidden;
}

.ly_wrapper.is_dark:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(0,0,0,0.6);
  z-index: 9000;
}

.ignore-transition { /* Fixed transition when resize window */
  transition: none !important;
}


/* Site header
   ========================================================================== */
.ly_header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  background: #fff;
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  padding: 1.25rem 1.88rem 0;
  z-index: 10000;
}

.bl_header_logo {
  width: 8.94rem;
  padding-bottom: 1.25rem;
  flex: none;
}

.bl_header_nav {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.bl_header_nav_group1 {
  display: flex;
  order: 2;
  flex-direction: row-reverse;
}

.bl_header_nav_group2 {
  display: flex;
  order: 1;
}

.bl_header_nav_search,
.bl_header_nav_lang,
.bl_header_nav_access,
.bl_header_nav_doc,
.bl_header_nav_mail {
  padding: 0 0.94rem;
  border-left: 1px solid #e1e1e1;
  position: relative;
}

.bl_header_nav_search .el_btn,
.bl_header_nav_lang .el_btn,
.bl_header_nav_lang .el_close,
.bl_header_nav_access_link,
.bl_header_nav_doc_link,
.bl_header_nav_mail_link {
  font-size: 0.75rem;
  color: #333;
  text-decoration: none;
  display: flex;
  align-items: center;
  position: relative;
}

.bl_header_nav_search .el_btn:before,
.bl_header_nav_lang .el_btn:before,
.bl_header_nav_access_link:before,
.bl_header_nav_doc_link:before,
.bl_header_nav_mail_link:before {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background: #333;
  position: absolute;
  left: 50%;
  bottom: -0.63rem;
  transform: translateX(-50%);
  transition: width 0.3s ease;
  z-index: 1000;
}

.bl_header_nav_search .el_btn:hover:before,
.bl_header_nav_lang .el_btn:hover:before,
.bl_header_nav_access_link:hover:before,
.bl_header_nav_doc_link:hover:before,
.bl_header_nav_mail_link:hover:before {
  width: 100%;
}

.bl_header_nav_search .el_btn .el_icon,
.bl_header_nav_lang .el_btn .el_icon,
.bl_header_nav_lang .el_close .el_icon,
.bl_header_nav_access_link .el_icon,
.bl_header_nav_doc_link .el_icon,
.bl_header_nav_mail_link .el_icon {
  display: inline-block;
  background-size: 100%;
  background-repeat: no-repeat;
  margin-right: 0.63rem;
}

.bl_header_nav_search .el_btn .el_icon {
  width: 0.81rem;
  height: 0.81rem;
  background-image: url(../images/ico_search_01.png);
}

.bl_header_nav_lang .el_btn .el_icon,
.bl_header_nav_lang .el_close .el_icon {
  width: 0.75rem;
  height: 0.75rem;
  background-image: url(../images/ico_lang_01.png);
}

.bl_header_nav_access_link .el_icon {
  width: 0.44rem;
  height: 0.75rem;
  background-image: url(../images/ico_access_01.png);
}

.bl_header_nav_doc_link .el_icon {
  width: 0.5rem;
  height: 0.63rem;
  background-image: url(../images/ico_doc_01.png);
}

.bl_header_nav_mail_link .el_icon {
  width: 0.63rem;
  height: 0.5rem;
  background-image: url(../images/ico_mail_01.png);
}

.bl_header_nav_search {
  padding-right: 0;
}

.bl_header_nav_search_form {
  position: absolute;
  right: 0;
  top: 100%;
  padding-top: 0.65rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 500;
}

.bl_header_nav_search_form_field {
  padding: 0.88rem 1.25rem;
  background: #333;
}

.bl_header_nav_search_form_field .el_input {
  font-size: 0.81rem;
  width: 16.75rem;
  height: 1.63rem;
  padding-left: 1.88rem;
  background: #fff url(../images/ico_search_02.png) no-repeat 0.5rem center;
  background-size: 0.81rem;
  border: none;
}

.bl_header_nav_search:hover .bl_header_nav_search_form,
.bl_header_nav_search.is_active .bl_header_nav_search_form {
  opacity: 1;
  visibility: visible;
}

.bl_header_nav_search:hover > .bl_header_nav_search_link:before,
.bl_header_nav_search.is_active > .bl_header_nav_search_link:before {
  width: 100%;
}

.bl_header_nav_lang_extend {
  list-style-type: none;
  position: absolute;
  left: 50%;
  top: 100%;
  width: 6.5rem;
  padding: 1.25rem 0;
  background: #fff;
  transform: translateX(-50%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 500;
}

.bl_header_nav_lang_extend_item {
  margin-bottom: 0.6rem;
}

.bl_header_nav_lang_extend_item:last-child {
  margin-bottom: 0;
}

.bl_header_nav_lang_extend_item .el_link {
  font-size: 0.75rem;
  color: #333;
  text-decoration: none;
  display: block;
  width: 100%;
  text-align: center;
}

.bl_header_nav_lang_extend_item .el_link:before {
  display: none;
}

.bl_header_nav_lang_extend_item .el_link:hover {
  color: #59b8d7;
}

.bl_header_nav_lang:hover .bl_header_nav_lang_extend,
.bl_header_nav_lang.is_active .bl_header_nav_lang_extend {
  opacity: 1;
  visibility: visible;
}

.bl_header_nav_search:hover .el_btn:before,
.bl_header_nav_search.is_active .el_btn:before,
.bl_header_nav_lang:hover .el_btn:before,
.bl_header_nav_lang.is_active .el_btn:before {
  width: 100%;
}

.bl_header_nav_top {
  width: 100%;
  order: 3;
  margin-top: 0.94rem;
}

.bl_header_nav_top .el_btn,
.bl_header_nav_top .el_strong,
.bl_header_nav_top .el_close {
  font-weight: bold;
}

.bl_header_nav_top_lv1 {
  list-style-type: none;
  display: flex;
  justify-content: flex-end;
}

.bl_header_nav_top_lv1 > .bl_header_nav_top_item {
  margin: 0 1.25rem;
}

.bl_header_nav_top_lv1 > .bl_header_nav_top_item:last-child {
  margin-right: 0;
}

.bl_header_nav_top_lv1 > .bl_header_nav_top_item > .el_link,
.bl_header_nav_top_lv1 > .bl_header_nav_top_item > .el_btn {
  font-size: 1.06rem;
  color: #333;
  text-decoration: none;
  display: block;
  padding-bottom: 1.94rem;
  position: relative;
}

.bl_header_nav_top_lv1 > .bl_header_nav_top_item > .el_link:before,
.bl_header_nav_top_lv1 > .bl_header_nav_top_item > .el_btn:before {
  content: "";
  display: block;
  width: 0;
  height: 0.25rem;
  background: #004381;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  transition: width 0.3s ease;
  z-index: 1000;
}

.bl_header_nav_top_lv1 > .bl_header_nav_top_item:hover > .el_link:before,
.bl_header_nav_top_lv1 > .bl_header_nav_top_item:hover > .el_btn:before,
.bl_header_nav_top_lv1 > .bl_header_nav_top_item > .el_link.is_current:before,
.bl_header_nav_top_lv1 > .bl_header_nav_top_item > .el_btn.is_current:before {
  width: 100%;
}

.bl_header_nav_top_lv2 {
  display: flex;
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  background: #f1f6fc;
  padding: 2.5rem 0 2.5rem 13.13rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.bl_header_nav_top_lv2 .bl_header_nav_top_list {
  margin-right: 5rem;
}

.bl_header_nav_top_lv2 .bl_header_nav_top_list:nth-last-child(2) {
  margin-right: 0;
}

.bl_header_nav_top_lv2 .bl_header_nav_top_list .bl_header_nav_top_item {
  margin-bottom: 0.94rem;
}

.bl_header_nav_top_lv2 .bl_header_nav_top_list .bl_header_nav_top_item:last-child {
  margin-bottom: 0;
}

.bl_header_nav_top_lv2 .bl_header_nav_top_list .bl_header_nav_top_item .el_link {
  font-size: 0.88rem;
  color: #333;
  text-decoration: none;
  display: flex;
  align-items: flex-start;
}

.bl_header_nav_top_lv2 .bl_header_nav_top_list .bl_header_nav_top_item .el_link:hover {
  color: #59b8d7;
}

.bl_header_nav_top_lv2 .bl_header_nav_top_list .bl_header_nav_top_item .el_link:before {
  content: "∟";
  font-size: 0.65rem;
  display: inline-block;
  transform: rotate(225deg);
  margin-right: 0.5rem;
  margin-top: 0.25rem;
}

.bl_header_nav_top_lv1 > .bl_header_nav_top_item:hover .bl_header_nav_top_lv2 {
  opacity: 1;
  visibility: visible;
  transition: all 0.3s ease 0.3s;
}

.bl_header_nav_top_lv2 .bl_header_nav_top_list .bl_header_nav_top_item .el_strong {
  display: block;
  margin-bottom: 0.94rem;
}

.bl_header_nav_side {
  position: absolute;
  left: 0;
  top: 100%;
  width: 11.56rem;
  height: calc(100vh - 100%);
  background: #004381;
}

.bl_header_nav_side .el_link {
  font-size: 0.88rem;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  height: 4.38rem;
  padding-left: 4.06rem;
  border-bottom: 1px solid #004d95;
  position: relative;
  transition: background 0.3s ease;
}

.bl_header_nav_side .el_link:hover {
  background: #59b8d7;
}

.bl_header_nav_side .el_link .el_icon {
  background-size: 100%;
  background-repeat: no-repeat;
  position: absolute;
  left: 2.31rem;
  top: 50%;
  transform: translate(-50%, -50%);
}

.bl_header_nav_side_item:nth-child(1) .el_icon {
  width: 1rem;
  height: 0.94rem;
  background-image: url(../images/ico_university_01.png);
}
.bl_header_nav_side_item:nth-child(2) .el_icon {
  width: 1rem;
  height: 0.94rem;
  background-image: url(../images/ico_pen_01.png);
}
.bl_header_nav_side_item:nth-child(3) .el_icon {
  width: 1.25rem;
  height: 0.88rem;
  background-image: url(../images/ico_hat_01.png);
}
.bl_header_nav_side_item:nth-child(4) .el_icon {
  width: 1.31rem;
  height: 0.94rem;
  background-image: url(../images/ico_people_01.png);
}
.bl_header_nav_side_item:nth-child(5) .el_icon {
  width: 1.06rem;
  height: 1.31rem;
  background-image: url(../images/ico_graduating_01.png);
}
.bl_header_nav_side_item:nth-child(6) .el_icon {
  width: 0.75rem;
  height: 1.13rem;
  background-image: url(../images/ico_building_01.png);
}
.bl_header_nav_side_item:nth-child(7) .el_icon {
  width: 0.88rem;
  height: 0.88rem;
  background-image: url(../images/ico_people_02.png);
}

.bl_header_nav_scroll{
	overflow: auto;
	width: 12.00rem;
}

/* Site footer
   ========================================================================== */
.ly_footer {
  color: #fff;
  background: url(../images/bg_footer.jpg);
}

.bl_footer_list {
  display: flex;
  justify-content: space-between;
  max-width: 65rem;
  padding: 3.13rem 0 6.25rem;
  margin: 0 auto;
}

.bl_footer_list_col {
  width: 24%;
}

.bl_footer_list_col > *:first-child {
  margin-top: 0;
}

.bl_footer_list .el_link {
  color: #fff;
  text-decoration: none;
}

.bl_footer_list .el_strong {
  display: block;
  margin-top: 2.5rem;
}

.bl_footer_list .el_strong .el_link {
  font-size: 1.13rem;
}

.bl_footer_list .el_small {
  font-weight: bold;
  display: block;
  margin-top: 1.1rem;
}

.bl_footer_list .el_small .el_link {
  font-size: 0.88rem;
}

.bl_footer_list_col_block {
  margin-top: 0.63rem;
}

.bl_footer_list_col_item {
  font-size: 0.88rem;
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.63rem;
}

.bl_footer_list_col_item:last-child {
  margin-bottom: 0;
}

.bl_footer_list_col_item:before {
  content: "・";
}

.bl_footer_list_col_item .el_link:hover {
  text-decoration: underline;
}

.bl_footer_contact_sns {
  display: flex;
  align-items: center;
  margin-top: 4.69rem !important;
}

.bl_footer_contact_sns_item {
  margin-right: 1.5rem;
}

.bl_footer_contact_sns_item:last-child {
  margin-right: 0;
}

.bl_footer_contact_sns_item:nth-child(1) {
  width: 1.88rem;
}

.bl_footer_contact_sns_item:nth-child(2) {
  width: 1.63rem;
}

.bl_footer_contact_sns_item:nth-child(3) {
  width: 1.75rem;
}

.bl_footer_contact_sns_item:nth-child(4) {
  width: 1.75rem;
}

.bl_footer_contact_sns_item:nth-child(5) {
  width: 1.75rem;
}

.bl_footer_contact_sns_item:before {
  display: none;
}

.bl_footer_contact_logo {
  margin-top: 1.88rem;
  max-width: 14.88rem;
}

.bl_footer_contact_address {
  font-style: normal;
  font-size: 0.88rem;
  width: 12.19rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #1e5587;
}

.bl_footer_contact_address:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.bl_footer_contact_address .el_strong {
  font-size: 1.13rem;
  margin-bottom: 0.31rem;
}

.bl_footer_contact_address:last-child .el_strong {
  margin-top: 1.25rem;
}

.bl_footer_nav {
  border-top: 1px solid #1e5587;
  padding-top: 1.56rem;
}

.bl_footer_nav_list {
  display: flex;
  justify-content: center;
}

.bl_footer_nav_list_item {
  padding: 0 1.06rem;
}

.bl_footer_nav_list_item .el_link {
  font-size: 0.94rem;
  color: #fff;
  text-decoration: none;
}

.bl_footer_nav_list_item .el_link:hover {
  text-decoration: underline;
}

.bl_footer_copyright {
  font-size: 0.94rem;
  text-align: center;
  padding: 1.56rem;
}

.scrollUp {
  width: 4.63rem;
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 9000;
  cursor: pointer;
}

.scrollUp_img {
  transition: opacity 0.3s ease;
}

.scrollUp:hover .scrollUp_img {
  opacity: 0.7;
}


/* Heading
   ========================================================================== */
.bl_head1 {
  background: none;
  position: relative;
  display: block;
  min-height: auto;
  align-items: center;
  justify-content: center;
}

.bl_head1_text {
  font-weight: bold;
  text-align: center;
  background: #f7f7f7;
  width: 100%;
  padding: 1.8rem 1.25rem 1.6rem;
  margin-bottom: 3.65rem;
  font-size: 2.125rem;
}

.bl_head1__img .bl_head1_text {
  background: none;
}

.bl_breadcrumb {
  font-size: 0.81rem;
  position: static;
  padding: 1.25rem 1.25rem 1.0rem;
  left: 0;
  top: 0;
}

.bl_breadcrumb_list {
  display: flex;
  flex-wrap: wrap;
}

.bl_breadcrumb_list_item {
  margin-right: 0.94rem;
}

.bl_breadcrumb_list_item:last-child {
  margin-right: 0;
}

.bl_breadcrumb_list_item:before {
  content: "＞";
  margin-right: 0.94rem;
}

.bl_breadcrumb_list_item:first-child:before {
  display: none;
}

.bl_breadcrumb_list_item .el_link {
  color: #333;
  text-decoration: none;
}

.bl_breadcrumb_list_item .el_link:hover {
  text-decoration: underline;
}

.bl_head1__img {
  color: #fff;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 25% 32%;
  min-height: 12.504rem;
  justify-content: flex-start;
}

.bl_head1__img .bl_head1_text {
  text-align: left;
}

.bl_head1__img .bl_breadcrumb_list_item .el_link {
  color: #fff;
}


/* Layout main
   ========================================================================== */
.ly_body {
  max-width: 68.76rem;
  padding: 0 1.88rem 6.25rem;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

.ly_body.un_second_level {
  padding: 3.75rem 1.88rem 6.25rem;
}

.ly_main {
  width: 100%;
  overflow: hidden;
}

.ly_side {
  width: 15.63rem;
  background: #fff;
  margin-left: 2.88%;
  flex-shrink: 0;
}

.bl_sideHead .el_link {
  font-size: 1.13rem;
  color: #fff;
  text-align: center;
  text-decoration: none;
  display: block;
  background: #59b8d7;
  padding: 0.63rem;
}

.bl_sideList_item.border_double {
  border-top: 1px solid #d8d8d8;
  padding-top: 3px;
}

.bl_sideList_item .el_link {
  font-size: 0.81rem;
  color: #333;
  text-decoration: none;
  display: block;
  padding: 0.94rem 1.7rem 0.94rem 0.94rem;
  border-top: 1px solid #d8d8d8;
  position: relative;
}

.bl_sideList_item:first-child .el_link {
  border-top: none;
}

.bl_sideList_item .el_link:hover {
  color: #59b8d7;
  text-decoration: underline;
}

.bl_sideList_item .el_link:before {
  content: "";
  display: block;
  width: 0.44rem;
  height: 0.56rem;
  background-image: url(../images/ico_content_side_list.png);
  background-repeat: no-repeat;
  background-size: 100%;
  position: absolute;
  right: 0.94rem;
  top: 50%;
  transform: translateY(-50%);
}

.bl_sideList_item.current .el_link {
  color: #59b8d7;
  text-decoration: none;
  background: #ecfaff;
  border-color: #ecfaff;
}

.bl_sideList_item .el_link:hover:before,
.bl_sideList_item.current a:before {
  background-image: url(../images/ico_content_side_list_on.png);
}

.bl_sideList_item.current + .bl_sideList_item .el_link {
  border-color: #ecfaff;
}

.bl_sideList_item.current + .bl_sideList_item.border_double .el_link {
  border-color: #d8d8d8;
}

/* Block, section
   ========================================================================== */
.bl_cont1 {
  padding-top: 3.75rem;
  padding-bottom: 6.25rem;
}

.bl_cont1 + .un_event_cont1 {
  padding-top: 0;
}

.bl_cont1__gray {
  background-color: #f7f7f7;
}

.bl_bgCont1 {
  padding-top: 5.63rem;
  padding-bottom: 6.25rem;
  background: #f7f7f7;
}

.bl_sectBlock1 {
  margin-bottom: 5rem;
}

.bl_sectBlock1:last-child,
.bl_sectBlock1 > *:last-child {
  margin-bottom: 0;
}

.bl_sectBlock1 a {
  color: #59b8d7;
}

.bl_sectBlock1 a:hover {
  text-decoration: none;
}

.bl_wrapBlock1 {
  max-width: 68.76rem;
  padding-left: 1.88rem;
  padding-right: 1.88rem;
  margin-left: auto;
  margin-right: auto;
}


/* Title
   ========================================================================== */
/* Template heading is here
   ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.el_ttl1 {
  font-size: 1.75rem;
  font-weight: bold;
  border-bottom: 0.31rem solid #9eb5e3;
  padding-bottom: 0.94rem;
  margin-bottom: 2.5rem;
  position: relative;
}

.el_ttl1:before {
  content: "";
  display: block;
  width: 14.38rem;
  height: 0.31rem;
  background: #004381;
  position: absolute;
  left: 0;
  bottom: -0.31rem;
}

.el_ttl2 {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.1;
  padding-left: 0.94rem;
  border-left: 3px solid #064ea0;
  margin-bottom: 2.5rem;
}

.el_ttl3 {
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.364;
  padding: 0.94rem 1.25rem;
  background: #f1f6fc;
  margin-bottom: 1.25rem;
}

.el_ttl4 {
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.5;
  padding-bottom: 0.63rem;
  border-bottom: 1px solid #d8d8d8;
  margin-bottom: 1.25rem;
}
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */


/* Label
   ========================================================================== */
.el_labelInfo {
  display: flex;
  align-items: center;
  margin-bottom: 1.56rem;
}

.el_labelInfo_cat {
  font-size: 0.75rem;
  color: #fff;
  background: #59b8d7;
  padding: 0.15rem 1.25rem;
  margin-left: 1.25rem;
}


/* Movie
   ========================================================================== */
.el_movie1 {
  text-align: center;
  margin-bottom: 1.69rem;
}

.el_movie1 iframe {
  width: 100%;
  max-width: 28rem;
  height: 21rem;
}


/* Table
   ========================================================================== */
.bl_tbl1,
.bl_tbl2,
.bl_tbl3 {
  margin-bottom: 2.5rem;
}

.bl_tbl1 table,
.bl_tbl2 table,
.bl_tbl3 table {
  min-width: 100%;
  overflow: hidden;
  table-layout: fixed;
  border-collapse: separate;
  border-top: 1px solid #d8d8d8;
  border-right: 1px solid #d8d8d8;
}

.bl_tbl1 table th,
.bl_tbl2 table th,
.bl_tbl3 table th,
.bl_tbl1 table td,
.bl_tbl2 table td,
.bl_tbl3 table td {
  border-left: 1px solid #d8d8d8;
  border-bottom: 1px solid #d8d8d8;
  text-align: center;
}

.bl_tbl1 table th,
.bl_tbl2 table th,
.bl_tbl3 table th {
  font-size: 0.88rem;
  font-weight: normal;
  background: #f1f6fc;
  padding: 1.13rem;
  min-height: 3.25rem;
}

.bl_tbl1 table thead th,
.bl_tbl2 table thead th,
.bl_tbl3 table thead th {
  text-align: center;
}

.bl_tbl2 table th {
  padding: 0.95rem 0.4rem;
}

.bl_tbl3 table th {
  width: 10.63rem;
}

.bl_tbl1 table td,
.bl_tbl2 table td,
.bl_tbl3 table td {
  font-size: 0.81rem;
  padding: 1rem;
}

.bl_tbl1 table td li,
.bl_tbl2 table td li,
.bl_tbl3 table td li {
  list-style-type: disc;
  list-style-position: inside;
  text-indent: -1.38em;
}

.bl_tbl1 table td li:before,
.bl_tbl2 table td li:before,
.bl_tbl3 table td li:before {
  display: none;
}

.bl_tbl2 table td {
  font-size: 0.81rem;
  padding: 1.25rem 2.19rem;
}

.bl_tbl3 table td {
  font-size: 0.88rem;
  padding: 1rem 2rem;
}

.bl_tbl1 table td.taCenter,
.bl_tbl2 table td.taCenter,
.bl_tbl3 table td.taCenter {
  text-align: center;
}

.bl_tbl1 table td.halfChar,
.bl_tbl2 table td.halfChar,
.bl_tbl3 table td.halfChar {
  text-indent: 0.5em;
}

.bl_tbl1 table td.empty,
.bl_tbl2 table td.empty,
.bl_tbl3 table td.empty {
  width: 7.82rem;
  background: linear-gradient(to top right, #fff calc(50% - 1px), #d8d8d8, #fff calc(50% + 1px));
  background: -ms-linear-gradient(68deg, #fff 49%, #d8d8d8, #fff 51%);
}

.bl_tbl1 table th.double-line,
.bl_tbl2 table th.double-line,
.bl_tbl3 table th.double-line {
  position: relative;
}

.bl_tbl1 table th.double-line:before,
.bl_tbl2 table th.double-line:before,
.bl_tbl3 table th.double-line:before {
  content: "";
  display: block;
  width: 47.5rem;
  height: 1px;
  background: #d8d8d8;
  position: absolute;
  left: 0;
  top: 1px;
}

table .el_txtLeft {
  text-align: left;
}

table .el_txtCenter {
  text-align: center;
}

table .el_txtRight {
  text-align: right;
}


/* Button
   ========================================================================== */
.el_btn1 {
  color: #fff !important;
  text-decoration: none;
  text-align: center;
  display: block;
  width: 16.75rem;
  line-height: 3.75rem;
  background: #064ea0;
  margin: 0 auto;
  position: relative;
}

.el_btn1:before {
  content: "";
  display: block;
  width: 1rem;
  height: 0.56rem;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-image: url(../images/arrow_button_01.png);
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}

.el_btn1__rev:before {
  transform: translateY(-50%) rotate(180deg);
  right: auto;
  left: 1.5rem;
}

.el_btn1:hover:before {
  right: 0.88rem;
}

.el_btn1__rev:hover:before {
  left: 0.88rem;
}

/* Template button is here
   ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.el_btnLink {
  font-size: 0.81rem;
  color: #064ea0 !important;
  line-height: 1.308;
  text-decoration: none;
  min-height: 4.06rem;
  display: flex;
  align-items: center;
  padding: 0.44rem 1.5rem;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position-y: center;
  border: 1px solid #064ea0;
  transition: all 0.3s ease;
}

.el_btnLink:hover {
  color: #fff !important;
  background-color: #064ea0;
}

.el_btnLink__adobe {
  padding-left: 3.13rem;
  background-image: url(../images/ico_btn_adobe.png);
  background-size: 1.5rem 1.44rem;
  background-position-x: 0.94rem;
}

.el_btnLink__adobe:hover {
  background-image: url(../images/ico_btn_adobe_on.png);
}

.el_btnLink__pdf {
  background-image: url(../images/ico_btn_pdf.png);
  background-size: 1rem 1.13rem;
}

.el_btnLink__pdf:hover {
  background-image: url(../images/ico_btn_pdf_on.png);
}

.el_btnLink__doc {
  background-image: url(../images/ico_btn_doc.png);
  background-size: 1rem 1.13rem;
}

.el_btnLink__doc:hover {
  background-image: url(../images/ico_btn_doc_on.png);
}

.el_btnLink__xlsx {
  background-image: url(../images/ico_btn_xlsx.png);
  background-size: 1rem 1.13rem;
}

.el_btnLink__xlsx:hover {
  background-image: url(../images/ico_btn_xlsx_on.png);
}

.el_btnLink__newtab {
  background-image: url(../images/ico_btn_newtab.png);
  background-size: 0.94rem 0.94rem;
}

.el_btnLink__newtab:hover {
  background-image: url(../images/ico_btn_newtab_on.png);
}
.el_btnLink__newtab.un_textLink:hover {
  background-image: url(../images/ico_btn_newtab.png)
}

.el_btnLink__download {
  background-image: url(../images/ico_btn_download.png);
  background-size: 0.75rem 0.81rem;
}

.el_btnLink__download:hover {
  background-image: url(../images/ico_btn_download_on.png);
}

.el_btnLink__pdf, .el_btnLink__doc, .el_btnLink__xlsx, .el_btnLink__newtab, .el_btnLink__download {
  padding-left: 2.38rem;
  background-position-x: 0.63rem;
  background-repeat: no-repeat;
}

.bl_btnUnit {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.bl_btnUnit.bl_btnUnit__col3 .el_btnLink {
  width: 31.58%;
  margin-right: 2.63%;
  margin-top: 1.25rem;
}

.bl_btnUnit.bl_btnUnit__col3 .el_btnLink:nth-child(-n + 3) {
  margin-top: 0;
}

.bl_btnUnit.bl_btnUnit__col3 .el_btnLink:nth-child(3n) {
  margin-right: 0;
}

.bl_btnUnit.bl_btnUnit__col1 .el_btnLink {
  width: 54.21%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.25rem;
}

.bl_btnUnit.bl_btnUnit__col1 .el_btnLink:last-child {
  margin-bottom: 0;
}

.bl_btnUnit.bl_btnUnit__col2 .el_btnLink {
  width: 48.68%;
  margin-top: 1.25rem;
  margin-right: 2.64%;
}

.bl_btnUnit.bl_btnUnit__col2 .el_btnLink:nth-child(-n + 2) {
  margin-top: 0;
}

.bl_btnUnit.bl_btnUnit__col2 .el_btnLink:nth-child(even) {
  margin-right: 0;
}

.bl_adobe {
  background: #f7f7f7;
  padding: 1.25rem 1.56rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bl_adobe_text {
  width: 66.62%;
  font-size: 0.81rem;
  line-height: 1.846;
}

.el_btnArrow__lg {
  font-size: 1.13rem;
  justify-content: center;
  padding: 0.94rem 5.38rem 0.94rem 3.25rem;
}

.el_btnArrow__md {
  font-size: 1rem;
  justify-content: center;
  padding: 0.94rem 5.38rem 0.94rem 3.25rem;
}

.el_btnArrow__lg,
.el_btnArrow__md {
  background-image: url(../images/ico_btn_arrow.png);
  background-size: 1.19rem 0.81rem;
  background-position: right 1.25rem center;
}

.el_btnArrow__lg:hover,
.el_btnArrow__md:hover,
.el_btnArrow__sm:hover {
  background-image: url(../images/ico_btn_arrow_on.png);
}

.el_btnArrow__sm {
  padding-left: 2rem;
  padding-right: 3.88rem;
  background-image: url(../images/ico_btn_arrow.png);
  background-size: 0.81rem 0.56rem;
  background-position: right 1.13rem center;
}

.el_btnArrow__sm:hover {
  background-position: right 0.63rem center;
}

.el_btnArrow__primary {
  color: #fff !important;
  justify-content: center;
  width: 12.5rem;
  min-height: auto;
  padding: 0.88rem 2rem 0.88rem 1rem;
  background-color: #064ea0;
  background-image: url(../images/ico_btn_arrow_on.png);
  background-size: 0.81rem 0.56rem;
  background-position: right 1.25rem center;
}

.el_btnArrow__primary:hover {
  background-position: right 0.63rem center;
}
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */


/* Image
   ========================================================================== */
/* Template image is here
   ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.bl_img {
  line-height: 0;
  text-align: center;
  margin-bottom: 1.25rem;
}

.bl_imgUnit {
  margin-bottom: 1.88rem;
  display: flex;
  flex-wrap: wrap;
}

.bl_imgUnit__col1_col {
  width: 100%;
}

.bl_imgUnit__col2_col {
  width: 48.68%;
  margin-right: 2.64%;
}

.bl_imgUnit__col3_col {
  width: 31.58%;
  margin-right: 2.63%;
}

.bl_imgUnit__col4_col {
  width: 23.03%;
  margin-right: 2.62%;
}

.bl_imgUnit__col2_col:nth-child(2n),
.bl_imgUnit__col3_col:nth-child(3n),
.bl_imgUnit__col4_col:nth-child(4n) {
  margin-right: 0;
}

.bl_imgTxtUnit {
  display: flex;
  justify-content: space-between;
}

.bl_imgTxtUnit_rev {
  flex-direction: row-reverse;
}

.bl_imgTxtUnit_img {
  width: 17.5rem;
  flex-shrink: 0;
  margin-right: 1.25rem;
}

.bl_imgTxtUnit_txt {
  width: 100%;
}

.bl_imgTxtUnit_rev .bl_imgTxtUnit_img {
  margin-right: 0;
  margin-left: 1.25rem;
}

.bl_imgTxtUnit_txt__btn {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.bl_imgTxtUnit_txt__btn_bot {
  margin-top: 2.5rem;
  display: flex;
  justify-content: flex-end;
}

.bl_imgTxtUnit_txt__btn_bot .el_btn1 {
  margin: 0;
}

.el_video {
  text-align: center;
}

.el_video iframe {
  width: 100%;
  height: 20rem;
  max-width: 35rem;
}

.el_map iframe {
  width: 100%;
  height: 20rem;
}
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */


/* Text
   ========================================================================== */
/* Elements */
.el_txtStrong1 {
  font-size: 1.13rem;
}

.el_txtSmall1 {
  font-size: 0.88rem;
}

.el_txtNote {
  font-size: 0.75rem;
}

/* Image text block */
.bl_imgTxtBlock1_ttl {
  font-size: 1.38rem;
  font-weight: bold;
  margin-left: 18.75rem;
  margin-bottom: 1.25rem;
}

.bl_imgTxtBlock1__rev .bl_imgTxtBlock1_ttl {
  margin-left: 0;
  margin-right: 18.75rem;
}

.bl_imgTxtBlock1_cont {
  display: flex;
  margin-bottom: 3.75rem;
}

.bl_imgTxtBlock1__rev .bl_imgTxtBlock1_cont {
  flex-direction: row-reverse;
}

.bl_imgTxtBlock1_cont_img {
  text-align: center;
  line-height: 0;
  min-width: 17.5rem;
  margin-right: 1.25rem;
}

.bl_imgTxtBlock1_cont_img__logo {
  margin-top: -2.06rem;
}

.bl_imgTxtBlock2 {
  display: flex;
  justify-content: space-between;
}

.bl_imgTxtBlock2_img {
  width: 38.5%;
}

.bl_imgTxtBlock2_cont {
  width: 58.65%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Image unit column */
.bl_imgUnit__col1_box {
  text-align: center;
  height: 25rem;
}

.bl_imgUnit__col2 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  line-height: 0;
}

.bl_imgUnit__col2 p {
  line-height: 1.5;
}

.bl_imgUnit__col2_img {
  width: 48.68%;
  margin-bottom: 1.88rem;
}

.bl_imgUnit__col2_img:nth-last-child(-n + 2) {
  margin-bottom: 0;
}

.bl_imgUnit_note {
  font-size: 0.88rem;
  display: flex;
}

.bl_imgUnit_note_lt {
  flex-shrink: 0;
}

/* Other */
.bl_descPage {
  max-width: 68.76rem;
  padding: 5rem 1.88rem;
  margin: 0 auto;
  text-align: center;
  line-height: 2;
}

.bl_descPage p {
  margin-bottom: 1.25rem;
}

.bl_descPage p:last-child {
  margin-bottom: 0;
}

.bl_descPage p strong {
  font-size: 1.88rem;
  line-height: 1.5;
}

/* Template text is here
   ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.bl_txt {
  font-size: 1rem;
  line-height: 2;
}

.bl_txt.bl_txt__lg {
  font-size: 1.13rem;
}

.bl_txt.bl_txt__sm {
  font-size: 0.88rem;
}

.bl_txtNote_ttl {
  font-size: 1.63rem;
  font-weight: bold;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

/* unique css for news and event. */
.blog_id_20 .bl_txt li,
.blog_id_22 .bl_txt li {
  list-style-type: disc;
  list-style-position: inside;
  text-indent: -1.38em;
  padding-left: 1.38em;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */


/* List
   ========================================================================== */
.el_list1_item {
  display: flex;
}

.el_list1_item:before {
  content: "・";
  flex-shrink: 0;
}

/* List document download */
.el_listDoc {
  margin-bottom: 3.75rem;
}

.el_listDoc_list {
  display: flex;
  flex-wrap: wrap;
}

.el_listDoc_list_item {
  width: 31.58%;
  min-height: 4.06rem;
  position: relative;
  margin-right: 2.63%;
  margin-top: 0.63rem;
}

.el_listDoc_list_item:nth-child(3n) {
  margin-right: 0;
}

.el_listDoc_list_item:nth-child(1),
.el_listDoc_list_item:nth-child(2),
.el_listDoc_list_item:nth-child(3) {
  margin-top: 0;
}

.el_listDoc_list_item .el_link {
  font-size: 0.81rem;
  color: #064ea0;
  text-decoration: none;
  padding: 0.31rem 0.31rem 0.31rem 2.5rem;
  background-image: url(../images/ico_list_doc_01.png);
  background-repeat: no-repeat;
  background-position: 0.63rem center;
  background-size: 1.13rem auto;
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  height: 100%;
  border: 1px solid #064ea0;
  transition: all 0.3s ease;
}

.el_listDoc_list_item .el_link:hover {
  color: #fff;
  background-image: url(../images/ico_list_doc_01_on.png);
  background-color: #064ea0;
}

/* List page button */
.bl_listPage {
  padding: 4.34rem 1.88rem 6.25rem;
  background: #f7f7f7;
}

.bl_listPage_list {
  max-width: 65rem;
  margin: 0 auto;
}

.bl_listPage_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.bl_listPage_list_item {
  width: 48.56%;
  margin-top: 1.88rem;
}

.bl_listPage_list_item:nth-child(-n + 2) {
  margin-top: 0;
}

.bl_listPage_list_item .el_link {
  font-size: 1.25rem;
  font-weight: bold;
  color: #064ea0;
  text-decoration: none;
  text-align: center;
  line-height: 1.55;
  display: flex;
  justify-content: center;
  height: 100%;
  align-items: center;
  padding: 1rem 3.2rem;
  background-color: #fff;
  background-image: url(../images/arrow_list_about.png);
  background-repeat: no-repeat;
  background-position: right 1.25rem center;
  background-size: 1.25rem auto;
  border: 1px solid #064ea0;
  transition: all 0.3s ease;
}

.bl_listPage_list_item .el_link.el_link__newtab {
  background-image: url(../images/ico_btn_newtab.png);
  background-position: left 1.25rem center;
  padding: 1rem 2.5rem 1rem 3.75rem;
}

.bl_listPage_list_item .el_link:hover {
  background-color: #064ea0;
  background-image: url(../images/arrow_list_about_on.png);
  color: #fff;
}

.bl_listPage_list_item .el_link.el_link__newtab:hover {
  background-image: url(../images/ico_btn_newtab_on.png);
}

/* List dropdown */
.bl_listDropdown {
  max-width: 65rem;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

.bl_listDropdown_col {
  width: 48.56%;
}

.bl_listDropdown_col_box {
  background: #fff;
  margin-bottom: 2.5rem;
}

.bl_listDropdown_col_box__single {
  margin-bottom: 1.25rem;
}

.bl_listDropdown_col_box:last-child {
  margin-bottom: 0;
}

.bl_listDropdown_head {
  color: #333;
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: bold;
  display: block;
  background-color: #d2e4f9;
  background-image: url(../images/ico_list_dropdown.png);
  background-repeat: no-repeat;
  background-position: 1.25rem 1.5rem;
  background-size: 0.56rem 0.75rem;
  padding: 0.94rem 1.25rem 0.94rem 2.5rem;
}

.bl_listDropdown_list_item .el_link {
  font-weight: bold;
  color: #333;
  text-decoration: none;
  display: block;
  background-image: url(../images/ico_list_dropdown.png);
  background-position: 1.25rem 1.56rem;
  background-size: 0.44rem 0.56rem;
  background-repeat: no-repeat;
  padding: 1.06rem 1.25rem 1.06rem 2.5rem;
  border-bottom: 1px solid #e9e9e9;
  position: relative;
}

.bl_listDropdown_list_item:last-child .el_link:not(.is_active) {
  border-bottom: none;
}

.bl_listDropdown_list_item .el_link:hover {
  color: #59b8d7;
  background-image: url(../images/ico_list_dropdown_on.png);
}

.bl_listDropdown_list_item .el_btn {
  width: 1.38rem;
  height: 1.38rem;
  background-image: url(../images/ico_list_dropdown_open.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
}

.bl_listDropdown_list_item .el_btn.is_active {
  background-image: url(../images/ico_list_dropdown_close.png);
}

.bl_listDropdown_list__lv2 {
  display: none;
}

.bl_listDropdown_list__lv2_inner {
  padding: 1.88rem 1.25rem;
  border-bottom: 1px solid #e9e9e9;
  display: flex;
  justify-content: space-between;
  line-height: 1.8;
}

.bl_listDropdown_list__lv2 .bl_listDropdown_list_col {
  width: 48%;
}

.bl_listDropdown_list__lv2 .bl_listDropdown_list_item {
  margin-bottom: 1rem;
}

.bl_listDropdown_list__lv2 .bl_listDropdown_list_item:last-child {
  margin-bottom: 0;
}

.bl_listDropdown_list__lv2 .bl_listDropdown_list_item .el_link {
  font-weight: normal;
  font-size: 0.88rem;
  border-bottom: none;
  padding: 0 0 0 1.38rem;
  background-position: 0 0.56rem;
}

/* Template list is here
   ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.bl_list > ul > li {
  margin-bottom: 1em;
  text-indent: -1em;
  margin-left: 1em;
}

.bl_list > ul > li:before {
  content: "・";
}

.bl_list > ul > li > ul {
  margin-top: 0.5em;
  padding-left: 2em;
}

.bl_list > ul > li > ul > li {
  text-indent: -2em;
  margin-bottom: 0.5em;
}

.bl_list > ul > li > ul > li:before {
  content: "";
  display: inline-block;
  width: 0.88rem;
  height: 0.13rem;
  background: #d8d8d8;
  position: relative;
  top: -0.3em;
  margin-right: 1em;
}

.bl_listNum > ol {
  padding-left: 1.5em;
}

.bl_listNum > ol > li {
  margin-bottom: 1em;
}

.bl_listNum > ol > li > ol {
  margin-top: 0.5em;
}

.bl_listNum > ol > li > ol > li {
  counter-increment: step-counter;
  list-style-type: none;
  display: flex;
  margin-bottom: 0.5em;
}

.bl_listNum > ol > li > ol > li:before {
  content: counter(step-counter);
  display: inline-block;
  width: 1.6em;
  height: 1.6em;
  border: 1px solid #333;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.3em;
  margin-right: 0.5em;
  text-align: center;
  font-size: 0.6em;
}

.bl_listKatakana > ol {
  padding-left: 1.5em;
}

.bl_listKatakana > ol > li {
  list-style-type: katakana;
  margin-bottom: 1em;
}

.bl_listKatakana > ol > li > ol {
  margin-top: 0.5em;
  margin-left: 1.5em;
}

.bl_listKatakana > ol > li > ol > li {
  list-style-type: lower-roman;
  margin-bottom: 0.5em;
}

.bl_list.bl_list__link {
  color: #59b8d7;
}

.bl_list > ul > li:last-child,
.bl_list > ul > li > ul > li:last-child,
.bl_listNum > ol > li:last-child,
.bl_listNum > ol > li > ol > li:last-child {
  margin-bottom: 0;
}

.bl_listUnit {
  display: flex;
}

.bl_listUnit.bl_listUnit__col3 ul {
  width: 30%;
  margin-right: 5%;
}

.bl_listUnit.bl_listUnit__col3 ul:last-child {
  margin-right: 0;
}

.bl_listUnit.bl_listUnit__col2 {
  justify-content: space-between;
}

.bl_listUnit.bl_listUnit__col2 ul {
  width: 47%;
}
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

/* List link */
.bl_listLink_item {
  display: flex;
}

.bl_listLink_item:before {
  content: "";
  display: block;
  width: 0.44rem;
  height: 0.56rem;
  background-image: url(../images/ico_list_link.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  margin-right: 0.63rem;
  margin-top: 0.44rem;
}

.bl_listLink .el_link {
  color: #59b8d7;
  text-decoration: none;
}

.bl_listLink .el_link:hover {
  text-decoration: underline;
}


/* Light box
   ========================================================================== */
.bl_lightBox {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 2.5rem;
}

.bl_lightBox_img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 31.58%;
  height: 10.63rem;
  margin-bottom: 1.25rem;
  position: relative;
  line-height: 0;
}

.bl_lightBox_img:nth-last-child(-n + 3) {
  margin-bottom: 0;
}

.bl_lightBox_img:before {
  content: "";
  display: block;
  position: absolute;
  width: 1.63rem;
  height: 1.63rem;
  right: 0.31rem;
  bottom: 0.31rem;
  background-image: url(../images/ico_zoom_01.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.bl_lightBox_img img {
  max-height: 100%;
}


/* School banner
   ========================================================================== */
.bl_schoolBnrHead .el_schoolBnrImg {
  width: 36.18%;
  padding: 1.25rem 0 3.75rem;
  margin: 0 auto;
}

.el_schoolBnrImg_txt {
  text-align: center;
  margin-top: 0.5rem;
}

.bl_schoolBnrList {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.bl_schoolBnrList .el_schoolBnrImg {
  width: 31.58%;
  margin-bottom: 2.5rem;
}

.bl_schoolBnrList .el_schoolBnrImg:nth-last-child(-n + 3) {
  margin-bottom: 0;
}


/* Song
   ========================================================================== */
.bl_listSong_list_item {
  display: flex;
  margin-bottom: 1.88rem;
}

.bl_listSong_list_item:last-child {
  margin-bottom: 0;
}

.bl_listSong_list_item .el_strong {
  font-weight: bold;
  color: #333;
  text-decoration: none;
}

.bl_listSong_list_item .el_strong:hover {
  color: #59b8d7;
}

.bl_listSong_list_item .el_link {
  font-size: 0.88rem;
  color: #fff;
  text-decoration: none;
  display: inline-block;
  background: #064ea0;
  line-height: 1.88rem;
  padding: 0 1.88rem;
  margin-left: 1.56rem;
}

.bl_bookSong {
  width: 4.31rem;
  margin-top: 1.25rem;
}


/* Sort news
   ========================================================================== */
.bl_sortNews {
  max-width: 65rem;
  padding: 1.25rem 1.55rem;
  background: #f7f7f7;
  margin: 0 auto;
}

.bl_sortNews > *:last-child {
  margin-bottom: 0;
}

.bl_sortNews_txt1 {
  font-size: 1.25rem;
  font-weight: bold;
  color: #59b8d7;
  margin-bottom: 0.75rem;
}

.bl_sortNews_txt2 {
  margin-bottom: 0.12rem;
}

.bl_sortNews_list {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.bl_sortNews_list_item {
  margin-right: 0.63rem;
  margin-top: 0.63rem;
}

.bl_sortNews_list_item:last-child {
  margin-right: 0;
}

.bl_sortNews_list_item .el_link {
  font-size: 0.75rem;
  color: #59b8d7;
  text-align: center;
  text-decoration: none;
  display: block;
  padding: 0.31rem 1.25rem;
  background: #fff;
  border: 1px solid #59b8d7;
  transition: all 0.3s ease;
}

.bl_sortNews_list_item .el_link:hover,
.bl_sortNews_list_item .el_link.is_current {
  color: #fff;
  background: #59b8d7;
}


/* List news
   ========================================================================== */
.bl_listNews {
  max-width: 68.76rem;
  margin: 0 auto;
  padding: 2.5rem 1.88rem 0;
}

.bl_listNews_list {
  display: flex;
  flex-wrap: wrap;
}

.bl_listNews_list_item {
  width: 22.79%;
  margin-right: 2.94%;
  margin-top: 2.5rem;
}

.bl_listNews_list_item:nth-child(-n + 4) {
  margin-top: 0;
}

.bl_listNews_list_item:nth-child(4n) {
  margin-right: 0;
}

.bl_listNews_list_item_link {
  color: #333;
  text-decoration: none;
  display: block;
  transition: opacity 0.3s ease;
}

.bl_listNews_list_item_link:hover {
  opacity: 0.7;
}

.bl_listNews_list_item_img {
  line-height: 0;
  margin-bottom: 0.63rem;
}

.bl_listNews_list_item_info {
  display: flex;
  align-items: center;
  margin-bottom: 0.94rem;
}

.bl_listNews_list_item_info_date {
  color: #59b8d7;
}

.bl_listNews_list_item_info_cat {
  font-size: 0.63rem;
  color: #fff;
  display: block;
  padding: 0.15rem 1.13rem;
  background: #59b8d7;
  margin-left: 1.25rem;
}

.bl_listNews_list_item_cont {
  font-size: 0.88rem;
}


/* Pagination
   ========================================================================== */
.bl_pagination {
  padding-top: 5rem;
}

.bl_pagination,
.bl_pagination_list {
  display: flex;
  justify-content: center;
  align-items: center;
}

.bl_pagination_longBtn {
  display: block;
  width: 0.69rem;
  height: 0.69rem;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.bl_pagination_longBtn__prev {
  background-image: url(../images/btn_long_prev.png);
  margin-right: 1.5rem;
}

.bl_pagination_longBtn__next {
  background-image: url(../images/btn_long_next.png);
  margin-left: 1.5rem;
}

.bl_pagination_shortBtn {
  display: block;
  width: 0.56rem;
  height: 0.63rem;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.bl_pagination_shortBtn__prev {
  background-image: url(../images/btn_short_prev.png);
  margin-right: 1.13rem;
}

.bl_pagination_shortBtn__next {
  background-image: url(../images/btn_short_next.png);
  margin-left: 1.13rem;
}

.bl_pagination_num {
  margin-right: 0.5rem;
}

.bl_pagination_num:last-child {
  margin-right: 0;
}

.bl_pagination_num .el_link {
  font-size: 1.13rem;
  color: #333;
  text-decoration: none;
  text-align: center;
  display: block;
  width: 1.94rem;
  line-height: 2.13rem;
  transition: all 0.3s ease;
}

.bl_pagination_num .el_link.is_active {
  color: #fff;
  background: #064ea0;
}


/* Short list news
   ========================================================================== */
.bl_shortListNews {
  max-width: 65rem;
  margin: 0 auto;
}

.bl_shortListNews_list {
  margin-bottom: 3.75rem;
}

.bl_shortListNews_list_item {
  color: #333;
  text-decoration: none;
  display: flex;
  align-items: flex-start;
  padding: 1.88rem 0;
  border-top: 1px solid #e7e7e7;
}

.bl_shortListNews_list_item:last-child {
  border-bottom: 1px solid #e7e7e7;
}

.bl_shortListNews_list_item_info {
  flex-basis: 16.88rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.bl_shortListNews_list_item_info.event {
  flex-basis: 8rem;
}

.bl_shortListNews_list_item_info_cat {
  font-size: 0.75rem;
  color: #fff;
  background: #59b8d7;
  padding: 0.31rem 1.25rem;
  margin-left: 1.75rem;
}

.bl_shortListNews_list_item_cont {
  flex-basis: 70%;
  margin-left: 2.5rem;
}

.bl_shortListNews_list_item_cont .el_link {
  color: #333;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.bl_shortListNews_list_item_cont .el_link:hover {
  opacity: 0.5;
}


/* Google map
   ========================================================================== */
.bl_googleMap {
  width: 100%;
  height: 31.25rem;
}




@media screen and (max-width: 750px) {
    /* Setup Common
       ========================================================================== */
    html {
      font-size: 13px;
    }

    .ly_wrapper {
      padding-left: 0;
      padding-top: 5rem;
    }


    /* Site header
       ========================================================================== */
    .ly_header {
      display: block;
      padding: 0.77rem 1.15rem 0;
    }

    .bl_header_logo {
      width: 5.92rem;
      padding-bottom: 0.77rem;
    }

    .bl_header_nav {
      justify-content: flex-start;
      align-items: flex-start;
      align-content: flex-start;
      position: fixed;
      left: 100%;
      top: 0;
      width: 84%;
      background: #004381;
      height: 100vh;
      overflow-x: hidden;
      overflow-y: auto;
      transition: left 0.3s ease;
    }

    .bl_header_nav:after {
      content: "";
      display: block;
      width: 100%;
      height: 200px;
      order: 1000;
    }

    .bl_header_nav_group1 {
      order: 1;
      flex-direction: column;
      width: 100%;
    }

    .bl_header_nav_group2 {
      order: 4;
    }

    .bl_header_nav_search {
      padding: 0;
      border-left: none;
    }

    .bl_header_nav_search > .bl_header_nav_search_item {
      display: none;
    }

    .bl_header_nav_search_form {
      position: static;
      padding-top: 0;
      opacity: 1;
      visibility: visible;
    }

    .bl_header_nav_search_form_field {
      padding: 1.24rem 0.92rem;
      background: #e9eff6;
    }

    .bl_header_nav_search_form_field .el_input {
      font-size: 1rem;
      width: 100%;
      height: 2.54rem;
      padding-left: 2.31rem;
      background-position: 0.62rem center;
    }

    .bl_header_nav_lang {
      position: static;
      padding: 0;
      border-left: none;
    }

    .bl_header_nav_lang .el_btn,
    .bl_header_nav_lang.is_active > .el_btn,
    .bl_header_nav_lang_extend_item .el_close {
      padding: 1.75rem 0 1.75rem 2.31rem;
      background: #e8e8e8;
      font-size: 1.08rem;
    }

    .bl_header_nav_lang .el_btn .el_icon,
    .bl_header_nav_lang_extend_item .el_close .el_icon {
      width: 0.92rem;
      height: 0.92rem;
      margin-right: 0.65rem;
    }

    .bl_header_nav_lang .el_btn:before,
    .bl_header_nav_lang.is_active > .el_btn:before,
    .bl_header_nav_lang_extend_item .el_close:before {
      content: "∟";
      font-size: 0.77rem;
      transform: rotate(225deg);
      margin-right: 0.77rem;
      margin-top: 2px;
      position: static;
      width: auto !important;
      height: auto;
      background: none;
    }

    .bl_header_nav_lang_extend {
      position: fixed;
      left: 100%;
      top: 0;
      width: 84%;
      height: 100%;
      padding: 0;
      background: #004381;
      transform: translateX(0);
      opacity: 1;
      visibility: visible;
      z-index: 5000;
      overflow-y: auto;
      padding-bottom: 200px;
    }

    .bl_header_nav_lang.is_active .bl_header_nav_lang_extend {
      left: 16%;
    }

    .bl_header_nav_lang_extend_item {
      margin-bottom: 0;
      border-bottom: 1px solid #d5d5d5;
    }

    .bl_header_nav_lang_extend_item .el_link {
      text-align: left;
      font-size: 1rem;
      padding: 1.75rem 0 1.75rem 2.31rem;
      background: #fff;
    }

    .bl_header_nav_lang_extend_item .el_close {
      display: flex;
    }

    .bl_header_nav_lang_extend_item .el_close:before {
      display: block;
      transform: rotate(45deg);
      margin-top: 0;
    }

    .bl_header_nav_lang_extend_item .el_link:hover {
      color: #333;
    }

    .bl_header_nav_top {
      order: 2;
      margin-top: 0;
    }

    .bl_header_nav_top_lv1 {
      justify-content: flex-start;
      flex-direction: column;
    }

    .bl_header_nav_top_lv1 .bl_header_nav_top_item {
      margin: 0;
    }

    .bl_header_nav_top_lv1 .bl_header_nav_top_item .el_link,
    .bl_header_nav_top_lv1 .bl_header_nav_top_item .el_btn,
    .bl_header_nav_top_lv2 .bl_header_nav_top_list .bl_header_nav_top_item .el_strong {
      font-size: 1.08rem;
      color: #fff;
      padding: 1.75rem 2.31rem;
      border-bottom: 1px solid #1e5587;
      display: flex;
    }

    .bl_header_nav_top_lv1 .bl_header_nav_top_item .el_link:before,
    .bl_header_nav_top_lv1 .bl_header_nav_top_item .el_btn:before,
    .bl_header_nav_top_lv2 .bl_header_nav_top_list .bl_header_nav_top_item .el_strong:before,
    .bl_header_nav_top_lv2 .el_close:before {
      content: "∟";
      font-size: 0.77rem;
      transform: rotate(225deg);
      margin-right: 0.77rem;
      position: static;
      width: auto !important;
      height: auto;
      background: none;
    }

    .bl_header_nav_top_lv2 {
      flex-wrap: wrap;
      align-content: flex-start;
      position: fixed;
      left: 100%;
      top: 0;
      width: 84%;
      height: 100%;
      background: #004381;
      padding: 0;
      opacity: 1;
      visibility: visible;
      z-index: 6000;
      overflow-y: auto;
      padding-bottom: 200px;
      transition-delay: 0s !important;
    }

    .bl_header_nav_top_lv2.is_active {
      left: 16%;
    }

    .bl_header_nav_top_lv2 .bl_header_nav_top_list {
      width: 100%;
      margin-right: 0;
    }

    .bl_header_nav_top_lv2 .bl_header_nav_top_list .bl_header_nav_top_item {
      margin-bottom: 0;
    }

    .bl_header_nav_top_lv2 .bl_header_nav_top_list .bl_header_nav_top_item .el_link,
    .bl_header_nav_top_lv2 .bl_header_nav_top_list .bl_header_nav_top_item .el_link {
      font-size: 1.08rem;
      color: #fff;
      display: flex;
    }

    .bl_header_nav_top_lv2 .bl_header_nav_top_list .bl_header_nav_top_item .el_link:hover {
      color: #fff;
    }

    .bl_header_nav_top_lv2 .bl_header_nav_top_list .bl_header_nav_top_item .el_link:before {
      display: none;
    }

    .bl_header_nav_top_lv2 .bl_header_nav_top_list .bl_header_nav_top_item .el_strong {
      margin-bottom: 0;
    }

    .bl_header_nav_top_lv1 .bl_header_nav_top_item:nth-child(2) .bl_header_nav_top_lv2 .bl_header_nav_top_list:first-child {
      order: 2;
    }

    .bl_header_nav_top_lv2 .el_close {
      display: flex;
      order: -1;
      text-decoration: none;
      width: 100%;
      padding: 1.55rem 0 1.55rem 2.31rem;
      background: #fff;
      color: #333;
      font-size: 1.31rem;
    }

    .bl_header_nav_top_lv2 .el_close:before {
      transform: rotate(45deg);
      margin-top: 0.46rem;
    }

    .bl_header_nav_top_lv3 {
      display: flex;
      flex-wrap: wrap;
      align-content: flex-start;
      position: fixed;
      left: 100%;
      top: 0;
      width: 84%;
      height: 100%;
      background: #004381;
      transition: left 0.3s ease;
      z-index: 7000;
      overflow-y: auto;
      padding-bottom: 200px;
    }

    .bl_header_nav_top_lv3.is_active {
      left: 16%;
    }

    .bl_header_nav_top_lv3 .el_link {
      background: #0959b3;
      border-color: #074d9c;
    }

    .bl_header_nav_top_lv3 .el_close:hover {
      color: #333;
    }

    .bl_header_nav_side {
      position: static;
      width: 100%;
      height: auto;
      background: #e9eff6;
      order: 3;
    }

    .bl_header_nav_side ul {
      display: flex;
      flex-wrap: wrap;
    }

    .bl_header_nav_side_item {
      width: 50%;
    }

    .bl_header_nav_side .el_link {
      font-size: 1rem;
      color: #2ea8d0;
      height: 3.85rem;
      padding: 0 1.15rem 0 2.77rem;
      border-color: #d6e0ed;
      border-right: 1px solid #d6e0ed;
    }

    .bl_header_nav_side_item:nth-child(even) .el_link {
      border-right: none;
    }

    .bl_header_nav_side .el_link:hover {
      background: transparent;
    }

    .bl_header_nav_side .el_link .el_icon {
      left: 1.54rem;
    }

    .bl_header_nav_side_item:nth-child(1) .el_icon {
      width: 0.77rem;
      height: 0.77rem;
      background-image: url(../images/ico_university_01_sp.png);
    }
    .bl_header_nav_side_item:nth-child(2) .el_icon {
      width: 0.77rem;
      height: 0.77rem;
      background-image: url(../images/ico_pen_01_sp.png);
    }
    .bl_header_nav_side_item:nth-child(3) .el_icon {
      width: 1.04rem;
      height: 0.73rem;
      background-image: url(../images/ico_hat_01_sp.png);
    }
    .bl_header_nav_side_item:nth-child(4) .el_icon {
      width: 1.23rem;
      height: 0.85rem;
      background-image: url(../images/ico_people_01_sp.png);
    }
    .bl_header_nav_side_item:nth-child(5) .el_icon {
      width: 0.65rem;
      height: 0.85rem;
      background-image: url(../images/ico_graduating_01_sp.png);
    }
    .bl_header_nav_side_item:nth-child(6) .el_icon {
      width: 0.58rem;
      height: 1rem;
      background-image: url(../images/ico_building_01_sp.png);
    }
    .bl_header_nav_side_item:nth-child(7) .el_icon {
      width: 0.81rem;
      height: 0.81rem;
      background-image: url(../images/ico_people_02_sp.png);
    }

    .bl_header_nav_scroll{
        overflow: visible;
    }

    .bl_header_nav_group2 {
      width: 100%;
      padding: 1.54rem 0.96rem;
      background: #fff;
      justify-content: space-between;
    }

    .bl_header_nav_access,
    .bl_header_nav_doc,
    .bl_header_nav_mail {
      padding: 0;
      border: none;
      width: 31.03%;
    }

    .bl_header_nav_access_link,
    .bl_header_nav_doc_link,
    .bl_header_nav_mail_link {
      font-size: 0.92rem;
      width: 100%;
      height: 4.62rem;
      border: 1px solid #333;
      justify-content: center;
      align-items: flex-end;
      padding-bottom: 0.38rem;
    }

    .bl_header_nav_access_link:before,
    .bl_header_nav_doc_link:before,
    .bl_header_nav_mail_link:before {
      display: none;
    }

    .bl_header_nav_access_link .el_icon,
    .bl_header_nav_doc_link .el_icon,
    .bl_header_nav_mail_link .el_icon {
      margin-right: 0;
      position: absolute;
      left: 50%;
      top: 1.77rem;
      transform: translate(-50%, -50%);
    }

    .bl_header_nav_access_link .el_icon {
      width: 0.81rem;
      height: 1.35rem;
    }

    .bl_header_nav_doc_link .el_icon {
      width: 0.96rem;
      height: 1.12rem;
    }

    .bl_header_nav_mail_link .el_icon {
      width: 1.15rem;
      height: 0.88rem;
    }

    .el_btnMenu_wrapper {
      width: 16%;
      height: 100%;
      background: #fff;
      position: absolute;
      right: 0;
      top: 0;
      transition: right 0.3s ease;
    }

    .el_btnMenu_wrapper.is_active {
      right: 84%;
    }

    .el_btnMenu_wrapper.is_active + .bl_header_nav {
      left: 16%;
    }

    .el_btnMenu {
      width: 1.69rem;
      height: 1.27rem;
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
    }

    .el_btnMenu_inner,
    .el_btnMenu_inner:before,
    .el_btnMenu_inner:after {
      position: absolute;
      width: 1.69rem;
      height: 0.15rem;
      transition: transform 0.22s cubic-bezier(.55,.055,.675,.19);
      background-color: #004381;
    }

    .el_btnMenu_inner {
      top: 50%;
    }

    .el_btnMenu_wrapper.is_active .el_btnMenu_inner {
      transform: rotate(225deg);
      transition: transform 0.12s cubic-bezier(.215,.61,.355,1);
    }

    .el_btnMenu_inner:before,
    .el_btnMenu_inner:after {
      display: block;
      content: "";
    }

    .el_btnMenu_inner:before {
      top: 0.58rem;
      transition: top 0.1s ease-in .25s, opacity 0.1s ease-in;
    }

    .el_btnMenu_wrapper.is_active .el_btnMenu_inner:before {
      top: 0;
      opacity: 0;
      transition: top 0.1s ease-out, opacity 0.1s ease-out 0.12s;
    }

    .el_btnMenu_inner:after {
      bottom: 0.58rem;
      transition: bottom 0.1s ease-in 0.25s, transform 0.22s cubic-bezier(.55,.055,.675,.19);
    }

    .el_btnMenu_wrapper.is_active .el_btnMenu_inner:after {
      bottom: 0;
      transform: rotate(-90deg);
      transition: bottom 0.1s ease-out, transform 0.22s cubic-bezier(.215,.61,.355,1);
    }


    /* Site footer
       ========================================================================== */
    .bl_footer_list {
      padding: 0 0 3.08rem;
    }

    .bl_footer_list_col {
      width: 100%;
    }

    .bl_footer_list_col_block {
      display: flex;
      flex-wrap: wrap;
      margin-top: 0;
      padding: 1.92rem 0;
      background: #0657a1;
    }

    .bl_footer_list_col_item {
      width: 50%;
      padding-left: 8%;
      margin-bottom: 1.92rem;
    }

    .bl_footer_list_col_item:nth-last-child(-n + 2) {
      margin-bottom: 0;
    }

    .bl_footer_list_col_item:before {
      content: "∟";
      font-size: 0.77rem;
      transform: rotate(225deg);
      margin-right: 0.58rem;
      margin-top: 3px;
    }

    .bl_footer_list_col_item .el_link {
      font-size: 1rem;
    }

    .bl_footer_contact_sns {
      background: transparent !important;
      margin-top: 0 !important;
      justify-content: center;
      padding: 3.08rem 0 !important;
    }

    .bl_footer_contact_sns_item {
      padding: 0 !important;
      margin-bottom: 0 !important;
      margin-right: 1.92rem;
    }

    .bl_footer_contact_sns_item:nth-child(1) {
      width: 2.38rem;
    }

    .bl_footer_contact_sns_item:nth-child(2) {
      width: 2.08rem;
    }

    .bl_footer_contact_sns_item:nth-child(3) {
      width: 2.23rem;
    }

    .bl_footer_contact_sns_item:nth-child(4) {
      width: 2.23rem;
    }

    .bl_footer_contact_sns_item:nth-child(5) {
      width: 2.23rem;
    }

    .bl_footer_contact_logo {
      text-align: center;
      margin: 0;
      max-width: 100%;
      width: 100%;
    }

    .bl_footer_contact_logo img {
      width: 13.88rem;
    }

    .bl_footer_contact_address {
    }

    .bl_footer_contact_address {
      font-size: 1rem;
      width: 84%;
      margin: 0 auto;
      padding-bottom: 1.15rem;
      line-height: 1.654;
    }

    .bl_footer_contact_address .el_strong {
      font-size: 1rem;
      margin-bottom: 0rem;
    }

    .bl_footer_contact_address:last-child .el_strong {
      margin-top: 1.15rem;
    }

    .bl_footer_nav {
      border-top: 1px solid #1e5587;
      padding-top: 0;
    }

    .bl_footer_nav_list {
      flex-wrap: wrap;
    }

    .bl_footer_nav_list_item {
      padding: 0;
      width: 50%;
    }

    .bl_footer_nav_list_item:last-of-type {
        width: 100%;
    }

    .bl_footer_nav_list_item .el_link {
      font-size: 0.92rem;
      display: block;
      text-align: center;
      padding: 1rem;
      border-bottom: 1px solid #1e5587;
    }

    .bl_footer_nav_list_item .el_link:nth-child(odd) {
      border-right: 1px solid #1e5587;
    }

    .bl_footer_copyright {
      font-size: 0.77rem;
      padding: 1rem;
    }

    .scrollUp {
      width: 3.85rem;
      right: 0.77rem;
      bottom: 0.77rem;
    }

    .scrollUp:hover img {
      opacity: 1;
    }


    /* Heading
       ========================================================================== */
    .bl_head1 {
      min-height: auto;
    }
    .bl_head1__img.bl_head1 {
      min-height: 11.15rem;
    }

    .bl_head1_text {
      font-size: 1.77rem;
      padding:0rem 1.15rem;
      margin: 0;
    }

    .bl_breadcrumb {
      font-size: 0.77rem;
      padding: 1.25rem 1.25rem 1.0rem;
    }

    .bl_breadcrumb_list_item {
      margin-right: 0.77rem;
    }

    .bl_breadcrumb_list_item:before {
      margin-right: 0.77rem;
    }

    .bl_head1__img .bl_head1_text {
      text-align: left;
    }


    /* Layout main
       ========================================================================== */
    .ly_body {
      max-width: 100%;
      width: 100%;
      padding: 2.31rem 0 0;
      flex-wrap: wrap;
    }

    .ly_main {
      padding: 0 1.15rem;
      margin-bottom: 3.85rem;
    }

    .ly_side {
      width: 100%;
      margin-left: 0;
    }

    .bl_sideHead .el_link {
      font-size: 1.31rem;
      padding: 0.77rem;
    }

    .bl_sideList_item .el_link {
      font-size: 1.08rem;
      padding: 0.77rem 2.31rem 0.77rem 3.65rem;
    }

    .bl_sideList_item .el_link:before {
      width: 0.54rem;
      height: 0.77rem;
      left: 2.31rem;
      right: auto;
    }


    /* Block, section
       ========================================================================== */
    .bl_cont1 {
      padding-top: 2.31rem;
      padding-bottom: 3.85rem;
    }

    .bl_bgCont1 {
      padding-top: 0;
      padding-bottom: 3.85rem;
    }

    .bl_sectBlock1 {
      margin-bottom: 2.5rem;
    }

    .bl_wrapBlock1 {
      max-width: 100%;
      width: 100%;
      padding-left: 1.15rem;
      padding-right: 1.15rem;
    }

    .bl_wrapBlock1__spFull {
      padding-left: 0;
      padding-right: 0;
    }


    /* Title
       ========================================================================== */
    /* Template heading is here
       ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
    .el_ttl1 {
      font-size: 1.54rem;
      line-height: 1.25;
      border-bottom-width: 0.23rem;
      padding-bottom: 0.8rem;
      margin-bottom: 1.54rem;
    }

    .el_ttl1:before {
      width: 9.62rem;
      height: 0.23rem;
      bottom: -0.23rem;
    }

    .el_ttl2 {
      font-size: 1.38rem;
      line-height: 1.278;
      padding-left: 0.77rem;
      margin-bottom: 1.15rem;
    }

    .el_ttl3 {
      font-size: 1.23rem;
      line-height: 1.25;
      padding: 0.96rem 1.15rem;
      margin-bottom: 1.15rem;
    }

    .el_ttl4 {
      line-height: 1.321;
      padding-bottom: 0.77rem;
      margin-bottom: 1.15rem;
    }
    /* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */


    /* Label
       ========================================================================== */
    .el_labelInfo {
      margin-bottom: 1.15rem;
    }

    .el_labelInfo_date {
      font-size: 1.08rem;
    }

    .el_labelInfo_cat {
      font-size: 0.77rem;
      padding: 0.2rem 0.77rem;
      margin-left: 1.15rem;
    }


    /* Movie
       ========================================================================== */
    .el_movie1 {
      padding: 0 0.96rem;
      margin-bottom: 1.35rem;
    }

    .el_movie1 iframe {
      max-width: 100%;
      height: 13.85rem;
    }


    /* Table
       ========================================================================== */
    .bl_tbl1,
    .bl_tbl2,
    .bl_tbl3 {
      margin-bottom: 2.69rem;
    }

    .bl_tbl1 table th,
    .bl_tbl2 table th,
    .bl_tbl3 table th {
      font-size: 0.85rem;
      padding: 0.77rem;
    }

    .bl_tbl3 table th {
      font-size: 1rem;
      width: 8.08rem;
    }

    .bl_tbl1 table td,
    .bl_tbl2 table td,
    .bl_tbl3 table td {
      font-size: 0.77rem;
      padding: 0.58rem 0.8rem;
    }

    .bl_tbl3 table td {
      font-size: 1rem;
      padding: 2.5rem;
    }

    .bl_tbl1 table td.empty,
    .bl_tbl2 table td.empty,
    .bl_tbl3 table td.empty {
      width: 6.54rem;
    }

    .bl_tbl1 table th.double-line:before,
    .bl_tbl2 table th.double-line:before,
    .bl_tbl3 table th.double-line:before {
      width: 43.08rem;
    }


    /* Button
       ========================================================================== */
    .el_btn1 {
      font-size: 0.92rem;
      width: 19.23rem;
      line-height: 3.08rem;
    }

    .el_btn1:before {
      width: 0.88rem;
      height: 0.54rem;
      right: 1.54rem;
    }

    .el_btn1__rev:before {
      right: auto;
      left: 1.54rem;
    }

    /* Template button is here
       ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
    .el_btnLink {
      font-size: 0.85rem;
      font-weight: bold;
      line-height: 1.538;
      min-height: auto;
      padding: 0.77rem 2.31rem;
    }

    .el_btnLink__adobe {
      padding-left: 3.85rem;
      background-size: 1.58rem 1.54rem;
      background-position-x: 1.54rem;
      margin-left: auto;
      margin-right: auto;
    }

    .el_btnLink__pdf {
      background-size: 1.42rem 1.62rem;
    }

    .el_btnLink__doc {
      background-size: 1.42rem 1.62rem;
    }

    .el_btnLink__xlsx {
      background-size: 1.42rem 1.62rem;
    }

    .el_btnLink__newtab {
      background-size: 1.08rem 1.08rem;
    }

    .el_btnLink__download {
      background-size: 0.96rem 1.04rem;
    }

    .el_btnLink__pdf, .el_btnLink__doc, .el_btnLink__xlsx, .el_btnLink__newtab, .el_btnLink__download {
      padding-left: 4.04rem;
      background-position-x: 1.15rem;
    }

    .bl_btnUnit {
      display: grid;
      grid-auto-rows: 1fr;
      margin-bottom: 1.15rem;
    }

    .bl_btnUnit.bl_btnUnit__col1,
    .bl_btnUnit.bl_btnUnit__col2,
    .bl_btnUnit.bl_btnUnit__col3 {
      margin-bottom: 0;
    }

    .bl_btnUnit.bl_btnUnit__col1 .el_btnLink,
    .bl_btnUnit.bl_btnUnit__col2 .el_btnLink,
    .bl_btnUnit.bl_btnUnit__col3 .el_btnLink {
      width: 100%;
      margin-right: 0;
      margin-top: 0;
      margin-bottom: 1.15rem !important;
    }

    .bl_adobe {
      padding: 1.54rem 1.15rem;
      flex-wrap: wrap;
    }

    .bl_adobe_text {
      width: 100%;
      font-size: 0.92rem;
      line-height: 1.417;
      margin-bottom: 1.15rem;
    }

    .el_btnArrow__lg {
      font-size: 0.85rem;
      padding: 0.77rem 5.35rem 0.77rem 2.31rem;
    }

    .el_btnArrow__md {
      font-size: 0.85rem;
      padding: 0.77rem 5.35rem 0.77rem 2.31rem;
    }

    .el_btnArrow__lg,
    .el_btnArrow__md {
      background-size: 0.88rem 0.54rem;
      background-position: right 1.15rem center;
    }

    .el_btnArrow__sm {
      padding: 0.77rem 5.35rem 0.77rem 2.31rem;
      background-size: 0.88rem 0.54rem;
      background-position: right 1.15rem center;
    }

    .el_btnArrow__primary {
      font-size: 1rem;
      width: 19.23rem;
      padding: 0.77rem 2.38rem 0.77rem 1.54rem;
      background-color: #064ea0;
      background-image: url(../images/ico_btn_arrow_on.png);
      background-size: 0.81rem 0.56rem;
      background-position: right 1.25rem center;
      margin-left: auto;
      margin-right: auto;
    }
    /* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */


    /* Image
       ========================================================================== */
    /* Template image is here
       ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
    .bl_img {
      margin-bottom: 1.54rem;
    }

    .bl_imgUnit {
      margin-bottom: 1.54rem;
    }

    .bl_imgUnit .bl_img {
      margin-bottom: 10px;
    }

    .bl_imgUnit__col1_col {
      width: 100%;
    }

    .bl_imgUnit__col2_col {
      width: 46.96%;
    }

    .bl_imgUnit__col3_col {
      width: 46.96%;
      margin-right: 6.08%;
    }

    .bl_imgUnit__col4_col {
      width: 46.96%;
      margin-right: 6.08%;
    }

    .bl_imgUnit__col4_col:nth-child(-n+2) {
      margin-bottom: 1rem;
    }

    .bl_imgUnit__col3_col:nth-child(2n),
    .bl_imgUnit__col4_col:nth-child(2n) {
      margin-right: 0;
    }

    .bl_imgTxtUnit {
      flex-wrap: wrap;
    }

    .bl_imgTxtUnit_img {
      width: 100%;
      margin-right: 0;
      margin-bottom: 1.54rem;
    }

    .bl_imgTxtUnit_rev .bl_imgTxtUnit_img {
      margin-left: 0;
    }

    .bl_imgTxtUnit_txt__btn_bot .el_btn1 {
      margin: 0 auto;
    }

    .el_video iframe {
      height: 16.15rem;
    }
    /* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */


    /* Text
       ========================================================================== */
    /* Common */
    .ly_main p.mb30 {
      margin-bottom: 2.31rem;
    }

    /* Elements */
    .el_txtNote {
      font-size: 0.69rem;
    }

    /* Image text block */
    .bl_imgTxtBlock1_ttl {
      font-size: 1.31rem;
      margin-left: 0;
      margin-bottom: 2.5rem;
    }

    .bl_imgTxtBlock1__rev .bl_imgTxtBlock1_ttl {
      margin-right: 0;
    }

    .bl_imgTxtBlock1_cont {
      flex-wrap: wrap;
      margin-bottom: 3.08rem;
    }

    .bl_imgTxtBlock1_cont_img {
      min-width: 100%;
      width: 100%;
      margin-right: 0;
      margin-bottom: 2.31rem;
    }

    .bl_imgTxtBlock1_cont_img__logo {
      margin-top: 0;
    }

    .bl_imgTxtBlock1_cont_img__h260sp {
      height: 20rem;
    }

    .bl_imgTxtBlock1_cont_txt {
      width: 100%;
    }

    .bl_imgTxtBlock2 {
      flex-wrap: wrap;
    }

    .bl_imgTxtBlock2_img {
      width: 100%;
      margin-bottom: 1.15rem;
    }

    .bl_imgTxtBlock2_cont {
      width: 100%;
    }

    .bl_imgTxtBlock2_cont .bl_imgUnit_note {
      order: -1;
      margin-bottom: 1.92rem;
    }

    /* Image unit column */
    .bl_imgUnit__col1_box {
      height: 17.92rem;
    }

    .bl_imgUnit__col2_img {
      width: 100%;
      margin-bottom: 1.54rem;
    }

    .bl_imgUnit__col2_img:nth-last-child(-n + 2) {
      margin-bottom: 1.54rem;
    }

    .bl_imgUnit__col2_img:last-child {
      margin-bottom: 0;
    }

    .bl_imgUnit_note {
      padding: 0 1.15rem;
    }

    /* Other */
    .bl_descPage {
      max-width: 100%;
      width: 100%;
      padding: 3.85rem 1.15rem;
      text-align: left;
    }

    .bl_descPage p {
      margin-bottom: 0.77rem;
    }

    .bl_descPage p strong {
      font-size: 1.54rem;
    }

    /* Template text is here
       ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
    .bl_txt.bl_txt__lg {
      font-size: 1.15rem;
    }

    .bl_txt.bl_txt__sm {
      font-size: 0.92rem;
    }

    .bl_txtNote_ttl {
      font-size: 1.38rem;
      line-height: 1.278;
      margin-bottom: 1.15rem;
    }
    /* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */


    /* List
       ========================================================================== */
    /* List document download */
    .el_listDoc {
      margin-bottom: 3.08rem;
    }

    .el_listDoc_list {
      display: grid;
      grid-auto-rows: 1fr;
      margin-top: -0.77rem;
    }

    .el_listDoc_list_item {
      width: 100%;
      min-height: auto;
      margin-right: 0;
      margin-top: 0.77rem;
    }

    .el_listDoc_list_item:nth-child(1),
    .el_listDoc_list_item:nth-child(2),
    .el_listDoc_list_item:nth-child(3) {
      margin-top: 0.77rem;
    }

    .el_listDoc_list_item .el_link {
      font-size: 1.08rem;
      padding: 0.38rem 0.38rem 0.38rem 3.5rem;
      background-position: 1.15rem center;
      background-size: 1.08rem auto;
    }

    /* List page button */
    .bl_listPage {
      padding: 3.85rem 1.15rem;
    }

    .bl_listPage_list {
      max-width: 100%;
      width: 100%;
      padding: 0;
    }

    .bl_listPage_list_item {
      width: 100%;
      margin-top: 1.54rem;
    }

    .bl_listPage_list_item:nth-child(-n + 2) {
      margin-top: 1.54rem;
    }

    .bl_listPage_list_item:first-child {
      margin-top: 0;
    }

    .bl_listPage_list_item .el_link {
      font-size: 1.08rem;
      padding: 1.15rem 2.3rem;
      background-position: right 1.15rem center;
      background-size: 0.96rem auto;
    }

    .bl_listPage_list_item .el_link.el_link__newtab {
      padding: 1.15rem 1.8rem 1.15rem 2.76rem;
      background-position: left 1.15rem center;
      background-size: 0.96rem auto;
    }

    /* List dropdown */
    .bl_listDropdown {
      max-width: 100%;
      flex-wrap: wrap;
    }

    .bl_listDropdown_col {
      width: 100%;
      margin-bottom: 2.31rem;
    }

    .bl_listDropdown_col:last-child {
      margin-bottom: 0;
    }

    .bl_listDropdown_col_box {
      margin-bottom: 2.31rem;
    }

    .bl_listDropdown_col_box__single {
      margin-bottom: 1.54rem;
    }

    .bl_listDropdown_head {
      font-size: 1.31rem;
      background-position: 2.31rem 1.4rem;
      background-size: 0.65rem 0.85rem;
      padding: 0.77rem 2.31rem 0.77rem 3.65rem;
    }

    .bl_listDropdown_list_item .el_link {
      font-size: 1.08rem;
      padding: 0.77rem 2.31rem 0.77rem 3.65rem;
      background-position: 2.31rem 1.3rem;
      background-size: 0.54rem 0.77rem;
    }

    .bl_listDropdown_list_item .el_link:hover {
      color: #333;
      background-image: url(../images/ico_list_dropdown.png);
    }

    .bl_listDropdown_list_item .el_btn {
      width: 1.69rem;
      height: 1.69rem;
      right: 1.15rem;
    }

    .bl_listDropdown_list__lv2_inner {
      padding: 2.31rem;
      flex-wrap: wrap;
      line-height: 1.8;
    }

    .bl_listDropdown_list__lv2 .bl_listDropdown_list_col {
      width: 100%;
      margin-bottom: 1.5rem;
    }

    .bl_listDropdown_list__lv2 .bl_listDropdown_list_col:last-child {
      margin-bottom: 0;
    }

    .bl_listDropdown_list__lv2 .bl_listDropdown_list_item {
      margin-bottom: 1.5rem;
    }

    .bl_listDropdown_list__lv2 .bl_listDropdown_list_item:last-child {
      margin-bottom: 0;
    }

    .bl_listDropdown_list__lv2 .bl_listDropdown_list_item .el_link {
      font-size: 1.08rem;
      padding: 0 0 0 1.46rem;
      background-position: 0 center;
    }

    /* Template list is here
       ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
    .bl_list > ul > li > ul > li:before {
      width: 1.04rem;
      height: 0.12rem;
    }

    .bl_listUnit {
      flex-wrap: wrap;
    }

    .bl_listUnit.bl_listUnit__col3 ul,
    .bl_listUnit.bl_listUnit__col2 ul {
      width: 100%;
      margin-bottom: 2em;
      margin-right: 0;
    }

    .bl_listUnit.bl_listUnit__col3 ul:last-child,
    .bl_listUnit.bl_listUnit__col2 ul:last-child {
      margin-bottom: 0;
    }
    /* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

    /* List link */
    .bl_listLink_item:before {
      width: 0.54rem;
      height: 0.69rem;
      margin-right: 0.58rem;
      margin-top: 0.35rem;
    }

    /* Light box
       ========================================================================== */
    .bl_lightBox {
      margin-bottom: 2.69rem;
    }

    .bl_lightBox_img {
      width: 100%;
      height: auto;
      margin-bottom: 2.31rem;
    }

    .bl_lightBox_img:nth-last-child(-n + 3) {
      margin-bottom: 2.31rem;
    }

    .bl_lightBox_img:last-child {
      margin-bottom: 0;
    }

    .bl_lightBox_img:before {
      width: 2.23rem;
      height: 2.23rem;
      right: 0.38rem;
      bottom: 0.38rem;
    }


    /* School banner
       ========================================================================== */
    .bl_schoolBnrHead .el_schoolBnrImg {
      width: 56.52%;
      padding: 1.54rem 0 3.08rem;
      margin: 0 auto;
    }

    .el_schoolBnrImg_txt {
      text-align: center;
      margin-top: 0.5rem;
    }

    .bl_schoolBnrList .el_schoolBnrImg {
      width: 47.1%;
      margin-bottom: 1.92rem;
    }

    .bl_schoolBnrList .el_schoolBnrImg:nth-last-child(-n + 3) {
      margin-bottom: 1.92rem;
    }

    .bl_schoolBnrList .el_schoolBnrImg:nth-last-child(-n + 2) {
      margin-bottom: 0;
    }


    /* Image song
       ========================================================================== */
    .bl_listSong_list_item {
      flex-wrap: wrap;
      margin-bottom: 1.88rem;
    }

    .bl_listSong_list_item .el_strong {
      width: 100%;
      margin-bottom: 0.77rem;
    }

    .bl_listSong_list_item .el_link {
      font-size: 1rem;
      line-height: 2.69rem;
      padding: 0 4.04rem;
      margin-left: 1.2rem;
    }

    .bl_bookSong {
      width: 5.38rem;
      margin-top: 2.31rem;
    }


    /* Sort news
       ========================================================================== */
    .bl_sortNews {
      max-width: 100%;
      padding: 1.15rem;
      margin: 0 1.15rem;
    }

    .bl_sortNews_txt1 {
      font-size: 1.31rem;
      margin-bottom: 1.15rem;
    }

    .bl_sortNews_txt2 {
      margin-bottom: 0.38rem;
    }

    .bl_sortNews_list {
      margin-bottom: 1.54rem;
    }

    .bl_sortNews_list_item {
      margin-right: 0.77rem;
      margin-top: 0.77rem;
    }

    .bl_sortNews_list_item .el_link {
      font-size: 0.77rem;
      padding: 0.38rem 0.77rem;
    }


    /* List news
       ========================================================================== */
    .bl_listNews {
      max-width: 100%;
      margin: 0 1.15rem;
      padding: 2.31rem 0 0;
    }

    .bl_listNews_list_item {
      width: 100%;
      margin-right: 0 !important;
      margin-top: 2.31rem;
    }

    .bl_listNews_list_item:nth-child(-n + 4) {
      margin-top: 2.31rem;
    }

    .bl_listNews_list_item:first-child {
      margin-top: 0;
    }

    .bl_listNews_list_item_img {
      margin-bottom: 1.25rem;
    }

    .bl_listNews_list_item_info {
      margin-bottom: 0.75rem;
    }

    .bl_listNews_list_item_info_date {
      font-size: 1.08rem;
    }

    .bl_listNews_list_item_info_cat {
      font-size: 0.77rem;
      padding: 0.15rem 0.77rem;
      margin-left: 0.77rem;
    }

    .bl_listNews_list_item_cont {
      font-size: 1rem;
    }


    /* Pagination
       ========================================================================== */
    .bl_pagination {
      padding: 3.08rem 1.15rem 0;
    }

    .bl_pagination_longBtn {
      width: 0.73rem;
      height: 0.85rem;
    }

    .bl_pagination_longBtn__prev {
      margin-right: 1.54rem;
    }

    .bl_pagination_longBtn__next {
      margin-left: 1.54rem;
    }

    .bl_pagination_shortBtn {
      width: 0.54rem;
      height: 0.62rem;
    }

    .bl_pagination_shortBtn__prev {
      margin-right: 2.12rem;
    }

    .bl_pagination_shortBtn__next {
      margin-left: 2.12rem;
    }

    .bl_pagination_num {
      margin-right: 1rem;
    }

    .bl_pagination_num .el_link {
      font-size: 1.15rem;
      width: 1.54rem;
      line-height: 1.62rem;
    }


    /* Short list news
       ========================================================================== */
    .bl_shortListNews {
      max-width: 100%;
    }

    .bl_shortListNews_list {
      margin-bottom: 3.08rem;
    }

    .bl_shortListNews_list_item {
      flex-wrap: wrap;
      padding: 1.54rem 0;
    }

    .bl_shortListNews_list_item_info {
      flex-basis: 100%;
      margin-bottom: 1.15rem;
      font-size: 1.08rem;
    }

    .bl_shortListNews_list_item_info_cat {
      font-size: 0.77rem;
      padding: 0.2rem 0.77rem;
      margin-left: 0.77rem;
    }

    .bl_shortListNews_list_item_cont {
      flex-basis: 100%;
      margin-left: 0;
    }


    /* Google map
       ========================================================================== */
    .bl_googleMap {
      height: 20rem;
    }
}




@media screen and (min-width: 750.98px) and (max-width: 1000px) {
    /* Setup Common
       ========================================================================== */
    html {
      font-size: 10px;
    }

    .ly_wrapper {
      padding-left: 4rem;
    }

    .bl_header_nav_top_lv2 {
      padding-left: 6rem;
    }

    .bl_header_nav_side {
      width: 4rem;
    }

    .bl_header_nav_side .el_link {
      display: block;
      padding: 0;
    }

    .bl_header_nav_side .el_link .el_icon {
      left: 50%;
    }

    .bl_header_nav_side .el_link .el_text {
      position: absolute;
      left: calc(-100%);
      top: 50%;
      transform: translateY(-50%);
      white-space:nowrap;
      color: #333;
      padding: 0.63rem;
      background: #fff;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
    }

    .bl_header_nav_side .el_link .el_text:before {
      content: "";
      display: block;
      width: 0;
      height: 0;
      border-style: solid;
      border-width: 0.25rem 0.44rem 0.25rem 0;
      border-color: transparent #fff transparent transparent;
      position: absolute;
      right: 100%;
      top: 50%;
      transform: translateY(-50%);
    }

    .bl_header_nav_side .el_link:hover .el_text {
      left: calc(100% + 1.06rem);
      opacity: 1;
      visibility: visible;
    }
}




/* English page
   ========================================================================== */
@media screen and (min-width: 750.98px) {
    .ly_wrapper.ly_wrapper__en {
      padding-left: 0;
      padding-top: 4.69rem;
    }

    .ly_header.ly_header__en {
      padding: 0.75rem 1.88rem;
      align-items: center;
    }

    .ly_header.ly_header__en .bl_header_logo {
      width: 6rem;
      padding-bottom: 0;
      line-height: 0;
    }

    .ly_header.ly_header__en .bl_header_nav_lang {
      border-left: none;
    }

    .ly_footer.ly_footer__en .bl_footer_list {
      padding: 5rem 0 3.75rem;
    }

    .ly_footer.ly_footer__en .bl_footer_list_col {
      width: 100%;
    }

    .ly_footer.ly_footer__en .bl_footer_contact {
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: flex-start;
      flex-wrap: wrap;
    }

    .ly_footer.ly_footer__en .bl_footer_contact_logo {
      line-height: 0;
      margin-top: 0;
      order: -1;
    }

    .ly_footer.ly_footer__en .bl_footer_contact_sns {
      width: 100%;
      justify-content: center;
      margin-top: 2.5rem !important;
      margin-bottom: 3.75rem;
    }

    .ly_footer.ly_footer__en .bl_footer_contact_address {
      width: auto;
      padding: 0.63rem 3.75rem;
      border-bottom: none;
      border-right: 1px solid #1e5587;
    }

    .ly_footer.ly_footer__en .bl_footer_contact_address:last-child {
      border-right: none;
    }

    .ly_footer.ly_footer__en .bl_footer_list .el_strong {
      margin-top: 0;
    }
}




/* Helpers
   ========================================================================== */
@media screen and (max-width: 750px) {
    .is_pc {display: none !important;}
}

@media screen and (min-width: 750.98px) {
    .is_sp {display: none !important;}
}

.el_btn {
  cursor: pointer;
}

.boxScroll {
  overflow-x: auto;
}

.imgHover img {
  transition: opacity 0.3s ease;
}

.imgHover:hover img {
  opacity: 0.7;
}

.bl_imgCoverSize_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bl_imgCoverSize_img__ie {
  background-size: cover;
  background-position: center;
}

.bl_imgCoverSize_img__ie .bl_imgCoverSize_img {
  visibility: hidden;
}

/* Spacing is here
   ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.mb00 {
  margin-bottom: 0 !important;
}

.mb10 {
  margin-bottom: 0.63rem !important;
}

.mb20 {
  margin-bottom: 1.25rem !important;
}

.mb30 {
  margin-bottom: 1.88rem !important;
}

.mb40 {
  margin-bottom: 2.5rem !important;
}

.mb50 {
  margin-bottom: 3.13rem !important;
}

.mb60 {
  margin-bottom: 3.75rem !important;
}

.mb70 {
  margin-bottom: 4.38rem !important;
}

.mb80 {
  margin-bottom: 5rem !important;
}

.mb90 {
  margin-bottom: 5.63rem !important;
}

.mb100 {
  margin-bottom: 6.25rem !important;
}

@media screen and (max-width: 750px) {
    .mb00 {
      margin-bottom: 0 !important;
    }

    .mb10 {
      margin-bottom: 0.38rem !important;
    }

    .mb20 {
      margin-bottom: 0.77rem !important;
    }

    .mb30 {
      margin-bottom: 1.15rem !important;
    }

    .mb40 {
      margin-bottom: 1.54rem !important;
    }

    .mb50 {
      margin-bottom: 1.92rem !important;
    }

    .mb60 {
      margin-bottom: 2.31rem !important;
    }

    .mb70 {
      margin-bottom: 2.69rem !important;
    }

    .mb80 {
      margin-bottom: 3.08rem !important;
    }

    .mb90 {
      margin-bottom: 3.46rem !important;
    }

    .mb100 {
      margin-bottom: 3.85rem !important;
    }
}
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
