@charset "UTF-8";
/*----------------------------------------------------------------------------******************************************************************************PC******************************************************************************----------------------------------------------------------------------------*/
@media screen and (min-width: 769px) {
  /*----------------------------------------------------------------------------
  ******************************************************************************
  Layout
  ******************************************************************************
  ----------------------------------------------------------------------------*/
  /* ==== Base === */
  body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }
  .layout {
    max-width: 960px;
    margin: 0 auto;
    overflow: hidden;
  }
  /* ==== Backgraund === */
  #wrap {
    background: #fff;
    border-top: 3px solid #222;
  }
  /* ==== Header === */
  #hd {
    margin: 0.8em auto;
  }
  #hd #site-title .hd_small {
    font-size: 70%;
  }
  /* ==== Navigation === */
  #nav {
    height: 50px;
  }
  #nav ul li {
    float: left;
    width: 20%;
    line-height: 50px;
  }
  #nav ul li a {
    color: #222;
    text-decoration: none;
    display: block;
    text-align: center;
    font-weight: bold;
    border-top: 1px solid #222;
    transition: All 0.5s ease;
  }
  #nav ul li a:hover {
    border-top: 6px solid #222;
    letter-spacing: 0.2em;
  }
  #nav .current {
    border-top: 5px solid #222 !important;
    letter-spacing: 0.2em;
  }
  #nav .current a:hover {
    border-top: 0px solid #222;
    letter-spacing: 0.2em;
  }
  #menu {
    display: none;
  }
  /* ==== Content === */
  #con {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  #sidenav {
    width: 23%;
    max-width: 220px;
    float: left;
    margin-top: 20px;
    border: 1px solid #222;
  }
  #sidenav ul {
    padding: 0px;
  }
  #sidenav ul li a {
    width: 100%;
    box-sizing: border-box;
    height: auto;
    padding: 12px 5px 5px 23px;
    display: block;
    text-decoration: none;
    background: url(../images/common/sidenav_icon.png) no-repeat 6px 16px;
    font-size: 12px;
    color: #222333;
    border-bottom: dotted 1px #CCC;
  }
  #sidenav .category-link {
    cursor: pointer;
  }
  #main {
    width: 75%;
    max-width: 720px;
    float: right;
    margin-top: 20px;
    /* ol,ul */
    /* table */
    /* img */
    /*-- 活動報告　アーカイブ　archive -- */
    /*----------------------------------------------------------------------------
    ******************************************************************************
    ** pager
    ******************************************************************************
    ----------------------------------------------------------------------------*/
  }
  #main ol, #main ul {
    padding: 5px 0px 5px 25px;
  }
  #main ol li, #main ul li {
    padding: 5px 0px;
  }
  #main ul {
    list-style-type: disc;
  }
  #main table {
    margin: 10px 0px;
  }
  #main table th, #main table td {
    padding: 5px;
  }
  #main img {
    max-width: 100%;
  }
  #main a img {
    display: inline-block;
    transition-duration: 0.3s;
    transition-property: transform;
    transform: translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  }
  #main a img:hover, #main a img .shrink:focus, #main a img .shrink:active {
    transform: scale(0.9);
  }
  #main .single_ttl {
    position: static;
    top: none;
    left: none;
  }
  #main .single_thumb {
    text-align: center;
    margin: 20px 0;
  }
  #main .archive_activityreport .main_report {
    margin: 0 auto;
  }
  #main .archive_activityreport .main_report .report_list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
  }
  #main .archive_activityreport .main_report .report_list .report_item {
    background: #fff;
    border-radius: 10px;
  }
  #main .archive_activityreport .main_report .report_list .report_item .report_link {
    text-decoration: none;
    transition: 0.5s;
  }
  #main .archive_activityreport .main_report .report_list .report_item .report_link:hover {
    opacity: 0.8;
  }
  #main .archive_activityreport .main_report .report_list .report_item .report_inner {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  #main .archive_activityreport .main_report .report_list .report_item .report_inner .report_thumbnail {
    aspect-ratio: 1/1;
    overflow: hidden;
  }
  #main .archive_activityreport .main_report .report_list .report_item .report_inner .report_thumbnail img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  #main .archive_activityreport .main_report .report_list .report_item .report_inner .report_text .report_date {
    color: #000;
  }
  #main .archive_activityreport .main_report .report_list .report_item .report_inner .report_text .report_headline {
    color: #000;
    margin-bottom: 0;
    font-weight: bold;
    font-size: 1.1em;
  }
  #main .archive_activityreport .main_report .report_list .report_item .report_inner .report_text p {
    color: #000;
  }
  #main .pager {
    margin: 50px 0 40px;
  }
  #main .pager .pager_list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }
  #main .pager .pager_list .page-numbers {
    border: 1px solid #32a6f3;
    border-radius: 5px;
    color: #32a6f3 !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;
  }
  #main .pager .pager_list .page-numbers:not(.dots):hover, #main .pager .pager_list .page-numbers.current {
    background: #32a6f3;
    color: #FFF !important;
  }
  #main .pager .pager_list .page-numbers.dots {
    border-color: #32a6f3;
  }
  #news #main {
    width: 100%;
    max-width: 960px;
    float: none;
  }
  /* ==== Footer === */
  #ft {
    margin-top: auto;
    padding-top: 35px;
    padding-bottom: 35px;
    text-align: center;
    color: #fff;
    background: #222;
  }
  /*----------------------------------------------------------------------------
  ******************************************************************************
  Head
  ******************************************************************************
  ----------------------------------------------------------------------------*/
  h1 {
    line-height: 1em;
  }
  h1 a {
    color: #222 !important;
    text-decoration: none;
  }
  h1 span {
    display: none;
    font-size: 0.65em;
  }
  h2 {
    color: #333;
    border-bottom: 4px double #222;
    border-top: 4px double #222;
    font-size: 34px;
    line-height: 1.2em;
    font-weight: normal;
    padding: 0.5em;
  }
  #sidenav h2 {
    color: #fff;
    border: 1px solid #222;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    padding: 10px;
    height: 50px;
    text-shadow: 1px 2px 0px rgb(0, 0, 0), 2px 2px 2px rgba(255, 255, 255, 0.5);
    background: url(../images/nav_bag.png) top center #222;
  }
  h3 {
    margin: 0.8em 0 0.4em 0;
    font-size: 1.4em;
    font-weight: bold;
    padding: 0.6em 0 0.6em 0.8em;
    border-left: 8px double #666;
    color: #000000;
  }
  h4 {
    font-size: 1.2em;
    font-weight: normal;
    padding: 0em 0 0em 0.4em;
    border-left: 5px double #222;
    margin: 0.6em 0 0.4em 0;
  }
  h1.img, h2.img, h3.img, h4.img, h5.img, h6.img {
    margin: 0;
    padding: 0;
    background: none;
    border: none;
  }
  /*----------------------------------------------------------------------------
  ******************************************************************************
  Original
  ******************************************************************************
  ----------------------------------------------------------------------------*/
  /* ==== Index === */
  #i_img img {
    width: 100%;
  }
  #i_main {
    width: 75%;
    max-width: 720px;
    float: left;
    margin-top: 20px;
  }
  #i_news {
    height: 300px;
    overflow: auto;
    border: none;
  }
  #i_news table td {
    vertical-align: top;
    font-size: 1em;
    padding: 10px;
  }
  #i_news table tr {
    border-bottom: 1px dotted #CCC;
  }
  #i_news table td.date {
    width: 160px;
    background: url(../images/common/news_icon.gif) 4px 14px no-repeat;
    padding-left: 20px;
  }
  #i_bnr {
    margin-top: 20px;
    width: 23%;
    max-width: 220px;
    float: right;
  }
  #i_bnr .i_bnr_list ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
  }
  #i_bnr .i_bnr_list ul li {
    float: left;
    margin-bottom: 4px;
    width: 100%;
    margin-bottom: 8px;
  }
  #i_bnr .i_bnr_list ul li a {
    display: block;
    width: 100%;
    text-decoration: none;
    color: #222;
    padding: 15px 0 15px 30px;
    border-bottom: 1px solid #222;
    background: url(../images/common/bnr_bg.png) 8px center no-repeat;
    transition: All 0.5s ease;
  }
  #i_bnr .i_bnr_list ul li a:hover {
    color: #fff;
    background: url(../images/common/bnr_bg_hover.png) 8px center no-repeat #222;
    border-radius: 6px;
  }
  .lab_info_box {
    padding: 10px 5px;
    background-color: #f5f5f5;
    border: 1px solid #000;
    font-size: 14px;
    line-height: 1.6;
    float: right;
    width: 23%;
    margin-top: 20px;
  }
  .lab_info_box p {
    font-size: 12px;
  }
  .lab_info_box p span {
    font-weight: bold;
    font-size: 1.2rem;
  }
  #main {
    /*----staff----*/
  }
  #main .archive_staff-cat .staff-content__item h3 {
    font-size: 1.6rem;
  }
  #main .archive_staff-cat .staff-content__item h3 span {
    font-size: 1.4rem;
  }
  #main .archive_staff-cat .staff-content__columns {
    display: flex;
    align-items: center;
  }
  #main .archive_staff-cat .staff-content__columns .col1 img {
    max-width: none;
    padding: 10px;
    margin: 10px 0;
  }
  #main .archive_staff-cat .staff-content__columns .col2 table {
    width: 90%;
    margin: 20px auto;
    border: 1px solid #999;
    border-top: none;
  }
  #main .archive_staff-cat .staff-content__columns .col2 table th, #main .archive_staff-cat .staff-content__columns .col2 table td {
    display: block;
    width: 100%;
    border-top: 1px solid #999;
    padding: 5px 10px;
  }
  #main .archive_staff-cat .staff-content__columns .col2 table th {
    background: #eee;
  }
  #main .archive_staff-cat .staff-content__columns .col2 table td {
    line-height: 1.8;
  }
}
/*----pagetop----*/
#page-top {
  position: fixed;
  bottom: 10px;
  right: 20px;
  font-size: 77%;
}
#page-top a {
  background: #222;
  border: #fff 1px solid;
  text-decoration: none;
  color: #fff;
  width: 120px;
  padding: 20px 0;
  text-align: center;
  display: block;
  border-radius: 5px;
}
#page-top a:hover {
  text-decoration: none;
}

.pc_only {
  display: block;
}

.sp_only {
  display: none;
}

.pc_none {
  display: none;
}

.metaslider .flexslider {
  margin: 0 !important;
}/*# sourceMappingURL=style.css.map */