.mt-2 {
  margin-top: 0.5rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mt-8 {
  margin-top: 2rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.text-red {
  color: red;
}

.font-bold {
  font-weight: bold;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
	background: #ffffff;
	min-height: 100vh;
	padding: 2rem;
} */
.breadcrumbList {
  list-style: none;
  display: flex;
}
.breadcrumbList li {
  font-size: 14px;
}
.breadcrumbList li a {
  color: #0077ff;
  text-decoration: none;
}
.breadcrumbList li a:hover {
  text-decoration: underline;
}
.breadcrumbList li:not(:last-child)::after {
  content: ">";
  margin: 0 0.5rem;
}

.eye-catch-text {
  font-size: 18px;
  background: lemonchiffon;
  font-weight: bold;
  padding: 0.5em;
  border: 1px solid #e5c51c;
  border-radius: 0.5em;
  text-align: center;
}

.image-container img {
  width: 100%;
  height: auto;
}

.design-title {
  font-size: 20px;
  font-weight: bold;
  padding: 5px 5px;
}

.design-title-sub {
  font-size: 12px;
  font-weight: normal;
}

.color-notice {
  color: red;
  border: 1px solid red;
  padding: 0.5em;
  border-radius: 8px;
  line-height: 1.5;
  font-weight: bold;
}

.design-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  row-gap: 3rem;
  max-width: 1400px;
  margin: 0 auto;
}

.design-item {
  position: relative;
  display: flex;
  flex-direction: column;
}
.design-item label {
  display: block;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
}
.design-item label img {
  width: 100%;
  height: auto;
  border: 1px solid #ccc;
}
.design-item label .hidden-submit {
  display: none;
}
.design-item .design-select-button {
  width: 100%;
  height: 2rem;
  color: black;
  display: inline-block;
  padding: 0.5rem 0.3rem;
  margin-top: 0.5rem;
  font-size: 14px;
  font-weight: bold;
  border: 1px solid #ff6600;
  background: -webkit-gradient(linear, left top, left bottom, from(#fdfbfb), to(#ebedee));
  background: -webkit-linear-gradient(top, #fdfbfb 0%, #ebedee 100%);
  background: linear-gradient(to bottom, #fff 0%, #ebedee 100%);
  line-height: 1;
  cursor: pointer;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.2s ease;
}
.design-item .design-select-button:hover {
  opacity: 0.5;
}
.design-item .design-select-button:active {
  background: #eee;
  border-color: #999;
}
.design-item .design-select-button:focus {
  outline: 2px solid rgba(102, 102, 102, 0.3);
  outline-offset: 2px;
}
.design-item #zoom-button {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid #333;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  color: #333;
  padding: 0;
}
.design-item #zoom-button:hover {
  background: rgb(255, 255, 255);
  transform: scale(1.1);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.design-item #zoom-button:active {
  transform: scale(0.95);
}
.design-item #zoom-button svg {
  width: 20px;
  height: 20px;
}

.design-item a {
  display: block;
  text-decoration: none;
  color: inherit;
  width: 100%;
  height: 100%;
}

.design-item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.pageTitle {
  display: flex;
  align-items: center;
  gap: 5px;
}
.pageTitle h1 {
  font-size: 28px;
  font-weight: bold;
}

@media (max-width: 768px) {
  .design-container {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
  }
  body {
    padding: 1rem;
  }
}
@media (max-width: 480px) {
  .design-container {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
.image-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.image-modal-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.image-modal-content img {
  max-width: 100%;
  max-height: 80vh;
  width: auto;
  height: auto;
  object-fit: contain;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  margin-bottom: 1rem;
}

.modal-select-form {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.modal-select-button {
  padding: 0.75rem 2rem;
  font-size: 16px;
  font-weight: bold;
  color: #ffffff;
  border: 2px solid #ff6600;
  background-color: #ff6600;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.2s ease;
}
.modal-select-button:hover {
  opacity: 0.8;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.modal-select-button:active {
  transform: translateY(0);
  background: #eee;
  border-color: #999;
}
.modal-select-button:focus {
  outline: 2px solid rgba(102, 102, 102, 0.3);
  outline-offset: 2px;
}

.image-modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  line-height: 1;
  transition: all 0.3s ease;
  z-index: 10000;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}
.image-modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

@media (max-width: 768px) {
  .image-modal-content {
    max-width: 95%;
    max-height: 95%;
  }
  .image-modal-content img {
    max-height: 70vh;
  }
  .image-modal-close {
    top: -35px;
    font-size: 35px;
  }
  .modal-select-button {
    padding: 0.6rem 1.5rem;
    font-size: 14px;
  }
}
.pagination-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1.5rem 0;
}

.pagination {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.pagination-link {
  display: inline-block;
  padding: 0.5rem 1rem;
  color: #333;
  text-decoration: none;
  border: 1px solid #ddd;
  border-radius: 4px;
  background: #fff;
  transition: all 0.2s ease;
  min-width: 40px;
  text-align: center;
}
.pagination-link:hover:not(.disabled):not(.pagination-current) {
  background: #f5f5f5;
  border-color: #999;
}
.pagination-link.pagination-current {
  background: #666;
  color: #fff;
  border-color: #666;
  cursor: default;
}
.pagination-link.disabled {
  color: #ccc;
  border-color: #eee;
  background: #f9f9f9;
  cursor: not-allowed;
}
.pagination-link.pagination-prev, .pagination-link.pagination-next {
  min-width: 60px;
}

.pagination-numbers {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pagination-ellipsis {
  padding: 0.5rem 0.25rem;
  color: #999;
}

@media (max-width: 768px) {
  .pagination {
    gap: 0.25rem;
  }
  .pagination-link {
    padding: 0.4rem 0.8rem;
    font-size: 14px;
    min-width: 35px;
  }
  .pagination-link.pagination-prev, .pagination-link.pagination-next {
    min-width: 50px;
  }
}/*# sourceMappingURL=style.css.map */