@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にて14pxにリセットしています。
** -- 行間は1.6にリセットしています。
**        単位は不要です。(スタイル崩れする可能性有)
** -- コンテンツ内のフォントサイズ・行間は
**        [ base ]のcontentsクラスで指定しています。
**        変更する場合はこちらを変更してください。
**
******************************************************************************
******************************************************************************/
/*-------------------------------------------------------------------------------------------------------
*********************************************************************************************************
*********************************************************************************************************
******
****** PCスタイル
******
*********************************************************************************************************
*********************************************************************************************************
-------------------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
******************************************************************************
** base
******************************************************************************
----------------------------------------------------------------------------*/
html, body {
  display: flex;
  flex-direction: column;
  color: #222;
  font-family: "Open Sans";
}

body {
  min-height: 100vh;
}

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

/*----------------------------------------------------------------------------
******************************************************************************
**  color
******************************************************************************
----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
******************************************************************************
**  font
******************************************************************************
----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
******************************************************************************
** root
******************************************************************************
----------------------------------------------------------------------------*/
:root {
  --main-color: #305496;
  --lesson-color: #42A0DF;
  --symposium-color: #E3952D;
  --dom_event-color: #A184BB;
  --int_event-color: #54AF93;
  --other-color: #4e4e4e;
  --color-white: #fff;
  --color-light-gray: #F7F6F4;
  --color-gray: #E6E6E6;
  --color-dark-gray: #707070;
  --main-font: "Noto Sans JP", sans-serif;
}

/*----------------------------------------------------------------------------
******************************************************************************
** category
******************************************************************************
----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
** イベントカテゴリー色分け
----------------------------------------------------------------------------*/
.cat-all {
  background-color: var(--main-color);
  color: #fff;
  display: inline-block;
  padding: 2px 10px;
  border-radius: 3px;
  font-size: 0.875rem;
  line-height: 1.6;
  white-space: nowrap;
}

.cat-lesson {
  background-color: var(--lesson-color);
  color: #fff;
  display: inline-block;
  padding: 2px 10px;
  border-radius: 3px;
  font-size: 0.875rem;
  line-height: 1.6;
  white-space: nowrap;
}

.cat-symposium {
  background-color: var(--symposium-color);
  color: #fff;
  display: inline-block;
  padding: 2px 10px;
  border-radius: 3px;
  font-size: 0.875rem;
  line-height: 1.6;
  white-space: nowrap;
}

.cat-dom_event {
  background-color: var(--dom_event-color);
  color: #fff;
  display: inline-block;
  padding: 2px 10px;
  border-radius: 3px;
  font-size: 0.875rem;
  line-height: 1.6;
  white-space: nowrap;
}

.cat-int_event {
  background-color: var(--int_event-color);
  color: #fff;
  display: inline-block;
  padding: 2px 10px;
  border-radius: 3px;
  font-size: 0.875rem;
  line-height: 1.6;
  white-space: nowrap;
}

.cat-other {
  background-color: var(--other-color);
  color: #fff;
  display: inline-block;
  padding: 2px 10px;
  border-radius: 3px;
  font-size: 0.875rem;
  line-height: 1.6;
  white-space: nowrap;
}

.cat-uncategorized {
  background-color: var(--color-dark-gray);
  color: #fff;
  display: inline-block;
  padding: 2px 10px;
  border-radius: 3px;
  font-size: 0.875rem;
  line-height: 1.6;
  white-space: nowrap;
}

/*----------------------------------------------------------------------------
******************************************************************************
** header
******************************************************************************
----------------------------------------------------------------------------*/
.hd_bg {
  position: sticky;
  top: 0;
  z-index: 10;
  background: #fff;
}
.hd_bg .hd {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85em 0;
}
.hd_bg .hd .hd_logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.hd_bg .hd .hd_logo a .hd_ttl {
  color: #252525;
  font-size: clamp(1rem, 0.855rem + 0.73vw, 1.4rem);
  font-weight: 500;
  line-height: 1.35;
}
.hd_bg .hd .hd_logo a .hd_ttl span {
  display: block;
  font-family: "Open Sans", sans-serif;
  font-size: 13px;
  font-weight: 400;
}
.hd_bg .hd .hd_logo a img {
  display: block;
  width: auto;
  margin-right: 10px;
}
.hd_bg .hd .hd_upperct {
  display: flex;
  align-items: center;
  gap: 20px;
}
.hd_bg .hd .hd_upperct .contact a {
  color: #252525;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  line-height: 1.35;
  text-decoration: none;
  transition: all 0.5s ease;
}
.hd_bg .hd .hd_upperct .contact a::after {
  content: attr(data-text);
  margin-left: 10px;
  color: #1c68dd;
  font-family: "Shippori Mincho", serif;
  transition: all 0.5s ease;
}
.hd_bg .hd .hd_upperct .contact a:hover {
  color: #1c68dd;
}
.hd_bg .hd .hd_upperct .contact a:hover::after {
  color: #252525;
}
.hd_bg .hd .hd_upperct .hd_box a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  color: #252525;
  font-family: "Open Sans", sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid #D8D8D8;
  transition: all 0.5s ease;
  /*&::before {
    content: "";
    width: 21px;
    height: 14px;
    background: url(../images/icon_contact.svg) no-repeat center center;
    background-size: cover;
  }*/
}
.hd_bg .hd .hd_upperct .hd_box a:hover {
  background: #58BCFF;
  border: 1px solid #58BCFF;
  color: #fff;
}
.hd_bg .hd .hd_upperct .tel {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #252525;
  font-family: "Shippori Mincho", serif;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
}
.hd_bg .hd .hd_upperct .tel::before {
  content: "";
  width: 21px;
  height: 17px;
  background: url(../images/icon_tel.svg) no-repeat center center;
  background-size: cover;
}

