@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クラスで指定しています。
**        変更する場合はこちらを変更してください。
**
******************************************************************************
******************************************************************************/
/*-------------------------------------------------------------------------------------------------------
*********************************************************************************************************
*********************************************************************************************************
******
****** spスタイル
******
*********************************************************************************************************
*********************************************************************************************************
-------------------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
******************************************************************************
** base
******************************************************************************
----------------------------------------------------------------------------*/
html,
body {
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  font-size: 14px;
}

body {
  min-height: 100vh;
}

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

/*----------------------------------------------------------------------------
******************************************************************************
**  color
******************************************************************************
----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
******************************************************************************
** header
******************************************************************************
----------------------------------------------------------------------------*/
.hd_bg {
  position: fixed;
  top: 0;
  z-index: 3;
  width: 100%;
}
.hd_bg .hd {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hd_bg .hd .hd_logo a {
  display: flex;
  align-items: center;
  padding: 10px 15px;
  background: #fff;
  color: #000;
  border-radius: 0 0 5px 5px;
  transition: 0.3s;
}
.hd_bg .hd .hd_logo a:hover {
  opacity: 0.7;
  text-decoration: none !important;
}
.hd_bg .hd .hd_logo img {
  width: 30px;
  height: auto;
  margin-right: 7px;
  padding-bottom: 1px;
}
.hd_bg .hd .hd_logo .hd_ttl {
  font-size: 18px;
  line-height: 1.5;
}
.hd_bg .hd .hd_logo .hd_ttl span {
  display: block;
  font-size: 0.5em;
  letter-spacing: 0.07em;
}

/*----------------------------------------------------------------------------
******************************************************************************
** global nav
******************************************************************************
----------------------------------------------------------------------------*/
.nav {
  position: fixed;
  top: 0px;
  right: -70%;
  z-index: 100;
  overflow-x: none;
  overflow-y: auto;
  width: 70%;
  height: calc(100% + 500px);
  padding-bottom: 500px;
  background: #0b4ea0;
  color: #fff;
  transition: All 0.5s ease;
}
.nav .nav_list > li {
  position: relative;
  z-index: 1000;
}
.nav .nav_list > li > a {
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  font-size: 16px;
  color: #fff;
  font-weight: bold;
  display: block;
  padding: 1em 1em 1em 1.5em;
  text-decoration: none;
  position: relative;
}
.nav .nav_list > li > a:hover, .nav .nav_list > li > a.current {
  background-color: rgba(0, 0, 0, 0.2);
}
.nav .nav_list > li .child_wrap_btn {
  position: absolute;
  top: 1em;
  right: 0.5em;
  z-index: 10;
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  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: #0b4ea0;
}
.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%;
  left: 0.5em;
  transform: rotate(90deg);
  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;
}
.nav .nav_list > li .child_wrap > .sub-menu li {
  position: relative;
}
.nav .nav_list > li .child_wrap > .sub-menu li a {
  display: flex;
  align-items: center;
  padding: 1em 1em 1em 1.5em;
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  font-size: 13px;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}
.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 .nav_list > li .child_wrap > .sub-menu li .child_wrap_btn {
  position: absolute;
  top: 0.65em;
  right: 0.5em;
  z-index: 10;
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  background: #fff;
}
.nav .nav_list > li .child_wrap > .sub-menu li .child_wrap_btn::before, .nav .nav_list > li .child_wrap > .sub-menu li .child_wrap_btn::after {
  position: absolute;
  content: "";
  width: 15px;
  height: 1px;
  background-color: #0b4ea0;
}
.nav .nav_list > li .child_wrap > .sub-menu li .child_wrap_btn::before {
  top: 50%;
  left: 50%;
  transform: rotate(0deg) translateX(-50%);
}
.nav .nav_list > li .child_wrap > .sub-menu li .child_wrap_btn::after {
  top: 50%;
  left: 0.5em;
  transform: rotate(90deg);
  transition: all 0.3s ease;
}
.nav .nav_list > li .child_wrap > .sub-menu li .child_wrap_btn.close::after {
  transform: rotate(0deg);
}
.nav .nav_list > li .child_wrap > .sub-menu li .child_wrap > .sub-menu li {
  position: relative;
}
.nav .nav_list > li .child_wrap > .sub-menu li .child_wrap > .sub-menu li a {
  display: flex;
  align-items: center;
  padding: 1em 1em 1em 2em;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-size: 11px;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}
