@charset "UTF-8";
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes slideIn {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
body {
  font-family: "Noto Sans JP", sans-serif;
  margin: 0;
  background-color: #121212;
  color: #e0e0e0;
}

body.is-nav-active,
body.modal-open {
  overflow: hidden;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 500;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  background-color: #1e1e1e;
  padding: 20px 40px;
  text-align: left;
  border-bottom: 1px solid #3a3a3a;
  transition: padding 0.3s ease;
}
header h1 {
  font-family: "Montserrat", sans-serif;
  font-size: 2.2em;
  margin: 0;
  margin-bottom: 0.1em;
  transition: font-size 0.3s ease;
}
@media (max-width: 768px) {
  header h1 {
    font-size: 1.6em;
  }
}
header p {
  font-size: 1em;
  color: #a0a0a0;
  margin: 0;
  max-width: 500px;
  transition: all 0.3s ease;
  overflow: hidden;
}
header.is-scrolled {
  padding: 10px 40px;
}
header.is-scrolled h1 {
  font-size: 1.8em;
}
header.is-scrolled p {
  opacity: 0;
  height: 0;
  margin: 0;
  visibility: hidden;
}

main {
  padding: 20px;
  /* JSでヘッダーとフッターの高さ分のpaddingを追加します */
}

footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 500;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  background-color: #1e1e1e;
  color: #a0a0a0;
  font-size: 0.9em;
  border-top: 1px solid #3a3a3a;
  gap: 8px;
}
footer .footer-title {
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  color: #e0e0e0;
  font-size: 1em;
}
footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 20px;
}
footer p {
  margin: 0;
}
footer a {
  color: #a0a0a0;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}
footer a:hover {
  color: #e0e0e0;
  text-decoration: underline;
}

.gallery {
  -moz-column-gap: 15px;
       column-gap: 15px;
  -moz-column-count: 2;
       column-count: 2;
}
@media (min-width: 576px) {
  .gallery {
    -moz-column-count: 3;
         column-count: 3;
  }
}
@media (min-width: 768px) {
  .gallery {
    -moz-column-count: 4;
         column-count: 4;
  }
}
@media (min-width: 992px) {
  .gallery {
    -moz-column-count: 5;
         column-count: 5;
  }
}
@media (min-width: 1200px) {
  .gallery {
    -moz-column-count: 6;
         column-count: 6;
  }
}

.gallery-item {
  display: none; /* JSで表示を制御するため、デフォルトは非表示 */
  -moz-column-break-inside: avoid;
       break-inside: avoid; /* Prevent items from breaking across columns */
  margin-bottom: 15px;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.gallery-item::after {
  content: "VIEW";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  letter-spacing: 1px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none; /* クリックイベントを透過させる */
}
.gallery-item:hover img {
  transform: scale(1.05);
}
.gallery-item:hover::after {
  opacity: 1;
}

.gallery-empty-message {
  text-align: center;
  width: 100%;
  padding: 4rem 1rem;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
  flex-direction: column; /* 子要素（画像とメタ情報）を縦に並べる */
  justify-content: center;
  align-items: center;
}
.modal.show {
  display: flex;
}

.modal-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 993px) {
  .modal-container {
    flex-direction: row;
    align-items: flex-end;
    justify-content: center;
    gap: 2rem;
    padding: 0 40px;
    box-sizing: border-box;
  }
}

.modal-content {
  display: block;
  animation: zoomIn 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  margin: auto; /* 中央寄せ */
  -o-object-fit: contain;
     object-fit: contain; /* アスペクト比を保ったままコンテナに収める */
  max-width: calc(100vw - 40px); /* 左右に少し余白を確保 */
  max-height: 80vh;
}
@media (max-width: 768px) {
  .modal-content {
    max-height: 70vh;
  }
}
@media (min-width: 993px) {
  .modal-content {
    margin: 0;
    max-width: 65vw;
    max-height: 90vh;
  }
}

#modal-caption {
  text-align: center;
  color: #ccc;
  padding: 15px 0;
  font-size: 1.2em;
  animation: fadeIn 0.5s;
}
#modal-caption:empty {
  display: none;
}