/*----------------------------------------------------------------------------
******************************************************************************
** global nav
******************************************************************************
----------------------------------------------------------------------------*/
.nav_bg .nav .nav_list {
  display: flex;
  width: 100%;
  border-top: 1px solid #D8D8D8;
  border-bottom: 1px solid #D8D8D8;
}
.nav_bg .nav .nav_list > li {
  position: relative;
  z-index: 1000;
  display: flex;
  align-items: center;
  width: 100%;
}
.nav_bg .nav .nav_list > li::before {
  content: "";
  display: block;
  width: 1px;
  height: 70%;
  max-height: 48px;
  background: #D8D8D8;
}
.nav_bg .nav .nav_list > li:last-of-type::after {
  content: "";
  display: block;
  width: 1px;
  height: 70%;
  max-height: 48px;
  background: #D8D8D8;
}
.nav_bg .nav .nav_list > li > a {
  display: block;
  width: 100%;
  padding: 0.9em 0;
  color: #252525;
  font-family: "Open Sans", sans-serif;
  font-weight: 550;
  text-align: center;
  text-decoration: none;
  transition: all 0.5s ease;
  font-size: 16px;
}
.nav_bg .nav .nav_list > li > a::after {
  display: block;
  content: attr(data-text);
  color: #1c68dd;
  font-family: "Shippori Mincho", serif;
  font-size: 11px;
  font-weight: 700;
  transition: all 0.5s ease;
}
.nav_bg .nav .nav_list > li > a:hover, .nav_bg .nav .nav_list > li > a.current {
  background: #58BCFF;
  color: #fff;
}
.nav_bg .nav .nav_list > li > a:hover::after, .nav_bg .nav .nav_list > li > a.current::after {
  color: #fff;
}
.nav_bg .nav .nav_list > li.current a {
  background: #58BCFF;
  color: #fff;
}
.nav_bg .nav .nav_list > li.current a::after {
  color: #fff;
}
.nav_bg .nav .nav_list > li:hover .child_wrap {
  display: block;
  animation: nav_active 1s ease 0s 1 alternate;
}
.nav_bg .nav .nav_list > li > .child_wrap {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 100;
  display: none;
  width: 100%;
  background: #58BCFF;
  transition: All 0.5s ease;
}
.nav_bg .nav .nav_list > li > .child_wrap > .sub-menu > li {
  position: relative;
}
.nav_bg .nav .nav_list > li > .child_wrap > .sub-menu > li > a {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 10px 5px 10px 10px;
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  font-family: "Open Sans";
  /*&::before {
    content: "";
    display: block;
    width: 5px;
    height: 5px;
    margin-right: 5px;
    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 {
  background: #58BCFF;
}
.nav_bg .nav .nav_list > li > .child_wrap > .sub-menu > li > a:hover::before {
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}
.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: #58BCFF;
}
.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;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  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 {
  background-color: #58BCFF;
}
.nav_bg .nav .nav_list > li:last-of-type > .child_wrap > .sub-menu > li > .child_wrap {
  left: -100%;
}
.nav_bg .nav .nav_upperct {
  display: none;
}

/*----------------------------------------------------------------------------
******************************************************************************
** content
******************************************************************************
----------------------------------------------------------------------------*/
.con_bg .con {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 20px 0 100px;
}
.con_bg .con .main {
  order: 1;
  width: 100%;
}

/*----------------------------------------------------------------------------
******************************************************************************
** footer
******************************************************************************
----------------------------------------------------------------------------*/
.ft_bg {
  margin-top: auto;
  background: #ECFAFF;
}
.ft_bg .ft {
  padding: 1.25em 0;
}
.ft_bg .ft .ft_copy {
  display: block;
  color: #969697;
  font-family: "Open Sans", sans-serif;
  font-size: 11px;
  text-align: center;
}

/*----------------------------------------------------------------------------
******************************************************************************
** pagetop
******************************************************************************
----------------------------------------------------------------------------*/
.pt {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 100;
}
.pt .pt_wrap {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 63px;
  height: 54px;
  background: #58BCFF;
  border: 1px solid #58BCFF;
  transition: all 0.3s ease;
}
.pt .pt_wrap .pt_btn {
  position: relative;
  top: 8px;
  cursor: pointer;
  display: block;
  width: 26px;
  height: 26px;
  transform: rotate(45deg);
}
.pt .pt_wrap .pt_btn::before, .pt .pt_wrap .pt_btn::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  background: #FFF;
}
.pt .pt_wrap .pt_btn::before {
  width: 2px;
  bottom: 0;
}
.pt .pt_wrap .pt_btn::after {
  height: 2px;
  right: 0;
}
.pt .pt_wrap .pt_ttl {
  position: relative;
  bottom: 3px;
  color: #fff;
  font-family: "Shippori Mincho", serif;
  font-size: 11px;
  font-weight: 700;
}
.pt .pt_wrap:hover {
  background: #fff;
}
.pt .pt_wrap:hover .pt_btn::before, .pt .pt_wrap:hover .pt_btn::after {
  background: #58BCFF;
}
.pt .pt_wrap:hover .pt_ttl {
  color: #58BCFF;
}

