@charset "UTF-8";
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: hidden;
}

body {
  font-family: "HelveticaNeueW01-45Light", "Noto Sans Japanese", "Noto Sans SC", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  color: rgba(0, 0, 0, 0.6);
  font-weight: 400;
  line-height: 1.65;
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Roboto", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

#scroll-area {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.cursor {
  position: fixed;
  width: 16px;
  height: 16px;
  background: black;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
}

.container {
  /* position: absolute; */
  width: 6400px;
  height: 6400px;
}

.indicator {
  position: fixed;
  z-index: 999;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 4px 8px;
  font-size: 16px;
  border-radius: 4px;
  pointer-events: none;
  display: none;
}

#direction-labels {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
  font-size: 1.5vw;
  font-weight: bold;
  color: rgba(0, 0, 0, 0.4);
}

#direction-labels span {
  background: rgba(255, 255, 255, 0.9);
  padding: 4px 12px;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  transform: translate(-50%, -50%);
  position: absolute;
}

.logo {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  z-index: 8000;
}

.logo img {
  max-width: 250px;
  height: auto;
}
@media (max-width: 768px) {
  .logo img {
    max-width: 180px;
  }
}

.lightbox {
  display: none;
  position: fixed;
  z-index: 10000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
}

.lightbox-content {
  position: absolute;
  top: 5%;
  left: 5%;
  width: 90%;
  height: 95%;
  background: #fff;
  overflow: auto;
  padding: 0.5rem;
  box-shadow: 0 0 20px #000;
}

.lightbox-close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10001;
  color: #333;
  cursor: pointer;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border: none;
  box-sizing: border-box;
  padding: 0;
}
@media (max-width: 768px) {
  .lightbox-close {
    width: 40px;
    height: 40px;
  }
}
.lightbox-close span {
  position: absolute;
  width: 141.42%;
  height: 1px;
  transform: rotate(45deg);
  background-color: #333;
}
.lightbox-close span:nth-child(2) {
  transform: rotate(-45deg);
}

.post-thumbnail {
  width: 100%;
  height: 93vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 60px;
  margin: 0;
}
@media (max-width: 768px) {
  .post-thumbnail {
    height: auto;
    padding: 60px;
    margin-top: 40px;
  }
}
.post-thumbnail img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.post-main {
  display: grid;
  align-items: flex-start;
  grid-template-columns: 40% 1fr;
  margin-top: 80px;
  gap: 100px;
}
@media (max-width: 992px) {
  .post-main {
    gap: 50px;
  }
}
@media (max-width: 768px) {
  .post-main {
    grid-template-columns: 1fr;
    margin-top: 0;
    gap: 3rem;
  }
}

.post-header {
  position: sticky;
  top: 1rem;
  display: flex;
  flex-direction: column;
  max-width: 500px;
  justify-self: flex-end;
}
@media (max-width: 768px) {
  .post-header {
    position: static;
  }
}

.post-title {
  font-size: 1.25rem;
  font-weight: normal;
  line-height: 1.1;
  display: flex;
}
@media (max-width: 768px) {
  .post-title {
    justify-content: flex-start;
    margin: 0;
  }
}

.post-description {
  font-size: 0.875rem;
  line-height: 1.6;
  margin-top: 0.5rem;
  white-space: pre-wrap;
}
@media (max-width: 768px) {
  .post-description {
    text-align: left;
    margin-top: 1rem;
    max-width: none;
  }
}

.post-content > *:not(:last-child) {
  margin-bottom: 2.5rem;
}
.post-content p {
  margin-top: 0;
}
.post-content .wp-block-columns {
  gap: 2rem;
}

.post-categories-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  justify-content: flex-end;
  margin: 80px 0 0.5rem;
}
@media (max-width: 768px) {
  .post-categories-list {
    margin: 20px 0 0.5rem;
  }
}

.post-category-link {
  font-size: 0.875rem;
  color: rgba(0, 0, 0, 0.6);
  text-decoration: none;
  line-height: 1;
}
.post-category-link:hover {
  color: rgba(0, 0, 0, 0.8);
}

.post-tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 0.5rem;
  list-style: none;
  justify-content: flex-end;
  margin: 0;
}
.post-tags-list li {
  display: flex;
}

