@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クラスで指定しています。
**        変更する場合はこちらを変更してください。
**
******************************************************************************
******************************************************************************/
/*-------------------------------------------------------------------------------------------------------
*********************************************************************************************************
*********************************************************************************************************
******
****** style
******
*********************************************************************************************************
*********************************************************************************************************
-------------------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
******************************************************************************
** base
******************************************************************************
----------------------------------------------------------------------------*/
html, body {
  display: flex;
  flex-direction: column;
  color: #222;
  font-family: "Open Sans";
}

body {
  min-height: 100vh;
}

/*----------------------------------------------------------------------------
******************************************************************************
**  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;
  height: 80px;
  background: #fff;
}
.hd_bg .hd {
  padding: 20px 10px;
}
.hd_bg .hd .hd_logo {
  width: calc(100% - 12vw);
}
.hd_bg .hd .hd_logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.hd_bg .hd .hd_logo a .hd_ttl {
  color: #7B7878;
  font-size: 13px;
  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: 100%;
  max-width: 100px;
  height: 42px;
  margin-right: 10px;
}
.hd_bg .hd .hd_upperct {
  display: none;
}

/*----------------------------------------------------------------------------
******************************************************************************
** global nav
******************************************************************************
----------------------------------------------------------------------------*/
.nav {
  position: fixed;
  top: 80px;
  right: -100%;
  z-index: 100;
  overflow-x: none;
  overflow-y: auto;
  width: 100%;
  height: calc(100% - 80px);
  padding: 10px;
  background: #55a5df;
  color: #fff;
  transition: All 0.5s ease;
}
.nav .nav_list {
  background: #ffffff;
}
.nav .nav_list > li {
  position: relative;
}
.nav .nav_list > li > a {
  position: relative;
  display: block;
  padding: 1em 1em 1em 1.5em;
  color: #222222;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}
.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 .nav_list > li > a:hover, .nav .nav_list > li > a.current {
  background: #58BCFF;
  color: #fff;
}
.nav .nav_list > li > a:hover::after, .nav .nav_list > li > a.current::after {
  color: #fff;
}
.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: #00538a;
}
.nav .nav_list > li .child_wrap_btn::before {
  top: 50%;
  left: 50%;
  transform: rotate(0deg) translateX(-50%);
}
.nav .nav_list > li .child_wrap_btn::after {
  top: 50%;
  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: #6d7cab;
  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: #00538a;
}
.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;
}
.nav .nav_upperct {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 15px 10px;
}
.nav .nav_upperct .contact a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
  line-height: 1.35;
  text-decoration: none;
  border: 1px solid #D8D8D8;
  transition: all 0.5s ease;
}
.nav .nav_upperct .contact a::after {
  content: attr(data-text);
  margin-left: 10px;
  color: #1c68dd;
  font-family: "Shippori Mincho", serif;
  transition: all 0.5s ease;
}
.nav .nav_upperct .contact a:hover {
  color: #1c68dd;
}
.nav .nav_upperct .contact a:hover::after {
  color: #7B7878;
}
.nav .nav_upperct .nav_box a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  color: #ffffff;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.5s ease;
  background-color: #356997;
  /*&::before {
    content: "";
    width: 21px;
    height: 14px;
    background: url(../images/icon_contact.svg) no-repeat center center;
    background-size: cover;
  }*/
}
.nav .nav_upperct .nav_box a:hover {
  background: #ECFAFF;
  border: 1px solid #1c68dd;
}
.nav .nav_upperct .tel a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  color: #7B7878;
  font-family: "Shippori Mincho", serif;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid #D8D8D8;
}
.nav .nav_upperct .tel a::before {
  content: "";
  width: 21px;
  height: 17px;
  background: url(../images/icon_tel.svg) no-repeat center center;
  background-size: cover;
}

.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;
}
.sp_nav_trigger.sp_active span:nth-of-type(1) {
  transform: translateY(10px) rotate(-45deg);
}
.sp_nav_trigger.sp_active span:nth-of-type(2) {
  opacity: 0;
}
.sp_nav_trigger.sp_active span:nth-of-type(3) {
  transform: translateY(-10px) rotate(45deg);
}

/*----------------------------------------------------------------------------
******************************************************************************
** content
******************************************************************************
----------------------------------------------------------------------------*/
.con {
  padding: 0 10px 30px;
}
.con .main {
  margin-bottom: 30px;
}
.con .side .side_head {
  background-color: #EEE;
  color: #111;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 6px;
  padding: 10px;
  text-align: center;
}
.con .side .side_nav_list li a {
  background: url(../images/icon_arrow_gray.png) no-repeat left center;
  border-bottom: 1px solid #CCC;
  color: #111;
  display: block;
  font-size: 14px;
  padding: 12px 10px;
  text-decoration: none;
}
.con .side .side_nav_list li a:hover {
  text-decoration: underline;
}

