/*――――――――――――――――――――――――――――――――――――――――
//  メールフォーム　Smarty版　
//  メインプログラム
//――――――――――――――――――――――――――――――――――――――――
//  株式会社COSMO　様
//  Copyright(c) 2023- Fukui-TV Kaihatsu
//  Auther  Fukui-TV Kaihatsu
//  
//  Ver 1.0.0
//
//  Base Ver  6.0.1
//
//  open_pro.css
//  1.0.0
//――――――――――――――――――――――――――――――――――――――――*/
@charset "utf-8";

/*送信ボタン*/
.soushin {
	width: 500px;
	margin-right: auto;
	margin-left: auto;
	text-align: center;
	margin-top: 50px;
}

/*エラーボックス*/

/*共通入力画面文字装飾入力エラーテーブル*/
.ERROR_MESSAGE_BOX {
  color: #FF4659;
  background: #F7DCDE;
  border: 2px solid #F7B0B6;
  border-radius: 5px;
  height: auto;
  padding: 20px 10px;
  text-align: center;
}
/*エラータイトル文字*/
.ERROR_TITLE {
  font-size: 18px;
  font-weight: 800;
  color: #FF4659;
  text-align: center;
}
.ERROR_STR {
  margin-top: .5rem;
}
.ERROR_STR a {
  position: relative;
  display: inline-block;
  padding-left: 20px;
  text-decoration: underline;
  color: #595757;
  transition: .3s;
}
.ERROR_STR a:hover {
  color: #FF4659;
}
.ERROR_STR a::before {
  content: "";
  width: 18px;
  height: 18px;
  background: #595757;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: -6px;
  margin-top: -9px;
  transition: .3s;
}
.ERROR_STR a:hover::before {
  background: #FF4659;
}
.ERROR_STR a::after {
  content: "";
  width: 6px;
  height: 6px;
  border: 0;
  border-bottom: solid 2px #fff;
  border-right: solid 2px #fff;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -4px;
  transform: rotate(45deg);
}


/*JavaScript未設定共通メッセージ枠*/
.JS_ERROR_BOX {
	background: #FFFFCC center;
	border: 1px solid #FF0000;
	height: auto;
	margin: 0px;
}
/*入力エラーメッセージ*/
.INPUT_ERROR {
	color: #FF0000;
	width: 400px;
	margin-left: 10px;
}



.err {
  padding: 50px 15px;
  margin: 2em 0 2em 0;
  border-radius: 5px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
		  background-color   : rgba(255,255,255,0.5);
}