.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 .nav_list > li .child_wrap > .sub-menu li .child_wrap > .sub-menu li .child_wrap > .sub-menu {
  background: #ccc;
}

.sp_nav_open {
  right: 0 !important;
}

.sp_nav_trigger {
  cursor: pointer;
  z-index: 1000;
  position: fixed !important;
  top: 25px;
  right: 15px;
  margin-top: -5px;
  width: 36px;
  height: 24px;
}
.sp_nav_trigger span {
  display: inline-block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #000;
  border-radius: 4px;
  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::after {
  position: absolute;
  left: 0;
  bottom: -20px;
  content: "MENU";
  display: block;
  width: 100%;
  padding-top: 20px;
  color: #000;
  font-size: 10px;
  text-decoration: none;
  text-align: center;
  transition: all 0.4s;
}
.sp_nav_trigger.sp_active::after {
  content: "CLOSE";
  bottom: -25px;
  color: #fff;
}
.sp_nav_trigger.sp_active span:nth-of-type(1) {
  transform: translateY(10px) rotate(-45deg);
  background: #fff;
}
.sp_nav_trigger.sp_active span:nth-of-type(2) {
  opacity: 0;
  background: #fff;
}
.sp_nav_trigger.sp_active span:nth-of-type(3) {
  transform: translateY(-10px) rotate(45deg);
  background: #fff;
}

/*----------------------------------------------------------------------------
******************************************************************************
** content
******************************************************************************
----------------------------------------------------------------------------*/
.con {
  padding: 0 0 30px;
}
.con .main {
  margin-bottom: 30px;
}
.con .main_menu_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
  margin: 0;
}
.con .main_menu_list li {
  margin: 0;
  list-style: none;
}
.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 .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 {
  height: 100%;
  padding: 20px 0;
}
.ft_bg .ft .ft_ttl h1 {
  margin: 0 auto 10px;
  line-height: 1.3;
  text-align: center;
}
.ft_bg .ft .ft_ttl h1 span {
  display: block;
  font-size: 10px;
  font-weight: 400;
}
.ft_bg .ft .ft_ttl p {
  margin-bottom: 10px;
  display: block;
  font-size: 11px;
  font-weight: normal;
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-align: center;
}
.ft_bg .ft_copy {
  font-size: 10px;
  text-align: center;
  line-height: 1.3;
}