/*----------------------------------------------------------------------------
******************************************************************************
** 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: 15px;
  bottom: 15px;
  z-index: 1;
}
.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 {
  margin-bottom: 20px;
}
.index_slider_wrap .index_slider img {
  width: 100%;
  height: 100vh;
  max-height: 300px !important;
  -o-object-fit: cover;
     object-fit: cover;
}
.index_slider_wrap .catchcopy_bg {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  border: 1px solid #D8D8D8;
  border-top: 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 video {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.index_main {
  /*Instagram*/
}
.index_main .index_greet {
  position: relative;
  margin-bottom: 40px;
}
.index_main .index_greet h2 {
  width: 100%;
  padding: 0.5em 0.8em;
  color: #222;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 500;
  border-bottom: 1px solid #D8D8D8;
  display: flex;
  align-items: center;
}
.index_main .index_greet h2::after {
  display: block;
  content: attr(data-text);
  color: #1c68dd;
  font-family: "Shippori Mincho", serif;
  font-size: 12px;
  font-weight: 700;
  padding-left: 10px;
}
.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 10px;
  display: flex;
  align-items: center;
  flex-direction: column-reverse;
}
.index_main .index_greet .index_greet_item img {
  margin-top: 20px;
}
.index_main .index_greet .more {
  display: flex;
  justify-content: center;
  width: 80%;
  margin: 20px auto 50px;
}
.index_main .index_greet .more a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 20px;
  color: #7B7878;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid #58BCFF;
  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 {
  width: 100%;
  padding: 0.5em 0.8em;
  color: #222;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 500;
  border-bottom: 1px solid #D8D8D8;
  display: flex;
  align-items: center;
}
.index_main .index_event h2::after {
  display: block;
  content: attr(data-text);
  color: #1c68dd;
  font-family: "Shippori Mincho", serif;
  font-size: 12px;
  font-weight: 700;
  padding-left: 10px;
}
.index_main .index_event .index_event_scrl {
  max-height: 40vh;
  overflow: auto;
}
.index_main .index_event .index_event_scrl .index_event_item {
  width: 100%;
  padding: 1.2em 0.8em;
  border-bottom: 1px solid #D8D8D8;
}
.index_main .index_event .index_event_scrl .index_event_item .index_event_item_date {
  margin-bottom: 4px;
  font-family: "Open Sans", sans-serif;
}
.index_main .index_event .index_event_scrl .index_event_item .index_event_item_cat {
  width: 8em;
  text-align: center;
}
.index_main .index_event .index_event_scrl .index_event_item .index_event_item_cat .cat_name {
  display: inline-block;
  padding: 1px 14px;
  border-radius: 9999px;
  font-size: 13px;
  margin-right: 4px;
  font-weight: 500;
  white-space: nowrap;
  color: #fff;
  font-family: system-ui;
  margin-bottom: 5px;
}
.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 a {
  color: #1c68dd;
}
.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 {
  display: flex;
  justify-content: center;
  width: 80%;
  margin: 20px auto 50px;
}
.index_main .index_event .more a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 20px;
  color: #222;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid #58BCFF;
  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 {
  width: 100%;
  padding: 0.5em 0.8em;
  color: #7B7878;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 500;
  border-bottom: 1px solid #D8D8D8;
  display: flex;
  align-items: center;
}
.index_main .index_news h2::after {
  display: block;
  content: attr(data-text);
  color: #1c68dd;
  font-family: "Shippori Mincho", serif;
  font-size: 12px;
  font-weight: 700;
  padding-left: 10px;
}
.index_main .index_news .index_news_scrl {
  max-height: 40vh;
  overflow: auto;
}
.index_main .index_news .index_news_scrl .index_news_item {
  width: 100%;
  padding: 1.2em 0.8em;
  border-bottom: 1px solid #D8D8D8;
}
.index_main .index_news .index_news_scrl .index_news_item .index_news_item_date {
  margin-bottom: 10px;
  font-family: "Open Sans", sans-serif;
}
.index_main .index_news .index_news_scrl .index_news_item .index_news_item_ttl a {
  color: #1c68dd;
}
.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 {
  display: flex;
  justify-content: center;
  width: 80%;
  margin: 20px auto 50px;
}
.index_main .index_news .more a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 20px;
  color: #7B7878;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid #58BCFF;
  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;
  padding-bottom: 4rem;
}
.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 .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 {
  width: 100%;
  padding: 2em 0.8em;
  border-bottom: 1px solid #D8D8D8;
}
.news_list .news_item:first-of-type {
  border-top: 1px solid #D8D8D8;
}
.news_list .news_item .news_item_date {
  margin-bottom: 10px;
  font-family: "Open Sans", sans-serif;
}
.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 {
  line-height: 1.6;
  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 0 5px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 25px;
  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: 22%;
  left: 10px;
  height: 60%;
  background: none;
}
.mcon h1 span {
  position: relative;
  z-index: 1;
  padding-left: 20px;
}
.mcon h1.single_ttl {
  font-size: 20px;
}
.mcon h2 {
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  border-bottom: 1px solid #D8D8D8;
  font-size: 18px;
  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: 14%;
  left: 8px;
  z-index: 1000;
}
.mcon h3 {
  position: relative;
  margin-top: 20px;
  margin-bottom: 10px;
  padding: 0.5em 0.3em;
  color: #7B7878;
  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: #7B7878;
  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: #7B7878;
  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: 100px;
  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 .event {
  gap: 20px;
}
.event_main .event .event_inner {
  padding: 0px 0px 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.event_main .event .event_inner .event_ttl {
  line-height: 1.3;
  padding: 5px 0px 0px 24px;
}
.event_main .event .event_inner .event_ttl ul.event_labels {
  margin-top: 0;
  margin-bottom: 0;
  /* 共通スタイル */
  /* 各ラベル個別カラー（sanitize_title の結果に合わせる） */
  /* 実際のクラス名は sanitize_title の出力を確認して合わせてください */
}
.event_main .event .event_inner .event_ttl ul.event_labels .event_label {
  display: inline-block;
  padding: 1px 8px;
  font-size: 13px;
  font-weight: 700;
  border-radius: 20px;
  margin-left: 0;
}
.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 .event_thumbnail {
  width: 100%;
  aspect-ratio: 3/2;
  overflow: hidden;
}
.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;
  align-items: center;
  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;
  font-size: 15px;
  line-height: 1.8;
  border-radius: 0px;
  color: #222;
  border-left: 0px solid #ccc;
  font-family: "M PLUS 1 Code", sans-serif;
}
.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: block;
  margin-bottom: 20px;
}
.event_list .event_item {
  background: #fff;
  border-radius: 10px;
  margin-bottom: 20px;
}
.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 .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 .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: 15px;
  border-bottom: 3px solid #d0d0d0;
  margin-left: 0;
}
.member_main .member .member_list ul.member_items li.member_profile .member_inner {
  display: flex;
  flex-direction: row; /* PCと同じ横並び */
  align-items: flex-start;
  gap: 10px;
  padding-bottom: 10px;
  margin-bottom: 0;
  position: relative;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.member_main .member .member_list ul.member_items li.member_profile .member_inner::-webkit-scrollbar {
  height: 6px;
}
.member_main .member .member_list ul.member_items li.member_profile .member_inner::-webkit-scrollbar-thumb {
  background: #5287b7;
  border-radius: 10px;
}
.member_main .member .member_list ul.member_items li.member_profile .member_inner::-webkit-scrollbar-track {
  background: #e4edf5;
}
.member_main .member .member_list ul.member_items li.member_profile .member_inner .member_thumb {
  flex: 0 0 80px; /* 固定幅 */
  width: 80px;
  aspect-ratio: 3/4;
}
.member_main .member .member_list ul.member_items li.member_profile .member_inner .member_thumb img {
  width: 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: 0 0 250px; /* 必要に応じて調整 */
  min-width: 500px;
  display: flex;
}
.member_main .member .member_list ul.member_items li.member_profile .member_inner .member_text .left_info {
  display: flex;
  margin-bottom: 15px;
  flex-direction: column;
  min-width: 125px;
}
.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: 800;
  background: #e6f0ff;
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 10px;
  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.2rem;
  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;
  width: 100px;
}
.member_main .member .member_list ul.member_items li.member_profile .member_inner .member_text .member_info_row {
  display: flex;
  flex-direction: row;
  width: -moz-max-content;
  width: max-content;
  /* left_col を固定幅にして揃える */
  /* right_col は残りの幅を使用する */
}
.member_main .member .member_list ul.member_items li.member_profile .member_inner .member_text .member_info_row .left_col {
  width: 110px; /* ← 調整可能（PC と同等に） */
  flex-shrink: 0; /* 縮ませない＝揃う */
  text-align: left;
}
.member_main .member .member_list ul.member_items li.member_profile .member_inner .member_text .member_info_row .right_col {
  flex: 1;
  white-space: nowrap; /* 改行させず横スクロール統一 */
}
.member_main .member .member_list ul.member_items li.member_profile .member_inner .member_text .member_info_row .info_item {
  padding: 4px 8px;
  font-size: 0.95rem;
  line-height: 1.6;
  width: 100%;
}
.member_main .member .member_list ul.member_items li.member_profile .member_inner .member_text .member_info_row .member_link {
  margin-top: 10px;
}
.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: 12px;
}
.member_main .member .member_list ul.member_items li.member_profile .member_inner .member_text .member_info_row .member_link a:hover {
  filter: brightness(85%);
}
.member_main .member .member_list ul.member_items li.member_profile:last-child {
  border-bottom: none !important;
}

/*-------メンバーページのサイド--------*/
.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;
}

.page-id-12 .wp-block-columns {
  gap: 0 !important;
}

.director_greeting {
  padding: 0 10px;
}

/*-------------------------------------------------------------------------------------------------------
*********************************************************************************************************
*********************************************************************************************************
******
****** tabスタイル
******
*********************************************************************************************************
*********************************************************************************************************
-------------------------------------------------------------------------------------------------------*/
@media screen and (min-width: 415px) and (max-width: 768px) {
  /*----------------------------------------------------------------------------
  ******************************************************************************
  ** index
  ******************************************************************************
  ----------------------------------------------------------------------------*/
  /*----------------------------------------------------------------------------
  ******************************************************************************
  ** page
  ******************************************************************************
  ----------------------------------------------------------------------------*/
}/*# sourceMappingURL=sp.css.map */