.post-tag-link {
  font-size: 0.75rem;
  color: rgba(0, 0, 0, 0.6);
  text-decoration: none;
  line-height: 1;
}
.post-tag-link:hover {
  color: rgba(0, 0, 0, 0.8);
}

.post-prevnext-split {
  display: flex;
  justify-content: space-between;
  margin: 80px 0 0;
}

.post-prev,
.post-next {
  flex: 1;
  font-size: 1.25rem;
}
@media (max-width: 768px) {
  .post-prev,
  .post-next {
    flex: 0 0;
  }
}

.post-prev {
  text-align: left;
}

.post-next {
  text-align: right;
}

.post-prev-link,
.post-next-link {
  text-decoration: none;
  color: rgba(0, 0, 0, 0.6);
}
.post-prev-link:hover,
.post-next-link:hover {
  color: rgba(0, 0, 0, 0.8);
}
.post-prev-link:visited,
.post-next-link:visited {
  color: rgba(0, 0, 0, 0.6);
}

.post-pages-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0;
  list-style: none;
  padding: 0;
  flex: 1;
}
.post-pages-list li {
  font-size: 0.875rem;
}
.post-pages-list li:not(:has(.post-page-link)) {
  color: #000;
}

.post-page-link {
  display: inline-block;
  text-decoration: none;
  color: rgba(0, 0, 0, 0.6);
}

.pagination-dots {
  padding: 0 6px;
  color: #aaa;
  font-size: 0.875rem;
}

.loader-container {
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  background-color: rgba(0, 0, 0, 0.8);
}

.loader-container.hide {
  display: none;
}

.loader {
  width: 72px;
  height: 72px;
  border: 1px solid #fff;
  border-bottom-color: transparent;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.post-list {
  margin: 0 150px 80px;
}
@media (max-width: 768px) {
  .post-list {
    margin: 0;
  }
}

.post-list-title {
  margin: 40px 0;
  font-weight: normal;
  font-size: 2rem;
}
@media (max-width: 768px) {
  .post-list-title {
    margin: 20px 0;
    font-size: 1.25rem;
    padding-right: 80px;
  }
}

.post-list-items {
  display: flex;
  flex-direction: column;
  list-style: none;
  gap: 80px;
  margin: 0;
  padding: 0;
}
@media (max-width: 768px) {
  .post-list-items {
    margin: 80px 0 0;
  }
}
.post-list-items a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(0, 0, 0, 0.6);
  text-decoration: none;
  transition: color 0.3s ease, opacity 0.3s ease;
}
@media (max-width: 768px) {
  .post-list-items a {
    flex-direction: column;
    gap: 1.5rem;
  }
}
.post-list-items a:visited {
  color: rgba(0, 0, 0, 0.6);
}
.post-list-items a:hover {
  color: #000;
  opacity: 0.8;
}
.post-list-items h3 {
  font-size: 1.25rem;
  font-weight: normal;
  line-height: 1.1;
  margin: 0;
  white-space: pre-wrap;
}
@media (max-width: 768px) {
  .post-list-items h3 {
    font-size: 1rem;
    text-align: left;
    width: 100%;
    order: 2;
  }
}
.post-list-items figure {
  width: 300px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  overflow: hidden;
}
@media (max-width: 768px) {
  .post-list-items figure {
    width: 250px;
    height: 250px;
  }
}
.post-list-items figure img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}

body:has(#wpadminbar) .menu-open {
  top: 32px;
}

.menu-open {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 9999;
  color: #333;
  cursor: pointer;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border: none;
  box-sizing: border-box;
  padding: 0;
}
@media (max-width: 768px) {
  .menu-open {
    width: 60px;
    height: 60px;
  }
}
.menu-open span {
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #333;
}
.menu-open span:nth-child(2) {
  transform: rotate(-90deg) translateY(-50%);
}

.menu {
  display: none;
  position: fixed;
  z-index: 10000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
}

.menu-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 70%;
  height: auto;
  background: #fff;
  overflow: auto;
  padding: 200px 1rem 1rem;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 20px #000;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media (max-width: 768px) {
  .menu-inner {
    padding: 120px 1rem 1rem;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 2rem;
  }
}

