@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クラスで指定しています。
**        変更する場合はこちらを変更してください。
**
******************************************************************************
******************************************************************************/
/*-------------------------------------------------------------------------------------------------------
*********************************************************************************************************
*********************************************************************************************************
******
****** style
******
*********************************************************************************************************
*********************************************************************************************************
-------------------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
******************************************************************************
** base
******************************************************************************
----------------------------------------------------------------------------*/
html {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  overflow-x: hidden;
}

body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  overflow-x: hidden;
  min-height: 100vh;
  background: #f7f7f7;
}

/*----------------------------------------------------------------------------
******************************************************************************
** header
******************************************************************************
----------------------------------------------------------------------------*/
.hd_bg {
  background: rgba(255, 255, 255, 0.9);
  border-top: 2px solid #0098db;
}

.hd_bg .hd {
  padding: 10px 10px;
}

.hd_bg .hd .hd_logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: calc(100% - 15vw);
}

.hd_bg .hd .hd_logo a {
  color: #1b1b1b;
  font-size: 23px;
  text-decoration: none;
}

.hd_bg .hd .hd_txt {
  color: #0098db;
  font-weight: 500;
}

/*----------------------------------------------------------------------------
******************************************************************************
** global nav
******************************************************************************
----------------------------------------------------------------------------*/
.nav {
  position: fixed;
  top: 0px;
  right: -70%;
  z-index: 1000;
  overflow-x: none;
  overflow-y: auto;
  width: 70%;
  height: calc(100% + 500px);
  padding-bottom: 500px;
  background: #fff;
  border-left: 1px solid #0098db;
  -webkit-transition: All 0.5s ease;
  transition: All 0.5s ease;
}

.nav .nav_list > li > a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 1em 1em 1em 1.5em;
  color: #1b1b1b;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.nav .nav_list > li > a:hover, .nav .nav_list > li > a.current {
  background-color: rgba(0, 152, 219, 0.2);
}

.nav .nav_list > li > a::after {
  content: attr(data-text);
  display: block;
}

.nav .nav_list > li.home a::before {
  content: "";
  display: block;
  width: 25px;
  height: 23px;
  margin: 0 10px 0 0;
  background: url(../images/icon_nav_01.png) no-repeat center center;
  background-size: contain;
}

.nav .nav_list > li.facility a::before {
  content: "";
  display: block;
  width: 25px;
  height: 40px;
  margin: 0 10px 0 0;
  background: url(../images/icon_nav_02.png) no-repeat center center;
  background-size: contain;
}

.nav .nav_list > li.rent a::before {
  content: "";
  display: block;
  width: 25px;
  height: 40px;
  margin: 0 10px 0 0;
  background: url(../images/icon_nav_03.png) no-repeat center center;
  background-size: contain;
}

.nav .nav_list > li.event a::before {
  content: "";
  display: block;
  width: 25px;
  height: 40px;
  margin: 0 10px 0 0;
  background: url(../images/icon_nav_04.png) no-repeat center center;
  background-size: contain;
}

.nav .nav_list > li.course a::before {
  content: "";
  display: block;
  width: 25px;
  height: 40px;
  margin: 0 10px 0 0;
  background: url(../images/icon_nav_05.png) no-repeat center center;
  background-size: contain;
}

.nav .nav_list > li.association a::before {
  content: "";
  display: block;
  width: 25px;
  height: 40px;
  margin: 0 10px 0 0;
  background: url(../images/icon_nav_06.png) no-repeat center center;
  background-size: contain;
}

.nav .nav_list > li.access a::before {
  content: "";
  display: block;
  width: 25px;
  height: 25px;
  margin: 0 10px 0 0;
  background: url(../images/icon_nav_07.png) no-repeat center center;
  background-size: contain;
}

.nav .nav_list .nav_clist > li > a {
  background-color: rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  display: block;
  font-size: 13px;
  padding: 1em 1em 1em 2em;
  text-decoration: none;
}

.nav .nav_list .nav_clist > li > a:hover, .nav .nav_list .nav_clist > li > a.current {
  background-color: #000;
  -webkit-box-shadow: 0 0 4px rgba(255, 0, 0, 0.2);
  box-shadow: 0 0 4px rgba(255, 0, 0, 0.2);
}

