@charset "UTF-8";
@import "../../inc/vk-mobile-nav/package/css/vk-mobile-nav-bright.css";
/*
このファイルの元ファイルは
https://github.com/vektor-inc/vektor-wp-libraries
にあります。修正の際は上記リポジトリのデータを修正してください。
*/
/*
このファイルの元ファイルは
https://github.com/vektor-inc/vektor-wp-libraries
にあります。修正の際は上記リポジトリのデータを修正してください。
*/
/* Bootstrap Adjuster */
/*-------------------------------------------*/
/* vk_post Layout
/*-------------------------------------------*/
/* vk_post common style
/*-------------------------------------------*/
/* Button display
/*-------------------------------------------*/
/* Main section 1 column adjustment
/*-------------------------------------------*/
/* .card
/*-------------------------------------------*/
/* .card-noborder
/*-------------------------------------------*/
/* .media new type
/*-------------------------------------------*/
/* .media old type ( Lightning Default )
/*-------------------------------------------*/
/*-------------------------------------------*/
/* vk_post Layout
/*-------------------------------------------*/
/* If exclude the .vk_posts that, when you select the .media don't work */
.vk_posts .vk_post-col-xs-3 {
  width: calc(25% - 30px);
}
.vk_posts .vk_post-col-xs-4 {
  width: calc(33.3% - 30px);
}
.vk_posts .vk_post-col-xs-6 {
  width: calc(50% - 30px);
}
.vk_posts .vk_post-col-xs-12 {
  width: calc(100% - 30px);
}
@media (min-width: 576px) {
  .vk_posts .vk_post-col-sm-3 {
    width: calc(25% - 30px);
  }
  .vk_posts .vk_post-col-sm-4 {
    width: calc(33.3% - 30px);
  }
  .vk_posts .vk_post-col-sm-6 {
    width: calc(50% - 30px);
  }
  .vk_posts .vk_post-col-sm-12 {
    width: calc(100% - 30px);
  }
}
@media (min-width: 768px) {
  .vk_posts .vk_post-col-md-3 {
    width: calc(25% - 30px);
  }
  .vk_posts .vk_post-col-md-4 {
    width: calc(33.3% - 30px);
  }
  .vk_posts .vk_post-col-md-6 {
    width: calc(50% - 30px);
  }
  .vk_posts .vk_post-col-md-12 {
    width: calc(100% - 30px);
  }
}
@media (min-width: 992px) {
  .vk_posts .vk_post-col-lg-3 {
    width: calc(25% - 30px);
  }
  .vk_posts .vk_post-col-lg-4 {
    width: calc(33.3% - 30px);
  }
  .vk_posts .vk_post-col-lg-6 {
    width: calc(50% - 30px);
  }
  .vk_posts .vk_post-col-lg-12 {
    width: calc(100% - 30px);
  }
}
@media (min-width: 1200px) {
  .vk_posts .vk_post-col-xl-3 {
    width: calc(25% - 30px);
  }
  .vk_posts .vk_post-col-xl-4 {
    width: calc(33.3% - 30px);
  }
  .vk_posts .vk_post-col-xl-6 {
    width: calc(50% - 30px);
  }
  .vk_posts .vk_post-col-xl-12 {
    width: calc(100% - 30px);
  }
}

/*-------------------------------------------*/
/* vk_post common style
/*-------------------------------------------*/
.vk_posts {
  margin-bottom: 2em;
  margin-left: -15px;
  margin-right: -15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  clear: both; /* To be cope with inline image float and so on. */
}

