@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, body {
  display: flex;
  flex-direction: column;
  background: url("../images/index_bg.png") repeat-x top center;
  background-size: cover;
}

body {
  min-height: 100vh;
  background-repeat: repeat-y;
}

img {
  max-width: 100%;
  height: auto;
}

/*----------------------------------------------------------------------------
******************************************************************************
** header
******************************************************************************
----------------------------------------------------------------------------*/
.hd_bg .i_hd, .hd_bg .hd {
  position: relative;
  padding: 20px;
  max-width: 100% !important;
}
.hd_bg .i_hd .logo, .hd_bg .hd .logo {
  display: flex;
  justify-content: left;
  align-items: center;
  width: calc(100% - 10vw);
  max-width: 1180px;
}
.hd_bg .i_hd .logo img, .hd_bg .hd .logo img {
  width: 60px;
}
.hd_bg .i_hd .logo .title, .hd_bg .hd .logo .title {
  margin-left: 10px;
  line-height: 1.2;
}
.hd_bg .i_hd .logo .title a, .hd_bg .hd .logo .title a {
  display: flex;
  flex-direction: column-reverse;
  text-decoration: none;
}
.hd_bg .i_hd .logo .title a h1, .hd_bg .hd .logo .title a h1 {
  display: block;
  font-size: 2em;
  color: #353230;
}
.hd_bg .i_hd .logo .title a span, .hd_bg .hd .logo .title a span {
  display: block;
  font-size: 1.5em;
  font-weight: bold;
  color: #353230;
  text-align: left;
  padding-bottom: 5px;
}

/*----------------------------------------------------------------------------
******************************************************************************
** global nav
******************************************************************************
----------------------------------------------------------------------------*/
.nav {
  background: #333;
  color: #fff;
  height: calc(100% + 500px);
  padding-bottom: 500px;
  z-index: 100;
  width: 70%;
  overflow-x: none;
  overflow-y: auto;
  top: 0px;
  right: -70%;
  position: fixed;
  transition: All 0.5s ease;
}
.nav .nav_list > li {
  position: relative;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}
.nav .nav_list > li > a {
  font-size: 16px;
  color: #fff;
  font-weight: bold;
  display: block;
  width: calc(100% - 10vw);
  padding: 1.2em 3em 1.2em 1.5em;
  text-decoration: none;
  position: relative;
}
.nav .nav_list > li > a:hover, .nav .nav_list > li > a.current {
  background-color: rgba(0, 0, 0, 0.2);
}
.nav .nav_list > li .child_wrap_btn {
  position: absolute;
  top: 1.5em;
  right: 15px;
  z-index: 10;
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border: 1px solid #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: #fff;
}
.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 {
  background: #333;
}
.nav .nav_list > li .child_wrap > .sub-menu li {
  position: relative;
}
.nav .nav_list > li .child_wrap > .sub-menu li a {
  position: relative;
  display: flex;
  align-items: center;
  padding: 1.25em 3.5em 1.25em 1.5em;
  background: rgba(0, 0, 0, 0.2);
  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 .child_wrap_btn {
  position: absolute;
  top: 0.85em;
  right: 15px;
  z-index: 10;
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border: 1px solid #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: #fff;
}
.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.5);
  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 .child_wrap > .sub-menu {
  background: #ccc;
}
.nav .nav_lang_sp {
  width: 200px;
  margin: 30px auto 30px;
}
.nav .nav_lang_sp a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid #fff;
  transition: all 0.3s ease;
}
.nav .nav_lang_sp a:hover {
  background: #fff;
  color: #000;
  border: 1px solid #fff;
}

.sp_nav_open {
  right: 0 !important;
}

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

/*----------------------------------------------------------------------------
******************************************************************************
** content
******************************************************************************
----------------------------------------------------------------------------*/
.con {
  padding: 20px 10px 30px;
}
.con .main {
  width: 100%;
  margin: 20px auto;
  padding: 20px;
  background-color: rgb(255, 255, 255);
}

/*----------------------------------------------------------------------------
******************************************************************************
** footer
******************************************************************************
----------------------------------------------------------------------------*/
.ft_bg {
  margin-top: auto;
}
.ft_bg .ft {
  padding: 20px 10px;
  background: #fff;
}
.ft_bg .ft .ft_ttl {
  padding-bottom: 8px;
  color: #484848;
  font-size: 1.3em;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.05em;
}
.ft_bg .ft .ft_add {
  font-size: 1.2em;
  text-align: center;
  line-height: 1.5;
  padding-bottom: 15px;
}
.ft_bg .ft .ft_add span {
  font-size: 0.8em;
  padding-right: 10px;
}
.ft_bg .ft .ft_copy {
  display: block;
  font-size: 0.9em;
  text-align: center;
}

/*----------------------------------------------------------------------------
******************************************************************************
** pagetop
******************************************************************************
----------------------------------------------------------------------------*/
.pt {
  border-radius: 50%;
  background-color: #333;
  bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  right: 10px;
  position: fixed;
  width: 40px;
  z-index: 10;
}
.pt:hover {
  opacity: 0.6;
}

