/*----------------------------------------------------------------------------
******************************************************************************
** base
******************************************************************************
----------------------------------------------------------------------------*/
html,
body {
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  color: #7b7878;
  background-color: #ecfaff;
}

body {
  min-height: 100vh;
  margin-top: 70px;
}

/*----------------------------------------------------------------------------
******************************************************************************
** header
******************************************************************************
----------------------------------------------------------------------------*/
.hd_bg {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #ecfaff;
  z-index: 1000;
}
.hd_bg .hd {
  display: flex;
  align-items: center;
  height: 70px;
  padding: 0px 10px;
}
.hd_bg .hd .hd_logo {
  display: flex;
  align-content: center;
  align-items: center;
  width: 320px;
}
.hd_bg .hd .hd_logo a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #7b7878;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  line-height: 1;
}
.hd_bg .hd .hd_logo a img {
  display: inline-block;
  height: auto;
  width: 50px;
}

/*----------------------------------------------------------------------------
******************************************************************************
** global nav
******************************************************************************
----------------------------------------------------------------------------*/
.nav {
  position: fixed;
  top: -100%;
  z-index: 100;
  overflow-x: none;
  overflow-y: auto;
  width: 100%;
  background: #32A6F3;
  color: #fff;
  transition: All 0.8s ease;
}
.nav .nav_list {
  margin-top: 0;
}
.nav .nav_list > li {
  position: relative;
  list-style-type: disclosure-closed;
  margin-left: 2.5em;
  margin-bottom: 0;
}
.nav .nav_list > li > a {
  border-bottom: 1px solid #fff;
  font-size: 16px;
  color: #fff;
  font-weight: bold;
  line-height: 1.5;
  padding: 0.5em 1em 0.5em 1.5em;
  padding-left: 40px;
  margin-left: -40px;
  text-decoration: none;
  position: relative;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
}
.nav .nav_list > li > a::after {
  display: block;
  color: #f0f0f0;
  font-size: 8px;
  letter-spacing: 0.05em;
  content: attr(data-text);
}
.nav .nav_list > li > a img {
  display: none;
}
.nav .nav_list > li .child_wrap_btn {
  position: absolute;
  top: 8px;
  right: 0.5em;
  z-index: 10;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: #fff;
}
.nav .nav_list > li .child_wrap_btn::before, .nav .nav_list > li .child_wrap_btn::after {
  position: absolute;
  content: "";
  width: 15px;
  height: 1px;
  background-color: #00538a;
}
.nav .nav_list > li .child_wrap_btn::before {
  top: 50%;
  left: 50%;
  transform: rotate(0deg) translateX(-50%);
}
.nav .nav_list > li .child_wrap_btn::after {
  top: 50%;
  right: 5px;
  transform: rotate(90deg) translateY(-50%);
  transition: all 0.3s ease;
}
.nav .nav_list > li .child_wrap_btn.close::after {
  transform: rotate(0deg);
}
.nav .nav_list > li > .child_wrap {
  display: none;
  margin: 0 0 0 -40px;
}
.nav .nav_list > li > .child_wrap > .sub-menu {
  margin: 0;
}
.nav .nav_list > li > .child_wrap > .sub-menu > li {
  position: relative;
  list-style-type: none;
  margin: 0;
}
.nav .nav_list > li > .child_wrap > .sub-menu > li > a {
  background-color: rgba(50, 95, 243, 0.4);
  border-bottom: 1px solid #fff;
  color: #fff;
  display: block;
  font-size: 13px;
  padding: 1em 1em 1em 2em;
  text-decoration: none;
}
.nav .nav_list > li > .child_wrap > .sub-menu > li .child_wrap_btn {
  top: 0.6em !important;
}
.nav .nav_list > li > .child_wrap > .sub-menu > li:hover > a, .nav .nav_list > li > .child_wrap > .sub-menu > li.current > a {
  box-shadow: 0 0 4px rgba(255, 0, 0, 0.2);
}
.nav .nav_list > li > .child_wrap > .sub-menu > li > .child_wrap {
  display: none;
}
.nav .nav_list > li > .child_wrap > .sub-menu > li > .child_wrap > .sub-menu {
  margin: 0;
}
.nav .nav_list > li > .child_wrap > .sub-menu > li > .child_wrap > .sub-menu > li {
  position: relative;
  list-style-type: none;
  margin: 0;
}
.nav .nav_list > li > .child_wrap > .sub-menu > li > .child_wrap > .sub-menu > li > a {
  background-color: #325ff3;
  border-bottom: 1px solid #fff;
  color: #fff;
  display: block;
  font-size: 11px;
  padding: 1em 1em 1em 3em;
  text-decoration: none;
}
.nav .nav_list > li > .child_wrap > .sub-menu > li > .child_wrap > .sub-menu > li:hover > a, .nav .nav_list > li > .child_wrap > .sub-menu > li > .child_wrap > .sub-menu > li.current > a {
  box-shadow: 0 0 4px rgba(250, 201, 201, 0.2);
}
.nav .nav_link {
  display: flex;
  gap: 20px;
  margin: 20px 30px;
}
.nav .nav_link .link_item a {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  background-color: #fff;
  border-radius: 8px;
  transition: 0.3s;
}
.nav .nav_link .link_item a:hover {
  opacity: 0.7;
}
.sp_nav_open {
  top: 70px !important;
}