.vk_post {
  margin-left: 15px;
  margin-right: 15px;
  /*
  Basicly wright to without .vk_post.
  This additional is can't over wright only.
   */
}
.vk_post a:hover {
  text-decoration: none;
}
.vk_post_imgOuter {
  position: relative;
}
.vk_post_imgOuter a {
  display: block;
  overflow: hidden;
}
.vk_post_imgOuter_singleTermLabel {
  font-size: 10px;
  padding: 0.3em 0.8em;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 100;
}
.vk_post .vk_post_title {
  font-size: 14px;
  line-height: 1.4;
  font-weight: bold;
  margin-bottom: 0;
}
.vk_post .vk_post_title a {
  color: #333;
}
.vk_post_title_new {
  margin-left: 0.4em;
  font-size: 0.8em;
  white-space: nowrap;
  color: red;
}
.vk_post .vk_post_excerpt {
  margin-top: 0.8em;
  font-size: 12px;
  line-height: 1.6;
  opacity: 0.8;
}
.vk_post .vk_post_date {
  font-size: 11px;
  margin-top: 0.5em;
  color: #666;
}
.vk_post .vk_post_btn {
  font-size: 12px;
  text-decoration: none;
}
.vk_post.card {
  padding: 0;
  margin-bottom: 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  max-width: 100%;
}
.vk_post.card .vk_post_btnOuter {
  width: calc(100% - 2.5rem);
}
.vk_post.media {
  width: 100%;
  padding: 1em 0;
  margin: 0 15px;
  border-bottom: 1px solid #e5e5e5;
}

/*-------------------------------------------*/
/* image effect
/*-------------------------------------------*/
.vk_post_imgOuter {
  position: relative;
  background-size: cover;
  background-position: center 50%;
  border-bottom: 1px solid #e5e5e5;
}
.vk_post_imgOuter ::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0);
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}
.vk_post_imgOuter a:hover .card-img-overlay::after {
  background: rgba(0, 0, 0, 0.5);
}
.vk_post_imgOuter a {
  height: 100%;
}
.vk_post_imgOuter_img {
  position: absolute;
  left: -9999px;
}
.vk_post:not(.card-horizontal) .vk_post_imgOuter:before {
  content: "";
  display: block;
  padding-top: 62%;
}
.vk_post.card-horizontal .vk_post_imgOuter {
  height: 100%;
  border-bottom: none;
}

/*-------------------------------------------*/
/* Button display
/*-------------------------------------------*/
.vk_post-btn-display .vk_post_body {
  position: relative;
  height: 100%;
}
.vk_post-btn-display .vk_post_btnOuter {
  margin-top: 1em;
  position: absolute;
  bottom: 0;
}
.vk_post-btn-display.media .vk_post_body {
  padding-bottom: 45px;
}
.vk_post-btn-display.media .vk_post_btnOuter {
  width: 100%;
}
.vk_post-btn-display.card .vk_post_body {
  padding-bottom: 65px;
}
.vk_post-btn-display.card .vk_post_btnOuter {
  width: calc(100% - 2.5rem);
  bottom: 1.25rem;
}
.vk_post-btn-display .card-text:nth-last-child(2) {
  margin-bottom: 0;
}

/*-------------------------------------------*/
/* Main section 1 column adjustment
/*-------------------------------------------*/
@media (min-width: 576px) {
  .mainSection .vk_post.vk_post-col-sm-12 .vk_post_title {
    font-size: 16px;
  }
  .mainSection .vk_post.vk_post-col-sm-12 .vk_post_excerpt {
    font-size: 14px;
  }
  .mainSection .vk_post.vk_post-col-sm-12.media {
    padding: 1.5rem 0;
  }
  .mainSection .vk_post.vk_post-col-sm-12.media:first-child {
    border-top: 1px solid #e5e5e5;
  }
  .mainSection .vk_post.vk_post-col-sm-12.media .media-img {
    margin-right: 1.4rem;
  }
}

@media (min-width: 768px) {
  .mainSection .vk_post.vk_post-col-md-12 .vk_post_title {
    font-size: 18px;
  }
  .mainSection .vk_post.vk_post-col-md-12 .vk_post_excerpt {
    font-size: 14px;
  }
}

