@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:wght@300;400;500&family=M+PLUS+1:wght@300&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Noto Sans", sans-serif;
  font-weight: 300;
  background-color: #E9F1F2;
  color: #333;
  line-height: 1.7;
  position: relative;
}
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: url("../images/sinzow_bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  opacity: 0;
  z-index: 0;
  pointer-events: none;
  mix-blend-mode: color-burn;
  animation: bgFadeIn 0.5s ease-out forwards;
}

header {
  padding: 16px 0;
  position: relative;
  width: 100%;
  z-index: 100;
  pointer-events: auto;
}

.container {
  padding: 0 16px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 16px;
}

.logo {
  width: 180px;
  margin-left: 0;
}
.logo img {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 767px) {
  .logo {
    position: fixed;
    top: 16px;
    left: 16px;
    width: 280px !important;
    z-index: 1000;
    margin: 0;
    max-width: 200px !important;
  }
  .logo.sp-only {
    animation: none !important;
    -webkit-clip-path: none !important;
            clip-path: none !important;
    opacity: 1 !important;
  }
  .logo.sp-only img {
    width: 100% !important;
    height: auto !important;
    max-width: 100% !important;
  }
}
@media screen and (max-width: 767px) {
  .menu-toggle {
    display: block;
    width: auto;
    height: auto;
    position: fixed;
    top: 16px;
    right: 16px;
    z-index: 1000;
    background: #FFFFFF;
    border: 1px solid #7EC4C4;
    border-radius: 20px;
    cursor: pointer;
    pointer-events: auto !important;
    padding: 10px 20px;
    font-size: 13px;
    color: #7EC4C4;
    transition: background-color 0.3s ease, color 0.3s ease;
    opacity: 0;
    animation: contentFadeIn 0.6s ease-out 1.6s forwards;
  }
  .menu-toggle::after {
    content: "+";
    margin-left: 6px;
    font-size: 18px;
    line-height: 1;
    transition: transform 0.3s ease;
  }
  .menu-toggle:hover {
    background-color: #7EC4C4;
    color: #FFFFFF;
  }
  .menu-toggle:hover::after {
    transform: rotate(90deg);
  }
  .menu-toggle.is-active {
    background-color: #7EC4C4;
    color: #FFFFFF;
  }
  .menu-toggle.is-active::after {
    transform: rotate(90deg);
  }
}
.header-right {
  display: none;
}

@media screen and (max-width: 767px) {
  .global-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 80px;
    padding-left: 0;
    padding-right: 0;
  }
  .global-menu.is-active {
    opacity: 1;
    visibility: visible;
  }
  .global-menu .menu-content {
    position: relative;
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    background: #FFFFFF;
    border-radius: 8px;
    padding: 40px 24px 40px 24px;
    transform: translateY(30px);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, opacity;
    margin: 0 auto;
    left: 0;
    right: 0;
  }
  .global-menu.is-active .global-menu .menu-content {
    transform: translateY(0);
    opacity: 1;
  }
  .global-menu .menu-scroll {
    max-height: calc(90vh - 80px);
    overflow-y: auto;
    padding-right: 0;
  }
  .global-menu .menu-scroll::-webkit-scrollbar {
    width: 4px;
  }
  .global-menu .menu-scroll::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
    margin-right: 10px;
  }
  .global-menu .menu-scroll::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
  }
  .global-menu .menu-close {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 36px;
    height: 36px;
    border: none;
    background: none;
    cursor: pointer;
    padding: 8px;
    transition: transform 0.3s ease;
  }
  .global-menu .menu-close:hover {
    transform: rotate(90deg);
  }
  .global-menu .menu-close::before, .global-menu .menu-close::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 2px;
    background: #000;
  }
  .global-menu .menu-close::before {
    transform: translate(-50%, -50%) rotate(45deg);
  }
  .global-menu .menu-close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
  }
  .global-menu ul {
    display: flex;
    flex-direction: column;
    gap: 24px;
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 2;
  }
  .global-menu li a {
    font-family: "M PLUS 1", sans-serif;
    font-weight: 300;
    color: #000;
    text-decoration: none;
    font-size: 16px;
    white-space: nowrap;
    font-style: italic;
    letter-spacing: 0.1em;
    position: relative;
  }
  .global-menu li a::after {
    display: none;
  }
}
.lang-switch {
  position: absolute;
  top: 16px;
  right: 60px;
  z-index: 100;
  font-size: 13px;
  font-weight: 400;
  padding: 8px;
  display: none;
}
.lang-switch a {
  color: #333;
  text-decoration: none;
}
.lang-switch a.active {
  color: #7EC4C4;
}
.lang-switch .separator {
  margin: 0 8px;
}