.sp_nav_trigger {
  cursor: pointer;
  z-index: 1000;
  position: fixed !important;
  top: 30px;
  right: 15px;
  margin-top: -5px;
  width: 36px;
  height: 24px;
}
.sp_nav_trigger span {
  display: inline-block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #32a6f3;
  transition: all 0.4s;
  box-sizing: border-box;
}
.sp_nav_trigger span:nth-of-type(1) {
  top: 0;
}
.sp_nav_trigger span:nth-of-type(2) {
  top: 10px;
}
.sp_nav_trigger span:nth-of-type(3) {
  bottom: 0;
}
.sp_nav_trigger.sp_active span:nth-of-type(1) {
  transform: translateY(9px) rotate(-45deg);
}
.sp_nav_trigger.sp_active span:nth-of-type(2) {
  opacity: 0;
}
.sp_nav_trigger.sp_active span:nth-of-type(3) {
  transform: translateY(-12px) rotate(45deg);
}

/*----------------------------------------------------------------------------
******************************************************************************
** access
******************************************************************************
----------------------------------------------------------------------------*/
.access_bg {
  position: relative;
  background-color: #fff;
  border-radius: 8px;
  margin: 0 auto;
}
.access_bg .access_content {
  padding: 20px 10px;
}
.access_bg .access_content .access_item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.access_bg .access_content .access_item .access_title {
  display: flex;
  align-items: center;
}
.access_bg .access_content .access_item .access_title img {
  width: 36px;
  margin-right: 5px;
}
.access_bg .access_content .access_item .access_title span {
  display: inline-block;
  font-size: 21px;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
.access_bg .access_content .access_item p {
  font-size: 12px;
  padding: 0.5em;
  margin-bottom: 0;
  text-align: center;
}
.access_bg .access_content h2 {
  text-align: center;
  font-size: 14px;
  font-weight: normal;
  padding-bottom: 5px;
  margin-top: 10px;
  border-bottom: 1px dotted #6BA3DB;
}

/*----------------------------------------------------------------------------
******************************************************************************
** content
******************************************************************************
----------------------------------------------------------------------------*/
.con_bg {
  display: flex;
  flex-direction: column;
}
.con_bg .con {
  display: contents;
  padding: 20px 10px 30px;
}
.con_bg .con .side {
  order: 2;
}
.con_bg .con .side .side_head {
  background-color: #eee;
  color: #111;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 6px;
  padding: 10px;
  text-align: center;
}
.con_bg .con .side .side_nav_list li a {
  background: url(../images/icon_arrow_gray.png) no-repeat left center;
  border-bottom: 1px solid #ccc;
  color: #111;
  display: block;
  font-size: 14px;
  padding: 12px 10px;
  text-decoration: none;
}
.con_bg .con .side .side_nav_list li a:hover {
  text-decoration: underline;
}

/*----------------------------------------------------------------------------
******************************************************************************
** footer
******************************************************************************
----------------------------------------------------------------------------*/
.ft .ft_bg {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  width: 100%;
  color: #7b7878;
  background-color: #ECEBEB;
}
.ft .ft_bg .ft_copy {
  font-size: 10px;
  text-align: center;
}

/*----------------------------------------------------------------------------
******************************************************************************
** pagetop
******************************************************************************
----------------------------------------------------------------------------*/
.pt {
  position: fixed;
  right: 10px;
  bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #32A6F3;
  border-radius: 50%;
  z-index: 100;
}
.pt:hover {
  opacity: 0.6;
}
.pt .pt_btn {
  position: relative;
  cursor: pointer;
  display: block;
  width: 14px;
  height: 14px;
  margin-top: 5px;
  transform: rotate(45deg);
}
.pt .pt_btn::before, .pt .pt_btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  background-color: #fff;
}
.pt .pt_btn::before {
  bottom: 0;
  width: 5px;
}
.pt .pt_btn::after {
  right: 0;
  height: 5px;
}

