/* reset
   ========================================================================== */
img {
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}

ol, ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6, p {
  margin: 0;
  padding: 0;
  font-style: normal;
  font-weight: normal;
  font-size: 100%;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

dl {
  margin: 0;
  padding: 0;
}
dl dt {
  margin: 0;
  padding: 0;
}
dl dd {
  margin: 0;
  padding: 0;
}

figure {
  margin: 0 0 0 0;
}

/* Utility
   ========================================================================== */
.reset {
  line-height: 1.5rem;
  margin: 0;
  padding: 0;
}

.clearfix {
  min-height: 1px;
}
.clearfix:after {
  content: " ";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
  line-height: 0;
}

.column2 ul {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: wrap;
}
.column2 ul li {
  width: 49%;
  margin-top: 20px;
}
.column2 ul li:nth-child(-n+2) {
  margin-top: 0;
}

.column3 ul {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: wrap;
}
.column3 ul li {
  width: 32%;
  margin-top: 20px;
}
.column3 ul li:nth-child(-n+3) {
  margin-top: 0;
}
.column3 ul li:nth-child(3n+2):last-child {
  margin-left: auto;
  margin-right: 34%;
}
.column3 ul::after {
  content: "";
  display: block;
  width: 32%;
}

.column4 ul {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: wrap;
}
.column4 ul li {
  width: 23.5%;
  margin-top: 20px;
}
.column4 ul li:nth-child(-n+4) {
  margin-top: 0;
}
.column4 ul::before {
  content: "";
  display: block;
  width: 23%;
  order: 1;
}
.column4 ul::after {
  content: "";
  display: block;
  width: 23%;
}

.column5 ul {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: wrap;
}
.column5 ul li {
  width: 18.4%;
  margin-top: 20px;
}
.column5 ul li:nth-child(-n+5) {
  margin-top: 0;
}

#blog_box {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 30px;
  margin: 30px auto 0 auto;
  align-items: start;
  grid-template-areas: "A B";
}
@media screen and (max-width: 768px) {
  #blog_box {
    grid-template-columns: 1fr;
    grid-template-areas: "B" "A";
  }
}

#archives {
  grid-area: A;
  background: white;
  padding: 20px;
  border-radius: 10px;
  border: 2px solid #ff8b82;
  position: relative;
}
#archives::after {
  content: url(grp/donguri.png);
  left: 30px;
  top: -50px;
  position: absolute;
}
#archives > ul > li {
  margin: 10px auto 0 auto;
}
#archives > ul > li > h3 {
  position: relative;
  font-size: 13px;
  line-height: 19.5px;
  font-size: 0.8125rem;
  line-height: 1.21875rem;
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
}
#archives > ul > li > h3::before, #archives > ul > li > h3::after {
  position: absolute;
  content: "";
  width: 10px;
  height: 1px;
  background-color: #333;
}
#archives > ul > li > h3::before {
  top: 48%;
  right: 10px;
  transform: rotate(0deg);
}
#archives > ul > li > h3::after {
  top: 48%;
  right: 10px;
  transform: rotate(90deg);
}
#archives > ul > li > h3.close::before {
  transform: rotate(45deg);
}
#archives > ul > li > h3.close::after {
  transform: rotate(-45deg);
}
#archives > ul > li > div {
  display: none;
}
#archives > ul > li > div > ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
#archives > ul > li > div > ul li {
  font-size: 11px;
  line-height: 16.5px;
  font-size: 0.6875rem;
  line-height: 1.03125rem;
}
#archives > ul > li > div > ul li a {
  color: #333333;
}
#archives > ul > li > div > ul li a:hover {
  text-decoration: none;
}
#archives > ul > li:nth-of-type(1) {
  margin-top: 0;
}
#archives > ul > li:nth-of-type(1) > h3::before {
  transform: rotate(45deg);
}
#archives > ul > li:nth-of-type(1) > h3::after {
  transform: rotate(-45deg);
}
#archives > ul > li:nth-of-type(1) > h3.close::before {
  transform: rotate(90deg);
}
#archives > ul > li:nth-of-type(1) > h3.close::after {
  transform: rotate(0deg);
}
#archives > ul > li:nth-of-type(1) > div {
  display: block;
}
@media screen and (max-width: 768px) {
  #archives::after {
    content: "";
  }
  #archives > ul {
    height: 300px;
    overflow-y: scroll;
  }
  #archives > ul > li > div > ul {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
  }
  #archives > ul > li > div > ul li {
    margin: 0 0 0 1em;
  }
}

#kiji_box {
  grid-area: B;
}
#kiji_box section {
  margin-top: 30px;
  background: url(grp/section_bg.png) top center repeat-x, white;
  padding: 20px;
  border-radius: 10px;
  border: 2px solid #ff8b82;
}
#kiji_box section h2 {
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 500;
  font-size: 23px;
  line-height: 34.5px;
  font-size: 1.4375rem;
  line-height: 2.15625rem;
  text-align: left;
}
#kiji_box section time {
  display: block;
  margin: 10px auto 0 auto;
  text-align: left;
  font-size: 14px;
  line-height: 21px;
  font-size: 0.875rem;
  line-height: 1.3125rem;
}
#kiji_box section div {
  margin-top: 10px;
}
#kiji_box section div.entry_body {
  text-align: left;
}
#kiji_box section aside {
  margin-top: 10px;
}
#kiji_box section aside > ul {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}
#kiji_box section aside > ul img {
  border-radius: 10px;
}
#kiji_box section:nth-of-type(1) {
  margin-top: 0;
  position: relative;
}
#kiji_box section:nth-of-type(1)::before {
  content: url(grp/pig.png);
  position: absolute;
  top: -94px;
  right: 30px;
}
@media screen and (max-width: 768px) {
  #kiji_box section aside > ul {
    grid-template-columns: repeat(2, 1fr);
  }
  #kiji_box section:nth-of-type(1) {
    content: "";
  }
}/*# sourceMappingURL=index.css.map */