.pt_btn {
  cursor: pointer;
  display: block;
  width: 14px;
  height: 14px;
  margin-top: 5px;
  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: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.pager .pager_list .page-numbers {
  border: 1px solid #333;
  border-radius: 5px;
  color: #333 !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: #333;
  color: #FFF !important;
}
.pager .pager_list .page-numbers.dots {
  border-color: #333;
}

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

/*----------------------------------------------------------------------------
******************************************************************************
** index
******************************************************************************
----------------------------------------------------------------------------*/
.index_main {
  margin-bottom: 20px;
}
.index_main .i_txt {
  margin: 0 auto;
  font-size: 1.3em;
  text-align: left;
  letter-spacing: 0.05em;
  line-height: 1.8;
  width: 100%;
}
.index_main .i_catch {
  margin: 0 auto;
  font-size: 1.4em;
  font-weight: bold;
  text-align: left;
  line-height: 1.8;
  color: #353230;
  width: 100%;
}
.index_main .i_catch .center {
  margin: auto;
}
.index_main .i_catch span {
  font-size: 2em;
  font-weight: bold;
  color: #5B5756;
}

.index_news h2 {
  font-size: 2em;
  color: #5B5756;
  text-align: center;
  margin-top: 50px;
}
.index_news .index_news_scrl {
  max-height: 50vh;
  overflow: auto;
}
.index_news .index_news_scrl .index_news_item {
  padding: 10px 0;
  border-bottom: 1px dotted #999;
}
.index_news .index_news_scrl .index_news_item .index_news_item_date {
  margin-bottom: 3px;
  padding-left: 2px;
}
.index_news .index_news_scrl .index_news_item .index_news_item_ttl .index_news_item_icon_new {
  display: inline-block;
  color: #C00;
  font-weight: bold;
  margin-left: 0.5em;
}
.index_news .index_news_scrl .index_news_item .index_news_item_ttl .index_news_item_icon_new:before {
  content: "NEW";
}

/*----------------------------------------------------------------------------
******************************************************************************
** page
******************************************************************************
----------------------------------------------------------------------------*/
.news_list .news_item {
  padding: 10px 0;
  border-bottom: 1px dotted #999;
}
.news_list .news_item .news_item_date {
  margin-bottom: 3px;
  padding-left: 2px;
}
.news_date {
  display: flex;
  justify-content: flex-end;
  margin-top: 10px;
  font-weight: 500;
}

/*----------------------------------------------------------------------------
******************************************************************************
** style
******************************************************************************
----------------------------------------------------------------------------*/
.mcon {
  line-height: 1.6;
  word-wrap: break-word;
}
.mcon .pdf {
  background: url(http://app006.xsrv.jp/humanities/wp-content/uploads/2024/01/PDF_24.png) no-repeat center right;
  margin: 0;
  padding: 2px 32px 2px 0;
  color: #dd0000;
  text-decoration: underline;
}
.mcon a img:hover {
  opacity: 0.8;
  transition: all 0.3s ease;
}
.mcon h1 {
  position: relative;
  padding-bottom: 10px;
  font-size: 22px;
  text-align: center;
  border-bottom: 5px solid #cab8d9;
}
.mcon h1::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 5px;
  background-color: #483d8b;
}
.mcon h2 {
  background: linear-gradient(to right, rgb(205, 225, 232), rgb(238, 232, 193));
  background-repeat: no-repeat;
  color: #353230;
  font-size: 26px;
  font-weight: bold;
  padding: 5px 0 5px 10px;
  margin: 20px 0;
}
.mcon h3 {
  font-size: 25px;
  margin: 10px 0;
  color: #353230;
  position: relative;
  border-bottom: 3px solid #abb1ad;
  margin: 20px 0;
}
.mcon h3:before {
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 20%;
  height: 3px;
  content: "";
  background: #483d8b;
}
.mcon h4 {
  font-size: 22px;
  color: #353230;
  border-left: 4px solid #483d8b;
  padding: 4px 0 4px 10px;
  margin: 20px 0;
}
.mcon h5 {
  color: #353230;
  font-size: 20px;
  margin-bottom: 2px;
  margin-top: 5px;
}
.mcon h6 {
  color: #353230;
  font-size: 18px;
  margin-bottom: 2px;
  margin-top: 5px;
}
.mcon hr {
  border: none;
  border-top: 1px dotted #000;
}
.mcon iframe {
  aspect-ratio: 16/9;
  width: 100%;
  height: 100%;
}
.mcon img {
  max-width: 100%;
  height: auto;
}
.mcon ol {
  margin-top: 1em;
  margin-bottom: 0.5em;
}
.mcon ol li {
  margin-left: 2em;
  margin-bottom: 0.5em;
}
.mcon p {
  margin-bottom: 1em;
  font-size: 1.1em;
  line-height: 1.6;
}
.mcon ul {
  margin-top: 1em;
  margin-bottom: 0.5em;
  list-style-type: disc;
  font-size: 1.1em;
}
.mcon ul li {
  margin-left: 1.5em;
  margin-bottom: 0.5em;
}


.lang {
  display: none;
}/*# sourceMappingURL=sp.css.map */