@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クラスで指定しています。
**        変更する場合はこちらを変更してください。
**
******************************************************************************
******************************************************************************/
/*-------------------------------------------------------------------------------------------------------
*********************************************************************************************************
*********************************************************************************************************
******
****** PCスタイル
******
*********************************************************************************************************
*********************************************************************************************************
-------------------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
******************************************************************************
** base
******************************************************************************
----------------------------------------------------------------------------*/
html, body {
  display: flex;
  flex-direction: column;
  border-top: 2px #5B5756 solid;
  background: url("../images/index_bg.png") repeat-x top center;
  background-size: cover;
}

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

.w_base {
  margin: 0 auto;
  width: 1180px;
}

/*----------------------------------------------------------------------------
******************************************************************************
** header
******************************************************************************
----------------------------------------------------------------------------*/
.hd_bg {
  /*index header*/
  /*index 以外の header*/
}
.hd_bg .i_hd {
  margin-top: 190px;
  margin-bottom: 100px;
  position: relative;
  width: 100%;
}
.hd_bg .i_hd .logo {
  max-width: 1180px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}
.hd_bg .i_hd .logo img {
  width: 110px;
  padding-right: 10px;
}
.hd_bg .i_hd .logo .title {
  line-height: 1.2;
}
.hd_bg .i_hd .logo .title a {
  display: flex;
  flex-direction: column-reverse;
  text-decoration: none;
}
.hd_bg .i_hd .logo .title a h1 {
  display: block;
  font-size: clamp(1.875rem, -0.77rem + 4.13vw, 2.275rem);
  color: #353230;
  text-align: center;
}
.hd_bg .i_hd .logo .title a span {
  display: block;
  font-size: 2.8em;
  font-weight: bold;
  color: #353230;
  text-align: left;
  padding-bottom: 5px;
}
.hd_bg .hd {
  margin-top: 50px;
  margin-bottom: 50px;
  position: relative;
  width: 100%;
}
.hd_bg .hd .logo {
  max-width: 1180px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 80px;
  margin: 0 auto;
}
.hd_bg .hd .logo img {
  width: 70px;
}
.hd_bg .hd .logo .title {
  margin-left: 10px;
  line-height: 1.2;
}
.hd_bg .hd .logo .title a {
  display: flex;
  flex-direction: column-reverse;
  text-decoration: none;
}
.hd_bg .hd .logo .title a h1 {
  display: block;
  font-size: 2.5em;
  color: #353230;
}
.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_bg .nav {
  overflow: visible;
  width: 100%;
}
.nav_bg .nav .nav_list {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.nav_bg .nav .nav_list > li {
  position: relative;
  z-index: 1000;
  display: flex;
  align-items: center;
  height: 24px;
  margin-bottom: 20px;
  border-right: 1px solid #000;
}
.nav_bg .nav .nav_list > li:first-child {
  border-left: 1px solid #000;
  height: 24px;
}
.nav_bg .nav .nav_list > li > a {
  display: block;
  text-align: center;
  font-size: 1.8em;
  font-weight: bold;
  padding: 2px 17px 2px 17px;
  text-decoration: none;
  color: #000;
}
.nav_bg .nav .nav_list > li > a::after {
  content: "";
  display: block;
  border-bottom: 2px solid #222;
  margin: 0 auto;
  width: 0;
  transition: all 0.3s;
}
.nav_bg .nav .nav_list > li > a:hover::after {
  width: 100%;
}
.nav_bg .nav .nav_list > li.current a::after {
  width: 100%;
}
.nav_bg .nav .nav_list > li:hover .child_wrap {
  display: block;
  animation: nav_active 1s ease 0s 1 alternate;
}
@keyframes nav_active {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.nav_bg .nav .nav_list > li > .child_wrap {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 100;
  display: none;
  width: 100%;
  transition: All 0.5s ease;
}
.nav_bg .nav .nav_list > li > .child_wrap > .sub-menu {
  position: relative;
  width: -moz-max-content;
  width: max-content;
  margin-top: 15px;
  background: #333;
}
.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: -moz-max-content;
  width: max-content;
  padding: 10px;
  color: #fff;
  font-size: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: all 0.3s ease;
}
.nav_bg .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_bg .nav .nav_list > li > .child_wrap > .sub-menu > li > a:hover {
  opacity: 0.8;
  background: rgba(0, 0, 0, 0.4);
}
.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: #333;
}
.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;
  color: #fff;
  font-size: 14px;
  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 {
  opacity: 0.8;
  background: rgba(0, 0, 0, 0.4);
}
.nav_bg .nav .nav_list > li:last-of-type > .child_wrap > .sub-menu > li > .child_wrap {
  left: -100%;
}
.nav_bg .nav .nav_lang_sp {
  display: none;
}