.nav .nav_list .nav_glist > li > a {
  background-color: rgba(0, 0, 0, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  display: block;
  font-size: 11px;
  padding: 1em 1em 1em 3em;
  text-decoration: none;
}

.nav .nav_list .nav_glist > li > a:hover, .nav .nav_list .nav_glist > li > a.current {
  background-color: #000;
  -webkit-box-shadow: 0 0 4px rgba(255, 0, 0, 0.2);
  box-shadow: 0 0 4px rgba(255, 0, 0, 0.2);
}

.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;
  -webkit-transition: all .4s;
  transition: all .4s;
  -webkit-box-sizing: border-box;
  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;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.sp_nav_trigger.sp_active::after {
  content: 'CLOSE';
  bottom: -25px;
  color: #0098db;
}

.sp_nav_trigger.sp_active span:nth-of-type(1) {
  -webkit-transform: translateY(10px) rotate(-45deg);
  transform: translateY(10px) rotate(-45deg);
  background: #0098db;
}

.sp_nav_trigger.sp_active span:nth-of-type(2) {
  opacity: 0;
  background: #0098db;
}

.sp_nav_trigger.sp_active span:nth-of-type(3) {
  -webkit-transform: translateY(-10px) rotate(45deg);
  transform: translateY(-10px) rotate(45deg);
  background: #0098db;
}

/*----------------------------------------------------------------------------
******************************************************************************
** content
******************************************************************************
----------------------------------------------------------------------------*/
.con {
  padding: 20px 10px 30px;
}

.main {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px dotted #0098db;
}

/*----------------------------------------------------------------------------
******************************************************************************
** side
******************************************************************************
----------------------------------------------------------------------------*/
.side_calender {
  padding: 15px;
  background: #0098db;
  /*
    .eo-fullcalendar {

        .fc-view {

            > table {

                > thead {
                    background: transparent;
                    color: #fff;
                    font-weight: 500;
                    text-align: center;

                    td {
                        border: none;
                    }
                }
            }
        }
    }

    .fc-toolbar h2 {
        margin: 0;
        color: #fff;
        font-size: 1.2em;
    }

    .eo-fullcalendar .fc-view-container .fc-view table tbody .fc-widget-content .fc-day-grid-container .fc-day-grid .fc-row .fc-content-skeleton table thead {
        .fc-sun {
            color: #f00;
        }

        .fc-sat {
            color: #0024c2;
        }
    }

    .fc-unthemed {

        .fc-popover,
        .fc-row,
        hr,
        tbody,
        td,
        th,
        thead {
            border: 2px solid #0098db;
            border-top: 0;
        }
    }

    .fc-ltr .fc-basic-view .fc-day-number {
        text-align: center;
    }

    th.fc-day-header.fc-widget-header {
        &.fc-sun {
            color: #f00;
        }

        &.fc-sat {
            color: #0024c2;
        }
    }

    .eo-fullcalendar-reset.fc-unthemed .fc-today {
        background: #e3f8fc;
        border-color: #0098db !important;
    }

    .fc-day-grid-event {

        .fc-time,
        .fc-title {
            display: block;
            font-size: 0.8em;
            font-weight: 700;
        }
    }
    */
}

.side_calender #wp-calendar {
  width: 100%;
}

.side_calender #wp-calendar caption {
  color: #fff;
  font-size: 1.5em;
}

.side_calender #wp-calendar thead th {
  color: #fff;
  text-align: center;
}

.side_calender #wp-calendar thead th[title="土曜日"] {
  color: #03258c;
}

.side_calender #wp-calendar thead th[title="日曜日"] {
  color: #f00;
}

.side_calender #wp-calendar tbody tr td {
  padding: 10px 0;
  background: #fff;
  font-weight: 500;
  text-align: center;
  border: 2px solid #0098db;
}

.side_calender #wp-calendar tbody tr td a {
  display: block;
}

.side_calender #wp-calendar tbody tr td.eo-before-month {
  color: #ddd;
}

.side_calender #wp-calendar tbody tr td.today {
  background: #ff8800;
}

