:root {
  color-scheme: light;
}
body, html {
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  width: 100vw;
  box-sizing: border-box;
  font-family: 'Kaisei Decol', serif;
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
img, video {
  display: block;
  max-width: 100%;
  height: auto;
  aspect-ratio: attr(width) / attr(height);
}
@font-face {
  font-family: 'MyFont';
  src: url('myfont.woff2') format('woff2');
  font-display: swap;
}
img[loading="lazy"] {
  aspect-ratio: 16/9;
}
/*共通 */ 
.section-title {
    font-size: 2.5rem;
    text-align: center;
    color: #d4a172;
    text-shadow: 0 0 5px black;
    margin-top: 1rem;
    margin-bottom: 2rem;
    font-family: 'Zen Old Mincho', serif;
    font-weight: 400;
    text-shadow: 0 0 5px black;
    white-space: nowrap;
}
.section-title .symbol {
  font-size: 0.7em;
  vertical-align: middle;
  line-height: 1;
  display: inline-block;
  transform: translateY(-10%); 
}

/*header*/ 
.scroll-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  cursor: pointer;
  animation: fadeIn 2s ease-in-out forwards;
}
.scroll-text {
  font-size: 1rem;
  margin-bottom: 0.2rem;
  display: inline-block;
  cursor: pointer;
  color: #f5f5f5;
  text-shadow: 0 0 1px black;
}
.scroll-text:hover {
  animation: dropUp 0.6s forwards;
}
@keyframes dropUp {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(10px);
    opacity: 0;
  }
  51% {
    transform: translateY(-10px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.scroll-arrow-wrapper {
  display: inline-block;
  animation: bounce 1.8s ease-in-out infinite;
  padding-bottom: 5.5rem;
}
.scroll-arrow {
  width: 14px;
  height: 14px;
  border-left: 1.5px solid #e7e7e7;
  border-bottom: 1.5px solid #e7e7e7;
  transform: rotate(-45deg);
  margin: 0 auto;
  filter: drop-shadow(0 0 1px rgba(0, 0, 0, 0.5));
}
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}
.hero {
  position: relative;
  width: 100%;
  height: 100vh; 
  background: url('images/top.png') no-repeat center center / cover;
}
.hero-ui {
  position: absolute;
  top: 2%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}
.section-links {
  display: flex;
  gap: 5rem;
  font-family: 'Kaisei Decol', serif;
}
.section-links a {
  color: #f5f5f5;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.2rem;
  transition: color 0.3s;
  text-shadow: 0 0 5px black;
  padding: 0.5rem;
  margin: auto;
  white-space: nowrap;
}
.section-links a:hover { opacity: 0.8; }
.sns-links { display: flex; gap: 1.5rem; }
.sns-links a {
  color: #f5f5f5;
  font-size: 1.5rem;
  transition: color 0.3s;
  text-shadow: 0 0 5px black;
  margin: auto;
}
.sns-links a:hover { opacity: 0.8; }
.fixed-header {
  font-family: 'Kaisei Decol', serif;
  position: fixed;
  top: 0;
  width: 100%;
  background: #111111;
  color: #f5f5f5;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  z-index: 1000;
}
.fixed-header.visible {
  opacity: 1;
  pointer-events: auto;
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.7rem 3rem;
  max-width: 1200px;
  margin: 0 auto;
}
.fixed-header .logo img { height: 50px; }
.fixed-header .section-links { gap: 2rem; }
@media (max-width:1200px) {
  .hero-ui .section-links { display: none; }
}
.hamburger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  gap: 6px;
}
.hamburger-menu {
  background-color: #f5f5f5;
  transition: all 0.3s ease;
}
@media (max-width: 1200px) {
  .hamburger {
    display: flex;
  }
}
.mobile-menu {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 100%;
  right: 0;
  background: #f5f5f5;
  width: 100%;
  text-align: center;
}
.mobile-menu a {
  padding: 0.7rem;
  text-decoration: none;
  color: #ff1493;
  text-shadow: 0 0 0px black;
  font-size: 1.2rem;
}
.mobile-menu.flex { display: flex; }
@media (max-width: 1200px) {
  .fixed-header .section-links { display: none; }
  .hamburger { display: flex; }
}
.mobile-menu a:hover {
  color: #ff1493;
}
.normal-header {
  font-family: 'Kaisei Decol', serif;
  position: fixed;
  top: 0;
  width: 100%;
  background: #111111;
  color: #f5f5f5;
  z-index: 1000;
}
.normal-header .header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.7rem 3rem;
  max-width: 1200px;
  margin: 0 auto;
}
.normal-header .logo img { height: 50px; }
.normal-header .section-links { gap: 2rem; }
@media (max-width: 1200px) {
  .normal-header .section-links { display: none; }
  .hamburger { display: flex; }
}

