/*
 * Theme Name: Dee Studio Blog
 * Author: Dee Studio
 * Version: 1.0.1
 */
@charset "utf-8";
*,*::before,*::after{box-sizing:border-box}body,h1,h2,h3,h4,p,figure,blockquote,dl,dd{margin:0}ul[role="list"],ol[role="list"]{list-style:none}html:focus-within{scroll-behavior:smooth}body{min-height:100vh;text-rendering:optimizeSpeed;line-height:1.5}a:not([class]){text-decoration-skip-ink:auto}img,picture{max-width:100%;display:block}input,button,textarea,select{font:inherit}@media(prefers-reduced-motion:reduce){html:focus-within{scroll-behavior:auto}*,*::before,*::after{animation-duration:.01ms !important;animation-iteration-count:1 !important;transition-duration:.01ms !important;scroll-behavior:auto !important}}

@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100&family=Oswald&family=Raleway:wght@300&display=swap");
html {
  min-height: 100vh;
  font-size: 14px;
}
body {
  min-height: 100vh;
  overflow-y: scroll;
  background-color: #000;
  color: #fff;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1rem;
}
a {
  cursor: pointer;
  color: inherit;
  text-decoration: none;
}
ul {
  margin-block-start: 0;
  margin-block-end: 0;
  padding-inline-start: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  color: inherit;
  font-family: 'Raleway', 'Noto Sans JP';
  font-weight: normal;
  line-height: 1;
}
h1 {
  font-family: 'Raleway', 'Noto Sans JP', sans-serif;
  font-size: 2.2rem;
  text-transform: uppercase;
}
h2 {
  font-size: 1.2rem;
}
h1 ~ h2 {
  color: #aaa;
  font-size: 0.9rem;
}
p {
  line-height: 1.8;
}
main {
  min-height: 100vh;
}
ul {
  list-style: none;
  margin-block-start: 0;
  margin-block-end: 0;
  padding-inline-start: 0;
}
#nav {
  position: relative;
  font-family: 'Raleway', sans-serif;
}
#nav-toggle {
  display: none;
}
#nav-toggle-label {
  position: relative;
  display: block;
  width: 24px;
  height: 24px;
}
#nav-toggle-label span {
  text-indent: -9999px;
}
#nav-toggle-label:before,
#nav-toggle-label:after,
#nav-toggle-label span {
  display: block;
  content: "";
  width: 24px;
  height: 4px;
  margin-bottom: 4px;
  background-color: #fff;
  transition: all 0.2s ease;
}
@media screen and (min-width: 901px) {
  #nav-toggle-label {
    display: none;
  }
}
#nav-toggle:checked + label:before {
  position: absolute;
  top: 8px;
  transform: rotate(45deg);
}
#nav-toggle:checked + label:after {
  position: absolute;
  top: 8px;
  transform: rotate(-45deg);
}
#nav-toggle:checked + label span {
  display: none;
}
#nav-toggle:checked + label + .nav-items {
  transform: translateX(0);
}
.nav-items {
  padding: 10px 0;
  text-transform: uppercase;
  list-style: none;
  padding-inline-start: 0;
  transition: all 0.3s ease;
  font-size: 1.8rem;
}
@media screen and (max-width: 899px) {
  .nav-items {
    position: absolute;
    right: -10px;
    width: 240px;
    background-color: rgba(0,0,0,0.9);
    transform: translateX(calc(100% + 100px));
  }
}
@media screen and (min-width: 900px) {
  .nav-items {
    display: flex;
    align-items: center;
    font-size: 1.4rem;
  }
}
.nav-item {
  position: relative;
  margin-left: 3rem;
}
@media screen and (max-width: 899px) {
  .nav-item:not(:last-child) {
    padding-right: 16px;
    margin-bottom: 8px;
  }
}
.nav-item:after {
  content: '';
  position: absolute;
  top: calc(100% - 2px);
  left: 0;
  display: block;
  width: 0%;
  height: 2px;
  background-color: #fff;
  transition: all 0.3s ease;
}
.white .nav-item:after {
  background-color: #000;
}
.nav-item:hover:after {
  width: 100%;
}
.nav-item a {
  display: block;
  opacity: 0.8;
}
.nav-item a:hover {
  opacity: 1;
}
.nav-item .router-link-active {
  opacity: 1;
  border-bottom-color: #444;
}
#header {
  position: fixed;
  z-index: 101;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 92px;
  padding: 0 10px;
}
@media screen and (min-width: 701px) {
  #header {
    padding: 0 50px;
  }
}
#header .logo {
  cursor: pointer;
}
#header .logo:hover {
  animation: 0.6s ease-in 0s infinite logo_hover;
}
@-moz-keyframes logo_hover {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(-3px);
  }
}
@-webkit-keyframes logo_hover {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(-3px);
  }
}
@-o-keyframes logo_hover {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(-3px);
  }
}
@keyframes logo_hover {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(-3px);
  }
}
#footer {
  position: sticky;
  top: 100vh;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
}
@media screen and (min-width: 900px) {
  #footer {
    padding: 20px 50px;
  }
}
.locale-changer select {
  width: 140px;
  padding: 2px 8px;
  background-color: #111;
  border-radius: 10px;
  border: none;
  color: #aaa;
}
.locale-changer select:focus {
  outline: 1px solid #e32da0;
}
.illust-img {
  margin-bottom: 40px;
}
.illust-list {
  margin: 120px auto 0;
}
@media screen and (min-width: 232px) {
  .illust-list {
    width: 232px;
  }
  .illust-list ul {
    column-count: 1;
  }
}
@media screen and (min-width: 465px) {
  .illust-list {
    width: 465px;
  }
  .illust-list ul {
    column-count: 2;
  }
}
@media screen and (min-width: 698px) {
  .illust-list {
    width: 698px;
  }
  .illust-list ul {
    column-count: 3;
  }
}
@media screen and (min-width: 931px) {
  .illust-list {
    width: 931px;
  }
  .illust-list ul {
    column-count: 4;
  }
}
.illust-list .attachment-medium {
  width: 225px;
  height: auto;
}
.illust-list ul {
  column-gap: 8px;
}
.illust-list li {
  display: inline-block;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  break-inside: avoid;
}
.illust-list li:hover .post-excerpt--header {
  display: block;
  position: absolute;
  left: 0px;
  right: 0px;
  bottom: 0px;
  overflow: hidden;
  padding: 8px;
  background-color: rgba(0,0,0,0.5);
}
.illust-list .post-excerpt {
  position: relative;
}
.illust-list .post-excerpt--header {
  display: none;
}
.footer {
  padding: 32px 50px;
  text-align: center;
}
.body {
  padding: 142px 10px 10px;
}
.article {
  max-width: 920px;
  margin: 0 auto;
}
.article header {
  margin-bottom: 3rem;
}
.article h2,
.article h3,
.article h4,
.article h5,
.article h6 {
  margin-bottom: 1rem;
}
.article h2:not(:first-child),
.article h3:not(:first-child),
.article h4:not(:first-child),
.article h5:not(:first-child),
.article h6:not(:first-child) {
  margin-top: 3rem;
}
.article h1 {
  margin-bottom: 4px;
  font-size: 2.2rem;
}
.article h2 {
  font-size: 1.8rem;
}
.article h3 {
  font-size: 1.6rem;
}
.article h4 {
  font-size: 1.4rem;
}
.article h5 {
  font-size: 1.2rem;
}
.article h6 {
  font-size: 1rem;
}
.article-content ul,
.article-content dl {
  margin-bottom: 2rem;
  line-height: 1.8;
}
.article-content ul {
  margin-left: 1.5em;
  list-style: disc;
}
.article-content dt {
  font-weight: bold;
}
.article-content dd {
  margin-left: 1em;
}
.article-content p {
  margin-bottom: 1em;
  line-height: 1.8;
}
.categories,
.tags {
  display: flex;
  align-items: center;
  margin-top: 8px;
  font-size: 0.8rem;
}
.categories span,
.tags span {
  width: 6em;
  padding: 4px 5px;
  background-color: #ccc;
  border-radius: 4px;
  color: #000;
  line-height: 1;
  text-align: center;
}
.categories ul,
.tags ul {
  display: flex;
}
.categories li,
.tags li {
  margin-left: 0.8em;
}
.pager {
  display: flex;
  justify-content: space-between;
  margin-top: 3em;
}
.pager a {
  border-bottom: 2px solid transparent;
  transition: 0.3s all ease;
}
.pager a:hover {
  border-bottom: 2px solid #fff;
}
.post-excerpt {
  display: flex;
  flex-direction: row-reverse;
  max-width: 100%;
  margin-bottom: 24px;
}
.post-excerpt--title {
  overflow: hidden;
  text-overflow: ellipsis;
}
.post-excerpt--header {
  flex-grow: 1;
  overflow: hidden;
  white-space: nowrap;
}
.post-excerpt--content {
  flex-shrink: 0;
}
.attachment-thumbnail {
  margin-right: 16px;
  width: 100px;
  height: auto;
}
.index-page {
  margin: 120px auto 30px;
  max-width: 920px;
  min-height: calc(100vh - 200px);
  padding: 24px;
}
.page-title {
  margin-bottom: 32px;
}
.pagination {
  max-width: 200px;
  margin: 0 auto;
}
.pagination ul {
  display: flex;
}
.pagination li {
  margin: 0 8px;
  border: 1px solid #ccc;
}
.pagination a,
.pagination span {
  display: block;
  width: 3em;
  padding: 8px 16px;
  text-align: center;
}
.pagination span {
  background-color: #fff;
  color: #000;
}
.front-wrapper {
  padding: 0 10px;
}
.front-header {
  margin-top: 142px;
  margin-bottom: 20px;
}
.front-header h1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.2rem;
}
.front-header h1 span + span {
  font-size: 1rem;
}
.front-page--headline {
  margin-bottom: 0.8em;
  text-transform: uppercase;
}
.section--articles-list time {
  color: #555;
  font-size: 0.9rem;
}
.banner--manga {
  position: relative;
  max-width: 588px;
  margin: 0 auto 24px;
}
.banner--manga img {
  display: block;
}
.banner--manga .status {
  position: absolute;
  left: 10px;
  bottom: 10px;
  padding: 5px;
  background-color: #000;
  color: #fff;
  font-size: 0.8rem;
  line-height: 1;
}
@media screen and (orientation: landscape) {
  .home {
    background: #fff url("images/home-bg-001.jpg") center center no-repeat;
    background-size: cover;
    background-attachment: fixed;
  }
  .front-header {
    max-width: 670px;
    margin-left: 40px;
    color: #fff;
    text-transform: uppercase;
  }
  .front-header h1 {
    font-size: 2rem;
  }
  .front-header h1 span {
    font-family: 'Raleway';
    font-weight: normal;
  }
  .front-content {
    margin-left: 40px;
    max-width: 670px;
    min-height: calc(100vh - 200px);
    padding: 24px;
    background-color: #000;
  }
  .front-content section {
    margin-bottom: 3em;
  }
}
.posted-at {
  margin-right: 2em;
}
