@charset "UTF-8";
/******************************************************************************
******************************************************************************
**
** style.cssにおいて ( var.3.1.3 )
** -- baseでは基本タグとサイト大枠のCSS指定
** -- headerではヘッダーのCSS指定
** -- global navではグローバルナビのCSS指定
** -- contentではコンテント・メイン・サイドナビのCSS指定
** -- footerではフッターのCSS指定
** -- pagetopではページトップボタンのCSS指定
** -- indexではトップページのCSS指定
** -- pageでは汎用ページのCSS指定
** -- styleでは汎用ページのコンテンツ（データ入れ）で使用する基本タグのCSS指定
**
** 注意事項
** -- CSSの命名規則はApplicatsオリジナルの命名規則を採用しています。
** -- 初期フォントサイズはreset.cssにて13pxにリセットしています。
** -- 行間は1.6にリセットしています。
**        単位は不要です。(スタイル崩れする可能性有)
** -- コンテンツ内のフォントサイズ・行間は
**        [ base ]のcontentsクラスで指定しています。
**        変更する場合はこちらを変更してください。
**
******************************************************************************
******************************************************************************/
/*-------------------------------------------------------------------------------------------------------
*********************************************************************************************************
*********************************************************************************************************
******
****** PCスタイル
******
*********************************************************************************************************
*********************************************************************************************************
-------------------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
******************************************************************************
** base
******************************************************************************
----------------------------------------------------------------------------*/
html,
body {
  display: flex;
  flex-direction: column;
}

body {
  min-height: 100vh;
}

.w_base {
  width: 100%;
  margin: 0 auto;
  max-width: 1220px;
  padding-right: 10px;
  padding-left: 10px;
}

/*----------------------------------------------------------------------------
******************************************************************************
**  color
******************************************************************************
----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
******************************************************************************
** header
******************************************************************************
----------------------------------------------------------------------------*/
.hd_bg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
}
.hd_bg .hd {
  position: relative;
  display: flex;
  justify-content: space-between;
}
.hd_bg .hd .hd_logo a {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  background: #fff;
  color: #000;
  border-radius: 0 0 5px 5px;
  transition: 0.3s;
}
.hd_bg .hd .hd_logo a .hd_ttl {
  font-size: 22px;
  line-height: 1.5;
}
.hd_bg .hd .hd_logo a .hd_ttl span {
  display: block;
  font-size: 0.3em;
  letter-spacing: 0.07em;
}

