@charset "UTF-8";
/* Scss Document */
.common {
  font-size: 100%;
}
.common h1 {
  font-size: 120%;
}
.common h2 {
  font-size: 100%;
  border-bottom: 1px solid #eee;
}
.common .fz90p {
  font-size: 90%;
}
.common .fz80p {
  font-size: 80%;
}
.common .mb1r {
  margin-bottom: 1rem;
}
.common .mb2r {
  margin-bottom: 2rem;
}
.common .tac {
  text-align: center;
}
.common .tal {
  text-align: left;
}
.common .tar {
  text-align: right;
}
.common .container {
  width: 1000px;
  margin: 3rem auto;
}
.common .w700 {
  width: 700px;
}
.common dt {
  color: #666;
  font-size: 80%;
}
.common dd {
  margin-bottom: 0.5em;
}
.common .btn {
  display: inline-block;
  background-color: #b01f24;
  color: #fff;
  padding: 0.5em 1em;
  font-size: 100%;
  text-decoration: none;
  transition: 0.3s;
}
.common .btn:hover {
  transform: scale(1.1);
}

@media (max-width: 320px) {
  .common > * {
    box-sizing: border-box;
  }
  .common .container {
    width: 100%;
    margin: 1rem auto;
    padding: 0 1rem;
  }
  .common .w700 {
    width: 100%;
  }
}

/* mixins */
* {
  box-sizing: border-box;
}

.btn {
  background-color: #b01f24;
  color: white;
  font-size: 100%;
  text-decoration: none;
  display: inline-block;
  padding: 0.4rem 1.2rem;
  line-height: 1.1;
  font-weight: bold;
  margin: 1px 4px;
  transition: 0.2s;
  color: white;
}
.btn:hover {
  box-shadow: 0 0 4px #d9292f;
  background-color: #d9292f;
}
.btn:visited,
.btn:link,
.btna {
  color: white;
}

a,
a:link {
  color: #b01f24;
  transition: 0.3s;
}

a:hover {
  color: #b01f24;
  text-decoration: none;
}

a:visited {
  color: #b01f24;
}

h1,
h2,
h3,
h4 {
  font-family: "FOT-筑紫ゴシック Pr5N D";
}

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

body {
  margin: 0;
  padding: 0;
  font-family: "FOT-筑紫ゴシック Pr5 M", "Roboto Condensed", sans-serif;
  line-height: 1.6;
  color: #333;
  font-weight: 500;
  font-size: 110%;
}

strong {
  font-weight: bold;
  font-family: "FOT-筑紫ゴシック Pro B", "Roboto Condensed", sans-serif;
}

em {
  background-color: yellow;
  font-style: normal;
}

.container {
  width: 1000px;
  margin: auto;
}

blockquote {
  background-color: #efefef;
  position: relative;
  margin: 0;
  padding: 2rem 1rem 1rem 2rem;
}

blockquote:before {
  content: "“";
  font-size: 600%;
  line-height: 1em;
  font-family: sans-serif;
  color: #999;
  position: absolute;
  left: 0;
  top: 0;
}

.global_header {
  background-color: #b01f24;
  padding: 1.5rem 0 1rem;
}
.global_header h1 {
  width: 241px;
  margin: 0 auto;
}
.global_header h1 img {
  width: 100%;
}
.global_header h2 {
  color: white;
  text-align: center;
  font-size: 120%;
  font-weight: normal;
}
.global_header h2 strong {
  margin: 0 0.5rem;
  font-weight: bold;
}
.global_header h2 .jpt {
  text-align: center;
  font-size: small;
  font-weight: bold;
  display: block;
  color: white;
}

.global_footer {
  background-color: #b01f24;
  padding: 2rem 0;
  margin-top: 2rem;
  text-align: center;
}
.global_footer .company_logo {
  margin: 0 0 1rem;
}
.global_footer .company_logo img {
  display: block;
  margin: auto;
  width: 120px;
}
.global_footer .copyright {
  font-size: small;
  margin: 0;
  color: white;
}
.global_footer .copyright a {
  color: white;
}

.section_tit {
  text-align: center;
}

main.container::after {
  display: block;
  content: "";
  clear: both;
}

.main_container {
  width: 800px;
  float: left;
}

.side_container {
  width: 180px;
  float: right;
  font-size: 85%;
  padding-top: 1rem;
}
.side_container .section_tit {
  text-align: left;
  font-size: 1rem;
  margin-bottom: 0.2rem;
}
.side_container > section {
  margin-bottom: 2rem;
}