/*----------------------------------------------------------------------------
******************************************************************************
** 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 #58BCFF;
  border-radius: 5px;
  color: #58BCFF !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: #58BCFF;
  color: #FFF !important;
}
.pager .pager_list .page-numbers.dots {
  border-color: #58BCFF;
}

/*----------------------------------------------------------------------------
******************************************************************************
** index
******************************************************************************
----------------------------------------------------------------------------*/
.index_slider_wrap {
  display: flex;
  flex-direction: row-reverse;
  height: 100%;
  max-height: 467px;
}
.index_slider_wrap .index_slider {
  width: 100%;
}
.index_slider_wrap .index_slider img {
  width: 100%;
  height: 100vh;
  max-height: 467px !important;
  -o-object-fit: cover;
     object-fit: cover;
}
.index_slider_wrap .catchcopy_bg {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35%;
  padding: 20px;
  border: 1px solid #D8D8D8;
  border-right: none;
}
.index_slider_wrap .catchcopy_bg h2 {
  color: #A5A5A5;
  font-size: 28px;
  font-weight: 400;
  text-align: center;
  line-height: 1.7;
}
.index_slider_wrap .catchcopy_bg h2::before {
  content: "";
  display: flex;
  width: 98px;
  height: 85px;
  margin: 0 auto 20px;
  background: url(../images/main_img_logo.svg) no-repeat center center;
}
.index_slider_wrap .slider_slick {
  width: 100%;
}
.index_slider_wrap .slider_slick img {
  width: 100%;
  height: clamp(6.25rem, 6.021rem + 36.65vw, 55rem);
  -o-object-fit: cover;
     object-fit: cover;
  filter: brightness(0.7);
}
.index_slider_wrap .slider_slick video {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}