main {
  position: relative;
  z-index: 1;
  margin-left: 0;
  padding: 24px 16px;
}

.about,
.collection,
.interview {
  max-width: 100%;
  margin: 0 auto 80px;
  width: 100%;
  scroll-margin-top: 80px;
}

.about {
  margin-top: 24px;
}
.about h1 {
  font-family: "M PLUS 1", sans-serif;
  font-weight: 300;
  font-size: 24px;
  margin-bottom: 24px;
}
.about p {
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.8;
}

.collection h2 {
  font-family: "M PLUS 1", sans-serif;
  font-weight: 300;
  font-size: 22px;
  margin-bottom: 24px;
  font-style: italic;
}
.collection > p {
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.8;
}

.frame-icon {
  display: inline-block;
  background-color: #EA4282;
  color: #FFFFFF;
  font-size: 11px;
  padding: 3px 10px;
  border-radius: 10px;
  line-height: 1.4;
}

.custom-frame {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 20px 0 32px;
  font-size: 13px;
}
.custom-frame .frame-icon {
  flex-shrink: 0;
}

.thumbnail {
  position: relative;
}
.thumbnail .thumbnail-link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s ease;
}
.thumbnail .thumbnail-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 40px);
  background: transparent;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.thumbnail .thumbnail-link:hover::before {
  opacity: 0;
}
.thumbnail .thumbnail-link:hover img {
  transform: scale(1.02);
}
.thumbnail img {
  transition: transform 0.3s ease;
}
.thumbnail .img-wrapper {
  position: relative;
  width: 100%;
  padding-top: 76.67%;
  margin-bottom: 12px;
  overflow: hidden;
}
.thumbnail .img-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.thumbnail .img-wrapper .frame-icon {
  position: absolute;
  bottom: 10px;
  left: 5px;
  z-index: 2;
  font-size: 11px;
  padding: 3px 10px;
}
.thumbnail p {
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 10px;
}

.category {
  margin-bottom: 60px;
}
.category h3 {
  font-family: "M PLUS 1", sans-serif;
  font-weight: 300;
  font-size: 20px;
  margin-bottom: 24px;
  text-align: center;
  font-style: italic;
}
.category:first-of-type h3 {
  padding-top: 40px;
}
.category .thumbnails .thumbnail img {
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
}

.thumbnails {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.view-all-container {
  text-align: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  border: 1px solid #7EC4C4;
  border-radius: 20px;
  text-decoration: none;
  color: #7EC4C4;
  font-size: 13px;
  transition: background-color 0.3s ease, color 0.3s ease;
  background-color: transparent;
}
.btn::after {
  content: "+";
  margin-left: 6px;
  font-size: 18px;
  line-height: 1;
  transition: transform 0.3s ease;
}
.btn:hover {
  background-color: #7EC4C4;
  color: #FFFFFF;
}
.btn:hover::after {
  transform: rotate(90deg);
}

.interview h2 {
  font-family: "M PLUS 1", sans-serif;
  font-weight: 300;
  font-size: 22px;
  margin-bottom: 24px;
  font-style: italic;
}
.interview .thumbnail {
  position: relative;
}
.interview .thumbnail .thumbnail-link {
  margin-bottom: 20px;
}
.interview .thumbnail .thumbnail-link img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}
.interview .thumbnail .thumbnail-link:hover img {
  transform: scale(1.02);
}
.interview .thumbnail .thumbnail-link:hover + h3 + p + .btn {
  background-color: #7EC4C4;
  color: #FFFFFF;
}
.interview .thumbnail .thumbnail-link:hover + h3 + p + .btn::after {
  transform: rotate(90deg);
}
.interview .thumbnail h3 {
  font-size: 18px;
  font-weight: 500;
  margin: 24px 0 20px;
  line-height: 1.5;
}
.interview .thumbnail p {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 20px;
}

footer {
  text-align: center;
  padding: 32px 0;
  font-size: 12px;
}

@media screen and (max-width: 1440px) {
  .about,
  .collection,
  .interview {
    max-width: 90%;
  }
}
@media screen and (max-width: 1024px) {
  .thumbnails {
    gap: 16px;
  }
}
@media screen and (max-width: 768px) {
  main {
    width: 100%;
    padding: 0 16px;
  }
  .thumbnails {
    grid-template-columns: repeat(2, 1fr);
  }
}
h1, h2, h3 {
  letter-spacing: 0.02em;
}