.menu-close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10001;
  color: #333;
  cursor: pointer;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border: none;
  box-sizing: border-box;
  padding: 0;
}
@media (max-width: 768px) {
  .menu-close {
    width: 40px;
    height: 40px;
  }
}
.menu-close span {
  position: absolute;
  width: 141.42%;
  height: 1px;
  transform: rotate(45deg);
  background-color: #333;
}
.menu-close span:nth-child(2) {
  transform: rotate(-45deg);
}

.menu-nav-items {
  display: flex;
  flex-direction: column;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 1.25rem;
}
@media (max-width: 768px) {
  .menu-nav-items {
    font-size: 1.125rem;
  }
}
.menu-nav-items ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
}
.menu-nav-items li[data-jump] {
  cursor: pointer;
}
.menu-nav-items li[data-jump]:hover {
  color: rgba(0, 0, 0, 0.8);
}
.menu-nav-items a {
  color: rgba(0, 0, 0, 0.6);
  text-decoration: none;
}
.menu-nav-items a:visited {
  color: rgba(0, 0, 0, 0.6);
}
.menu-nav-items a:hover {
  color: rgba(0, 0, 0, 0.8);
}

.menu-sub {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 40px;
  font-size: 0.75rem;
}
@media (max-width: 768px) {
  .menu-sub {
    flex-direction: column;
    gap: 0.125rem;
    align-items: flex-start;
  }
}
.menu-sub ul {
  display: flex;
  align-items: center;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.menu-sub a {
  color: rgba(0, 0, 0, 0.6);
  text-decoration: none;
  transition: color 0.3s ease;
}
.menu-sub a:visited {
  color: rgba(0, 0, 0, 0.6);
}
.menu-sub a:hover {
  color: rgba(0, 0, 0, 0.8);
}

.copyright {
  font-size: 0.75rem;
}

.post-list-prevnext-split {
  display: flex;
  justify-content: space-between;
  margin: 80px 0 0;
}

.post-list-prev,
.post-list-next {
  flex: 1;
  font-size: 1.25rem;
}

.post-list-prev {
  text-align: left;
}

.post-list-next {
  text-align: right;
}

.post-list-prev-link,
.post-list-next-link {
  text-decoration: none;
  color: rgba(0, 0, 0, 0.6);
}
.post-list-prev-link:hover,
.post-list-next-link:hover {
  color: rgba(0, 0, 0, 0.8);
}
.post-list-prev-link:visited,
.post-list-next-link:visited {
  color: rgba(0, 0, 0, 0.6);
}

.post-list-pages-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0;
  list-style: none;
  padding: 0;
  flex: 1;
  align-items: center;
}
.post-list-pages-list li {
  font-size: 0.875rem;
}
.post-list-pages-list li:not(:has(.post-page-link)) {
  color: #000;
}

.post-list-page-link {
  display: inline-block;
  text-decoration: none;
  color: rgba(0, 0, 0, 0.6);
}

.page-title {
  margin: 40px 0;
  font-weight: normal;
  font-size: 2rem;
}

.scroll-indicator {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 1000;
  display: none;
}

.arrow {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 400px;
  aspect-ratio: 1/1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 768px) {
  .arrow {
    width: 250px;
  }
}

@keyframes fadeBlink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  to {
    opacity: 0;
    visibility: hidden;
  }
}
/* Skeleton Styles */
@keyframes skeleton-loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
#post-skeleton .skeleton-thumbnail,
#post-skeleton .skeleton-title,
#post-skeleton .skeleton-line,
#post-skeleton .skeleton-taxonomy,
#post-skeleton .skeleton-nav,
#post-skeleton .skeleton-pages {
  background: linear-gradient(90deg, #e0e0e0 25%, #f0f0f0 50%, #e0e0e0 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s ease-in-out infinite;
  border-radius: 4px;
}
#post-skeleton .skeleton-thumbnail {
  width: auto;
  height: 100%;
  aspect-ratio: 1/1;
  object-fit: contain;
}
#post-skeleton .skeleton-title {
  height: 2rem;
  width: 60%;
  margin: 40px 0;
}
#post-skeleton .skeleton-line {
  height: 1em;
  margin-bottom: 1em;
}
#post-skeleton .skeleton-line.skeleton-line-short {
  width: 70%;
}
#post-skeleton .skeleton-taxonomy {
  height: 1.5em;
  width: 120px;
  margin-bottom: 0.5em;
}
#post-skeleton .skeleton-nav {
  height: 1.5em;
  width: 60px;
}
#post-skeleton .skeleton-pages {
  height: 1.5em;
  width: 200px;
  flex: 1;
}
#post-skeleton .post-prevnext-split {
  display: flex;
  gap: 20px;
  align-items: center;
}

