.site-content.is-inquiry{
	float: none !important;
	margin: 0 auto;
}
.inquiry dl{
	margin-bottom: 60px;
}
.inquiry dl dt{
	color: #e4007f;
	margin-bottom: 10px;
}
.inquiry dl dd{
	margin-bottom: 30px;
	padding-left: 0;
}
.inquiry input[type="text"], .inquiry textarea{
	padding: 15px;
}
.inquiry input[type="text"]::placeholder,
.inquiry textarea::placeholder {
  color: #ccc;
}
.inquiry .btn-inquiry{
	background: rgba(228, 0, 127, 1);
	color: #fff;
	width: 280px;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
}
.inquiry .inquiry-drop select{
	margin-bottom: 16px;
	display: inline-block;
}
.req{
	font-size: 12px;
	background: rgba(219,115,5,1);
	width: 48px;
	height: 26px;
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-right: 1rem;
}
.any{
	font-size: 12px;
	background: #8ed1fc;
	width: 48px;
	height: 26px;
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-right: 1rem;
}
/* 送信中オーバーレイ */
#submitLoader {
  position: fixed;
  inset: 0;
  display: none;           /* is-showが付いたら表示 */
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.9);
  z-index: 9999;
}
#submitLoader.is-show { display: flex; }

/* スピナー */
#submitLoader .spinner {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 4px solid #dcdcdc;
  border-top-color: #333;
  animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* 二重送信防止の見た目用（任意） */
.mw_wp_form .is-disabled { opacity: .5; pointer-events: none; }