@charset "utf-8";

[v-cloak] {
    display: none;
}

html, body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.main {
    flex: 1 0 auto;
}

.footer-link {
    color: inherit; /* フッターの文字色をそのまま継承 */
    display: inline-block;
    text-decoration: none;
}

.brand-color{
	color:#fff !important;
	background-color:#f4c100 !important;
	border-color:#f4c100 !important;
}

.option-select {
  border-radius: 4px;           /* 角を丸く */
  cursor: pointer;               /* マウスカーソルを指に */
  transition: background-color .15s ease, box-shadow .15s ease;
}

.option-select:hover {
  background-color: #f5f7fb;     /* 薄いグレー/ブルー系 */
  box-shadow: 0 2px 6px rgba(0,0,0,.06);
}

/* チェックボックスとラジオボタンもカーソル変更 */
.option-select input[type="checkbox"],
.option-select input[type="radio"] {
  cursor: pointer;
}

/* 画像スタイル */
.option-image {
  border: 2px solid transparent;
  border-radius: 6px;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.15);
}