.side_calender #wp-calendar tbody tr td.today a {
  color: #fff;
}

.side_calender #wp-calendar tbody tr td.eo-event-past {
  background: #eee;
}

.side_calender #wp-calendar tbody tr td.eo-event-past a {
  color: #1b1b1b;
}

.side_calender #wp-calendar tbody tr td.eo-event-future {
  background: #78d9ff;
}

.side_calender #wp-calendar tbody tr td.eo-event-future a {
  color: #1b1b1b;
}

.side_calender #wp-calendar tfoot #eo-widget-prev-month a {
  color: #fff;
}

.side_calender #wp-calendar tfoot #eo-widget-next-month {
  text-align: right;
}

.side_calender #wp-calendar tfoot #eo-widget-next-month a {
  color: #fff;
}

.side_info {
  position: relative;
  padding: 30px;
  background: #fff;
}

.side_info:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: inline-block;
  width: 100%;
  height: 5px;
  background: repeating-linear-gradient(45deg, #77d9ff, #77d9ff 3px, white 3px, white 6px);
}

.side_info dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  font-size: 15px;
}

.side_info dl dt {
  margin: 0;
}

.side_info dl dt::after {
  content: ":";
  display: inline-block;
  margin: 0 3px;
}

.side_info dl dd {
  margin: 0;
}

.side_info dl dd span {
  color: #0098db;
}

/*----------------------------------------------------------------------------
******************************************************************************
** footer
******************************************************************************
----------------------------------------------------------------------------*/
.ft_bg {
  margin-top: auto;
  background: #24b4e9;
}

.ft_bg .ft .ft_nav {
  display: none;
}

.ft_bg .ft_copy {
  padding: 30px 0;
  color: #fff;
  font-size: 10px;
  text-align: center;
}

/*----------------------------------------------------------------------------
******************************************************************************
** pagetop
******************************************************************************
----------------------------------------------------------------------------*/
.pt {
  border-radius: 50%;
  background-color: #03258c;
  bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 40px;
  right: 10px;
  position: fixed;
  width: 40px;
  z-index: 100;
}

.pt:hover {
  opacity: 0.6;
}

.pt_btn {
  cursor: pointer;
  display: block;
  width: 14px;
  height: 14px;
  margin-top: 5px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: relative;
}

.pt_btn::before, .pt_btn::after {
  background-color: #FFF;
  content: "";
  display: block;
  top: 0;
  left: 0;
  position: absolute;
}

.pt_btn::before {
  width: 5px;
  bottom: 0;
}

.pt_btn::after {
  height: 5px;
  right: 0;
}

/*----------------------------------------------------------------------------
******************************************************************************
** pager
******************************************************************************
----------------------------------------------------------------------------*/
.pager {
  margin: 40px 0 0;
}

.pager .pager_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.pager .pager_list .page-numbers {
  display: block;
  width: 2.4rem;
  margin: 0 2px;
  padding: 5px 0;
  background: #fff;
  color: #0098db !important;
  font-size: 1rem;
  text-align: center;
  text-decoration: none;
  border: 1px solid #0098db;
  border-radius: 5px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.pager .pager_list .page-numbers:not(.dots):hover, .pager .pager_list .page-numbers.current {
  background: #0098db;
  color: #FFF !important;
}

.pager .pager_list .page-numbers.dots {
  border-color: #0098db;
}

/*----------------------------------------------------------------------------
******************************************************************************
** index
******************************************************************************
----------------------------------------------------------------------------*/
.index_slider_bg {
  position: relative;
  border-bottom: 1px solid #0098db;
}

.index_slider_bg .index_slider_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 100;
}

.index_slider_bg .index_slider_logo img {
  width: 100%;
  height: auto;
}

.index_main {
  margin-bottom: 30px;
  border-bottom: 1px dotted #0098db;
}

.index_main .index_todays {
  margin-bottom: 80px;
}

.index_main .index_todays h2 {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px 5px;
  background: #0098db;
  color: #fff;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.0;
}

.index_main .index_todays h2::before {
  content: "";
  display: inline-block;
  width: 38px;
  height: 30px;
  margin: 0 5px 0 0;
  background: url(../images/icon_todays.png) no-repeat center center;
  background-size: contain;
}