@media (min-width: 992px) {
  .mainSection .vk_post.vk_post-col-lg-12 .vk_post_title {
    font-size: 18px;
  }
  .mainSection .vk_post.vk_post-col-lg-12 .vk_post_excerpt {
    font-size: 14px;
  }
  .mainSection .vk_post.vk_post-col-lg-12.media {
    padding: 1.8rem 0;
  }
  .mainSection .vk_post.vk_post-col-lg-12.media .media-img {
    margin-right: 1.8rem;
  }
}

@media (min-width: 1200px) {
  .mainSection .vk_post.vk_post-col-xl-12 .vk_post_title {
    font-size: 21px;
  }
  .mainSection .vk_post.vk_post-col-xl-12 .vk_post_excerpt {
    font-size: 14px;
  }
}

.mainSection .wp-block-column .vk_post.vk_post-col-sm-12 .vk_post_title,
.mainSection .wp-block-column .vk_post.vk_post-col-md-12 .vk_post_title,
.mainSection .wp-block-column .vk_post.vk_post-col-lg-12 .vk_post_title,
.mainSection .wp-block-column .vk_post.vk_post-col-xl-12 .vk_post_title {
  font-size: 1rem;
}
.mainSection .wp-block-column .vk_post.vk_post-col-sm-12 .vk_post_excerpt,
.mainSection .wp-block-column .vk_post.vk_post-col-md-12 .vk_post_excerpt,
.mainSection .wp-block-column .vk_post.vk_post-col-lg-12 .vk_post_excerpt,
.mainSection .wp-block-column .vk_post.vk_post-col-xl-12 .vk_post_excerpt {
  font-size: 12px;
}