#foriio-slider {
    width: 100%;
  }
#foriio-slider .slider-wrapper {
    width: 100vw;
    overflow: hidden;
  }
#foriio-slider .slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
  }
#foriio-slider .slide-item {
    flex: 0 0 100%;
    box-sizing: border-box;
    padding: 0;
  }
#foriio-slider .slide-item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 16 / 9;
  }
@media (min-width: 1024px) {
    #foriio-slider .slide-item {
      flex: 0 0 33.3333%;
    }
  }
.slide-item {
    position: relative;
    cursor: pointer;
    transition: filter 0.5s ease;
    text-align: center;
    user-select: none;
    filter: brightness(1);
    transition: filter 0.5s ease;
  }
.slide-item:hover {
    filter: brightness(1);
  }
.slide-item img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
  }

/*Profile*/ 
.profile-section {
  min-height: 10vh;
  margin: auto;
  padding: 2rem 2rem;
}
.profile-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .profile-container {
    flex-direction: row;
    align-items: stretch;
  }
  .profile-container > .w-full.md\:w-2\/3 {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
.profile-image-wrapper {
width: 100%;
}
.profile-image {
width: 100%;
height: auto;
object-fit: cover;
}
.name {
  color: #ff1493;
  text-shadow: 0 0 5px black;
  font-size: 1.5rem;
  transform: translateX(-0.2rem);
}
.profile {
  font-size: 0.9rem;
  color: #f5f5f5;
  text-shadow: 0 0 5px black;
}
.info-kitune {
  text-align: left;
  color: #f5f5f5;
  text-shadow: 0 0 5px black;
  padding-top: 3rem;
  line-height: 1.5rem;
  font-size: 1rem;
}

.portfolio-section {
  min-height: 10vh;
  margin: auto;
  padding: 0rem;
  padding-top: 2rem;
}
.artist-block {
  margin-bottom: 2.5rem;
}
.artist-block h3 {
  font-size: 1.15rem;
  color: #d4a172;
  border-bottom: 1px solid #d4a172;
  padding-bottom: 0.3rem;
  margin-bottom: 0.3rem;
  letter-spacing: 0.1rem;
}
.artist-block p {
  text-align: left;
  color: #f5f5f5;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.V-model {
  color: #c1c1c1;
  font-weight: 500;
  padding-left: 0rem;
  font-size: 0.8rem;
}
.links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding-left: 0rem;
}
.links a {
  color: #c1c1c1;
  font-weight: 500;
  padding-left: 1rem;
  font-size: 0.8rem;
}
.portfolio-wrapper {
  margin: 0 auto;
  text-align: center;
}
.fallback-text {
  color: #f5f5f5;
  margin-bottom: 1rem;
  font-size: 1.125rem;
}
.fallback-button {
  display: inline-block;
  font-size: 1rem;
  color: #f5f5f5;
  font-weight: bold;
  border: none;
  border-bottom: 1.5px solid #d4a172;
  margin: 3px 0;
  font-family: 'Zen Old Mincho', serif;
  text-shadow: 0 0 5px black;
  white-space: nowrap;
  width: 90px;
  transition: opacity 0.3s ease;
  padding-top: 2rem;
}
.fallback-button:hover {
  opacity: 0.8;
}
.more {
  text-align: center;
}
.iframe-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 12rem;
}
.iframe-wrapper iframe {
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease;
  transform-origin: center center;
}
.iframe-wrapper:hover iframe {
  transform: scale(1.2);
}