/*----------------------------------------------------------------------------
******************************************************************************
** global nav
******************************************************************************
----------------------------------------------------------------------------*/
.nav_bg .nav {
  overflow: visible;
}
.nav_bg .nav .nav_list {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  width: 100%;
}
.nav_bg .nav .nav_list > li {
  position: relative;
  z-index: 1000;
}
.nav_bg .nav .nav_list > li > a {
  position: relative;
  display: block;
  padding: 10px 5px;
  background: #0b4ea0;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  border: 2px solid #0b4ea0;
  border-top: none;
  border-radius: 0 0 5px 5px;
  transition: all 0.5s ease;
}
.nav_bg .nav .nav_list > li > a:hover {
  background: #fff;
  color: #0b4ea0;
}
.nav_bg .nav .nav_list > li.current a {
  background: #fff;
  color: #0b4ea0;
}
.nav_bg .nav .nav_list > li:hover .child_wrap {
  display: block;
  animation: nav_active 1s ease 0s 1 alternate;
}
@keyframes nav_active {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.nav_bg .nav .nav_list > li > .child_wrap {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 100;
  display: none;
  width: 100%;
  transition: All 0.5s ease;
}
.nav_bg .nav .nav_list > li > .child_wrap > .sub-menu {
  position: relative;
  width: -moz-max-content;
  width: max-content;
  margin-top: 15px;
  background: #0b4ea0;
}
.nav_bg .nav .nav_list > li > .child_wrap > .sub-menu > li {
  position: relative;
}
.nav_bg .nav .nav_list > li > .child_wrap > .sub-menu > li:first-of-type:after {
  content: "";
  width: 10px;
  height: 10px;
  background: #0b4ea0;
  position: absolute;
  top: -10px;
  left: 1em;
  -webkit-clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
          clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}
.nav_bg .nav .nav_list > li > .child_wrap > .sub-menu > li > a {
  display: flex;
  align-items: center;
  width: -moz-max-content;
  width: max-content;
  padding: 10px;
  color: #fff;
  font-size: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: all 0.3s ease;
}
.nav_bg .nav .nav_list > li > .child_wrap > .sub-menu > li > a::before {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  margin-right: 10px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
}
.nav_bg .nav .nav_list > li > .child_wrap > .sub-menu > li > a:hover {
  opacity: 0.8;
  background: rgba(0, 0, 0, 0.4);
}
.nav_bg .nav .nav_list > li > .child_wrap > .sub-menu > li:hover .child_wrap {
  display: block;
  animation: nav_active 1s ease 0s 1 alternate;
}
.nav_bg .nav .nav_list > li > .child_wrap > .sub-menu > li > .child_wrap {
  position: absolute;
  top: 0;
  left: 100%;
  z-index: 100;
  display: none;
  width: 100%;
  background: #0b4ea0;
}
.nav_bg .nav .nav_list > li > .child_wrap > .sub-menu > li > .child_wrap > .sub-menu > li {
  position: relative;
}
.nav_bg .nav .nav_list > li > .child_wrap > .sub-menu > li > .child_wrap > .sub-menu > li > a {
  display: flex;
  align-items: center;
  padding: 10px;
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  transition: all 0.3s ease;
}
.nav_bg .nav .nav_list > li > .child_wrap > .sub-menu > li > .child_wrap > .sub-menu > li > a::before {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  margin-right: 10px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
}
.nav_bg .nav .nav_list > li > .child_wrap > .sub-menu > li > .child_wrap > .sub-menu > li > a:hover {
  opacity: 0.8;
  background: rgba(0, 0, 0, 0.4);
}
.nav_bg .nav .nav_list > li:last-of-type > .child_wrap > .sub-menu > li > .child_wrap {
  left: -100%;
}

/*----------------------------------------------------------------------------
******************************************************************************
** content
******************************************************************************
----------------------------------------------------------------------------*/
.con_bg .con {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.con_bg .con .main {
  order: 1;
  width: 100%;
  padding-bottom: 70px;
}
.con_bg .con .main_menu_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
}
.con_bg .con .main_menu_list li {
  margin: 0;
}
.con_bg .con .main_menu_button {
  border: 1px solid #ffa953;
  color: #ffa953;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 0.4em 0.4em 0.6em;
}
.con_bg .con .main_menu_button:hover {
  background-color: #ffa953;
  color: #fff;
}

/*----------------------------------------------------------------------------
******************************************************************************
** footer
******************************************************************************
----------------------------------------------------------------------------*/
.ft_bg {
  margin-top: auto;
  background: #d2d4d5;
  border-top: 1px solid #fff;
}
.ft_bg .ft {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  padding: 80px 0 60px;
}
.ft_bg .ft .ft_ttl h1 {
  color: #484848;
  font-size: 24px;
  line-height: 1.3;
}
.ft_bg .ft .ft_ttl h1 span {
  display: block;
  font-size: 12px;
  font-weight: 400;
}
.ft_bg .ft .ft_ttl p {
  display: block;
  margin-top: 10px;
  font-size: 14px;
  font-weight: normal;
  line-height: 1.5;
  letter-spacing: 0.08em;
}
.ft_bg .ft .ft_copy {
  font-size: 14px;
  text-align: center;
}

/*----------------------------------------------------------------------------
******************************************************************************
** pagetop
******************************************************************************
----------------------------------------------------------------------------*/
.pt {
  position: fixed;
  right: -80px;
  bottom: -60px;
  z-index: 100;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 70px;
  padding-bottom: 5px;
  padding-left: 10px;
  background-color: #0b4ea0;
  -webkit-clip-path: polygon(24% 0, 100% 0, 100% 100%, 0% 100%);
          clip-path: polygon(24% 0, 100% 0, 100% 100%, 0% 100%);
  transition: 0.5s all;
}
.pt:hover {
  right: 0 !important;
  bottom: 0 !important;
}
.pt .pt_btn {
  position: relative;
  transform: rotate(45deg);
  cursor: pointer;
  display: block;
  width: 20px;
  height: 20px;
  margin-top: 8px;
}
.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: 7px;
}
.pt .pt_btn::after {
  right: 0;
  height: 7px;
}
.pt.slideOutLeft {
  right: -10px;
  bottom: -10px;
  animation-name: slideOutLeft;
}