.index_main {
  order: 1;
  width: calc(100% - 290px);
  margin-top: 10px;
  /*Instagram*/
}
.index_main .index_greet {
  position: relative;
  margin-bottom: 40px;
}
.index_main .index_greet h2 {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0.5em 0.8em;
  color: #252525;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 500;
  border-bottom: 1px solid #D8D8D8;
}
.index_main .index_greet h2::after {
  display: block;
  content: attr(data-text);
  margin-left: 15px;
  color: #1c68dd;
  font-family: "Shippori Mincho", serif;
  font-size: 12px;
  font-weight: 700;
}
.index_main .index_greet h2[data-en]::after {
  content: attr(data-en);
  display: block;
  color: #1c68e4;
  margin-top: 2px;
}
.index_main .index_greet .index_greet_item {
  padding: 20px 15px;
  gap: 20px;
}
.index_main .index_greet .index_greet_item img {
  padding-top: 20px;
}
.index_main .index_greet .more {
  position: absolute;
  top: 15px;
  right: 0;
}
.index_main .index_greet .more a {
  display: flex;
  align-items: center;
  color: #252525;
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.5s ease;
}
.index_main .index_greet .more a::before {
  display: block;
  content: "";
  width: 15px;
  height: 15px;
  margin-right: 5px;
  background: url(../images/icon_more.svg) no-repeat center center;
}
.index_main .index_greet .more a:hover {
  color: #58BCFF;
}
.index_main .index_event {
  position: relative;
}
.index_main .index_event h2 {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0.5em 0.8em;
  color: #252525;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 500;
  border-bottom: 1px solid #D8D8D8;
}
.index_main .index_event h2::after {
  display: block;
  content: attr(data-text);
  margin-left: 15px;
  color: #1c68dd;
  font-family: "Shippori Mincho", serif;
  font-size: 12px;
  font-weight: 700;
}
.index_main .index_event .index_event_scrl {
  max-height: 280px;
  overflow-y: auto;
  overflow-x: hidden;
}
.index_main .index_event .index_event_scrl .index_event_item {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 1.1em 0.8em;
  border-bottom: 1px dotted #D8D8D8;
  gap: 20px;
  align-items: center; /* jsme-th デザインを取り込む */
}
.index_main .index_event .index_event_scrl .index_event_item .index_event_item_date {
  width: 140px;
  font-family: "Open Sans", sans-serif;
  display: flex;
  gap: 0.3em;
}
.index_main .index_event .index_event_scrl .index_event_item .index_event_item_date .date-separator {
  margin: 0 0.2em;
}
.index_main .index_event .index_event_scrl .index_event_item .index_event_item_cat {
  width: 10em;
  text-align: center;
}
.index_main .index_event .index_event_scrl .index_event_item .index_event_item_cat .cat_name {
  display: inline-block;
  padding: 2px 7px;
  border-radius: 9999px;
  font-size: 13px;
  margin-right: 4px;
  font-weight: 500;
  white-space: nowrap;
  color: #fff;
  font-family: system-ui;
}
.index_main .index_event .index_event_scrl .index_event_item .index_event_item_cat .cat_name.cat-all {
  background: var(--main-color);
}
.index_main .index_event .index_event_scrl .index_event_item .index_event_item_cat .cat_name.cat-lesson {
  background: var(--lesson-color);
}
.index_main .index_event .index_event_scrl .index_event_item .index_event_item_cat .cat_name.cat-symposium {
  background: var(--symposium-color);
}
.index_main .index_event .index_event_scrl .index_event_item .index_event_item_cat .cat_name.cat-dom_event {
  background: var(--dom_event-color);
}
.index_main .index_event .index_event_scrl .index_event_item .index_event_item_cat .cat_name.cat-int_event {
  background: var(--int_event-color);
}
.index_main .index_event .index_event_scrl .index_event_item .index_event_item_cat .cat_name.cat-other {
  background: var(--other-color);
}
.index_main .index_event .index_event_scrl .index_event_item .index_event_item_cat .cat_name.cat-uncategorized {
  background: var(--color-dark-gray);
}
.index_main .index_event .index_event_scrl .index_event_item .index_event_item_ttl {
  width: calc(100% - 210px);
}
.index_main .index_event .index_event_scrl .index_event_item .index_event_item_ttl a {
  color: #2679b1;
}
.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_ttl .index_event_item_icon_new {
  display: inline-block;
  color: #C00;
  font-size: 0.9em;
  font-weight: bold;
  margin-left: 0.3em;
}
.index_main .index_event .index_event_scrl .index_event_item .index_event_item_ttl .index_event_item_icon_new:before {
  content: "NEW";
  font-family: "Open Sans", sans-serif;
}
.index_main .index_event .more {
  position: absolute;
  top: 15px;
  right: 0;
}
.index_main .index_event .more a {
  display: flex;
  align-items: center;
  color: #252525;
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.5s ease;
}
.index_main .index_event .more a::before {
  display: block;
  content: "";
  width: 15px;
  height: 15px;
  margin-right: 5px;
  background: url(../images/icon_more.svg) no-repeat center center;
}
.index_main .index_event .more a:hover {
  color: #58BCFF;
}
.index_main .index_news {
  position: relative;
}
.index_main .index_news h2 {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0.5em 0.8em;
  color: #252525;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 500;
  border-bottom: 1px solid #D8D8D8;
}
.index_main .index_news h2::after {
  display: block;
  content: attr(data-text);
  margin-left: 15px;
  color: #1c68dd;
  font-family: "Shippori Mincho", serif;
  font-size: 12px;
  font-weight: 700;
}
.index_main .index_news .index_news_scrl {
  max-height: 230px;
  overflow: auto;
}
.index_main .index_news .index_news_scrl .index_news_item {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 1.5em 0.8em;
  border-bottom: 1px dotted #D8D8D8;
}
.index_main .index_news .index_news_scrl .index_news_item .index_news_item_date {
  width: 70px;
  font-family: "Open Sans", sans-serif;
}
.index_main .index_news .index_news_scrl .index_news_item .index_news_item_ttl {
  width: calc(100% - 90px);
}
.index_main .index_news .index_news_scrl .index_news_item .index_news_item_ttl a {
  color: #2679b1;
}
.index_main .index_news .index_news_scrl .index_news_item .index_news_item_ttl a:hover {
  text-decoration: none;
}
.index_main .index_news .index_news_scrl .index_news_item .index_news_item_ttl .index_news_item_icon_new {
  display: inline-block;
  color: #C00;
  font-size: 0.9em;
  font-weight: bold;
  margin-left: 0.3em;
}
.index_main .index_news .index_news_scrl .index_news_item .index_news_item_ttl .index_news_item_icon_new:before {
  content: "NEW";
  font-family: "Open Sans", sans-serif;
}
.index_main .index_news .more {
  position: absolute;
  top: 15px;
  right: 0;
}
.index_main .index_news .more a {
  display: flex;
  align-items: center;
  color: #252525;
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.5s ease;
}
.index_main .index_news .more a::before {
  display: block;
  content: "";
  width: 15px;
  height: 15px;
  margin-right: 5px;
  background: url(../images/icon_more.svg) no-repeat center center;
}
.index_main .index_news .more a:hover {
  color: #58BCFF;
}
.index_main #instagram {
  position: relative;
}
.index_main #instagram__ttl {
  margin-bottom: 1.86rem;
}
.index_main #instagram .instagram__con h2 {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0.5em 0.8em;
  color: #252525;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 500;
  border-bottom: 1px solid #D8D8D8;
}
.index_main #instagram .instagram__con h2::after {
  display: block;
  content: attr(data-text);
  margin-left: 15px;
  color: #1c68dd;
  font-family: "Shippori Mincho", serif;
  font-size: 12px;
  font-weight: 700;
}