#post-list-skeleton .skeleton-thumbnail,
#post-list-skeleton .skeleton-title,
#post-list-skeleton .skeleton-line {
  background: linear-gradient(90deg, #e0e0e0 25%, #f0f0f0 50%, #e0e0e0 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s ease-in-out infinite;
  border-radius: 4px;
}
#post-list-skeleton .skeleton-title {
  height: 2rem;
  width: 60%;
  margin: 40px 0;
}
@media (max-width: 768px) {
  #post-list-skeleton .skeleton-title {
    margin: 20px 0;
    height: 1.25rem;
    width: 50%;
  }
}
#post-list-skeleton .skeleton-post-list-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  #post-list-skeleton .skeleton-post-list-item {
    flex-direction: column;
    gap: 1.5rem;
  }
}
#post-list-skeleton .skeleton-line {
  height: 1.25rem;
  width: 300px;
}
@media (max-width: 768px) {
  #post-list-skeleton .skeleton-line {
    height: 1rem;
    width: 100%;
    order: 2;
  }
}
#post-list-skeleton .skeleton-thumbnail {
  width: 300px;
  height: 300px;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  #post-list-skeleton .skeleton-thumbnail {
    width: 250px;
    height: 250px;
    order: 1;
  }
}

/************************************************
24. Forms
************************************************/
form {
  display: block;
}

form div {
  display: block;
  margin-bottom: 8px;
  overflow: hidden;
}

form span {
  margin-bottom: 8px;
  overflow: hidden;
}

form span.required {
  display: inline;
}

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

form legend {
  font-weight: bold;
  padding-top: 10px;
}

form label {
  margin-top: 6px;
}

form li > label {
  font-weight: bold;
}

form li li > label {
  font-weight: normal;
}

form span label {
  font-size: 0.8em;
}

form input[type=url],
form input[type=tel],
form input[type=email],
form input[type=text],
form input[type=password],
form input[type=number],
form textarea {
  display: block;
  box-sizing: border-box;
  font-family: inherit;
  font-size: 1em;
  line-height: 1.4;
  padding: 8px;
  border: 3px solid #dddddd;
  border-radius: 0;
}

form input[type=url],
form input[type=tel],
form input[type=email],
form input[type=text],
form input[type=password],
form input[type=number] {
  width: 50%;
}
@media (max-width: 768px) {
  form input[type=url],
  form input[type=tel],
  form input[type=email],
  form input[type=text],
  form input[type=password],
  form input[type=number] {
    width: 100%;
  }
}

form textarea {
  width: 100%;
}

form input[type=checkbox],
form input[type=radio] {
  display: inline-block;
  margin-left: 0px;
  margin-right: 6px;
}

form input[type=submit] {
  margin-top: 0px;
  border-radius: 0;
}

form .form-submit {
  padding: 8px 0px;
}

textarea {
  overflow: auto;
}

address {
  margin: 12px 0px;
}

select {
  display: block;
  color: rgba(0, 0, 0, 0);
  text-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
  width: auto;
  max-width: 100%;
  font-size: 1.2em;
  line-height: 1.6;
  margin-bottom: 6px;
  padding: 6px 46px 6px 8px !important;
  box-shadow: none;
  border: 3px solid rgba(0, 0, 0, 0.12);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  background-image: linear-gradient(45deg, transparent 50%, gray 50%), linear-gradient(135deg, gray 50%, transparent 50%), linear-gradient(to right, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.12));
  background-position: calc(100% - 16px) 50%, calc(100% - 11px) 50%, calc(100% - 32px) 6px;
  background-size: 5px 5px, 5px 5px, 1px 1.5em;
  background-repeat: no-repeat;
  /* reset */
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
}