@charset "UTF-8";
/* ↓↓↓↓↓ベースCSS↓↓↓↓↓ */
* {
  margin: 0;
  padding: 0;
}

html {
  font-size: 10px;
  font-family: Arial, Helvetica, sans-serif;
  color: #333;
}

h2 {
  text-decoration: underline;
  line-height: 2.5rem;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  color: #333;
}
a:hover {
  transition: 0.6s;
  opacity: 0.8;
}

/* ↓↓↓↓↓スクロールアニメーション↓↓↓↓↓ */
.fadeInDown {
  -webkit-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  -ms-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
  visibility: visible !important;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
/* ↓↓↓↓↓ヘッダー↓↓↓↓↓ */
.header {
  background: #81cbff;
  text-align: center;
}

.header-logo {
  padding: 30px 60px;
  margin: 0 auto;
  font-size: 2rem;
}
.header-logo a {
  color: #333;
  font-weight: bold;
}

.header-nav {
  background: #333;
  color: #fff;
  height: 80px;
  display: flex;
  align-items: center;
}
.header-nav ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  padding: 10px;
}
.header-nav ul li {
  display: block;
  text-align: center;
  width: 25%;
  padding: 10px 5px 10px 2rem;
  box-sizing: border-box;
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
  color: #fff;
  position: relative;
  font-size: 0.7rem;
}
.header-nav ul li:nth-of-type(-n+4) {
  border-top: 1px solid #fff;
}
.header-nav ul li:nth-of-type(1), .header-nav ul li:nth-of-type(5) {
  border-left: 1px solid #fff;
}
.header-nav ul li:hover {
  background-color: rgba(124, 124, 124, 0.6);
  transition: 0.5s;
}
.header-nav ul li a {
  color: #fff;
  position: relative;
}
.header-nav ul li a:before {
  position: absolute;
  content: "";
  display: inline-block;
  width: 0.8rem;
  height: 0.8rem;
  left: -1.5rem;
  background-size: contain;
  vertical-align: middle;
}
.header-nav .nav-home a:before {
  background-image: url(images/home.png);
}
.header-nav .nav-knowhow a:before {
  background-image: url(images/program.png);
}
.header-nav .nav-business a:before {
  background-image: url(images/business.png);
}
.header-nav .nav-sns a:before {
  background-image: url(images/sns.png);
}
.header-nav .nav-report a:before {
  background-image: url(images/mind.png);
}
.header-nav .nav-recommend a:before {
  background-image: url(images/camera.png);
}
.header-nav .nav-pr a:before {
  background-image: url(images/book.png);
}
.header-nav .nav-other a:before {
  background-image: url(images/other.png);
}

/* ↓↓↓↓↓ブログメインエリア↓↓↓↓↓ */
.container {
  background: rgb(180, 195, 209);
  padding: 20px;
}

/* ↓↓↓↓↓投稿記事エリア↓↓↓↓↓ */
.article-container {
  width: 100%;
}

.article {
  text-align: center;
  background: #fff;
  padding: 30px;
  margin-bottom: 20px;
}
.article .date {
  display: block;
  margin-bottom: 20px;
}
.article .title {
  margin-bottom: 20px;
}
.article .cat {
  margin-bottom: 20px;
  /*
  color: #006fbe;
  */
  color: #fff;
  padding: 5px;
  position: absolute;
  top: 0px;
  left: 0px;
  background: #5c8eb3;
}
.article .cat a {
  /*
  color: #006fbe;
  */
  color: #fff;
}
.article .thumbnail {
  width: 100%;
  height: 200px;
  background-color: #004170;
  margin-bottom: 30px;
  position: relative;
}
.article .thumbnail-img {
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-size: 2em;
}
.article .description, .article .articletext {
  margin-bottom: 30px;
  line-height: 1.8rem;
}
.article .articletext {
  text-align: left;
}

.readmore, .topback {
  padding: 10px;
  margin: 0 30%;
  background: #004170;
  text-align: center;
}
.readmore a, .topback a {
  color: #fff;
  font-weight: bold;
}

/* ↓↓↓↓↓サイドメニュー↓↓↓↓↓ */
.side-menu {
  background: rgb(180, 195, 209);
  width: 100%;
}

.aside-content-wrap {
  background: #fff;
  padding: 30px;
  text-align: center;
  margin-bottom: 30px;
}
.aside-content-wrap .aside-title {
  position: relative;
  margin-bottom: 30px;
}
.aside-content-wrap .aside-title:after {
  content: "";
  position: absolute;
  background-color: #004170;
  width: 3rem;
  height: 2px;
  left: 50%;
  bottom: -5px;
  transform: translateX(-50%);
}

/* ↓↓↓↓↓プロフィール↓↓↓↓↓ */
.profile .profile-icon {
  width: 50%;
  border-radius: 50%;
  margin: 0 auto;
}
.profile .profile-icon img {
  width: 100%;
  border-radius: 50%;
}
.profile .author-introduction {
  font-size: 0.8rem;
  margin-top: 10px;
}

/* ↓↓↓↓↓よく読まれている記事↓↓↓↓↓ */
.popular-posts .title {
  margin-bottom: 30px;
}

.popular-post .thumbnail {
  width: 90%;
  height: 200px;
  background-color: #004170;
  margin: 0 auto 20px;
}
.popular-post .title {
  text-decoration: underline;
}

/* ↓↓↓↓↓フッター↓↓↓↓↓ */
.footer-content {
  background: #fff;
  width: 100%;
  height: 200px;
  margin-bottom: 30px;
}

.footer {
  background: #333;
  height: 100px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (min-width: 480px) {
  /*　画面サイズが480pxからはここを読み込む　*/
}
@media screen and (min-width: 768px) {
  /*　画面サイズが768pxから1024pxまではここを読み込む　*/
  html {
    font-size: 16px;
  }
  .header-nav {
    padding: 10px;
  }
}
@media screen and (min-width: 768px) and (min-width: 1024px) {
  /*　画面サイズが1024pxからはここを読み込む　*/
  html {
    font-size: 16px;
  }
  .container {
    display: flex;
    padding: 60px;
  }
  .article-container {
    width: calc(70% - 15px);
    margin-right: 30px;
  }
  .side-menu {
    width: calc(30% - 15px);
  }
  .header-nav ul li {
    text-align: center;
    width: 12.5%;
    padding: 20px 20px 20px 2rem;
    border: none;
    border-right: 1px solid #fff;
  }
  .header-nav ul li:nth-of-type(-n+4) {
    border-top: none;
  }
  .article {
    padding: 50px;
    margin-bottom: 30px;
    /*
    .cat{
      margin-left: 40%;
      margin-right: 40%;
      padding: 5px;
      position: absolute;
      top:0px;
      left: 0px;
      background: #5c8eb3;
        a{
          color: #fff;
        }
    }
    */
  }
  .article .date, .article .title, .article .cat {
    margin-bottom: 30px;
  }
  .article .date {
    text-align: right;
  }
  .profile .profile-icon {
    width: 70%;
  }
}/*# sourceMappingURL=style.css.map */