.index_side {
  order: 2;
  width: 250px;
  margin-top: 10px;
}
.index_side .center_info_box {
  padding: 0px 0px 10px;
  background-color: #f5f5f5;
  border: 1px solid #056cb7;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}
.index_side .center_info_box h2 {
  background-color: #056cb7;
  color: #fff;
  text-align: center;
  padding: 5px 0;
}
.index_side .center_info_box p {
  font-size: 1rem;
  padding: 10px 10px 0;
}
.index_side .side_logo {
  width: 100%;
  text-align: center; /* 中央寄せ */
  margin-bottom: 20px;
}
.index_side .side_logo img {
  max-width: 100%;
  height: auto;
  display: inline-block;
}
.index_side #i_bnr {
  width: 100%;
  margin-top: 10px;
}
.index_side #i_bnr .i_bnr_list ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px; /* バナーの間隔 */
}
.index_side #i_bnr .i_bnr_list ul li a.bnr-text {
  width: 100%;
  padding: 12px 16px 12px 42px;
  border-radius: 3px;
  display: block;
  border: 1px solid #fff;
  text-decoration: none;
  transition: all 0.5s ease;
  background: url(../images/common/bnr_bg.png) no-repeat 16px center, linear-gradient(#fff, #E8EDF1);
  color: #333;
}
.index_side #i_bnr .i_bnr_list ul li a.bnr-text:hover {
  opacity: 0.8;
}
.index_side #i_bnr .i_bnr_list ul li a.bnr-image {
  display: block;
  border: none;
  background: none;
  padding: 0;
}
.index_side #i_bnr .i_bnr_list ul li a.bnr-image img {
  width: 100%;
  height: auto;
  display: block;
  border: none;
  box-shadow: none;
}

/*----------------------------------------------------------------------------
******************************************************************************
** page
******************************************************************************
----------------------------------------------------------------------------*/
.news_list .news_item {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 2em 0.8em;
  border-bottom: 1px solid #D8D8D8;
}
.news_list .news_item .news_item_date {
  width: 75px;
  font-family: "Open Sans", sans-serif;
}
.news_list .news_item .news_item_ttl {
  width: calc(100% - 90px);
}
.news_list .news_item .news_item_ttl a {
  color: #1c68dd;
}
.news_list .news_item .news_item_ttl a:hover {
  text-decoration: none;
}

.news_date {
  display: flex;
  justify-content: flex-end;
  margin-top: -10px;
  margin-bottom: 20px;
  font-weight: 500;
}
.news_date time {
  font-family: "Open Sans", sans-serif;
}