.article_list {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
}
.article_list > * {
  -ms-flex: 1 0 0;
  flex: 1 0 0;
}
.article_list li {
  margin: 7px;
  padding: 0 0 0.5rem;
}
.article_list li a {
  display: block;
  text-decoration: none;
  color: #333;
}
.article_list li a:hover .article_thumbnail {
  -webkit-filter: saturate(150%) brightness(120%);
  filter: saturate(150%) brightness(120%);
  transform: scale(1.02);
}
.article_list li .article_thumbnail {
  width: 100%;
  height: 150px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  border-radius: 2px;
  transition:
    transform 0.1s,
    -webkit-filter 0.4s;
  transition:
    filter 0.4s,
    transform 0.1s;
  transition:
    filter 0.4s,
    transform 0.1s,
    -webkit-filter 0.4s;
  border: 1px solid #efefef;
}
.article_list li .article_captions h4 {
  color: #b01f24;
  margin: 0.5rem 0 0.5rem;
  font-size: 100%;
}
.article_list li .article_captions .article_data_wrapper {
  font-size: x-small;
}
.article_list li .article_captions .article_data_wrapper > div {
  display: inline-block;
  margin-right: 0.5rem;
}
.article_list li .article_captions .article_data_wrapper .article_tags {
  line-height: 1.2;
  display: block;
  color: #999;
}

.latest .article_list {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: stretch;
  -ms-grid-row-align: stretch;
  align-items: stretch;
}

.latest li {
  width: 20%;
  -ms-flex: auto;
  flex: auto;
}
.latest li .article_captions h4 {
  font-size: 85%;
  line-height: 1.2;
  font-family: sans-serif;
  font-weight: bold;
}
.latest li:first-of-type,
.latest li:nth-of-type(2),
.latest li:nth-of-type(3),
.latest li:nth-of-type(4) {
  width: 45%;
}

