@import "https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=WDXL+Lubrifont+JP+N&family=Zen+Maru+Gothic:wght@300;400;500;700;900&display=swap";
@view-transition {
  navigation: auto;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  width: 100%;
  height: 100vh;
  background-color: #3f3f3f;
  display: flex;
  flex-direction: column;
  gap: 36px;
  font-family:
    wdxl lubrifont jp n,
    sans-serif;
  overflow-x: hidden;
}
main {
  flex: 1;
  width: 1200px;
  margin: 0 auto;
  position: relative;
  padding-top: 70px;
}
@media (max-width: 1199px) {
  main {
    width: 95%;
    margin: 0 auto;
  }
}
article.post_article {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
}
article.post_article .article_header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
article.post_article .article_title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  font-size: 2em;
  color: #dfdfdf;
}
article.post_article .article_title .sub {
  font-size: 0.6em;
  color: #dfdfdf;
  padding-bottom: 8px;
  position: relative;
}
article.post_article .article_title .sub::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  border-radius: 6px;
  background-color: #dfdfdf;
}
article.post_article .tags a {
  color: #dfdfdf;
}
article.post_article .main_image {
  width: 100%;
  aspect-ratio: 2/1;
  overflow: hidden;
  position: relative;
  border-radius: 16px;
}
article.post_article .main_image svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  z-index: 1;
}
article.post_article .main_image img {
  width: 100%;
  object-fit: cover;
  position: inherit;
  z-index: 2;
}
article.home_article {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
}
section.page_section {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
section.page_section .section_title {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 1.5em;
  color: #dfdfdf;
  position: relative;
  padding: 0 55px;
}
section.page_section .section_title::before,
section.page_section .section_title::after {
  content: "";
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 45px;
  height: 1px;
  background-color: #dfdfdf;
}
section.page_section .section_title::before {
  left: 0;
}
section.page_section .section_title::after {
  right: 0;
}
section.gallery .post_images {
  width: 100%;
}
section.gallery .post_viewer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}
section.gallery .post_viewer .post_image {
  aspect-ratio: 2/3;
  overflow: hidden;
  position: relative;
  border-radius: 8px;
}
section.gallery .post_viewer .post_image svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  z-index: 1;
}
section.gallery .post_viewer .post_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
  z-index: 2;
}
section.gallery .post_viewer .post_image img:hover {
  transform: scale(1.05);
  transition: 0.3s;
}
section.description .description_text {
  width: 100%;
  color: #333;
  line-height: 1.5;
}
section.description .description_text p + p {
  margin-top: 12px;
}
section.description .description_text strong {
  font-weight: 900;
}
section.usage_kit .kit_list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
section.usage_kit .kit_info {
  width: 100%;
  padding-bottom: 4px;
  border-bottom: 1px solid #ccc;
  display: flex;
  align-items: flex-end;
}
@media (max-width: 767px) {
  section.usage_kit .kit_info {
    flex-direction: column;
    gap: 4px;
  }
}
section.usage_kit .kit_info .kit_data {
  display: flex;
  flex-direction: column;
  gap: 2px;
  width: 100%;
}
section.usage_kit .kit_info .maker_name {
  font-size: 0.8em;
  font-family:
    zen maru gothic,
    sans-serif;
}
section.usage_kit .kit_link {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  gap: 4px;
  text-decoration: none;
}
section.usage_kit .kit_link img {
  height: 25px;
  transition: 0.2s;
}
section.usage_kit .kit_link img:hover {
  margin-bottom: 5px;
  opacity: 0.8;
}
section.usage_kit .kit_link .amazon_button {
  width: 125px;
  font-size: 1em;
  text-align: center;
  color: #fff;
  background-color: #f90;
  padding-bottom: 4px;
  border-radius: 4px;
  display: inline-block;
  font-weight: 700;
  transition: 0.2s;
}
section.usage_kit .kit_link .amazon_button:hover {
  margin-bottom: 5px;
  opacity: 0.8;
}
section.usage_kit .affiliates {
  text-align: right;
  font-size: 0.8em;
  color: #666;
}
.adult_filter {
  filter: blur(8px);
}
.adult-gate {
  position: fixed;
  top: 20%;
  left: 10%;
  width: 80%;
  margin: 0 auto;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-bottom: 48px;
  z-index: 1000;
}
.adult-gate .buttons {
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.adult-gate .buttons button {
  font-size: 1.4em;
  width: 200px;
  padding: 8px 16px;
  border-radius: 4px;
  color: #dfdfdf;
  border: 0;
  background-color: #b33131;
  cursor: pointer;
  font-family:
    wdxl lubrifont jp n,
    sans-serif;
  transition: 0.3s;
}
.adult-gate .buttons button.adult-no {
  background-color: #5e5e5e;
}
.adult-gate .buttons button:hover {
  filter: brightness(1.4);
}
article.blog_article {
  width: 70%;
  min-width: 600px;
  margin: 0 auto;
}
@media (max-width: 599px) {
  article.blog_article {
    width: 90%;
    min-width: unset;
  }
}
article.blog_article .main_image {
  border-radius: 16px;
}
article.blog_article .blog_main h1,
article.blog_article .blog_main h2,
article.blog_article .blog_main h3,
article.blog_article .blog_main h4,
article.blog_article .blog_main h5 {
  padding-left: 8px;
  margin-bottom: 8px;
  border-left: 4px solid #333;
  border-bottom: 1px solid #333;
}
article.blog_article .blog_main p {
  padding: 0 8px;
  line-height: 1.7em;
}
article.blog_article .blog_main p + * {
  margin-top: 16px;
}
article.blog_article .blog_main figure {
  padding-bottom: 16px;
}
@media (max-width: 599px) {
  article.blog_article .blog_main figure img {
    max-width: 100%;
    height: auto;
  }
}
article.blog_article .blog_main figcaption {
  font-size: 0.8em;
  color: #666;
}
.about_section {
  width: 100%;
}
.about_section .text_box {
  width: 70%;
}
@media (max-width: 767px) {
  .about_section .text_box {
    width: 90%;
  }
}
.about_section .text_box p {
  font-size: 0.9em;
}
.about_section .text_box p + h4 {
  padding-top: 16px;
}
header.global_header {
  width: 100%;
  height: 50px;
  background-color: #222;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}
.header_content {
  width: 100%;
  height: 100%;
  padding: 0 16px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
}
.header_content h1.header_logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 46px;
}
.header_content h1.header_logo a {
  height: 100%;
}
.header_content h1.header_logo img {
  height: 100%;
}
.header_content h1.header_logo:hover img {
  animation: shake 0.2s infinite alternate;
}
.header_content .header_menu {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.header_content .header_menu .menu_icon {
  width: 30px;
  height: 30px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  position: relative;
}
.header_content .header_menu .menu_icon .menu_icon_line {
  width: 100%;
  height: 4px;
  background-color: #fff;
  border-radius: 3px;
  transition: 0.3s;
  position: absolute;
}
.header_content .header_menu .menu_icon .menu_icon_line:nth-child(1) {
  top: 3px;
}
.header_content .header_menu .menu_icon .menu_icon_line:nth-child(2) {
  top: calc(50% - 2px);
}
.header_content .header_menu .menu_icon .menu_icon_line:nth-child(3) {
  bottom: 3px;
}
.header_content
  .header_menu
  .menu_icon:hover:not(.active)
  .menu_icon_line:nth-child(1) {
  top: 0;
}
.header_content
  .header_menu
  .menu_icon:hover:not(.active)
  .menu_icon_line:nth-child(2) {
  opacity: 0.5;
}
.header_content
  .header_menu
  .menu_icon:hover:not(.active)
  .menu_icon_line:nth-child(3) {
  bottom: 0;
}
.header_content .header_menu .menu_icon.active .menu_icon_line:nth-child(1) {
  transform: rotate(45deg);
  top: calc(50% - 2px);
}
.header_content .header_menu .menu_icon.active .menu_icon_line:nth-child(2) {
  opacity: 0;
}
.header_content .header_menu .menu_icon.active .menu_icon_line:nth-child(3) {
  transform: rotate(-45deg);
  top: calc(50% - 2px);
}
@keyframes shake {
  0% {
    transform: rotate(-2deg);
  }
  25% {
    transform: rotate(2deg);
  }
  50% {
    transform: rotate(-2deg);
  }
  75% {
    transform: rotate(2deg);
  }
  100% {
    transform: rotate(-2deg);
  }
}
nav.global_nav {
  position: fixed;
  top: 50px;
  right: -200px;
  height: calc(100% - 50px);
  width: 200px;
  background-color: #222;
  z-index: 10;
  transition: 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
nav.global_nav.active {
  right: 0;
}
nav.global_nav .menu {
  display: flex;
  flex-direction: column;
  border-top: 1px solid #000;
  border-bottom: 1px solid #444;
}
nav.global_nav .menu a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  font-size: 1.1em;
  color: #dfdfdf;
  text-decoration: none;
  background-color: #222;
  border-top: 1px solid #444;
  border-bottom: 1px solid #000;
}
nav.global_nav .menu a:hover {
  animation: blinking 0.8s infinite normal;
}
nav.global_nav .menu a span {
  font-size: 0.8em;
}
nav.global_nav .menu.sub_menu {
  font-size: 0.9em;
}
@keyframes blinking {
  0% {
    background-color: #222;
  }
  50% {
    background-color: #444;
  }
  100% {
    background-color: #222;
  }
}
.tags {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 4px;
}
.tags a {
  color: inherit;
  cursor: pointer;
}
.post_item {
  width: 100%;
  position: relative;
  background-color: #2e2e2e;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-radius: 4px;
}
.post_item a.post_link {
  text-decoration: none;
  color: inherit;
  margin-top: auto;
}
.post_item .post_thumbnail {
  aspect-ratio: 1/0.9;
  overflow: hidden;
  position: relative;
  border-radius: 4px;
}
.post_item .post_thumbnail img {
  width: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.post_item .post_thumbnail img.img_main {
  z-index: 1;
  filter: grayscale(100%) brightness(0.5);
  transition: 0.3s;
}
@media (max-width: 767px) {
  .post_item .post_thumbnail img.img_main {
    filter: grayscale(0%);
  }
}
.post_item .post_info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  z-index: 1;
  color: #dfdfdf;
  align-items: center;
}
.post_item .post_info .title {
  font-size: 1em;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 400;
}
.post_item .post_info .subtitle {
  font-size: 0.8em;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.post_item .post_info .tags {
  justify-content: center;
  font-size: 0.8em;
}
@media (max-width: 767px) {
  .post_item .post_info .tags {
    font-size: 0.7em;
  }
}
.post_item:hover .post_thumbnail img {
  transform: scale(1.1);
  filter: grayscale(0%);
}
.post_list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .post_list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }
}
.blog_item {
  display: flex;
  height: 200px;
  gap: 16px;
  width: 100%;
  background-color: #2e2e2e;
  border-radius: 8px;
  padding: 16px;
  transition: 0.3s;
}
@media (max-width: 767px) {
  .blog_item {
    flex-direction: column;
    height: auto;
    gap: 8px;
  }
}
.blog_item .thumbnail {
  height: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
  border-radius: 8px;
}
@media (max-width: 767px) {
  .blog_item .thumbnail {
    width: 100%;
    aspect-ratio: 2/0.8;
  }
}
.blog_item .thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.3s;
  filter: grayscale(100%) brightness(0.5);
}
@media (max-width: 767px) {
  .blog_item .thumbnail img {
    filter: grayscale(0%);
    height: auto;
  }
}
.blog_item .blog_overview {
  height: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.blog_item .blog_overview .overview_head {
  display: flex;
  gap: 8px;
}
@media (max-width: 767px) {
  .blog_item .blog_overview .overview_head {
    justify-content: center;
  }
}
.blog_item .blog_overview .date {
  color: #dfdfdf;
}
.blog_item .blog_overview .tags {
  color: #dfdfdf;
}
.blog_item .blog_overview .title {
  color: #dfdfdf;
  font-size: 1.6em;
}
@media (max-width: 767px) {
  .blog_item .blog_overview .title {
    font-size: 1.3em;
    text-align: center;
  }
}
.blog_item .blog_overview .summary {
  flex: 1;
  width: 100%;
  padding: 8px 16px;
  box-shadow: none;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (max-width: 767px) {
  .blog_item .blog_overview .summary {
    font-size: 0.8em;
  }
}
.blog_item .blog_overview .summary p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  color: #333;
}
.blog_item .blog_overview .summary .more {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 767px) {
  .blog_item .blog_overview .summary .more {
    justify-content: center;
  }
}
.blog_item .blog_overview .summary .more span {
  font-family:
    wdxl lubrifont jp n,
    sans-serif;
  font-size: 1.2em;
  line-height: 0.5em;
  padding: 8px 4px;
  color: #dfdfdf;
  background-color: #333;
  border: 2px solid #333;
  border-radius: 4px;
}
.blog_item:hover {
  transform: scale(1.03);
}
.blog_item:hover .thumbnail img {
  filter: grayscale(0%);
}
.blog_list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}
.link_button {
  font-size: 1.4em;
  color: #dfdfdf;
  text-decoration: none;
  border: 2px solid #dfdfdf;
  padding: 8px 16px;
  border-radius: 4px;
  transition:
    background-color 0.3s,
    color 0.3s;
}
.link_button:hover {
  background-color: #dfdfdf;
  color: #333;
}
.text_box {
  padding: 24px;
  background-color: #dfdfdf;
  border-radius: 16px;
  box-shadow: 16px 16px rgba(0, 0, 0, 0.8);
  font-family:
    zen maru gothic,
    sans-serif;
}
section.author_section {
  padding-top: 64px;
}
.author_content {
  display: flex;
}
@media (max-width: 767px) {
  .author_content {
    width: 80%;
    flex-direction: column;
    align-items: center;
  }
}
.author_content .author_image {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  width: 200px;
  padding-right: 32px;
  border-right: 1px solid #ccc;
  text-align: center;
}
@media (max-width: 767px) {
  .author_content .author_image {
    width: 100%;
    padding-right: 0;
    padding-bottom: 16px;
    border-right: 0;
    border-bottom: 1px solid #ccc;
  }
}
.author_content .author_image a {
  display: flex;
  line-height: 1em;
  font-size: 0.9em;
  color: #333;
}
.author_content .author_image a:hover {
  font-weight: 700;
}
.author_content .author_image .X-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #ca4469;
}
.author_content .author_image .X-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.author_content .author_text {
  flex: 1;
  display: flex;
  align-items: center;
  padding-left: 32px;
  font-size: 0.85em;
  color: #333;
  border-left: 1px solid #dfdfdf;
}
@media (max-width: 767px) {
  .author_content .author_text {
    width: 100%;
    padding: 0;
    padding-top: 16px;
    font-size: 0.7em;
  }
}
.author_content .author_text a {
  color: inherit;
}
.author_content .author_text a:hover {
  font-weight: 700;
}
.pagination {
  display: flex;
  gap: 8px;
}
.pagination span,
.pagination a {
  color: #dfdfdf;
  padding: 4px 8px;
  border: 2px solid #dfdfdf;
  border-radius: 4px;
  transition: 0.3s;
  text-decoration: none;
}
.pagination span.current,
.pagination span:hover,
.pagination a.current,
.pagination a:hover {
  background-color: #dfdfdf;
  color: #333;
}
footer {
  width: 100%;
  text-align: center;
  color: #dfdfdf;
  padding: 4px 0;
  font-size: 0.9em;
}
footer span {
  font-size: 0.7em;
}