/*----------------------------------------------------------------------------
******************************************************************************
** pager
******************************************************************************
----------------------------------------------------------------------------*/
.pager {
  margin: 0 0 40px;
}
.pager .pager_list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.pager .pager_list .page-numbers {
  border: 1px solid #32a6f3;
  border-radius: 5px;
  color: #32a6f3 !important;
  display: block;
  font-size: 1rem;
  margin: 0 2px;
  padding: 5px 0;
  text-decoration: none;
  text-align: center;
  width: 2.4rem;
  transition: all 0.5s ease;
}
.pager .pager_list .page-numbers:not(.dots):hover, .pager .pager_list .page-numbers.current {
  background: #32a6f3;
  color: #FFF !important;
}
.pager .pager_list .page-numbers.dots {
  border-color: #32a6f3;
}

/*----------------------------------------------------------------------------
******************************************************************************
** index
******************************************************************************
----------------------------------------------------------------------------*/
.index_slider .index_slide {
  margin-bottom: 20px;
}

.page_bg {
  width: 100%;
  background: url(../images/header.jpg) no-repeat;
  background-size: cover;
}
.page_bg .page_wrap {
  width: 90%;
  min-height: 114px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.page_bg .page_wrap .page_title {
  padding: 20px 0px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 2.5em;
  text-align: right;
  line-height: 1.3;
  overflow-wrap: break-word;
}

.main .index_greet p {
  line-height: 2em;
  background-color: #fff;
  border-radius: 8px;
  margin-bottom: 10px;
}
.main .index_greet .content {
  margin-bottom: 20px;
}
.main .index_news h2 {
  margin-bottom: 0px;
}
.main .index_news .index_news_scrl {
  max-height: 50vh;
  overflow: auto;
  margin-block: 10px 20px;
  background-color: rgba(255, 255, 255, 0.3);
}
.main .index_news .index_news_scrl .index_news_item {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  margin-bottom: 5px;
  padding: 10px;
  width: 100%;
}
.main .index_news .index_news_scrl .index_news_item .index_news_item_date {
  color: #32a6f3;
}
.main .index_news .index_news_scrl .index_news_item .index_news_item_ttl span {
  display: inline-block;
  color: #c00;
  font-weight: bold;
  margin-left: 0.5em;
}
.main .news h2 {
  margin-bottom: 0px;
}
.main .news .index_news_scrl {
  overflow: auto;
  margin-block: 10px 10px;
  background-color: rgba(255, 255, 255, 0.3);
}
.main .news .index_news_scrl .index_news_item {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  margin-bottom: 5px;
  padding: 10px;
  width: 100%;
}
.main .news .index_news_scrl .index_news_item .index_news_item_date {
  color: #32a6f3;
}
.main .news .index_news_scrl .index_news_item .index_news_item_ttl .index_news_item_icon_new {
  display: inline-block;
  color: #c00;
  font-weight: bold;
  margin-left: 0.5em;
}
.main .news .index_news_scrl .index_news_item .index_news_item_ttl .index_news_item_icon_new:before {
  content: "NEW";
}

section .content {
  line-height: 2em;
  background-color: #fff;
  border-radius: 8px;
  padding: 15px;
}
section .content .img_content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
}
section .content .img_content img {
  width: 48%;
}
@media screen and (max-width: 415px) {
  section .content .img_content {
    flex-direction: column;
  }
  section .content .img_content img {
    width: 95%;
  }
}