.your_interesting .your_interesting_wrapper,
.your_interesting .your_interesting_items {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.your_interesting .your_interesting_wrapper {
  margin-top: 1rem;
}

.your_interesting .your_interesting_items span {
  margin-left: 0.5rem;
}

/*
single page
*/
.single .global_header {
  padding: 0.5rem 2rem 0.3rem;
}
.single .global_header::after {
  display: block;
  content: "";
  clear: both;
}
.single .global_header h1 {
  width: 120px;
  margin: 3px auto 0;
  float: left;
}
.single .global_header h1 a {
  display: block;
  line-height: 1;
}
.single .global_header h1 a img {
  vertical-align: middle;
}
.single .global_header h2 {
  float: right;
  font-size: small;
  margin: 0.5rem 0;
  line-height: 1.2;
}
.single .global_header h2 .jpt {
  margin-top: 5px;
  text-align: right;
}

.single .main_container {
  float: none;
  margin: auto;
}

.single .side_container {
  float: none;
  width: auto;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  margin: 2rem 0 4rem;
}
.single .side_container > * {
  -ms-flex: 1 0 0;
  flex: 1 0 0;
}
.single .side_container > section {
  margin: 0 2rem 0 0;
  padding-right: 2rem;
  border-right: 1px solid #ededed;
}
.single .side_container > section:last-of-type {
  border: none;
}

.postbox h1 {
  font-size: 170%;
  margin-bottom: 0.2em;
}

.postbox .tag,
.postbox time {
  margin: 0;
  padding: 0;
  font-size: x-small;
  list-style-type: none;
}
.postbox .tag li,
.postbox time li {
  margin: 0 1rem 0 0;
  padding: 0;
  line-height: 1.1;
  background-color: #b01f24;
  padding: 0.2rem 0.6rem 0.1rem;
  color: white;
  display: inline-block;
}

figure {
  margin: 0 0 1rem;
  padding: 0;
}
figure img {
  margin-bottom: 0.5rem;
}

.wp-caption-text,
figcaption {
  font-size: 80%;
  color: #999;
}

.wp-caption {
  　max-width: 100%;
  　height: auto;
}

.to_lab_top {
  clear: both;
}

.agenda {
  background-color: #f1f1f1;
  font-size: 95%;
  padding: 1rem 2rem 1rem 4rem;
}

.sentence {
  line-height: 1.8;
}

.sns {
  text-align: center;
  margin-top: 2rem;
  border-top: 1px solid #ccc;
  padding-top: 2rem;
}
.sns h4 {
  font-size: 130%;
  font-weight: bold;
  margin-right: 0.5rem;
}
.sns h4 .fa {
  margin: 0 0.5rem;
}
.sns h4,
.sns ul {
  display: inline-block;
  margin: 0;
  padding: 0;
}
.sns li {
  list-style-type: none;
  display: inline-block;
  margin: 0 0.5rem 0 0;
}
.sns li a {
  text-decoration: none;
  display: inline-block;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: #b01f24;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
}
.sns li a > * {
  -ms-flex: 1 0 0;
  flex: 1 0 0;
}
.sns li a .fa {
  font-size: 110%;
  color: white;
  text-align: center;
}

.profile {
  margin-top: 2rem;
}
.profile::after {
  display: block;
  content: "";
  clear: both;
}
.profile .face {
  float: left;
}
.profile .face img {
  width: 90px;
  height: 90px;
  background-color: #ccc;
  border-radius: 50%;
}
.profile .info {
  float: right;
  width: 700px;
}
.profile .info .name {
  margin-bottom: 0.5rem;
}
.profile .info .comment {
  font-size: 85%;
}

.pagetop {
  position: fixed;
  bottom: -100px;
  right: 10px;
  border-top: 2px solid #b01f24;
  border-left: 2px solid #b01f24;
  border-right: 2px solid #b01f24;
  border-radius: 4px 4px 0 0;
  text-align: center;
  background-color: #fff;
  transition: 0.3s;
  margin: 0;
}
.pagetop a {
  text-decoration: none;
  display: block;
  padding: 5px 10px;
}
.pagetop:hover a {
  color: #fff;
}
.pagetop a i {
  display: block;
  margin-bottom: 5px;
}
.pagetop a span {
  font-size: 80%;
}
.pagetop:hover {
  background-color: #b01f24;
}
.pagetop .top {
  text-align: center;
  margin-top: 60px;
}
.pagetop .top i {
  margin-right: 8px;
}

.pagetopShow .pagetop {
  bottom: 0;
}

.to_lab_top {
  text-align: center;
}
.to_lab_top a {
  font-weight: bold;
  text-decoration: none;
  font-family: sans-serif;
  font-size: x-small;
  display: inline-block;
  line-height: 1;
}
.to_lab_top img {
  display: block;
  margin: auto;
  width: 55px;
  height: 55px;
  vertical-align: bottom;
}

/* ---------------------------------------------------------------*/
@media (max-width: 480px) {
  body {
    font-size: 100%;
  }
  .container,
  .main_container,
  .side_container,
  .profile .info,
  .profile .face {
    width: 100%;
    float: none;
    margin: 0;
    padding: 0;
  }
  .article_list {
    display: block;
  }
  .article_list .article_list_items::after {
    display: block;
    content: "";
    clear: both;
  }
  .article_list .article_list_items .article_thumbnail {
    width: 100%;
    height: 75px;
    margin: 0 0 5px 0;
    background-position: center center;
  }
  .article_list .article_list_items .article_captions h4 {
    margin-top: 0;
    margin-bottom: 0;
    font-family: sans-serif;
  }
  .latest li {
    width: 100% !important;
  }
  .latest .article_list .article_list_items {
    margin: 0;
    position: relative;
  }
  .latest .article_list .article_list_items::after {
    display: block;
    content: "";
    clear: both;
  }
  .latest .article_list .article_list_items .article_thumbnail {
    width: 18%;
    height: 70px;
    margin: 0;
    position: absolute;
    left: 1%;
    top: 0;
  }
  .latest .article_list .article_list_items .article_captions {
    float: right;
    width: 80%;
    padding: 0.4rem;
  }
  .latest .article_list .article_list_items .article_captions h4 {
    margin-bottom: 0;
  }
  .global_header {
    padding: 0.6rem 0.5rem 0.5rem;
    text-align: center;
  }
  .global_header h1 {
    width: 120px;
    text-align: center;
    float: none;
  }
  .global_header h2 {
    float: none;
    font-size: x-small;
    margin: 0 0 0;
  }
  .global_header h2 strong {
    display: block;
    margin-bottom: 5px;
  }
  .global_header h2 .jpt {
    margin-bottom: 5px;
    text-align: center;
  }
  .single .global_header {
    padding: 0.6rem 0.5rem 0.5rem;
    text-align: center;
  }
  .single .global_header h1 {
    width: 120px;
    text-align: center;
    float: none;
  }
  .single .global_header h2 {
    float: none;
    font-size: x-small;
    margin: 0 0 0;
  }
  .single .global_header h2 strong {
    display: block;
    margin-bottom: 5px;
  }
  .single .global_header h2 .jpt {
    margin-bottom: 5px;
    text-align: center;
  }
  .postbox h1 {
    font-size: 120%;
    line-height: 1.3;
    margin: 1em 0 0.5em;
  }
  .postbox .tag li {
    margin-right: 2px;
  }
  .individual {
    padding: 0 1rem;
  }
  .sentence {
    line-height: 1.4;
  }
  .agenda {
    padding-left: 2rem;
    padding-bottom: 0.5rem;
  }
  .agenda li {
    line-height: 1.3;
    margin-bottom: 0.5rem;
  }
  .profile {
    text-align: center;
    padding: 0 1rem;
  }
  .container .side_container {
    padding: 0 1rem;
    display: block;
  }
  .container .side_container > section {
    padding: 0;
    margin: 0;
    border: none;
  }
  .pagetop {
    display: none;
  }
  .sns h4 .fa {
    display: none;
  }
  .sns ul {
    display: block;
    margin: 0.4rem 0 0;
  }
}