@keyframes slideOutLeft {
  from {
    transform: translate3d(-100%, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 0, 0);
  }
}
/*----------------------------------------------------------------------------
******************************************************************************
** pager
******************************************************************************
----------------------------------------------------------------------------*/
.pager {
  margin: 40px 0 0;
}
.pager .pager_list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.pager .pager_list .page-numbers {
  border: 1px solid #0b4ea0;
  border-radius: 5px;
  color: #035aa6 !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: #0b4ea0;
  color: #fff !important;
}
.pager .pager_list .page-numbers.dots {
  border-color: #0b4ea0;
}

/*----------------------------------------------------------------------------
******************************************************************************
** index
******************************************************************************
----------------------------------------------------------------------------*/
.index_slider_bg .index_slider {
  position: relative;
}
.index_slider_bg .index_slider img {
  width: 100vw;
  max-width: 100vw;
  height: 600px !important;
  -o-object-fit: cover;
     object-fit: cover;
}
.index_slider_bg .index_slider .catchcopy_bg {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  height: auto;
  min-height: 365px;
  margin: -210px auto 0;
  background: url(../images/eyecatch_bg.png) no-repeat center center;
  background-size: cover;
}
.index_slider_bg .index_slider .catchcopy_bg .catchcopy {
  padding: 20px 50px;
  color: #fff;
}
.index_slider_bg .index_slider .catchcopy_bg .catchcopy h2 {
  margin-bottom: 15px;
  font-size: 48px;
  text-align: center;
}
.index_slider_bg .index_slider .catchcopy_bg .catchcopy p {
  text-align: center;
}

.index_main {
  order: 1;
  width: 100%;
  padding-top: 130px;
}
.index_main .index_greet {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 120px;
  padding: 0 40px;
}
.index_main .index_greet .txt {
  display: flex;
  justify-content: space-between;
  gap: 90px;
  max-width: 100%;
}
.index_main .index_greet .txt h2 {
  margin-top: 50px;
  color: #0b4ea0;
  font-size: 48px;
  text-align: center;
  line-height: 1.3;
}
.index_main .index_greet .txt h2::after {
  display: block;
  content: attr(data-text);
  font-size: 16px;
}
.index_main .index_greet .txt .index_greet_link {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
  margin-top: 30px;
}
.index_main .index_greet .txt .index_greet_link > * {
  width: calc((100% - 1em) / 2);
}
.index_main .index_greet .txt .index_greet_link > * > a {
  position: relative;
  display: block;
  padding: 10px 15px;
  background: #0b4ea0;
  color: #fff;
  font-weight: 700;
  text-align: center;
  border: 2px solid #0b4ea0;
  border-radius: 5px;
  transition: all 0.5s ease;
}
.index_main .index_greet .txt .index_greet_link > * > a:hover {
  background: #fff;
  color: #0b4ea0;
}
.index_main .index_greet img {
  max-width: 100%;
  max-height: 100%;
  padding-left: 40px;
}
.index_main .index_news {
  padding: 90px 0 50px;
  background: url(../images/news_bg.png) no-repeat center center;
  background-size: cover;
}
.index_main .index_news .index_news_con {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.index_main .index_news .index_news_con h2 {
  padding: 0 70px;
  color: #fff;
  font-size: 48px;
}
.index_main .index_news .index_news_con .index_news_scrl {
  width: 100%;
  max-width: 950px;
  max-height: 300px;
  overflow: auto;
}
.index_main .index_news .index_news_con .index_news_scrl .index_news_item {
  display: flex;
  align-content: space-between;
  width: 100%;
  padding: 15px 0;
  border-bottom: 1px dotted #fff;
}
.index_main .index_news .index_news_con .index_news_scrl .index_news_item .index_news_item_date {
  width: 140px;
  color: #fff;
  text-align: center;
}
.index_main .index_news .index_news_con .index_news_scrl .index_news_item .index_news_item_ttl {
  width: calc(100% - 140px);
  color: #fff;
}
.index_main .index_news .index_news_con .index_news_scrl .index_news_item .index_news_item_ttl a {
  color: #fff;
  text-decoration: underline;
}
.index_main .index_news .index_news_con .index_news_scrl .index_news_item .index_news_item_ttl .index_news_item_icon_new {
  display: inline-block;
  margin-left: 0.3em;
  padding: 0 5px;
  background: #fff;
  color: #c00;
  font-size: 0.9em;
  font-weight: bold;
  border-radius: 3px;
}
.index_main .index_news .index_news_con .index_news_scrl .index_news_item .index_news_item_ttl .index_news_item_icon_new:before {
  content: "NEW";
}
.index_main .index_news .index_news_more {
  width: 300px;
  margin: 0 auto 40px;
}
.index_main .index_news .index_news_more a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 15px;
  background: transparent;
  color: #fff;
  font-weight: 700;
  border: 2px solid #fff;
  border-radius: 5px;
  transition: all 0.5s ease;
}
.index_main .index_news .index_news_more a:hover {
  background: #fff;
  color: #0b4ea0;
}