/*----------------------------------------------------------------------------
******************************************************************************
** style
******************************************************************************
----------------------------------------------------------------------------*/
.mcon {
  word-wrap: break-word;
}
.mcon a img:hover {
  opacity: 0.8;
  transition: all 0.3s ease;
}
.mcon h1 {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 50px;
  padding: 0 0 2px 20px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 35px;
  font-weight: 500;
  margin-bottom: 20px;
  background: #095689;
  color: #fff;
  background-size: cover;
}
.mcon h1::before {
  content: "";
  border-left: 10px double #fff;
  position: absolute;
  top: 15%;
  left: 15px;
  height: 70%;
  background: none;
}
.mcon h1 span {
  position: relative;
  z-index: 1;
  padding-left: 20px;
}
.mcon h2 {
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  border-bottom: 1px solid #D8D8D8;
  font-size: 1.4rem;
  font-weight: bold;
  color: #000;
  margin: 20px 0 15px 0;
  padding: 0px 0px 0px 24px;
  border: 1px solid #B9C7D5;
  background: linear-gradient(#fff, #E8EDF1);
  position: relative;
  z-index: 1;
}
.mcon h2::before {
  bottom: -1px;
  content: "";
  background: #085589;
  width: 5px;
  height: 70%;
  position: absolute;
  top: 15%;
  left: 8px;
  z-index: 1000;
}
.mcon h2[data-en]::after {
  content: attr(data-en);
  display: block;
  color: #1c68e4;
  margin-top: 2px;
}
.mcon h3 {
  position: relative;
  margin-top: 20px;
  margin-bottom: 10px;
  padding: 0.5em 0.3em;
  color: #252525;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 500;
}
.mcon h3::before {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: #56617d;
}
.mcon h4 {
  display: flex;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 10px;
  padding: 0.5em 0.3em;
  color: #252525;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 500;
}
.mcon h4::before {
  content: "";
  width: 12px;
  height: 12px;
  margin-right: 10px;
  background: #1c68dd;
}
.mcon h5, .mcon h6 {
  margin-top: 20px;
  margin-bottom: 10px;
  color: #252525;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.1em;
  font-weight: 500;
}
.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;
}
.mcon .equipment-info table thead {
  border: 1px solid #bdbdbd;
  border-bottom: 0;
  background-color: #117a93;
  color: #fff;
}
.mcon .equipment-info table th {
  border: 1px solid #bdbdbd;
  padding: 0.5em;
  font-size: 1.2rem;
}
.mcon .equipment-info table td {
  border: 1px solid #bdbdbd;
  padding: 0 0 0 1rem;
}
.mcon .equipment-info table td:first-child {
  width: 140px;
  white-space: nowrap;
  padding: 10px;
  text-align: center;
  background-color: #e9e9e9;
}

/*----------------------------------------------------------------------------
******************************************************************************
** style 追加CSS
******************************************************************************
----------------------------------------------------------------------------*/
p {
  font-size: 15px;
  line-height: 1.8;
}

/*---------------------------------------
-------イベントページ関連 event-edit-------
-----------------------------------------*/
.event_main {
  order: 1;
  width: calc(100% - 290px);
}
.event_main .event {
  gap: 20px;
}
.event_main .event .event_inner {
  padding: 0px 20px 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.event_main .event .event_inner .event_ttl {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.event_main .event .event_inner .event_ttl ul.event_labels {
  margin-top: 0.5em;
  margin-bottom: 0;
  /* 共通スタイル */
  /* 各ラベル個別カラー（sanitize_title の結果に合わせる） */
  /* 実際のクラス名は sanitize_title の出力を確認して合わせてください */
}
.event_main .event .event_inner .event_ttl ul.event_labels .event_label {
  display: inline-block;
  padding: 4px 12px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 20px;
  margin-left: 8px; /* 見出しとの間隔 */
}
.event_main .event .event_inner .event_ttl ul.event_labels .label-社会貢献 {
  background: #eac3dd;
  color: #7b3360;
}
.event_main .event .event_inner .event_ttl ul.event_labels .label-人材育成 {
  background: #d9f2d0;
  color: #326b46;
}
.event_main .event .event_inner .event_ttl ul.event_labels .label-先進創造研究 {
  background: #9dd0ff;
  color: #1b4665;
}
.event_main .event .event_inner .event_content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.event_main .event .event_inner .event_content figure img {
  width: 100%;
}
.event_main .event .event_inner .event_content .event_thumbnail {
  width: 80%;
  aspect-ratio: 3/2;
  overflow: hidden;
  margin: 0 auto;
}
.event_main .event .event_inner .event_content .event_thumbnail img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 2px solid #ccc;
}
.event_main .event .event_inner .event_content .event_text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.event_main .event .event_inner .event_content .event_text .event_description {
  margin-bottom: 0;
  width: 100%;
}
.event_main .event .event_inner .event_content .event_btn {
  border-radius: 9999px;
  border: 2px solid #5c5c5c;
  text-decoration: none;
  font-weight: bold;
  color: #222;
  padding: 10px 60px;
  width: -moz-max-content;
  width: max-content;
  transition: 0.5s;
  margin: 0 auto;
}
.event_main .event .event_inner .event_content .event_btn:hover {
  background: #58BCFF;
  border: 2px solid #58BCFF;
  color: #fff;
}
.event_main .event .event_inner .event_content #other {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: normal;
}
.event_main .event .event_inner .event_content #other p {
  margin: 0;
  border-radius: 0px;
  color: #222;
  border-left: 0px solid #ccc;
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
  line-height: 1.8;
}
.event_main .event .event_inner .event_content #other p:nth-of-type(2) {
  background: #dceaf7;
  border-left-color: #6aa6d8;
  padding: 10px 15px;
}
.event_main .event .event_inner .event_content #other p:nth-of-type(3) {
  background: #eac3dd;
  border-left-color: #d470b0;
  padding: 10px 15px;
}
.event_main .event .event_inner .event_content #other p:nth-of-type(4) {
  background: #d9f2d0;
  border-left-color: #7bb96e;
  padding: 10px 15px;
}
.event_main .event .event_inner .event_content #other p:nth-of-type(5) {
  background: #fff7d1;
  border-left-color: #d1c162;
  padding: 10px 15px;
}
.event_main .event .event_inner .event_content #other p:nth-of-type(6) {
  background: #f3e0c8;
  border-left-color: #c9995f;
  padding: 10px 15px;
}
.event_main .event .event_inner .event_content #other p:nth-of-type(7) {
  background: #e0e0e0;
  border-left-color: #9e9e9e;
  padding: 10px 15px;
}
.event_main .other_txt1 {
  background: #dceaf7;
  border-left-color: #6aa6d8;
  padding: 10px 15px;
}
.event_main .other_txt2 {
  background: #eac3dd;
  border-left-color: #d470b0;
  padding: 10px 15px;
}
.event_main .other_txt3 {
  background: #d9f2d0;
  border-left-color: #7bb96e;
  padding: 10px 15px;
}
.event_main .other_txt4 {
  background: #fff7d1;
  border-left-color: #d1c162;
  padding: 10px 15px;
}
.event_main .other_txt5 {
  background: #f3e0c8;
  border-left-color: #c9995f;
  padding: 10px 15px;
}
.event_main .other_txt6 {
  background: #e0e0e0;
  border-left-color: #9e9e9e;
  padding: 10px 15px;
}