p {
  letter-spacing: 0.01em;
}

.category:not(:last-child) {
  margin-bottom: 60px;
}

html {
  scroll-behavior: smooth;
}

a:focus,
.btn:focus {
  outline: 2px solid rgba(126, 196, 196, 0.5);
  outline-offset: 2px;
}

@media print {
  .btn,
  .global-menu {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .container {
    width: 95%;
  }
  .global-menu {
    padding: 10px 20px;
  }
  .global-menu ul {
    gap: 20px;
  }
}
@media screen and (max-width: 768px) {
  .about h1 {
    font-size: 22px;
  }
  .collection h2,
  .interview h2 {
    font-size: 18px;
  }
  .category h3 {
    font-size: 16px;
  }
}
@media screen and (max-width: 1024px) {
  .header-right {
    gap: 16px;
  }
}
@keyframes bgFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes logoReveal {
  from {
    -webkit-clip-path: inset(0 100% 0 0);
            clip-path: inset(0 100% 0 0);
  }
  to {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
  }
}
@keyframes contentFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
body::before {
  animation: bgFadeIn 0.5s ease-out forwards;
}

.logo {
  animation: logoReveal 0.8s cubic-bezier(0.83, 0, 0.17, 1) 0.5s forwards;
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
}

.about {
  opacity: 0;
  animation: contentFadeIn 0.8s ease-out 1.3s forwards;
}

.collection {
  opacity: 0;
  animation: contentFadeIn 0.8s ease-out 1.8s forwards;
}

.interview {
  opacity: 0;
  animation: contentFadeIn 0.8s ease-out 2.3s forwards;
}

.lang-switch {
  opacity: 0;
  animation: contentFadeIn 0.8s ease-out 2.3s forwards;
}

.logo,
.about,
.collection,
.interview,
.lang-switch,
.menu-toggle {
  will-change: transform, opacity;
}

.btn {
  transition: background-color 0.3s ease, color 0.3s ease;
}
.btn::after {
  transition: transform 0.3s ease;
}

.category,
.interview {
  opacity: 0;
  transform: translateY(30px);
  animation: scrollFadeIn 0.8s ease-out forwards;
  animation-play-state: paused;
}
.category.is-animated,
.interview.is-animated {
  animation-play-state: running;
}

@keyframes scrollFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes menuSlideIn {
  from {
    transform: scaleY(0);
  }
  to {
    transform: scaleY(1);
  }
}
@keyframes menuColorReset {
  to {
    opacity: 0;
  }
}
@keyframes menuTextReset {
  to {
    color: #7EC4C4;
  }
}
.global-menu.special-animation::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #7EC4C4;
  transform-origin: top;
  z-index: 1;
  animation: menuSlideIn 0.8s ease-out 2.3s forwards, menuColorReset 0.3s ease-out 3.4s forwards;
}
.global-menu.special-animation .pc-only li a {
  color: #FFFFFF;
  animation: menuTextReset 0.3s ease-out 3.4s forwards;
}

.global-menu.special-animation:hover .pc-only li a {
  color: #FFFFFF !important;
}
.global-menu.special-animation:hover .pc-only li a::after {
  background-color: #FFFFFF !important;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 0;
  padding-right: 0;
}
.modal.is-active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  position: relative;
  width: 95%;
  max-width: 600px;
  max-height: 90vh;
  background: #FFFFFF;
  border-radius: 8px;
  padding: 40px 24px 40px 24px;
  transform: translateY(30px);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform, opacity;
  margin: 0 auto;
  left: 0;
  right: 0;
}
.modal.is-active .modal-content {
  transform: translateY(0);
  opacity: 1;
}

.modal-close {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 36px;
  height: 36px;
  border: none;
  background: none;
  cursor: pointer;
  padding: 8px;
  transition: transform 0.3s ease;
}
.modal-close:hover {
  transform: rotate(90deg);
}
.modal-close svg {
  width: 24px;
  height: 24px;
  fill: #000;
}

.modal-scroll {
  max-height: calc(90vh - 80px);
  overflow-y: auto;
  padding-right: 0;
}
.modal-scroll::-webkit-scrollbar {
  width: 4px;
}
.modal-scroll::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
  margin-right: 10px;
}
.modal-scroll::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 3px;
}