.index_main .index_todays h2 time {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  font-size: 16px;
  font-weight: 400;
}

.index_main .index_todays .index_todays_scrl {
  padding: 10px 0;
}

.index_main .index_todays .index_todays_scrl ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.index_main .index_todays .index_todays_scrl ul li {
  width: calc((100% - 1em - 1px) / 2);
  margin: 0 1em 1em 0;
}

.index_main .index_todays .index_todays_scrl ul li:nth-child(2n) {
  margin-right: 0;
}

.index_main .index_todays .index_todays_scrl ul li:nth-child(-2 + n) {
  margin-bottom: 0;
}

.index_main .index_todays .index_todays_scrl ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background: #fff;
  text-decoration: none;
}

.index_main .index_todays .index_todays_scrl ul li a img {
  width: 100%;
  height: 130px;
  margin: 0 !important;
  -o-object-fit: cover;
     object-fit: cover;
}

.index_main .index_todays .index_todays_scrl ul li a .event_date {
  padding: 8px 8px 3px;
  color: #0098db;
  font-size: 14px;
  font-weight: 500;
}

.index_main .index_todays .index_todays_scrl ul li a .event_ttl {
  padding: 0 8px 8px;
  color: #1b1b1b;
  font-size: 14px;
  font-weight: 500;
}

.index_main .index_event .index_event_ttl {
  margin: 0 0 20px;
}

.index_main .index_event .index_event_ttl h2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
  margin-bottom: 0px;
  color: #0098db;
  font-size: 32px;
  font-weight: 700;
}

.index_main .index_event .index_event_ttl h2 span {
  display: block;
  margin-bottom: -10px;
  color: #78d9ff;
  font-size: 17px;
}

.index_main .index_event .index_event_ttl .index_event_archive {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin: 10px 0 0;
}

.index_main .index_event .index_event_ttl .index_event_archive a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 120px;
  height: 40px;
  background: #fff;
  color: #0098db;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid #0098db;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.index_main .index_event .index_event_ttl .index_event_archive a::before {
  position: absolute;
  top: 50%;
  right: 3px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  content: "";
  display: inline-block;
  width: 15px;
  height: 5px;
  background: url(../images/icon_arrow_event_blue.png) no-repeat center center;
  background-size: contain;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.index_main .index_event .index_event_ttl .index_event_archive a:hover {
  background: #0098db;
  color: #fff;
  border: 1px solid #fff;
}

.index_main .index_event .index_event_ttl .index_event_archive a:hover::before {
  background: url(../images/icon_arrow_event_white.png) no-repeat center center;
  background-size: contain;
}

.index_main .index_event .index_event_ttl .index_event_archive a::after {
  position: absolute;
  right: -5px;
  bottom: -5px;
  z-index: -1;
  content: "";
  display: block;
  width: 120px;
  height: 40px;
  background: url(../images/i_bg_event_btn.png);
}

.index_main .index_event .index_event_scrl {
  max-height: 50vh;
  margin-bottom: 30px;
  overflow: auto;
}

.index_main .index_event .index_event_scrl .index_event_item {
  width: 100%;
  padding: 10px 0;
  border-bottom: 1px dashed #8c8c8c;
}

.index_main .index_event .index_event_scrl .index_event_item .index_event_item_date {
  color: #8c8c8c;
  font-size: 16px;
  font-weight: 400;
}

.index_main .index_event .index_event_scrl .index_event_item .index_event_item_date:before {
  vertical-align: bottom;
  margin-right: 0.2em;
}

.index_main .index_event .index_event_scrl .index_event_item .index_event_item_ttl {
  padding: 10px 0;
}

.index_main .index_event .index_event_scrl .index_event_item .index_event_item_ttl a {
  color: #1b1b1b;
}

.index_main .index_event .index_event_scrl .index_event_item .index_event_item_ttl a:hover {
  text-decoration: none;
}

.index_main .index_event .index_event_scrl .index_event_item .index_event_item_icon_new {
  display: inline-block;
  color: #0098db;
  font-size: 16px;
  font-weight: 400;
  margin-left: 0.5em;
}