.side {
  order: 2;
}
.side .bnr_list li {
  margin-bottom: 4px;
}
.side .bnr_list li a {
  padding: 16px 16px 16px 42px;
  border: 1px solid #000000;
  border-radius: 3px;
  display: block;
  text-decoration: none;
  background: url(../images/icon_elink_black.png) no-repeat 16px center;
  color: #000000;
}
.side .bnr_list li a:hover {
  background-color: #000;
  background-image: url(../images/icon_elink_white.png);
  color: #fff;
}

/*----------------------------------------------------------------------------
******************************************************************************
** page
******************************************************************************
----------------------------------------------------------------------------*/
.link {
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
  width: 100%;
  background: url("../images/footer_bg.jpg") no-repeat center;
  background-size: cover;
}
.link .link_content {
  display: flex;
  flex-wrap: wrap;
  justify-content: stretch;
  gap: 15px;
  width: 100%;
  padding: 40px 20px;
}
@media screen and (max-width: 415px) {
  .link .link_content {
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
}
.link .link_content .link_item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  min-height: 70px;
  background-color: #fff;
  width: calc((100% - 15px) / 2);
  padding: 10px 20px;
  color: #7b7878;
  font-size: 12px;
  text-decoration: none;
  transition: 0.3s;
}
.link .link_content .link_item:hover {
  filter: brightness(1.2);
  scale: 1.05;
}
.link .link_content .link_item img {
  width: 32px;
  height: 32px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 415px) {
  .link .link_content .link_item {
    width: 100%;
  }
}