.biography-content {
  padding: 0;
}
.biography-content h2 {
  font-size: 18px;
  margin-bottom: 16px;
  font-family: "M PLUS 1", sans-serif;
  color: #000;
  font-weight: 300;
  letter-spacing: 0.05em;
}
.biography-content h3 {
  font-size: 15px;
  margin: 24px 0 12px;
  color: #000;
  font-family: "M PLUS 1", sans-serif;
  font-weight: 300;
  letter-spacing: 0.05em;
}
.biography-content h4 {
  font-size: 14px;
  margin: 16px 0 8px;
  color: #000;
  font-family: "M PLUS 1", sans-serif;
  font-weight: 300;
}
.biography-content p {
  margin-bottom: 12px;
  line-height: 1.5;
  font-size: 13px;
}
.biography-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.biography-content li {
  margin-bottom: 8px;
  line-height: 1.5;
  font-size: 13px;
}
.biography-content a {
  color: #000;
  text-decoration: none;
}
.biography-content a:hover {
  text-decoration: underline;
}

.exhibition-group {
  margin-bottom: 24px;
}

.lazy-image {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  background: #f5f5f5;
}
.lazy-image.is-loaded {
  opacity: 1;
}

.hidden-item {
  display: none;
  opacity: 0;
  transform: translateY(20px);
}
.hidden-item.is-visible {
  display: block !important;
  opacity: 1;
  transform: translateY(0);
  animation: fadeInUp 0.6s ease-out forwards;
}

.view-all-btn.is-hidden {
  display: none;
}

.interview-page {
  position: relative;
  z-index: 1;
  margin-left: 0;
  padding: 24px 16px;
  max-width: 100%;
  margin-right: auto;
}

.interview-header {
  margin-bottom: 40px;
  margin-left: 0;
  width: 100%;
  opacity: 0;
  animation: contentFadeIn 0.6s ease-out 0.8s forwards;
}
.interview-header .interview-date {
  color: #EA4282;
  font-size: 14px;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
  text-align: left;
  display: block;
}
.interview-header .interview-title {
  display: block;
  text-align: left;
}
.interview-header .interview-title .jp {
  display: block;
  color: #EA4282;
  font-size: 24px;
  margin-bottom: 12px;
  font-weight: 300;
  letter-spacing: 0.05em;
}
.interview-header .interview-title .en {
  display: block;
  color: #EA4282;
  font-size: 14px;
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.05em;
}

.interview-content {
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: contentFadeIn 0.6s ease-out 1.2s forwards;
}
.interview-content .interview-qa {
  margin-bottom: 40px;
}
.interview-content .interview-qa .interviewer {
  color: #EA4282;
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.7;
}
.interview-content .interview-qa .interviewee {
  color: #333;
}
.interview-content .interview-qa .interviewee p {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 20px;
}
.interview-content .interview-qa .interviewee p:last-child {
  margin-bottom: 0;
}
.interview-content .interview-qa .interviewee .speaker {
  font-weight: 500;
  margin-right: 6px;
}

@media screen and (max-width: 767px) {
  .interview-images {
    margin: 40px -16px;
    width: calc(100% + 32px);
    max-width: none;
  }
  .interview-images img {
    width: 100%;
    height: auto;
    display: block;
  }
  .interview-images.pattern-a {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: none;
  }
  .interview-images.pattern-a .image-left,
  .interview-images.pattern-a .image-right {
    width: 100%;
    position: relative;
    padding-top: 75%;
    overflow: hidden;
  }
  .interview-images.pattern-a .image-left img,
  .interview-images.pattern-a .image-right img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .interview-images.pattern-b {
    position: relative;
    width: calc(100% + 32px);
    max-width: none;
    height: 240px;
    overflow: hidden;
  }
  .interview-images.pattern-b::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 0;
  }
  .interview-images.pattern-b img {
    position: relative;
    width: 100%;
    height: 240px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center center;
       object-position: center center;
    opacity: 0.29;
    z-index: 1;
  }
  .interview-images.pattern-c {
    position: relative;
    overflow: hidden;
    margin: 40px -16px;
    width: calc(100% + 32px);
    max-width: none;
  }
  .interview-images.pattern-c .slider-container {
    display: flex;
    transform: translateX(0);
    will-change: transform;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .interview-images.pattern-c .slider-container .slide-image {
    position: relative;
    padding-top: 75%;
    flex-shrink: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.4s ease;
    transform: translateZ(0);
    overflow: hidden;
  }
  .interview-images.pattern-c .slider-container .slide-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
    transform: translateZ(0);
  }
  .interview-images.pattern-c .slider-container .slide-image.main, .interview-images.pattern-c .slider-container .slide-image.sub {
    opacity: 1;
  }
  .interview-images.pattern-c .slider-nav {
    position: absolute;
    bottom: 12px;
    left: 12px;
    z-index: 2;
    display: flex;
    gap: 8px;
  }
  .interview-images.pattern-c .slider-nav button {
    background: rgba(0, 0, 0, 0.5);
    border: none;
    padding: 6px;
    cursor: pointer;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .interview-images.pattern-c .slider-nav button:hover {
    background: rgba(0, 0, 0, 0.7);
  }
  .interview-images.pattern-c .slider-nav button svg {
    width: 20px;
    height: 20px;
    fill: #fff;
  }
  .interview-images.pattern-c .slider-nav button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
  }
  .interview-images.pattern-d {
    position: relative;
    width: calc(100% + 32px);
    max-width: none;
    margin-bottom: 24px;
  }
  .interview-images.pattern-d img {
    width: 100%;
    height: auto;
    display: block;
  }
  .interview-images.pattern-d .image-caption {
    margin-top: 12px;
    margin-left: 16px;
    margin-right: 16px;
    width: auto;
    font-size: 12px;
    line-height: 1.7;
    color: #476D6B;
  }
  .interview-images.pattern-e {
    width: 90%;
    margin: 40px auto;
  }
  .interview-images.pattern-e img {
    width: 100%;
    height: auto;
    display: block;
  }
  .interview-images.pattern-e .image-caption {
    margin-top: 12px;
    font-size: 12px;
    line-height: 1.7;
    color: #476D6B;
  }
}
.caption-box {
  position: static;
  width: 100%;
  margin: 0 0 24px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.8);
  border-left: 3px solid #EA4282;
}