/*----------------------------------------------------------------------------
******************************************************************************
** content
******************************************************************************
----------------------------------------------------------------------------*/
.con_bg .con {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 30px 0;
  width: 100%;
}
.con_bg .con .main {
  order: 1;
  width: 960px;
  margin: 20px auto;
  padding: 20px;
  background-color: rgb(255, 255, 255);
}

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

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

.pt_btn {
  cursor: pointer;
  display: block;
  width: 20px;
  height: 20px;
  margin-top: 8px;
  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: 7px;
  bottom: 0;
}
.pt_btn::after {
  height: 7px;
  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;
}

/*----------------------------------------------------------------------------
******************************************************************************
** index
******************************************************************************
----------------------------------------------------------------------------*/
.index_main {
  order: 1;
  width: 1180px;
  margin: 0 auto;
}
.index_main .i_txt {
  margin: 0 auto 130px;
  width: 900px;
  font-size: 1.3em;
  text-align: center;
  letter-spacing: 0.05em;
  line-height: 1.8;
}
.index_main .i_catch {
  margin: 0 auto 230px;
  font-size: 1.4em;
  font-weight: bold;
  text-align: left;
  line-height: 1.8;
  color: #353230;
}
.index_main .i_catch .center {
  margin: auto;
}
.index_main .i_catch span {
  font-size: 2.6em;
  font-weight: bold;
  color: #5B5756;
}
.index_main .index_news {
  width: 960px;
  margin: 0 auto;
  padding-bottom: 160px;
}
.index_main .index_news h2 {
  font-size: 2.6em;
  letter-spacing: 0.05em;
  text-align: center;
  color: #5B5756;
  margin-bottom: 0px;
}
.index_main .index_news .index_news_scrl {
  max-height: 300px;
  overflow: auto;
}
.index_main .index_news .index_news_scrl .index_news_item {
  border-bottom: 1px dotted #999;
  display: flex;
  align-content: space-between;
  padding: 10px 0;
  width: 100%;
  font-size: 1.1em;
  font-weight: 400;
}
.index_main .index_news .index_news_scrl .index_news_item .index_news_item_date {
  width: 130px;
  padding: 8px 30px;
}
.index_main .index_news .index_news_scrl .index_news_item .index_news_item_ttl {
  width: calc(100% - 140px);
  padding: 8px;
}
.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";
}

/*----------------------------------------------------------------------------
******************************************************************************
** page
******************************************************************************
----------------------------------------------------------------------------*/
.news_list .news_item {
  border-bottom: 1px dotted #999;
  display: flex;
  align-content: space-between;
  padding: 10px 0;
  width: 100%;
  font-size: 1.1em;
  font-weight: 400;
}
.news_list .news_item .news_item_date {
  width: 130px;
  padding: 8px 20px;
}
.news_list .news_item .news_item_ttl {
  width: calc(100% - 140px);
  padding: 8px;
}

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

/*----------------------------------------------------------------------------
******************************************************************************
** style
******************************************************************************
----------------------------------------------------------------------------*/
.mcon {
  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: 34px;
  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.2em;
  line-height: 1.8;
}
.mcon ul {
  margin-top: 1em;
  margin-bottom: 0.5em;
  list-style-type: disc;
  font-size: 1.2em;
}
.mcon ul li {
  margin-left: 1.5em;
  margin-bottom: 0.5em;
}


.lang {
  width: 150px;
  height: 35px;
  display: flex;
  position: fixed;
  top: 10px;
  right: 10px;
}

.lang button {
  cursor: pointer;
  border: none;
  outline: none;
  transition: background-color 0.3s ease, color 0.3s ease;
  text-decoration: none;
  color: #000;
  display: block;
  background-color: #fff;
  width: 50%;
}

#jp-btn:hover,
#en-btn:hover {
  background-color: #b0b0b0; /* 灰色 */
  color: #fff; /* 白色 */
}

.lang button.active {
  font-weight: bold;
  cursor: default;
}

#jp-btn.active,
#en-btn.active {
  background-color: #000; /* 黒色 */
  color: #fff;
}

.lang button a {
  color: inherit;
  text-decoration: inherit;
  display: block;
  padding: 4px;
}/*# sourceMappingURL=style.css.map */