/* News */
.news-section {
  padding: 3rem 2rem;
}
#news-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  
  text-shadow: 0 0 5px black;
}
.news-item {
  display: flex;
  flex-direction: column;
  padding: 1rem;
  border-top: 1px solid #ff1493;
  border-bottom: 1px solid #ff1493;
  cursor: pointer;
  transition: background 0.2s;
}
.news-item:hover {
  background: #ff1493;
  text-shadow: 0 0 5px #ff1493;
}
.news-meta {
  font-size: 0.8rem;
  color: #aaa;
  margin-bottom: 0.2rem;
}
.news-category {
  color: #ff1493;
  border: 1px solid #ff1493;
  padding: 0.1rem 0.5rem;
  font-size: 0.8rem;
  font-weight:500;
  margin-left: 0.5rem;
}
.news-item:hover .news-category,
.news-item:hover .news-meta {
  color: #f5f5f5;
  border-color: #f5f5f5;
}
.news-title {
  font-size: 1rem;
  color: #f5f5f5;
}
/* モーダル */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: #00000080;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
  padding-top: 2rem;
}
.modal-overlay.hidden {
  display: none;
}
.modal-content {
  background: #f5f5f5;
  max-width: 1200px;
  width: 90%;
  padding: 1.2rem;
  position: relative;
  max-height: 65vh;
  overflow-y: auto;
  overflow-x: hidden;
}
.modal-content-text {
  font-size: 1.2rem;
  line-height: 1.6;
  overflow-y: auto;
  overflow-x: hidden;
  word-wrap: break-word;
  word-break: break-word;
  box-sizing: border-box;
  padding-top: 2rem;
}
.modal-close {
  position: absolute;
  top: 0;
  right: 0.7rem;
  font-size: 2rem;
  border: none;
  background: none;
  cursor: pointer;
}
.modal-meta {
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
  color: #8f8f8f;
}
.modal-category {
  color: #ff1493;
  border: 1px solid #ff1493;
  padding: 0.1rem 0.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  margin-left: 1rem;
}
.modal-title {
  font-size: 1.1rem;
  font-weight: bold;
  color: #000;
  margin: 0.5rem 0;
  text-align: center;
}
.modal-image {
  max-width: 100%;
  margin: 1rem 0;
  margin: auto;
}
.modal-content-text {
  font-size: 0.9rem;
  color: #000;
  line-height: 1.6;
}
.modal-link{
  margin-top: 1rem;
  font-size: 0.8rem;
}
.modal-link a {
  color: #5dacce;
  text-decoration: underline;
}
.modal-link a:hover {
  opacity: 0.5;
}

/*Goods*/
.goods-image-wrapper {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.goods-image-wrapper img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.goods-image-wrapper:hover img {
  transform: scale(1.2);
}
.goods-title {
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: #c1c1c1;
}
.goods-price {
  font-size: 0.7rem;
  color: #c1c1c1;
}

/*Live schedule*/ 
.schedule-section {
    min-height: 10vh;
    margin: auto;
    padding: 5rem 2rem;
}
.weekly-schedule-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
}
.weekly-schedule-image {
    width: 100%;
    max-width: 1100px;
    height: auto;
}
.calendar-legend-note {
  margin-top: 1.25rem;
  text-align: center;
  font-size: 0.8rem;
  color: #c1c1c1;
}


/*Contact*/ 
.contact-section {
    min-height: 10vh;
    color: #f5f5f5;
    margin: auto;
    padding: 2rem 2rem;
}
.contact-intro {
  font-size: 1rem;
  color: #f5f5f5;
  text-align: center;
}
.contact-form {
  margin: auto;
  padding: 1rem;
}
.form-label {
  margin-bottom: 0.4rem;
  display: block;
  color: #f5f5f5;
  font-size: 1rem;
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  width: 100%;
  padding: 0.8rem 0;
  margin-bottom: 2rem;
  border: none;
  border-bottom: 1px solid #c1c1c1;
  font-size: 1rem;
  box-sizing: border-box;
  color: #f5f5f5;
  outline: none;
  transition: border-color 0.3s ease;
  background-color: transparent;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #ff1493;
}
.contact-form textarea {
  resize: vertical;
}
.contact-form label {
  display: flex;
  align-items: center;
  font-size: 1rem;
  margin-bottom: 2rem;
  color: #f5f5f5e6;
}
.contact-form input[type="checkbox"] {
  margin-right: 10px;
  accent-color: #ff1493;
  width: 17px;
  height: 17px;
}
.contact-form .privacy-link {
  color: #ff1493;
  text-decoration: underline;
  margin-left: 0px;
  font-size: 0.9rem;
}
.contact-form .privacy-link:hover {
  opacity: 0.8;
}
.contact-form .submit-button {
  width: fit-content;
  padding: 0.3rem 2rem;
  margin: 0 auto;
  display: block;
  text-align: center;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
  color: #111111;
  font-size: 1.1rem;
  font-weight: bold;
  background-color: #d4a172;
  border-radius: 9999px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.contact-form .submit-button:hover {
  opacity: 0.8;
}
#form-message {
  display: none;
  text-align: center;
  margin-top: 20px;
  color: #f5f5f5;
  font-size: 1rem;
  padding-bottom: 5rem;
}
.form-complete.show {
  display: block;
}