.index_main .index_event .index_event_scrl .index_event_item .index_event_item_icon_new:before {
  content: "NEW";
}

.index_exhibition {
  padding: 50px 10px 60px;
  background: url(../images/i_exhibition_bg.png);
}

.index_exhibition .index_exhibition_ttl {
  margin: 0 0 20px;
}

.index_exhibition .index_exhibition_ttl h2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
  color: #fff;
  font-size: 32px;
  font-weight: 700;
}

.index_exhibition .index_exhibition_ttl h2 span {
  display: block;
  margin-bottom: -10px;
  color: #78d9ff;
  font-size: 17px;
}

.index_exhibition .index_exhibition_ttl .index_exhibition_archive {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin: 10px 0 0;
}

.index_exhibition .index_exhibition_ttl .index_exhibition_archive a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 120px;
  height: 40px;
  background: #fff;
  color: #0098db;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid #fff;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.index_exhibition .index_exhibition_ttl .index_exhibition_archive a::before {
  position: absolute;
  top: 50%;
  right: 3px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  content: "";
  display: inline-block;
  width: 15px;
  height: 5px;
  background: url(../images/icon_arrow_event_blue.png) no-repeat center center;
  background-size: contain;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.index_exhibition .index_exhibition_ttl .index_exhibition_archive a:hover {
  background: #0098db;
  color: #fff;
  border: 1px solid #fff;
}

.index_exhibition .index_exhibition_ttl .index_exhibition_archive a:hover::before {
  background: url(../images/icon_arrow_event_white.png) no-repeat center center;
  background-size: contain;
}

.index_exhibition .index_exhibition_ttl .index_exhibition_archive a::after {
  position: absolute;
  right: -5px;
  bottom: -5px;
  z-index: -1;
  content: "";
  display: block;
  width: 120px;
  height: 40px;
  background: url(../images/i_bg_event_btn.png);
}

.index_exhibition .index_exhibition_list .index_exhibition_item {
  width: 100%;
  margin: 0 0 1em;
}

.index_exhibition .index_exhibition_list .index_exhibition_item:nth-child(3n) {
  margin-bottom: 0;
}

.index_exhibition .index_exhibition_list .index_exhibition_item a {
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
  text-decoration: none;
}

.index_exhibition .index_exhibition_list .index_exhibition_item a .index_exhibition_item_img {
  width: 100%;
  height: 200px;
}

.index_exhibition .index_exhibition_list .index_exhibition_item a .index_exhibition_item_img img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover;";
}

.index_exhibition .index_exhibition_list .index_exhibition_item a .index_exhibition_item_ttl {
  padding: 20px 25px;
}

.index_exhibition .index_exhibition_list .index_exhibition_item a .index_exhibition_item_ttl .index_exhibition_item_date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #0098db;
  font-size: 16px;
  font-weight: 500;
}

.index_exhibition .index_exhibition_list .index_exhibition_item a .index_exhibition_item_ttl .index_exhibition_item_date span {
  display: inline-block;
  padding: 3px 5px;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
}

.index_exhibition .index_exhibition_list .index_exhibition_item a .index_exhibition_item_ttl .index_exhibition_item_date span.session {
  background: #3b8b0c;
}

.index_exhibition .index_exhibition_list .index_exhibition_item a .index_exhibition_item_ttl .index_exhibition_item_date span.notice {
  background: #ff8800;
}

.index_exhibition .index_exhibition_list .index_exhibition_item a .index_exhibition_item_ttl .index_exhibition_item_date span.end {
  background: #f00;
}

.index_exhibition .index_exhibition_list .index_exhibition_item a .index_exhibition_item_ttl .index_exhibition_item_ttl_area {
  color: #1b1b1b;
  font-size: 16px;
  font-weight: 500;
}

.index_link {
  padding: 60px 10px;
}

.index_link .index_link_list li {
  position: relative;
  width: 100%;
  margin: 0 0 10px;
}

.index_link .index_link_list li:last-of-type {
  margin-bottom: 0;
}

.index_link .index_link_list li::after {
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background: url(../images/icon_arrow_blue.png) no-repeat center center;
  background-size: contain;
}

.index_link .index_link_list li:last-of-type {
  margin-right: 0;
}