/*----------------------------------------------------------------------------
******************************************************************************
** page
******************************************************************************
----------------------------------------------------------------------------*/
.news_dropdown {
  display: flex;
  justify-content: flex-end;
}
.news_dropdown > select {
  padding: 5px 15px;
  background: #aad6fd;
  border: none;
}

.news_list .news_item {
  display: flex;
  align-content: space-between;
  width: 100%;
  padding: 15px 0;
  border-bottom: 1px dotted #707070;
}
.news_list .news_item .news_item_date {
  width: 140px;
  text-align: center;
}
.news_list .news_item .news_item_ttl {
  width: calc(100% - 140px);
}
.news_list .news_item .news_item_ttl > a {
  color: #0b4ea0;
}
.news_list .news_item .news_item_ttl > a:hover {
  text-decoration: none;
}
.news_list .news_item .news_item_ttl .news_item_desc {
  margin-top: 10px;
}
.news_list .news_item .news_item_ttl .more {
  text-align: right;
}
.news_list .news_item .news_item_ttl .more a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 8px 15px;
  background: #fff;
  color: #0b4ea0;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid #0b4ea0;
  transition: all 0.3s ease;
}
.news_list .news_item .news_item_ttl .more a:hover {
  background: #0b4ea0;
  color: #fff;
}

.news_date {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 10px;
  font-weight: 500;
}

.news_pager {
  display: grid;
  width: 500px;
  margin: 60px auto 0;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 1em;
  grid-row-gap: 0;
  text-align: center;
}
.news_pager .news_pager_item a {
  border: 1px solid #0b4ea0;
  border-radius: 5px;
  color: #035aa6 !important;
  display: block;
  font-size: 1rem;
  margin: 0 2px;
  padding: 5px 0;
  text-decoration: none;
  text-align: center;
  transition: all 0.5s ease;
}
.news_pager .news_pager_item a:hover {
  background: #0b4ea0;
  color: #fff !important;
}

.contact_form_tbl {
  width: 100%;
  border-top: 1px solid #ddd;
  border-left: 1px solid #ddd;
}
.contact_form_tbl th {
  width: 300px;
  background: rgba(11, 78, 160, 0.08);
  padding: 1em 0.8em;
  font-weight: bold;
  text-align: right;
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}
.contact_form_tbl th > .must {
  display: inline-block;
  margin-left: 10px;
  padding: 3px 8px;
  background: #c00;
  color: #fff;
  font-size: 12px;
  border-radius: 3px;
}
.contact_form_tbl td {
  padding: 1em 0.8em;
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}
.contact_form_tbl td input,
.contact_form_tbl td textarea {
  padding: 0.6em 0.5em;
}
.contact_form_tbl td input:focus,
.contact_form_tbl td textarea:focus {
  border-color: #f00;
}

.contact_btn_wrap {
  display: flex;
  justify-content: center;
  gap: 1em;
  margin-top: 40px;
}
.contact_btn_wrap .contact_btn_submit {
  padding: 10px 30px;
  background: #0b4ea0;
  color: #fff;
  font-size: 18px;
  border: 2px solid #0b4ea0;
  border-radius: 5px;
  transition: all 0.3s ease;
}
.contact_btn_wrap .contact_btn_submit:hover {
  background: #fff;
  color: #0b4ea0;
}
.contact_btn_wrap .contact_btn_previous {
  padding: 10px 30px;
  background: #ddd;
  font-size: 18px;
  border: 2px solid #ddd;
  border-radius: 5px;
  transition: all 0.3s ease;
}
.contact_btn_wrap .contact_btn_previous:hover {
  background: #fff;
}
.contact_btn_wrap .wpcf7-spinner {
  display: none;
}