/*----------------------------------------------------------------------------
******************************************************************************
** pagetop
******************************************************************************
----------------------------------------------------------------------------*/
.pt {
  position: fixed;
  right: -60px;
  bottom: -50px;
  z-index: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 50px;
  padding-bottom: 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 {
  opacity: 0.6;
}
.pt .pt_btn {
  position: relative;
  transform: rotate(45deg);
  cursor: pointer;
  display: block;
  width: 15px;
  height: 15px;
  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: 6px;
}
.pt .pt_btn::after {
  right: 0;
  height: 6px;
}
.pt.slideOutLeft {
  right: 0px;
  bottom: 0px;
  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 {
  position: relative;
}
.index_slider_bg .index_slider img {
  width: 100vw;
  max-width: 100vw;
  height: 100vh !important;
  height: 100svh !important;
  -o-object-fit: cover;
     object-fit: cover;
}
.index_slider_bg .index_slider .catchcopy_bg {
  position: absolute;
  right: 0;
  bottom: 0px;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  width: 100%;
  background: url(../images/eyecatch_bg.png) no-repeat center center;
  background-size: cover;
  color: #fff;
}
.index_slider_bg .index_slider .catchcopy_bg .catchcopy {
  width: 100%;
  padding: 30px 20px;
  text-align: justify;
  box-sizing: content-box;
}
.index_slider_bg .index_slider .catchcopy_bg .catchcopy h2 {
  font-size: 30px;
  margin-bottom: 15px;
  text-align: center;
}
.index_slider_bg .index_slider .catchcopy_bg .catchcopy p {
  color: #fff;
  font-weight: 300;
}

.index_main {
  padding-top: 50px;
}
.index_main .index_greet {
  padding-bottom: 30px;
}
.index_main .index_greet .txt {
  max-width: 100%;
}
.index_main .index_greet .txt h2 {
  margin-bottom: 30px;
  color: #0b4ea0;
  font-size: 24px;
  text-align: center;
  line-height: 1.5;
}
.index_main .index_greet .txt h2::after {
  display: block;
  content: attr(data-text);
  font-size: 0.44em;
}
.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: 100%;
}
.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 {
  display: flex;
  justify-content: center;
  max-width: 100%;
  margin: 20px auto;
}
.index_main .index_news {
  padding: 50px 0 70px;
  background: url(../images/news_bg.png) no-repeat center center;
  background-size: cover;
}
.index_main .index_news .index_news_con h2 {
  margin-bottom: 30px;
  color: #fff;
  font-size: 24px;
  text-align: center;
  line-height: 1.5;
}
.index_main .index_news .index_news_con .index_news_scrl {
  max-height: 50vh;
  overflow: auto;
}
.index_main .index_news .index_news_con .index_news_scrl .index_news_item {
  padding: 10px 0;
  color: #fff;
  border-bottom: 1px dotted #fff;
}
.index_main .index_news .index_news_con .index_news_scrl .index_news_item .index_news_item_date {
  margin-bottom: 3px;
}
.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_more {
  width: 300px;
  margin: 40px auto 0;
}
.index_main .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_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 {
  width: 100%;
  padding: 15px 0;
  border-bottom: 1px dotted #707070;
}
.news_list .news_item .news_item_date {
  width: 100%;
}
.news_list .news_item .news_item_ttl {
  width: 100%;
}
.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: 12px;
  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: 100%;
  max-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 {
  display: block;
  width: 100%;
  background: rgba(11, 78, 160, 0.08);
  padding: 1em 0.8em;
  font-weight: bold;
  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 {
  display: block;
  width: 100%;
  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;
}

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

.teacher_table_li {
  margin: 0 2rem 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% - 5rem);
}

.search_item_button {
  width: 5rem;
}

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

/*----------------------------------------------------------------------------
******************************************************************************
** style
******************************************************************************
----------------------------------------------------------------------------*/
.mcon {
  line-height: 1.6;
  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: 100px;
  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: 24px;
  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;
  flex-wrap: wrap;
  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 {
  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 {
  list-style-type: disc;
  margin-left: 1.5em;
  margin-bottom: 0.5em;
}

/*-------------------------------------------------------------------------------------------------------
*********************************************************************************************************
*********************************************************************************************************
******
****** tabスタイル
******
*********************************************************************************************************
*********************************************************************************************************
-------------------------------------------------------------------------------------------------------*/
@media screen and (min-width: 768px) and (max-width: 1024px) {
  /*----------------------------------------------------------------------------
    ******************************************************************************
    ** index
    ******************************************************************************
    ----------------------------------------------------------------------------*/
  .index_slider_bg .index_slider {
    position: relative;
  }
  .index_slider_bg .index_slider img {
    width: 100vw;
    max-width: 100vw;
    height: 430px !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: 90%;
    height: auto;
    min-height: 265px;
    margin: -140px 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;
    color: #fff;
  }
  .index_slider_bg .index_slider .catchcopy_bg .catchcopy h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 15px;
  }
  .index_main {
    padding-top: 80px;
  }
  .index_greet {
    display: flex;
    justify-content: space-between;
  }
  .index_greet .txt .index_greet_link > * {
    width: calc((100% - 1em) / 2) !important;
  }
  .index_greet img {
    width: 350px;
    height: 100%;
    padding-left: 30px;
  }
  /*----------------------------------------------------------------------------
    ******************************************************************************
    ** page
    ******************************************************************************
    ----------------------------------------------------------------------------*/
  .news_list .news_item {
    display: flex;
    align-content: space-between;
  }
  .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 .more a {
    font-size: 14px;
  }
  .contact_form_tbl th {
    display: table-cell;
    width: 300px;
    text-align: right;
  }
  .contact_form_tbl td {
    display: table-cell;
    width: calc(100% - 300px);
  }
  /*----------------------------------------------------------------------------
    ******************************************************************************
    ** navigation
    ******************************************************************************
    ----------------------------------------------------------------------------*/
  nav {
    width: 43% !important;
  }
}/*# sourceMappingURL=sp.css.map */