.index_link .index_link_list li a {
  display: block;
  padding: 20px 10px;
  background: #fff;
  color: #03258c;
  font-family: 'Kiwi Maru', serif;
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  border-top: 3px solid #05aff2;
  border-right: 3px solid #03258c;
  border-bottom: 3px solid #03258c;
  border-left: 3px solid #05aff2;
}

/*----------------------------------------------------------------------------
******************************************************************************
** page
******************************************************************************
----------------------------------------------------------------------------*/
.event_item {
  width: 100%;
  padding: 10px 0;
  border-bottom: 1px dashed #8c8c8c;
}

.event_item:first-of-type {
  border-top: 1px dashed #8c8c8c;
}

.event_item .event_item_date {
  color: #8c8c8c;
  font-size: 16px;
  font-weight: 400;
}

.event_item .event_item_date:before {
  vertical-align: bottom;
  margin-right: 0.2em;
}

.event_item .event_item_ttl {
  padding: 10px 0;
}

.event_item .event_item_ttl a {
  color: #1b1b1b;
}

.event_item .event_item_ttl a:hover {
  text-decoration: none;
}

.event_item .event_item_icon_new {
  display: inline-block;
  color: #0098db;
  font-size: 16px;
  font-weight: 400;
  margin-left: 0.5em;
}

.event_item .event_item_icon_new:before {
  content: "NEW";
}

.eo-upcoming-dates li {
  padding: 10px 15px !important;
  background: #78d9ff;
  text-align: center;
}

.eo-upcoming-dates-show-less,
.eo-upcoming-dates-show-more {
  display: inline-block;
  padding: 10px 15px;
  background: #ddd;
  color: #1b1b1b;
  text-decoration: none;
  border-radius: 5px;
}

.eo-event-details .eo-event-thumbnail {
  float: none !important;
  width: 100% !important;
  height: 250px !important;
  margin: 0 0 10px !important;
  -o-object-fit: cover;
     object-fit: cover;
}

.eo-event-details.event-entry-meta {
  margin-top: 15px !important;
}

.eo-event-details.event-entry-meta .eo-event-date {
  font-style: normal;
}

.event_datail_link a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 90%;
  margin: 15px auto;
  padding: 10px;
  background: #0098db;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  border: 1px solid #0098db;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.event_datail_link a:hover {
  background: #fff;
  color: #0098db;
}

.eo-events-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.eo-events-nav a {
  color: #1b1b1b;
  text-decoration: none;
}

.eo-events-nav a:hover {
  text-decoration: underline;
}

.event_txt_next {
  padding: 10px;
  background: #0098db;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
}

.exhibition_list .exhibition_item {
  width: 100%;
  margin: 0 0 1em;
}

.exhibition_list .exhibition_item:last-of-type {
  margin-bottom: 0;
}

.exhibition_list .exhibition_item a {
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
  text-decoration: none;
}

.exhibition_list .exhibition_item a .exhibition_item_img {
  width: 100%;
  height: 200px;
}

.exhibition_list .exhibition_item a .exhibition_item_img img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover;";
}

.exhibition_list .exhibition_item a .exhibition_item_ttl {
  padding: 20px 25px;
}

.exhibition_list .exhibition_item a .exhibition_item_ttl .exhibition_item_date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #0098db;
  font-size: 16px;
  font-weight: 500;
}

.exhibition_list .exhibition_item a .exhibition_item_ttl .exhibition_item_date span {
  display: inline-block;
  padding: 3px 5px;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
}

.exhibition_list .exhibition_item a .exhibition_item_ttl .exhibition_item_date span.session {
  background: #3b8b0c;
}

.exhibition_list .exhibition_item a .exhibition_item_ttl .exhibition_item_date span.notice {
  background: #ff8800;
}

.exhibition_list .exhibition_item a .exhibition_item_ttl .exhibition_item_date span.end {
  background: #f00;
}

.exhibition_list .exhibition_item a .exhibition_item_ttl .exhibition_item_ttl_area {
  color: #1b1b1b;
  font-size: 16px;
  font-weight: 500;
}