/*スクロールボタン*/
.scroll-top-button {
  position: fixed;
  bottom: 0rem;
  right: 1rem;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ff1493;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  z-index: 50;
  cursor: pointer;
}
.scroll-top-button::before {
  content: "";
  width: 12px;
  height: 12px;
  border-left: 1.5px solid #e7e7e7;
  border-bottom: 1.5px solid #e7e7e7;
  transform: rotate(135deg);
  display: block;
  margin-top: 4px;
}
.scroll-top-button.visible {
  opacity: 1;
  visibility: visible;
}
.scroll-top-button:hover {
  opacity: 1;
}

/*お知らせ一覧*/
/*パンくず*/
.breadcrumb-wrapper {
    padding-top: rem;
}
.container {
    margin: 0 auto;
    padding-left: 1rem;
    padding-right: 1rem;
}
.breadcrumb {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    color: #f5f5f5;
}
.breadcrumb-link {
    text-decoration: none;
    transition: color 0.3s;
}
.breadcrumb-link:hover {
    opacity: 0.8;
}
.separator {
    margin: 0 0.5rem;
}
.current {
    color: #ff69b4;
}
/*カテゴリー*/
#category-filter {
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.category-btn {
  background-color: transparent;
  border: none;
  padding: 0.3rem 1.5rem;
  font-size: 1rem;
  cursor: pointer;
  color: #f5f5f5;
  position: relative;
  border-right: 1px solid #f5f5f5; 
  border-left: 1px solid #f5f5f5; 
  border-radius: 0;
  text-shadow: 0 0 5px black;
}
.category-btn[aria-pressed="true"] {
  background-color: #ff1493;
  color: #f5f5f5;
  text-shadow: 0 0 5px black;
}
.category-btn:hover:not([aria-pressed="true"]) {
  background-color: #ff149360;
}
.category-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
#category-select {
  display: none;
}
@media (max-width: 768px) {
  .category-buttons {
    display: none;
  }
  #category-select {
    display: block;
    padding: 0.5rem;
    font-size: 1rem;
    background-color: #ff1493;
    color: #f5f5f5;
    text-shadow: 0 0 5px black;
    text-align: center;
    margin: 0 auto 1rem;
  }
}
.category-1 {
  background-color: #f5f5f5;
  color: #ff1493;
}

/* 並び替えボタン */
.sort-wrapper {
  padding-top: 1rem;
  padding-bottom: 1.5rem;
}
.sort {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  color: #f5f5f5;
  justify-content: flex-end;
}
.sort-toggle-btn {
  font-size: 1.1rem;
  color: #ff1493;
  background: transparent;
  padding: 0.3rem 0.3rem;
  margin-left: 0.5rem;
  margin-right: 1rem;
  cursor: pointer;
  border-radius: 0.2rem;
}
.sort-toggle-btn:hover {
  color: #ff1493;
}

/*ガイドライン*/
.introduction-box {
    margin-bottom: 3rem;
}
.introduction-text {
    font-size: 1rem;
    color: #f5f5f5;
}
.introduction-title {
  font-size: 1.2rem;
  font-weight: bold;
  color: #d4a172;
  border-left: 3px solid #d4a172;
  padding-left: 1rem;
  margin:1rem 0;
}
.guideline-box {
    padding: 0.5rem 0.8rem;
    margin-bottom: 2rem;
    border-radius: 0.2rem;
    border: 1px solid #d4a172;
}
.guideline-title {
  font-size: 1.2rem;
  color: #d4a172;
  border-bottom: 1px solid #d4a172;
  padding-bottom: 0.3rem;
}
.guideline-card-title {
    font-size: 1rem;
    color: #f5f5f5;
    padding-left: 0rem;
    padding-bottom: 0.3rem;
}
.guideline-card-list{
  font-size: 0.8rem;
  padding-bottom: 1rem;
}
.guideline-card-list li {
    display: flex;
    align-items: start;
    color: #f5f5f5;
}
.guideline-card-list .ri-close-circle-line {
    color: #ff1493;
    padding-left: 0.2rem;
    margin-right: 0.5rem;
}
.guideline-text p {
    color: #f5f5f5;
    text-align: left;
    line-height: 1.5rem;
    margin: 0.3rem;
    font-size: 0.9rem;
}

