/* Theme Name: theme-blog-header
Author: RyoIwamoto
Desctiption: DemoSite blog theme header
Version: 1 */

@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Sacramento&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Caveat&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
img {
    object-fit: cover;
}
body {
  margin: 0;
  padding: 0;
  width: 100%;
}

.page-header {
  height: 80px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin: 0;
}

.page-title {
  font-size: 25px;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  width: 100%;
}

.navi-head {
  height: 50px;
  background-color: #40e0d0;
  margin-top: 10px;
  width: 100%;
  /* 子要素を上下左右中央に配置 */
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 500px) {
  .navi-head {
    display: block;
    align-items: left;
    justify-content: flex-start;
    height: 200px;
  }
}

a {
  text-decoration: none;
  color: #212529;
}

/* nav */
.menu-blog-container {
  /* border: 1px solid; */
}

/* ul */
.menu {
  text-align: center;
  padding-left: 0;
  height: 45px;
  /* liを横並びににする */
  display: flex;
  /* border: 1px solid; */
}

@media screen and (max-width: 500px) {
  .menu {
    display: block;
    text-align: left;
    height: 100%;
  }
}

.menu-item {
  list-style-type: none;
  font-weight: bold;
  margin: 0 10px;
  padding: 12px;
  font-size: 17px;
  /* border: 1px solid; */
}

.menu-item:hover {
  background-color: #82ebe0;
}