@charset "UTF-8";
/* CSS Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

ul[class],
ol[class] {
  padding: 0;
}

body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
figure,
blockquote,
dl,
dd {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  margin: 0;
  font-family: "Noto Sans JP", "Noto Sans", "Yu Gothic Medium", "Yu Gothic", "游ゴシック体", "游ゴシック", "Meiryo", "メイリオ", sans-serif;
}

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

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

img,
picture {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  background-color: transparent;
}

input,
button,
textarea,
select {
  font: inherit;
}

/* common */
html,
body {
  width: 100%;
  font-size: 16px;
}

body {
  position: relative;
}

p {
  margin-bottom: 1.5em;
  text-align: justify;
}
p:last-child {
  margin-bottom: 0;
}

hr {
  margin-bottom: 1.5em;
}

/* layout */
.container {
  position: relative;
  z-index: 1;
}
.container .column-l {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  width: 200px;
  height: 100svh;
  padding: 20px 0 40px;
  background-color: #000;
  color: #FFF;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .container .column-l {
    width: 90vw;
    height: 60px;
    padding: 0 20px;
    transition: transform 0.1s ease;
    z-index: 9999;
    overflow: hidden;
  }
}
.container .column-l.hide {
  transform: translateY(-100%);
}
.container .column-l.show {
  transform: translateY(0);
}
.container .column-l header {
  position: relative;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .container .column-l header {
    margin-bottom: 0px;
  }
}
@media screen and (max-width: 768px) {
  .container .column-l header img {
    width: auto;
    height: 60px;
  }
}
.container .column-l nav a {
  color: #FFF;
  text-decoration: none;
}
.container .column-l nav a:hover {
  color: #fff;
  text-decoration: underline;
}
.container .column-l nav a:visited, .container .column-l nav a:active {
  color: #FFF;
}
.container .column-l nav button {
  color: #FFF;
}
.container .column-l .aboutWrap {
  margin-top: auto;
  padding: 0 10px;
}
.container .column-l .aboutWrap a.aboutLink {
  color: #FFF;
  text-decoration: none;
}
.container .column-l .aboutWrap a.aboutLink:hover {
  text-decoration: underline;
}
.container .column-r {
  position: fixed;
  top: 0;
  right: 0;
  width: 200px;
  height: 100svh;
  background-color: #FFF;
  z-index: 10;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .container .column-r {
    width: 10vw;
    background-color: #000;
  }
}
.container .column-r img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}
.container .column-c {
  width: 100%;
  padding: 40px 240px;
}
@media screen and (max-width: 768px) {
  .container .column-c {
    padding: 80px calc(10vw + 20px) 40px 20px;
  }
}

/* home */
.home article,
.archive article {
  margin-bottom: 15em;
}
.home article:last-of-type,
.archive article:last-of-type {
  margin-bottom: 0;
}
.home h2.entry-title,
.archive h2.entry-title {
  display: flex;
  align-items: center;
  gap: 0 10px;
  width: 100%;
}
.home h2.entry-title a,
.archive h2.entry-title a {
  display: inline-block;
  color: #333;
  text-decoration: none;
}
.home h2.entry-title a:hover,
.archive h2.entry-title a:hover {
  text-decoration: underline;
}
.home h2.entry-title img,
.archive h2.entry-title img {
  flex: 1;
  height: 1em;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  opacity: 0.6;
}
.home .entry-meta,
.archive .entry-meta {
  margin-bottom: 2em;
}
.home .addtoany_content,
.archive .addtoany_content {
  margin: 3em 0 0;
  text-align: right;
}

.single article,
.page article {
  margin-bottom: 1em;
}
.single article h2.entry-title,
.page article h2.entry-title {
  width: 100%;
  color: #333;
}
.single article .entry-meta,
.page article .entry-meta {
  margin-bottom: 2em;
}
.single article .entry-content img,
.page article .entry-content img {
  margin-bottom: 1em;
}
.single article .addtoany_content,
.page article .addtoany_content {
  margin: 3em 0 0;
}

.page h2.entry-title {
  margin-bottom: 2em;
}

/* navi */
.archive-accordion {
  font-size: 14px;
}

.archive-accordion__year-toggle {
  width: 100%;
  text-align: left;
  padding: 5px 10px;
  border: 0;
  cursor: pointer;
}

ul.archive-accordion__months {
  padding: 5px 15px 10px 2em;
  margin: 0;
  list-style: none;
}

.archive-accordion__month-item + .archive-accordion__month-item {
  margin-top: 4px;
}

.archive-accordion__month-item a {
  text-decoration: none;
}

.archive-accordion__month-item a:hover {
  text-decoration: underline;
}

.addtoany_content {
  text-align: right;
}

.post-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 40px;
}
.post-nav > div {
  text-align: center;
}
.post-nav > div a {
  color: #333;
  text-decoration: none;
}
.post-nav > div a:hover {
  text-decoration: underline;
}
.post-nav > div a:visited, .post-nav > div a.active {
  color: #333;
}

@media screen and (max-width: 768px) {
  .single .post-nav {
    justify-content: space-between;
  }
}
.single .post-nav > div {
  width: 4em;
}
@media screen and (max-width: 768px) {
  .single .post-nav > div {
    flex: 1;
    width: auto;
  }
}
@media screen and (max-width: 768px) {
  .single .post-nav .post-nav__prev {
    text-align: left;
  }
}
@media screen and (max-width: 768px) {
  .single .post-nav .post-nav__next {
    text-align: right;
  }
}

.hamburger {
  position: absolute;
  top: 50%;
  right: 20px;
  display: none;
  width: 32px;
  height: 24px;
  padding: 0;
  flex-direction: column;
  justify-content: space-between;
  border: none;
  cursor: pointer;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .hamburger {
    display: flex;
  }
}
.hamburger span {
  display: block;
  width: 100%;
  height: 1px;
  background: #fff;
  border-radius: 2px;
}

/* メニュー（全画面オーバーレイ） */
.menu-overlay {
  position: fixed;
  inset: 0;
  /* top, right, bottom, left: 0; と同じ */
  background: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 99;
}

.menu-overlay.is-open {
  display: block;
}

.menu-panel {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  width: 100vw;
  height: 100%;
  background: #fff;
  box-shadow: -4px 0 10px rgba(0, 0, 0, 0.2);
  transform: translateX(100%);
  transition: transform 0.25s ease;
  padding: 16px;
  box-sizing: border-box;
  z-index: 100;
}
.menu-panel .archive-accordion {
  margin-bottom: 50px;
}
.menu-panel .aboutWrap {
  padding: 5px 10px;
}
.menu-panel a {
  color: #000 !important;
  text-decoration: none;
}

.menu-overlay.is-open .menu-panel {
  transform: translateX(0);
}

.menu-close {
  position: absolute;
  top: 30px;
  right: calc(10vw + 20px);
  width: 32px;
  height: 24px;
  display: inline-block;
  cursor: pointer;
}
.menu-close span {
  position: absolute;
  display: block;
  width: 100%;
  height: 1px;
  background: #000;
  transform-origin: 50% 50%;
}
.menu-close span:first-child {
  transform: rotate(45deg);
}
.menu-close span:last-child {
  transform: rotate(-45deg);
}/*# sourceMappingURL=style.css.map */