@charset "UTF-8";
/* CSS Document */
/* 家紋の図鑑 */
/* 家紋ジェネレーター CSS */
/* みんなの知識 ちょっと便利帳 */
/* 2026/06/26 */

.kamon-wrap {
  max-width: 750px;
  margin: 0 auto;
  padding: 20px;
  font-family: "Hiragino Sans", "Yu Gothic", sans-serif;
  background: #F9F6EB url('/kamon/img/wasabi_washi_10pct.png') repeat;
  border: 2px solid #b9a76b;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.08), inset 0 0 6px rgba(0,0,0,0.08);
  box-sizing: border-box;
}

.kamon-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
  color: #333;
}

.kamon-control {
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 20px;
  background: rgba(250, 250, 250, 0.95);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.kamon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 15px;
}

.kamon-field {
  display: flex;
  flex-direction: column;
}

.kamon-field label {
  font-size: 13px;
  margin-bottom: 5px;
  font-weight: 600;
  color: #555;
}

.kamon-field select,
.kamon-field input {
  padding: 8px;
  box-sizing: border-box;
  border: 1px solid #ccc;
  border-radius: 4px;
  background: #fff;
}

.kamon-field input[type="text"] {
  font-size: 14px;
  text-align: center;
}

.kamon-buttons {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.kamon-buttons button {
  padding: 10px 18px;
  cursor: pointer;
  border: none;
  border-radius: 6px;
  color: #fff;
  font-weight: 600;
  transition: background-color 0.2s, opacity 0.2s;
  flex: 1 1 calc(33.333% - 10px);
  min-width: 120px;
}

.kamon-buttons button:hover { opacity: .85 !important; }
.btn-primary { background: #222 !important; }
.btn-accent { background: #d97706 !important; }
.btn-danger { background: #dc2626 !important; }
.btn-success { background: #16a34a !important; }
.btn-info { background: #2563eb !important; }

.kamon-result {
  margin-top: 25px;
  text-align: center;
}

.kamon-name {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #111;
  background: rgba(240, 240, 240, 0.9);
  display: table;
  margin-left: auto;
  margin-right: auto;
  padding: 6px 24px;
  border-radius: 20px;
  border: 1px solid #ccc;
}

.kamon-preview {
  padding: 20px;
  background: #F9F6EB url('/kamon/img/wasabi_washi_10pct.png') repeat;
  border: 1px solid #b9a76b;
  border-radius: 8px;
  display: inline-block;
  box-shadow: inset 0 0 10px rgba(0,0,0,0.05);
}

.kamon-preview svg {
  max-width: 400px;
  width: 100%;
  height: auto;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  display: block;
}

.kamon-svgbox { margin-top: 25px; }
.svg-title { font-size: 18px; font-weight: 700; margin-bottom: 10px; }

#svgCode {
  width: 100%;
  height: 150px;
  box-sizing: border-box;
  font-family: monospace;
  font-size: 12px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  background: #f9f9f9;
}

@media(max-width:640px){
  .kamon-buttons { flex-direction: column; }
  .kamon-buttons button { width: 100%; }
}