.activity {
  gap: 20px;
}
.activity .activity_item {
  max-width: 600px;
}
.activity .activity_item .activity_inner {
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.activity .activity_item .activity_inner .activity_ttl {
  margin: 0;
}
.activity .activity_item .activity_inner .activity_content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.activity .activity_item .activity_inner .activity_content .activity_thumbnail {
  width: 100%;
  aspect-ratio: 3/2;
  overflow: hidden;
}
.activity .activity_item .activity_inner .activity_content .activity_thumbnail img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.activity .activity_item .activity_inner .activity_content .activity_text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.activity .activity_item .activity_inner .activity_content .activity_text .activity_description {
  margin-bottom: 0;
  width: 100%;
}
.activity .activity_item .activity_inner .activity_content .activity_text .activity_btn {
  border-radius: 9999px;
  border: 2px solid #32a6f3;
  text-decoration: none;
  font-weight: bold;
  color: #32a6f3;
  padding: 10px 60px;
  width: -moz-max-content;
  width: max-content;
  transition: 0.5s;
}
.activity .activity_item .activity_inner .activity_content .activity_text .activity_btn:hover {
  background: #32a6f3;
  color: #fff;
}

.study_item {
  max-width: 600px;
}
.study_item .study_inner {
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.study_item .study_inner .study_ttl {
  margin: 0;
}
.study_item .study_inner .study_content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.study_item .study_inner .study_content .study_thumbnail {
  width: 100%;
  aspect-ratio: 3/2;
  overflow: hidden;
}
.study_item .study_inner .study_content .study_thumbnail img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.study_item .study_inner .study_content .study_text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.study_item .study_inner .study_content .study_text .study_description {
  margin-bottom: 0;
  width: 100%;
}
.study_item .study_inner .study_content .study_text .study_btn {
  border-radius: 9999px;
  border: 2px solid #32a6f3;
  text-decoration: none;
  font-weight: bold;
  color: #32a6f3;
  padding: 10px 60px;
  width: -moz-max-content;
  width: max-content;
  transition: 0.5s;
}
.study_item .study_inner .study_content .study_text .study_btn:hover {
  background: #32a6f3;
  color: #fff;
}

.report {
  padding: 20px;
}
.report .report_list {
  display: grid;
  justify-content: center;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin: 0 0 20px;
}
.report .report_list .report_item {
  background: #fff;
  border-radius: 10px;
  width: 100%;
  margin: 0;
}
.report .report_list .report_item .report_link {
  text-decoration: none;
  transition: 0.5s;
}
.report .report_list .report_item .report_link:hover {
  opacity: 0.8;
}
.report .report_list .report_item .report_inner {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.report .report_list .report_item .report_inner .report_thumbnail {
  aspect-ratio: 3/2;
  overflow: hidden;
}
.report .report_list .report_item .report_inner .report_thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.report .report_list .report_item .report_inner .report_text .report_date {
  color: #7b7878;
}
.report .report_list .report_item .report_inner .report_text .report_headline {
  color: #32a6f3;
  margin-bottom: 0;
  font-weight: bold;
  font-size: 1.1em;
}

.graduate_container {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.wp-embed-aspect-16-9 {
  aspect-ratio: 16/9;
}
.wp-embed-aspect-16-9 .wp-block-embed__wrapper {
  height: 100%;
}
.wp-embed-aspect-16-9 .wp-block-embed__wrapper iframe {
  width: 100%;
  height: 100%;
}

.wp-block-image .aligncenter > figcaption {
  text-align: center;
}

/*----------------------------------------------------------------------------
******************************************************************************
** style
******************************************************************************
----------------------------------------------------------------------------*/
.con {
  line-height: 1.6;
  word-wrap: break-word;
}
.con a img:hover {
  opacity: 0.8;
  transition: all 0.3s ease;
}
.con h1 {
  font-size: 20px;
  margin-bottom: 20px;
}
.con h2 {
  color: #32a6f3;
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 10px;
  margin-top: 20px;
  padding-bottom: 12px;
  border-bottom: 2px dashed rgba(50, 166, 243, 0.5);
}
.con h3 {
  font-size: 1.3em;
  margin-block: 10px 15px;
  padding: 0.2em 0.6em;
  border-top: 2px solid #32a6f3;
  border-bottom: 2px solid #32a6f3;
}
.con h4 {
  font-size: 1.2em;
  margin-bottom: 5px;
  margin-top: 5px;
  padding: 0em 0.5em;
  border-left: 5px solid #32a6f3;
  border-bottom: 1px solid #ccc;
  background-color: #fdfdfd;
}
.con h5 {
  font-size: 1.2em;
  margin-bottom: 2px;
  margin-top: 5px;
}
.con h6 {
  margin-bottom: 2px;
  margin-top: 5px;
}
.con section {
  width: 95%;
  margin: 10px auto 20px;
}
.con hr {
  border: none;
  border-top: 1px dotted #000;
}
.con iframe {
  max-width: 100%;
}
.con img {
  max-width: 100%;
  height: auto;
}
.con ol {
  margin-top: 1em;
  margin-bottom: 0.5em;
}
.con ol li {
  margin-left: 2em;
  margin-bottom: 0.5em;
}
.con p {
  margin-bottom: 1em;
}
.con ul {
  margin-top: 1em;
  margin-bottom: 0.5em;
}
.con ul li {
  list-style-type: disc;
  margin-left: 1.5em;
  margin-bottom: 0.5em;
}
.con .sp_dn {
  display: none;
}
.con .btn {
  display: flex;
  justify-content: center;
  align-items: center;
}
.con .btn a {
  position: relative;
  display: grid;
  place-items: center;
  width: 250px;
  height: 40px;
  color: #fff;
  text-decoration: none;
  background-color: #32a6f3;
  border-radius: 8px;
  transition: 0.3s;
}
.con .btn a::before {
  position: absolute;
  content: "";
  right: 20px;
  width: 5px;
  height: 5px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
  transition: 0.3s;
}
.con .btn a:hover {
  opacity: 0.7;
}
.con .btn a:hover::before {
  right: 15px;
}/*# sourceMappingURL=sp.css.map */