@charset "utf-8";

/* =======================================
index
========================================= */
#hero-image {
  width: 100vw;
}
#hero-image img {
  width: 100%;
  display: block;
　background-position: top center; /
}







#contents {
  padding-top: 0;
  margin-top: 0;
}
main {
  width: 100%;
}









/* デフォルト（モバイル用）のスタイル */
.section-title {
  text-align: center;
  font-size: 12px; /* モバイル用フォントサイズ */
  font-weight: bold;
  margin: 20px 0;
  position: relative;
}

/* PC以上のサイズで適用するスタイル */
@media (min-width: 768px) {
  .section-title {
    font-size: 24px; /* PC用フォントサイズ */
  }
}

.section-title::before,
.section-title::after {
  content: "";
  display: inline-block;
  width: 50px;
  height: 2px;
  background-color: #5F51B4;
  vertical-align: middle;
  margin: 0 10px;
}





#news {
  width: 100vw;
  background-color: var(--gray01);
}
#news a {
  font-size: 1.4rem;
  color: var(--cta);
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin: 0 auto;
  padding: 12px;
  text-align: left;
}
#news a::after {
  content: "";
  display: block;
  width: 5px;
  aspect-ratio: 1/1;
  border-top: 1px solid var(--cta-bg);
  border-right: 1px solid var(--cta-bg);
  transform: rotate(45deg);
  margin-left: 20px;
}
.news-date {
  display: flex;
  align-items: center;
  min-width: 95px;
}
.news-date::after {
  content: "";
  display: inline-block;
  width: 3px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: var(--cta-bg);
  margin: 4px 12px 3px;
}

@media screen and (min-width: 600px) {
  header.onBg .site-name svg,
  header.onBg #btn_hamburger {
    fill: #fff;
    color: #fff;
    transition: 0.3s;
  }
}

@media screen and (max-width: 599px) {
  #news a {
    width: 100%;
    font-size: 1.1rem;
    padding: 6px 24px 6px 12px;
    justify-content: flex-start;
    position: relative;
  }
  #news a::after {
    position: absolute;
    right: 12px;
    margin: auto;
  }
  .news-date::after {
    margin-bottom: 2px;
  }
}



.sns-menu {
  margin-top: 4%;
}


main .private,
main .order {
  display: none;
  opacity: 0;
  transition: 0.3s ease-out;
}

main .fade-in {
  opacity: 1;
}

#input-private:checked ~ main .private,
#input-order:checked ~ main .order {
  display: block;
  opacity: 1;
}

.costume-category_description {
  font-size: 1.6rem;
  padding: 52px 0 60px;
}

.costume-lists {
  width: min(100%, 1144px);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: max(2.5vw, 32px);
  margin: 0 auto;
}

.costume-lists_item {
  aspect-ratio: 360/466;
  border: 1px solid var(--gray20);
  border-radius: 20px;
  box-shadow: 4px 4px 16px 0px rgba(139, 126, 214, 0.08);
  overflow: hidden;
}

.costume-lists_item a {
  display: block;
  height: 100%;
  border-radius: 18px;
}

.costume-lists_item figure,
.costume-lists_item picture,
.costume-lists_item img {
  width: 100%;
  height: 100%;
}

.costume-lists_item img {
  object-fit: cover;
}

.costume-lists_item.order img {
  width: 90%;
  object-position: 50% 50%;
  object-fit: contain;
}

@media screen and (max-width: 599px) {
  .costume-category_description {
    padding: 20px 0;
    font-size: 1.25rem;
  }

@media screen and (max-width: 599px) {
  .costume-lists {
    gap: 8px; /* 隙間を8pxにする（調整可能） */
  }
}

	
	