.modal-meta {
  color: #e0e0e0;
  line-height: 1.6;
  max-width: 500px;
  margin: 15px auto 0;
  padding: 0 20px;
  box-sizing: border-box;
  text-align: left;
  max-height: 28vh;
  overflow-y: auto;
  width: 100%;
}
.modal-meta .meta-item {
  display: flex;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.modal-meta .meta-item:last-child {
  border-bottom: none;
}
.modal-meta .meta-item.meta-title {
  padding-bottom: 15px;
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.modal-meta .meta-item.meta-title .meta-value {
  font-size: 1.5em;
  font-weight: bold;
  color: #fff;
}
.modal-meta .meta-icon {
  flex-shrink: 0;
  margin-right: 12px;
  color: #a0a0a0;
}
.modal-meta .meta-icon svg {
  width: 18px;
  height: 18px;
  vertical-align: middle;
}
.modal-meta .meta-label {
  font-weight: normal;
  color: #a0a0a0;
  margin-right: 10px;
  min-width: 80px;
}
.modal-meta .meta-value {
  color: #ddd;
  flex-grow: 1;
  word-break: break-word;
}
@media (max-width: 768px) {
  .modal-meta {
    margin-top: 10px;
    font-size: 14px;
    max-height: 25vh;
    text-align: left;
    padding: 0 10px;
    margin-bottom: 30px;
  }
}
@media (min-width: 993px) {
  .modal-meta {
    margin: 0;
    max-width: 320px;
    max-height: 90vh;
    background-color: rgba(20, 20, 20, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 20px 25px;
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
  }
}

.close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
  cursor: pointer;
}
.close:hover, .close:focus {
  color: #bbb;
  text-decoration: none;
}

.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: auto;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 24px;
  transition: 0.3s ease;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.6);
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

/* スマートフォン表示でのボタン位置調整 */
@media (max-width: 768px) {
  /* 前へ/次へ ボタンのサイズと位置を調整 */
  .prev,
  .next {
    top: 35%; /* 画像の中央あたりに */
    transform: translateY(-50%);
    font-size: 2rem;
    padding: 16px 8px; /* 左右のpaddingを少し減らす */
  }
  /* 閉じるボタンの位置を調整 */
  .close {
    top: 15px;
    right: 25px;
    font-size: 40px;
    line-height: 1;
  }
}
.global-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  z-index: 505;
  opacity: 0;
  transition: opacity 0.3s ease;
  visibility: hidden;
}
body.is-nav-active .global-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  visibility: visible;
}
.global-nav ul {
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}
.global-nav li {
  margin: 20px 0;
  opacity: 0;
  transform: translateY(20px);
}
body.is-nav-active .global-nav li {
  animation: slideIn 0.5s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}
body.is-nav-active .global-nav li:nth-child(1) {
  animation-delay: 0.22s;
}
body.is-nav-active .global-nav li:nth-child(2) {
  animation-delay: 0.29s;
}
body.is-nav-active .global-nav li:nth-child(3) {
  animation-delay: 0.36s;
}
body.is-nav-active .global-nav li:nth-child(4) {
  animation-delay: 0.43s;
}
body.is-nav-active .global-nav li:nth-child(5) {
  animation-delay: 0.5s;
}
.global-nav a {
  color: white;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-size: 1.5rem;
  padding: 10px;
  transition: color 0.3s ease;
}
.global-nav a:hover {
  color: #ccc;
}