.course_list .eo-events {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.course_list .eo-events li {
  width: calc((100% - 1em - 1px) / 2);
  margin: 0 1em 1em 0 !important;
  list-style: none !important;
}

.course_list .eo-events li:nth-child(2n) {
  margin-right: 0 !important;
}

.course_list .eo-events li:nth-child(-2 + n) {
  margin-bottom: 0 !important;
}

.course_list .eo-events li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background: #fff;
  text-decoration: none;
}

.course_list .eo-events li a img {
  width: 100%;
  height: 130px;
  margin: 0 !important;
  -o-object-fit: cover;
     object-fit: cover;
}

.course_list .eo-events li a .event_date {
  display: none;
}

.course_list .eo-events li a .event_ttl {
  padding: 8px;
  color: #1b1b1b;
  font-size: 14px;
  font-weight: 500;
}

.gmap {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 75%;
}

.gmap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.form-application {
  overflow: hidden;
  table-layout: fixed;
  width: 100%;
  margin: 0 0 20px;
  border: 1px solid #ddd;
}

.form-application input, .form-application textarea {
  max-width: 100% !important;
  margin: 5px 10px 10px 5px;
  padding: 10px;
}

.form-application tr {
  border-top: 1px solid #ddd;
}

.form-application tr:first-child {
  border-top: none;
}

.form-application tr th {
  display: block;
  padding: 18px;
  background: #f7f7f7;
  color: #444;
  font-size: 14px;
  font-weight: bold;
  white-space: nowrap;
  border-bottom: 1px solid #ddd;
}

.form-application tr th .haveto {
  position: relative;
  bottom: 1px;
  margin: 0 0 0 10px;
  padding: 5px;
  background: #ff9393;
  color: #fff;
  font-size: 12px;
  border-radius: 2px;
}

.form-application tr td {
  display: block;
  background: #fff;
  padding: 18px;
}

.form-application tr td .wpcf7-list-item {
  display: inline-block;
  margin: 0 1em 0 0 !important;
}

.btn-submit {
  display: block;
  margin: 0 10px;
  padding: 6px 40px;
  background: #003166;
  color: #fff;
  border: none;
  font-size: 1.2em;
}

/*----------------------------------------------------------------------------
******************************************************************************
** style
******************************************************************************
----------------------------------------------------------------------------*/
.mcon {
  line-height: 1.6;
  word-wrap: break-word;
}

.mcon a img:hover {
  opacity: 0.8;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.mcon h1 {
  margin-bottom: 40px;
  color: #0098db;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.mcon h1 span {
  display: block;
  color: #78d9ff;
  font-size: 14px;
}

.mcon h2 {
  position: relative;
  margin: 10px 0 20px;
  padding: 10px 10px 10px 36px;
  background: #fff;
  border-bottom: 2px solid #0098db;
  font-size: 18px;
}

.mcon h2::before {
  position: absolute;
  top: 50%;
  left: 10px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  content: "";
  display: inline-block;
  width: 21px;
  height: 21px;
  background: url(../images/icon_title.png) no-repeat center center;
  background-size: contain;
}

.mcon h2::after {
  position: absolute;
  bottom: 3px;
  left: 0;
  content: "";
  display: inline-block;
  width: 100%;
  height: 1px;
  border-bottom: 1px dashed #0098db;
}

.mcon h3 {
  position: relative;
  margin: 10px 0 20px;
  padding: 8px 10px 8px 10px;
  font-size: 16px;
  border-bottom: 2px solid #78d9ff;
}

.mcon h3::after {
  position: absolute;
  bottom: 2px;
  left: 0;
  content: "";
  display: inline-block;
  width: 100%;
  height: 1px;
  border-bottom: 1px dashed #78d9ff;
}

.mcon h4 {
  display: inline-block;
  margin: 5px 0 10px;
  font-size: 1.05em;
  padding: 8px 10px 8px 10px;
  border-bottom: 2px solid #78d9ff;
}

.mcon h5,
.mcon h6 {
  margin-bottom: 2px;
  margin-top: 5px;
}

.mcon hr {
  border: none;
  border-top: 1px dotted #000;
}

.mcon iframe {
  max-width: 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;
}
/*# sourceMappingURL=sp.css.map */