.event_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}
.event_list .event_item {
  background: #fff;
  border-radius: 10px;
}
.event_list .event_item .event_link {
  text-decoration: none;
  transition: 0.5s;
}
.event_list .event_item .event_link:hover {
  opacity: 0.8;
}
.event_list .event_item .event_inner {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.event_list .event_item .event_inner .event_thumbnail {
  aspect-ratio: 3/2;
  overflow: hidden;
}
.event_list .event_item .event_inner .event_thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 2px solid #ccc;
}
.event_list .event_item .event_inner .event_text .event_date {
  color: #5c5c5c;
}
.event_list .event_item .event_inner .event_text .event_headline {
  color: #5c5c5c;
  margin-bottom: 0;
  font-weight: bold;
  font-size: 1.1em;
}

/*-------イベントページのサイド--------*/
.event_side {
  order: 2;
  width: 250px;
  position: sticky;
  top: 165px;
  height: -moz-fit-content;
  height: fit-content;
}
.event_side .center_info_box {
  padding: 0px 0px 10px;
  background-color: #f5f5f5;
  border: 1px solid #056cb7;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}
.event_side .center_info_box h2 {
  background-color: #056cb7;
  color: #fff;
  text-align: center;
  padding: 5px 0;
}
.event_side .center_info_box p {
  font-size: 1rem;
  padding: 10px 10px 0;
}
.event_side .center_info_box > ul {
  padding: 8px 14px 0px 8px;
}
.event_side .center_info_box > ul > li {
  margin-top: 12px;
}
.event_side .center_info_box > ul > li a {
  display: block;
  padding: 2px 0 2px 22px;
  background: url(../images/common/icon_arrow_right_circle_blue.png) 0 center no-repeat;
  font-size: 0.875rem;
  line-height: 17px;
  color: #404040;
  text-decoration: none;
}
.event_side .center_info_box > ul > li:first-child {
  margin-top: 0;
}

.graduate_container {
  display: grid !important;
  grid-template-columns: repeat(2, 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-buttons .wp-block-button__link {
  border-radius: 9999px;
  border: 2px solid #5c5c5c;
  background-color: #fff;
  text-decoration: none;
  font-weight: bold;
  color: #5c5c5c;
  padding: 10px 60px;
  width: -moz-max-content;
  width: max-content;
  transition: 0.5s;
}
.wp-block-buttons .wp-block-button__link:hover {
  background: #58BCFF;
  border: 2px solid #58BCFF;
  color: #fff;
}

/*---------------------------------------
-------メンバーページ関連 member-page-------
-----------------------------------------*/
.member_main {
  order: 1;
  width: calc(100% - 290px);
}
.member_main .member {
  gap: 20px;
}
.member_main .member .member_list__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.member_main .member .member_list ul.member_items {
  list-style: none;
  margin: 0;
  padding: 0;
}
.member_main .member .member_list ul.member_items li.member_profile {
  list-style: none !important;
  background: #fff;
  margin-bottom: 10px;
  padding: 0 10px;
  border-bottom: 3px solid #d0d0d0;
}
.member_main .member .member_list ul.member_items li.member_profile .member_name {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.member_main .member .member_list ul.member_items li.member_profile .member_name .name_en {
  font-size: 0.9rem;
  font-style: italic;
  color: #555;
}
.member_main .member .member_list ul.member_items li.member_profile .member_name .title_position {
  color: #004c92;
  font-size: 1rem;
  font-weight: 600;
  background: #e6f0ff;
  padding: 2px 6px;
  border-radius: 4px;
}
.member_main .member .member_list ul.member_items li.member_profile .member_inner {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  margin-bottom: 10px;
}
.member_main .member .member_list ul.member_items li.member_profile .member_inner .member_thumb {
  width: 80px;
  aspect-ratio: 3/4;
  overflow: hidden;
  flex-shrink: 0;
}
.member_main .member .member_list ul.member_items li.member_profile .member_inner .member_thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.member_main .member .member_list ul.member_items li.member_profile .member_inner .member_text {
  flex: 1;
  display: flex;
}
.member_main .member .member_list ul.member_items li.member_profile .member_inner .member_text .left_info {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-width: 180px;
}
.member_main .member .member_list ul.member_items li.member_profile .member_inner .member_text .left_info .title_position {
  color: #004c92;
  font-size: 0.8rem;
  font-weight: 600;
  background: #e6f0ff;
  padding: 2px 6px;
  border-radius: 4px;
  width: -moz-fit-content;
  width: fit-content;
}
.member_main .member .member_list ul.member_items li.member_profile .member_inner .member_text .left_info .member_name_block {
  font-size: 1.6rem;
  font-weight: 700;
}
.member_main .member .member_list ul.member_items li.member_profile .member_inner .member_text .left_info .member_name_block .name_en {
  display: block;
  font-size: 0.9rem;
  margin-top: 4px;
  font-style: italic;
  color: #555;
}
.member_main .member .member_list ul.member_items li.member_profile .member_inner .member_text .member_info_row {
  display: flex;
  flex: 1;
  align-items: flex-start;
}
.member_main .member .member_list ul.member_items li.member_profile .member_inner .member_text .member_info_row .left_col,
.member_main .member .member_list ul.member_items li.member_profile .member_inner .member_text .member_info_row .right_col {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.member_main .member .member_list ul.member_items li.member_profile .member_inner .member_text .member_info_row .right_col {
  flex: 2;
}
.member_main .member .member_list ul.member_items li.member_profile .member_inner .member_text .member_info_row .info_item {
  padding: 1px 10px;
  font-size: 1rem;
  line-height: 1.6;
}
.member_main .member .member_list ul.member_items li.member_profile .member_inner .member_text .member_info_row .member_link {
  margin-top: 8px;
}
.member_main .member .member_list ul.member_items li.member_profile .member_inner .member_text .member_info_row .member_link a {
  padding: 4px 12px;
  background: #5287b7;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-size: 13px;
}
.member_main .member .member_list ul.member_items li.member_profile .member_inner .member_text .member_info_row .member_link a:hover {
  opacity: 0.85;
}
.member_main .member .member_list ul.member_items li.member_profile:last-child {
  border-bottom: none !important;
}

/*-------固定ページのサイド--------*/
.member_side {
  order: 2;
  width: 250px;
  position: sticky;
  top: 165px;
  height: -moz-fit-content;
  height: fit-content;
}
.member_side .center_info_box {
  padding: 0px 0px 10px;
  background-color: #f5f5f5;
  border: 1px solid #056cb7;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}
.member_side .center_info_box h2 {
  background-color: #056cb7;
  color: #fff;
  text-align: center;
  padding: 5px 0;
}
.member_side .center_info_box p {
  font-size: 1rem;
  padding: 10px 10px 0;
}
.member_side .center_info_box > ul {
  padding: 8px 14px 0px 8px;
}
.member_side .center_info_box > ul > li {
  margin-top: 12px;
}
.member_side .center_info_box > ul > li a {
  display: block;
  padding: 2px 0 2px 22px;
  background: url(../images/common/icon_arrow_right_circle_blue.png) 0 center no-repeat;
  font-size: 0.875rem;
  line-height: 17px;
  color: #404040;
  text-decoration: none;
}
.member_side .center_info_box > ul > li:first-child {
  margin-top: 0;
}

/* パンくずリスト */
.breadcrumb-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.9em;
  color: #555;
  display: flex;
  flex-wrap: wrap;
}
.breadcrumb-list li {
  display: inline-flex;
  align-items: center;
}
.breadcrumb-list li a {
  color: #0073aa;
  text-decoration: none;
  transition: color 0.3s ease;
}
.breadcrumb-list li a:hover {
  color: #005f8d;
  text-decoration: underline;
}
.breadcrumb-list li + li::before {
  content: ">";
  margin: 0 0.5em;
  color: #999;
}

[id^=group-] {
  scroll-margin-top: 100px;
}
.page-id-12 .wp-block-columns {
  gap: 0 !important;
}

.director_greeting {
  padding: 0 85px 0 0;
}/*# sourceMappingURL=style.css.map */