.hamburger {
  display: block;
  position: fixed;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 510;
  padding: 0;
}
.hamburger span {
  display: block;
  position: absolute;
  left: 5px;
  width: 30px;
  height: 2px;
  background-color: #e0e0e0;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.hamburger span:nth-child(1) {
  top: 10px;
}
.hamburger span:nth-child(2) {
  top: 19px;
}
.hamburger span:nth-child(3) {
  top: 28px;
}
body.is-nav-active .hamburger span {
  background-color: white;
}
body.is-nav-active .hamburger span:nth-child(1) {
  top: 19px;
  transform: rotate(45deg);
}
body.is-nav-active .hamburger span:nth-child(2) {
  opacity: 0;
}
body.is-nav-active .hamburger span:nth-child(3) {
  top: 19px;
  transform: rotate(-45deg);
}

.page-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 30px 40px;
  background-color: #1e1e1e;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}
.page-content h2 {
  font-family: "Montserrat", sans-serif;
  margin-top: 0;
  margin-bottom: 20px;
}
.page-content column h3,
.page-content p {
  text-align: center;
}
.page-content .profile-picture {
  display: block;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0 auto 30px auto;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.page-content.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  max-width: 1100px;
}
@media (max-width: 768px) {
  .page-content.two-column {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.social-links {
  margin-top: 40px;
  text-align: center;
}
.social-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-flex;
  gap: 25px;
}
.social-links a {
  color: #a0a0a0;
  transition: color 0.3s ease;
}
.social-links a:hover {
  color: #bb86fc;
}
.social-links svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  fill: currentColor;
}

.contact-form .form-group {
  margin-bottom: 20px;
}
.contact-form fieldset {
  border: none;
  padding: 0;
  margin: 0;
}
.contact-form legend,
.contact-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
}
.contact-form legend {
  padding: 0;
  margin-bottom: 12px;
}
.contact-form .radio-item {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}
.contact-form .radio-item:last-child {
  margin-bottom: 0;
}
.contact-form .radio-item label {
  font-weight: normal;
  margin-bottom: 0;
  cursor: pointer;
}
.contact-form input[type=radio] {
  margin-right: 10px;
  cursor: pointer;
}
.contact-form input[type=text],
.contact-form input[type=email],
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #3a3a3a;
  background-color: rgb(30.75, 30.75, 30.75);
  color: #e0e0e0;
  border-radius: 4px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1em;
  box-sizing: border-box;
  transition: border-color 0.3s;
}
.contact-form input[type=text]:focus,
.contact-form input[type=email]:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #bb86fc;
}
.contact-form .submit-btn {
  display: inline-block;
  background-color: #bb86fc;
  color: #121212;
  border: none;
  padding: 12px 24px;
  font-family: "Montserrat", sans-serif;
  font-size: 1em;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
}
.contact-form .submit-btn:hover {
  background-color: rgb(214.9677419355, 183.7661290323, 253.2338709677);
}

.loader {
  display: none;
  width: 50px;
  height: 50px;
  border: 5px solid #f3f3f3;
  border-top: 5px solid #e0e0e0;
  border-radius: 50%;
  margin: 40px auto;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.filter-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 15px;
  transition: margin-top 0.3s ease;
  width: 100%;
  padding: 0 20px;
  box-sizing: border-box;
}

.filter-group {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
}
@media (max-width: 768px) {
  .filter-group {
    justify-content: flex-start;
    overflow-x: auto;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
  }
  .filter-group::-webkit-scrollbar {
    display: none; /* Chrome, Safari, and Opera */
  }
}

.filter-label {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
}

.filter-checkbox {
  display: none;
}

.filter-btn {
  padding: 8px 20px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #e0e0e0;
  background-color: transparent;
  border: 1px solid #3a3a3a;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.filter-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.filter-checkbox:checked + .filter-btn {
  background-color: #bb86fc;
  color: #121212;
  border-color: #bb86fc;
}

header.is-scrolled .filter-container {
  margin-top: 10px;
}

.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background-color: rgba(187, 134, 252, 0.8);
  color: #121212;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  border-radius: 50%;
  text-decoration: none;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
}
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background-color: #bb86fc;
}

/**
 * Accessibility helpers
 */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}/*# sourceMappingURL=style.css.map */