/*-------------------------------------------*/
/* .card
/*-------------------------------------------*/
.card {
  overflow: hidden;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.card-meta {
  font-size: 12px;
}
.card-img-use-bg {
  position: relative;
  left: -9999px;
}
.card a {
  color: inherit;
}

/*-------------------------------------------*/
/* .card-noborder
/*-------------------------------------------*/
.card-noborder.card {
  /*.card.card-noborder にしないと負ける */
  border: none;
  background: none;
}
.card-noborder .vk_post_imgOuter {
  border: none;
}
.card-noborder .card-body {
  padding-left: 0;
  padding-right: 0;
}
.card-noborder.vk_post-btn-display .card-body {
  padding-bottom: 2.8rem;
}
.card-noborder.vk_post-btn-display .vk_post_btnOuter {
  width: 100%;
  bottom: 0;
}

/*-------------------------------------------*/
/* １カラム カード の時の下部の余白を小さく変更
/*-------------------------------------------*/
@media (max-width: 575.98px) {
  .card.vk_post-col-xs-12 {
    margin-bottom: 15px;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .card.vk_post-col-sm-12 {
    margin-bottom: 15px;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .card.vk_post-col-md-12 {
    margin-bottom: 15px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .card.vk_post-col-lg-12 {
    margin-bottom: 15px;
  }
}
@media (min-width: 1200px) {
  .card.vk_post-col-xl-12 {
    margin-bottom: 15px;
  }
}

/*-------------------------------------------*/
/* .card-horizontal
/*-------------------------------------------*/
.card-horizontal-inner {
  height: 100%;
}
.card-horizontal-inner::after {
  content: "";
  display: block;
  clear: both;
}
.card-horizontal-inner-row {
  height: 100%;
}
.card-horizontal-img-right-row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.card-horizontal-reverse .row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.card-horizontal .card-body {
  height: 100%;
}

.card-sm .card-body {
  padding: 1rem 1.2rem;
}
.card-sm .card-title {
  font-size: 0.8rem;
}
.card-sm .card-text {
  font-size: 0.8rem;
  line-height: 1.4;
}
.card-sm .card-meta {
  font-size: 0.7rem;
  line-height: 1.1;
}

.card-post .card-body {
  padding-bottom: 1.5em;
}

/*-------------------------------------------*/
/* .media new type
/*-------------------------------------------*/
.media:first-child {
  border-top: 1px solid #e5e5e5;
}
.media-img {
  border: 1px solid #e5e5e5;
  padding: 1px;
  margin-right: 1rem;
}
.vk_post .media-img {
  width: 35%;
}
.vk_post .media-body {
  width: 65%;
}

/* border-top control */
.media.vk_post-col-xs-6:first-child, .media.vk_post-col-xs-6:nth-child(2) {
  border-top: 1px solid #e5e5e5;
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .media.vk_post-col-sm-6:nth-child(2), .media.vk_post-col-sm-4:nth-child(2), .media.vk_post-col-sm-4:nth-child(3), .media.vk_post-col-sm-3:nth-child(2), .media.vk_post-col-sm-3:nth-child(3), .media.vk_post-col-sm-3:nth-child(4) {
    border-top: 1px solid #e5e5e5;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .media.vk_post-col-md-6:nth-child(2), .media.vk_post-col-md-4:nth-child(2), .media.vk_post-col-md-4:nth-child(3), .media.vk_post-col-md-3:nth-child(2), .media.vk_post-col-md-3:nth-child(3), .media.vk_post-col-md-3:nth-child(4) {
    border-top: 1px solid #e5e5e5;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .media.vk_post-col-lg-6:nth-child(2), .media.vk_post-col-lg-4:nth-child(2), .media.vk_post-col-lg-4:nth-child(3), .media.vk_post-col-lg-3:nth-child(2), .media.vk_post-col-lg-3:nth-child(3), .media.vk_post-col-lg-3:nth-child(4) {
    border-top: 1px solid #e5e5e5;
  }
}
@media (min-width: 1200px) {
  .media.vk_post-col-xl-6:nth-child(2), .media.vk_post-col-xl-4:nth-child(2), .media.vk_post-col-xl-4:nth-child(3), .media.vk_post-col-xl-3:nth-child(2), .media.vk_post-col-xl-3:nth-child(3), .media.vk_post-col-xl-3:nth-child(4) {
    border-top: 1px solid #e5e5e5;
  }
}

/*-------------------------------------------*/
/* .media old type ( Lightning Default )
/*-------------------------------------------*/
.media {
  border-bottom: 1px solid #e5e5e5;
  padding: 1rem 0;
  margin-top: 0;
}
.media > div {
  width: 100%;
}
.media .postList_thumbnail {
  width: 160px;
  margin-bottom: 0.5em;
  padding-right: 30px;
  display: block;
  overflow: hidden;
  float: left;
}
.media .postList_thumbnail a {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid #e5e5e5;
}
.media .postList_thumbnail img {
  width: 100%;
  height: auto;
  border: 1px solid #fff;
}
.media .postList_thumbnail .postList_cateLabel {
  position: absolute;
  bottom: 0;
  left: 0;
}
.media .media-body .media-heading {
  font-size: 20px;
  line-height: 1.4em;
  margin-top: 0;
  margin-bottom: 0.4em;
  font-weight: normal;
  /* Begin heading style reset */
  background: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  padding: 0;
  /* End heading style reset */
}
.media .media-body .media-heading a {
  color: #464646;
}
.media .media-body .media-heading a:hover {
  text-decoration: none;
}
.media p {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 150%;
}
.media .entry-meta_updated {
  display: none;
}
.media .entry-meta_items_author {
  display: none;
}
.media a.media-body_excerpt {
  color: #464646;
  display: block;
  overflow: hidden;
}

@media (max-width: 767px) {
  .media .postList_thumbnail {
    padding-right: 20px;
  }
  .media .media-body .media-heading {
    font-size: 1.2em;
    line-height: 1.3em;
    margin-bottom: 0.5em;
  }
}
@media (max-width: 500px) {
  .media .postList_thumbnail {
    width: 100px;
  }
}
.alignfull {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.alignfull.wp-block-image {
  width: 100vw;
  max-width: 100vw;
}

.alignwide {
  margin-left: calc(25% - 25vw);
  margin-right: calc(25% - 25vw);
}
.alignwide.wp-block-image {
  max-width: 100vw;
}

/* カラム（水平）で点線と余白ができる */
.vk_post .row {
  margin: 0;
}

.wp-block-image {
  max-width: 100%;
  /* 編集画面専用 */
}
.wp-block-image .components-resizable-box__container {
  max-width: 100%;
}
.wp-block-image figcaption {
  text-align: center;
  font-size: 0.75rem;
}

/*-------------------------------------------*/
/*  「最新の記事」ブロック
/*-------------------------------------------*/
.wp-block-latest-posts {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.wp-block-latest-posts li {
  margin: 0;
  padding: 1rem 0;
  border-bottom: 1px dotted #666;
}
.wp-block-latest-posts li a {
  color: #464646;
}
@media (max-width: 768px) {
  .wp-block-latest-posts li a {
    font-size: 1rem;
  }
}
.wp-block-latest-posts li time {
  color: #d44950;
}

.slide-inner img {
  width: 100%;
}

.mainSection > span > .customize-partial-edit-shortcut-button {
  margin-left: -2em;
}

/*-------------------------------------------*/
/*	Search
/*-------------------------------------------*/
.widget_search .widget-title.subSection-title,
.widget_display_search .widget-title.subSection-title,
.widget_product_search .widget-title.subSection-title {
  margin-bottom: 15px;
}

.widget_search form div,
.widget_display_search form div,
.widget_product_search form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.widget_search form div input#s,
.widget_search form div input#bbp_search,
.widget_search form div input.search-field,
.widget_display_search form div input#s,
.widget_display_search form div input#bbp_search,
.widget_display_search form div input.search-field,
.widget_product_search form input#s,
.widget_product_search form input#bbp_search,
.widget_product_search form input.search-field {
  width: 64%;
  border: 1px solid #ccc;
  padding: 6px 12px;
  font-size: 14px;
  margin-right: 0;
  margin-bottom: 0;
}
.widget_search form div input#searchsubmit,
.widget_search form div input#bbp_search_submit,
.widget_search form div button,
.widget_display_search form div input#searchsubmit,
.widget_display_search form div input#bbp_search_submit,
.widget_display_search form div button,
.widget_product_search form input#searchsubmit,
.widget_product_search form input#bbp_search_submit,
.widget_product_search form button {
  width: 33%;
  color: #fff;
  border: none;
  padding: 6px;
  font-size: 16px;
}

iframe {
  border: none;
}

/*-------------------------------------------*/
/*	Download Manager
/*-------------------------------------------*/
.wpdm-download-link {
  margin-top: 5px;
}

.w3eden .media {
  padding: 1em 0;
}
.w3eden .media-body {
  margin-right: 1em;
  margin-bottom: 0.5em;
  -webkit-box-flex: unset;
      -ms-flex: unset;
          flex: unset;
}
.w3eden .package-title:after {
  border: none;
}

@media (max-width: 575.98px) {
  .w3eden .media {
    display: block !important;
  }
  .w3eden .link-template-default.thumbnail .wpdm-download-link.btn {
    display: block;
    margin-top: 10px;
  }
}
/*-------------------------------------------*/
/*	Print
/*-------------------------------------------*/
@media print {
  #page_top {
    display: none !important;
  }
  .vk-mobile-nav-menu-btn,
.vk-mobile-nav,
.mobile-fix-nav {
    display: none;
  }
  a {
    text-decoration: none !important;
  }
  a[href]:after,
abbr[title]:after {
    content: "" !important;
  }
}
/* archives */
.archives-ttl {
  background: #efefef;
  font-size: 32px;
  line-height: 20px;
  color: #000;
  font-weight: bold;
  margin-bottom: 25px;
  padding: 20px 20px !important;
}
@media (max-width: 767px) {
  .archives-ttl {
    font-size: 16px;
    line-height: 10px;
    padding: 10px 15px;
  }
}

.archives-ttl:not(:first-child) {
  margin-top: 80px;
}

.archive-container {
  margin-bottom: 120px;
}

.archives-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
}

.archives-wrap .inbox {
  width: 30%;
  margin-right: 5%;
  margin-bottom: 40px;
}

.archives-wrap .inbox:nth-child(3n) {
  margin-right: 0;
}

.archives-wrap .imgs {
  height: 200px;
  margin-bottom: 12px;
}
@media (max-width: 767px) {
  .archives-wrap .imgs {
    margin-bottom: 0;
  }
}

.archives-wrap .imgs img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.archives-wrap .txts h3 {
  font-size: 16px;
  font-weight: bold;
  color: #707070;
}

.archives-wrap .entry-title {
  font-size: 20px;
  font-weight: bold;
}

.archives-wrap .nv-meta-list {
  display: none;
}

/* ttl */
.pg-titles {
  text-align: left;
  padding: 100px 0 60px;
  color: #c00c0c;
}

.pg-titles h1 {
  font-size: 42px;
  font-weight: bold;
}

.pg-titles p {
  font-size: 20px;
  font-weight: bold;
  color: #707070;
}

/* news */
/* achievement students */
.postList4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.postList4 .inbox {
  width: 22.5%;
  margin-right: 3.333%;
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  .postList4 .inbox {
    width: 48.3333%;
  }
}
@media (max-width: 767px) {
  .postList4 .inbox {
    width: 100%;
    margin: 0;
  }
}
.postList4 .inbox:nth-child(4n) {
  margin-right: 0;
}
@media (max-width: 991px) {
  .postList4 .inbox:nth-child(4n) {
    margin-right: 3.333%;
  }
}
@media (max-width: 991px) {
  .postList4 .inbox:nth-child(2n) {
    margin-right: 0;
  }
}
.postList4 .pagination {
  width: 100%;
}

.postList3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.postList3 .inbox {
  width: 32%;
}
.postList3 .pagination {
  width: 100%;
}

@media (max-width: 767px) {
  .inbox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-bottom: 20px;
    margin-bottom: 20px !important;
    border-bottom: 1px solid #efefef;
  }
}
.inbox .imgs {
  height: 150px;
}
@media (max-width: 767px) {
  .inbox .imgs {
    width: 46.5%;
    height: auto;
  }
}
.inbox .imgs img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 250/150;
}
@media (max-width: 767px) {
  .inbox .txts {
    width: 50%;
    height: auto;
  }
}
.inbox .txts .entry-meta {
  margin: 0.8em 0;
}
@media (max-width: 767px) {
  .inbox .txts .entry-meta {
    margin: 0 0 0.8em 0;
  }
}
.inbox .txts .entry-meta .entry-meta_items {
  font-size: 16px;
  line-height: 26px;
  color: #000;
  font-weight: 300;
}
@media (max-width: 767px) {
  .inbox .txts .entry-meta .entry-meta_items {
    font-size: 12px;
    line-height: 15px;
  }
}
.inbox .txts .entry-meta .entry-meta_items_term_button {
  font-size: 14px;
  line-height: 1;
  color: #c30d23;
  font-weight: 300;
  padding: 4px !important;
}
@media (max-width: 767px) {
  .inbox .txts .entry-meta .entry-meta_items_term_button {
    font-size: 12px;
    padding: 2px 4px !important;
  }
}
.inbox .txts h3 {
  margin: 0.8em 0;
  font-size: 20px;
  font-weight: 600;
  color: #000;
  line-height: 26px;
}
@media (max-width: 767px) {
  .inbox .txts h3 {
    font-size: 12px;
    line-height: 16px;
  }
}

/* faculty */
.faculty-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.faculty-col > .faculty-item {
  width: 48.333%;
}
@media (max-width: 767px) {
  .faculty-col > .faculty-item {
    width: 100%;
  }
}
.faculty-col .wp-block-group__inner-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.faculty-col .wp-block-group__inner-container > div {
  width: 48.333%;
}
@media (max-width: 767px) {
  .faculty-col .wp-block-group__inner-container > div {
    width: 100%;
  }
}

.faculty-item {
  margin-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.faculty-item .faculty-img {
  width: 46.25%;
}
@media (max-width: 767px) {
  .faculty-item .faculty-img {
    width: 100%;
    margin-bottom: 10px;
  }
}
.faculty-item .faculty-info {
  width: 50%;
}
@media (max-width: 767px) {
  .faculty-item .faculty-info {
    width: 100%;
  }
}

.faculty-info__name {
  margin: 0 0 15px;
  color: #212529;
  border-bottom: 1px solid #0c45fd;
  border-bottom: 1px solid #7c8792;
}
.faculty-info__name-name {
  font-size: 28px;
}
.faculty-info__name-pos {
  font-size: 20px;
}
.faculty-info__department {
  margin-bottom: 16px;
}
.faculty-info__department div {
  margin: 0;
  color: #7c8792;
  font-size: 14px;
  line-height: 24px;
}
.faculty-info__desc {
  margin-bottom: 30px;
  color: #212529;
  font-size: 18px;
  line-height: 30px;
  font-weight: bold;
}
.faculty-info__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.faculty-info__tags div {
  display: block;
  background-color: #393939;
  color: #fff;
  font-size: 14px;
  line-height: 24px;
  padding: 5px 15px;
  margin: 0 6px 6px 0;
}

article.faculty-detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
article.faculty-detail h1 {
  margin-bottom: 50px;
  color: #000;
  font-size: 34px;
  line-height: 52px;
  font-weight: bold;
}
article.faculty-detail p {
  color: #2e2e2e;
  font-size: 18px;
  line-height: 40px;
}
article.faculty-detail dl dt, article.faculty-detail dl dd {
  border: 0;
  margin: 0;
  padding: 0;
  color: #7c8792;
  font-size: 18px;
  line-height: 32px;
}

.faculty-modal {
  background-color: #fff;
  padding: 100px 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 767px) {
  .faculty-modal {
    padding: 100px 25px;
  }
}
.faculty-modal .faculty-detail {
  width: calc(100% - 350px);
}
@media (max-width: 767px) {
  .faculty-modal .faculty-detail {
    width: 100%;
    margin-top: 10px;
  }
}
.faculty-modal .faculty-item {
  display: block;
  width: 270px;
}
@media (max-width: 767px) {
  .faculty-modal .faculty-item {
    width: 100%;
  }
}
.faculty-modal .faculty-item .faculty-img {
  margin-bottom: 10px;
  width: 100%;
}
.faculty-modal .faculty-item .faculty-info {
  width: 100%;
}
.faculty-modal .faculty-item .faculty-info__desc {
  display: none;
}

.pum-close.popmake-close {
  width: 86px !important;
  height: 86px !important;
  font-size: 50px !important;
  line-height: 86px !important;
  text-align: center !important;
}

/* モーダル */
.modal-back {
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.6);
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
}

.f-modal {
  background-color: #fff;
  padding: 100px 35px;
  border-radius: 10px;
  width: 90%;
  height: 80%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  overflow-y: scroll;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}

/* クローズボタン */
.close {
  width: 25px;
  height: 25px;
  position: absolute;
  top: calc(10% + 20px);
  right: calc(5% + 10px);
  cursor: pointer;
  z-index: 10000;
}

.close__line {
  width: 4px;
  height: 25px;
  background-color: #000;
  border-radius: 2px;
}

.close__line001 {
  display: inline-block;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.close__line002 {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

/* モーダル出現後のスタイル */
.modal-back.open {
  opacity: 1;
  visibility: inherit;
}

.f-modal.open {
  opacity: 1;
  visibility: inherit;
}