.caption {
  font-size: 12px;
  line-height: 1.7;
  color: #476D6B;
}

.caption-title {
  font-weight: 500;
  display: inline-block;
  margin-bottom: 6px;
}

.note-ref {
  display: inline-block;
  width: 16px;
  height: 16px;
  background-color: #EA4282;
  border-radius: 50%;
  color: #FFFFFF;
  font-size: 10px;
  line-height: 16px;
  text-align: center;
  margin-left: 4px;
  vertical-align: text-top;
  cursor: pointer;
  position: relative;
}
.note-ref::after {
  content: "i";
  font-style: italic;
  font-weight: bold;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sp-note-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sp-note-modal.is-active {
  opacity: 1;
  visibility: visible;
}
.sp-note-modal .sp-note-modal-content {
  width: 90%;
  max-width: 400px;
  background: #FFFFFF;
  border-radius: 8px;
  padding: 24px;
  position: relative;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.sp-note-modal.is-active .sp-note-modal .sp-note-modal-content {
  transform: translateY(0);
  opacity: 1;
}
.sp-note-modal .sp-note-modal-title {
  font-weight: 500;
  font-size: 16px;
  margin-bottom: 16px;
  color: #EA4282;
}
.sp-note-modal .sp-note-modal-text {
  font-size: 14px;
  line-height: 1.8;
}
.sp-note-modal .sp-note-modal-close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 32px;
  height: 32px;
  border: none;
  background: none;
  cursor: pointer;
}
.sp-note-modal .sp-note-modal-close::before, .sp-note-modal .sp-note-modal-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
  background: #333;
}
.sp-note-modal .sp-note-modal-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.sp-note-modal .sp-note-modal-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.sp-note-data {
  display: none !important;
  visibility: hidden;
  position: absolute;
  left: -9999px;
  height: 0;
  overflow: hidden;
}

.interview-credit {
  text-align: right;
  margin-top: 0;
  margin-bottom: 80px;
  font-size: 12px;
  color: #476D6B;
}

.footer {
  text-align: center;
  padding: 20px 0;
  font-size: 11px;
  color: #999;
}

@keyframes contentFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.about {
  animation: contentFadeIn 0.6s ease-out 1s forwards;
}

.collection {
  animation: contentFadeIn 0.6s ease-out 1.3s forwards;
}

.interview {
  animation: contentFadeIn 0.6s ease-out 1.6s forwards;
}

.pc-only {
  display: none !important;
}

.sp-only {
  display: block;
}

@media screen and (min-width: 768px) {
  .pc-only {
    display: block !important;
  }
  .sp-only {
    display: none !important;
  }
}
@media screen and (max-width: 480px) {
  .thumbnails {
    grid-template-columns: 1fr;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media screen and (max-width: 767px) {
  header {
    padding-top: 70px;
  }
  .container {
    justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  .logo.sp-only {
    animation: none !important;
    -webkit-clip-path: none !important;
            clip-path: none !important;
    opacity: 1 !important;
  }
}/*# sourceMappingURL=sp.css.map */