/*----------------------------------------------------------------------------
******************************************************************************
** teacher
******************************************************************************
----------------------------------------------------------------------------*/
.teacher_table_subHeading {
  background-color: #e9f2fe;
  color: #0b4ea0;
  padding: 0.4rem 0.8rem;
  font-size: 1.04rem !important;
  margin: 1.4rem 0 1rem !important;
}

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

.teacher_table_li {
  width: 20%;
  margin: 0 1rem 1rem 0;
  display: flex;
  align-items: center;
}
.teacher_table_li span {
  border: 1px solid #0b4ea0;
  color: #0b4ea0;
  font-weight: bold;
  font-size: 0.9rem;
  display: block;
  padding-bottom: 0.2em;
  width: 6rem;
  text-align: center;
  margin-right: 1rem;
}

/*----------------------------------------------------------------------------
******************************************************************************
** search
******************************************************************************
----------------------------------------------------------------------------*/
.search_section_teachers {
  display: flex;
  justify-content: space-between;
  padding: 1rem !important;
  margin-bottom: 2rem;
  background-color: #efefef;
}

.search_item_inputText {
  width: calc(100% - 12rem);
}

.search_item_button {
  width: 10rem;
}

.search_button_submit {
  width: 100%;
  background-color: #0b4ea0;
  border: none;
  color: #fff;
  padding: 0.2em;
}
.search_button_submit:hover {
  opacity: 0.8;
}

/*----------------------------------------------------------------------------
******************************************************************************
** style
******************************************************************************
----------------------------------------------------------------------------*/
.mcon {
  word-wrap: break-word;
}
.mcon a img:hover {
  opacity: 0.8;
  transition: all 0.3s ease;
}
.mcon .mcon_ttl {
  position: relative;
  display: flex;
  align-items: flex-end;
  padding-top: 140px;
  border-bottom: 2px solid #0b4ea0;
  overflow: hidden;
}
.mcon .mcon_ttl h1 {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1em 2em;
  color: #000;
  font-size: 36px;
  line-height: 1.4;
  z-index: 1;
}
.mcon .mcon_ttl::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/ttl_bg.jpg) no-repeat center center;
  background-size: cover;
  filter: blur(3px);
  opacity: 0.7;
}
.mcon > section {
  padding-top: 2em;
}
.mcon > section > *:first-of-type {
  margin-top: 0;
  padding-top: 0;
}
.mcon h2 {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 2em 0 1.5em;
  padding-bottom: 10px;
  color: #0b4ea0;
  font-size: 1.5em;
  border-bottom: 3px solid #0b4ea0;
}
.mcon h2 span {
  font-size: 0.9rem;
  color: #333;
}
.mcon h3 {
  position: relative;
  margin: 1em 0 0.75em;
  padding-bottom: 10px;
  color: #484848;
  font-size: 1.3em;
}
.mcon h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100px;
  height: 3px;
  background: #0b4ea0;
}
.mcon h4 {
  display: flex;
  align-items: center;
  margin: 5px 0;
  color: #484848;
  font-size: 1.15em;
}
.mcon h4::before {
  content: "";
  display: block;
  width: 3px;
  height: 20px;
  margin-right: 10px;
  background: #0b4ea0;
}
.mcon h5,
.mcon h6 {
  font-size: 1.1em;
  margin-bottom: 2px;
  margin-top: 5px;
}
.mcon hr {
  border: none;
  border-top: 1px dotted #000;
}
.mcon iframe {
  aspect-ratio: 16/9;
  width: 100%;
  height: 100%;
}
.mcon img {
  max-width: 100%;
  height: auto;
}
.mcon ol {
  margin-top: 1em;
  margin-bottom: 0.5em;
}
.mcon ol li {
  margin-left: 2em;
  margin-bottom: 0.5em;
}
.mcon p {
  margin-bottom: 1em;
}
.mcon ul {
  margin-top: 1em;
  margin-bottom: 0.5em;
}
.mcon ul li {
  margin-left: 1.5em;
  margin-bottom: 0.5em;
}/*# sourceMappingURL=style.css.map */