@charset "utf-8";


/* 背景 */
.bg-radio-post {
	background-image: url("../images/bg_radio_post2.jpg");
	background-position: 50% 0%;
	background-color:#c7f682;
/*
	background-image: url("../images/bg_radio_post.jpg");
	background-position: 50% 0%;
	background-repeat: repeat-x;
	background-color:#fcfff2;
*/
}
.bg-tv-post {
    background-image: url("../images/bg_radio_r01.jpg");
    background-position: 50% 0%;
    background-color: #f8b0a4;
}
#page-head {
	margin: 20px auto 30px auto;
	width: 960px;
}
.tleft {
	text-align: left;
}

/* メッセージフォーム */
#form-area {
	width: 960px;
	margin: 0 auto 20px auto;
	background-color:#ffffff;
	border-radius: 10px;
  	-webkit-border-radius: 10px;
  	-moz-border-radius: 10px;
	overflow: hidden;
}
#form-area-in {
	padding: 20px;
}
.form-comment1 {
	width: 880px;
	background-color:#eeeeee;
	margin: 0 auto 20px auto;
	border-radius: 10px;
  	-webkit-border-radius: 10px;
  	-moz-border-radius: 10px;
}
.form-comment1 p {
	padding: 12px 20px;
}
.form-window {
	width: 880px;
	border: 2px solid #dddddd;
	background-color: #ffffff;
	margin: 0 auto;
	text-align: left;
	-webkit-border-top-right-radius: 10px;
	-webkit-border-top-left-radius: 10px;
	-moz-border-radius-topright: 10px;
	-moz-border-radius-topleft: 10px;
}
.form-window-in {
	padding: 30px 40px 30px 40px;
}
.form-h3-01 {
	border-left: 3px solid #5dbaeb;
	padding: 2px 4px 2px 15px;
	clear: both;
}
.form-h3-01 h3 {
	font-size: 120%;
	font-weight: bold;
	display: inline;
	margin-right: 30px;
}
.form-h3-01 .hissu {
	border: 1px solid #ff0000;
	color: #ff0000;
	font-size: 80%;
	display: inline;
	margin-right: 20px;
	padding: 3px;
}
.form-h3-01 .hissu2 {
	color: #125fd2;
	display: inline;
	margin-right: 20px;
	padding: 2px;
}
.form-input {
	padding: 25px 0px 10px 15px;

}
hr {
	border: 0 none;
	height: 2px;
	color: #eeeeee;
	background-color: #eeeeee;
	margin: 10px 0 20px 0;
	overflow: hidden;
}
.form-design1 {
	font: 15px/24px sans-serif;
	box-sizing: border-box;
	padding: 0.5em 0.8em;
	transition: 0.3s;
	letter-spacing: 1px;
	color: #333333;
	border: 2px solid #cccccc;
	background: #e3f8ff;
	border-radius: 8px;
}
.form-design1:focus {
	border: 2px solid #5dbaeb;
	background: #ffffff;
	outline: none;
}
/* Chrome *//* placeholder属性 */
::-webkit-input-placeholder {
  color: #89abb6;
}
/* Firefox */
::-moz-placeholder {
  color: #888888;
}
/* IE */
:-ms-input-placeholder {
  color: #888888;
}


/* ラジオボタン　https://copypet.jp/749/ */
.form-radio {
	padding: 20px 0px 10px 15px;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}
.form-radio:before,
.form-radio:after {
	-webkit-box-sizing: inherit;
	        box-sizing: inherit;
}
.form-radio .box {
	width: 90%;
	---margin: 2em auto;
	text-align: left;
}
.form-radio input[type=radio] {
	display: none;
}
.form-radio label:focus,
.form-radio label:hover,
.form-radio label:active,
.form-radio input:checked + label {
	color: #125fd2; /*フォーカステキスト*/
}
.form-radio label:focus:before,
.form-radio label:hover:before,
.form-radio label:active:before,
.form-radio input:checked + label:before {
	border-color: #125fd2; /*フォーカスポイント*/
	background: #ffffff;
}
.form-radio label {
	font-size: 1.1em;
	font-weight: bold;
	line-height: 1;
	position: relative;
	display: list-item;
	overflow: hidden;
	padding: 1em 1em 0em 3em;
	cursor: pointer;
	-webkit-transition: all 0.15s ease;
	        transition: all 0.15s ease;
	white-space: nowrap;
	text-overflow: ellipsis;
	background: #ffffff;
}
.form-radio label:before {
	position: absolute;
	top: 1em;
	left: 1em;
	width: 10px;
	height: 10px;
	content: '';
	border: 0.2em solid #cccccc;
	border-radius: 50%;
}
.form-radio input:checked + label:before {
	border-color: #125fd2;
	background: #125fd2;
}
.form-radio input:disabled + label {
	cursor: not-allowed;
	color: rgba(0, 0, 0, 0.5);
	background: #efefef;
}
.form-radio input:disabled + label:hover {
	border-color: rgba(0, 0, 0, 0.1);
}
.form-radio input:disabled + label:before {
	border-color: #ffffff;
	background: #ffffff;
}

/* チェックボックス */
.form-checkbox input[type=checkbox] {
	display: none;
}
.form-checkbox label:focus,
.form-checkbox label:hover,
.form-checkbox label:active,
.form-checkbox input:checked + label {
	color: #125fd2; /*フォーカステキスト*/
}
.form-checkbox label:focus:before,
.form-checkbox label:hover:before,
.form-checkbox label:active:before,
.form-checkbox input:checked + label:before {
	border-color: #125fd2; /*フォーカスポイント*/
	background: #ffffff;
}
.form-checkbox label {
	font-size: 1.1em;
	font-weight: bold;
	line-height: 1;
	position: relative;
	display: list-item;
	overflow: hidden;
	padding: 1em 1em 0.5em 3em;
	cursor: pointer;
	-webkit-transition: all 0.15s ease;
	        transition: all 0.15s ease;
	white-space: nowrap;
	text-overflow: ellipsis;
	background: #ffffff;
}
.form-checkbox label:before {
	position: absolute;
	top: 1em;
	left: 1em;
	width: 10px;
	height: 10px;
	content: '';
	border: 0.2em solid #cccccc;
}
.form-checkbox input:checked + label:before {
	border-color: #125fd2;
	background: #125fd2;
}

/* セレクトボックス */
.form-input select {
	border: 2px solid #cccccc;/* ボックスの境界線を実線で指定する */
	background: #e3f8ff;
	width: 250px;	/* ボックスの高さを指定する */
	padding: 12px 10px;	/* ボックス内側の余白を指定する */
	color: #555555;	/* フォントの色を指定 */
	font-weight: bold;
	border-radius: 8px;
  	-webkit-border-radius: 8px;
  	-moz-border-radius: 8px;
}
.form-input select:focus {
	border: 2px solid #5dbaeb;
	background: #ffffff;
	outline: none;
}
.form-text01 {
	font-size: 110%;
	font-weight: bold;
	margin-right: 10px;
}

/* 送信 */
.form-submit-area {
	width: 880px;
	border: 2px solid #dddddd;
	background-color: #dddddd;
	margin: 0 auto 20px auto;
	padding: 15px 0;
	-webkit-border-bottom-right-radius: 10px;
	-webkit-border-bottom-left-radius: 10px;
	-moz-border-radius-bottomright: 10px;
	-moz-border-radius-bottomleft: 10px;
}
input#submit_button {
	width: 250px;
	height: 50px;
	padding: 15px 40px;
	font-size: 1.2em;
	border-style: none;
	background-color: #2eabd3;
	color: #ffffff;
	font-weight: bold;
	border-radius: 8px;
  	-webkit-border-radius: 8px;
  	-moz-border-radius: 8px;
}
input#historyback {
	width: 250px;
	height: 50px;
	padding: 15px 40px;
	margin: 0 30px;
	font-size: 1.2em;
	border-style: none;
	background-color: #eea82f;
	color: #ffffff;
	font-weight: bold;
	border-radius: 8px;
  	-webkit-border-radius: 8px;
  	-moz-border-radius: 8px;
}
input#submit_button:hover {
	background-color: #259fa3;
}
.historyback:hover {
	background-color: #e98f2f;
}
.historyback {
	display: block;
	width: 250px;
	padding: 15px 0px;
	margin: 0 auto;
	font-size: 1.2em;
	border-style: none;
	background-color: #eea82f;
	color: #ffffff !important;
	font-weight: bold;
	border-radius: 8px;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	text-decoration: none;
	text-align: center;
}

/* Apple Birth Campaign */
.abc-title, .movie-form-title {
	margin: 20px 0 20px;
	text-align: center;
	font-size: 200%;
	line-height: 160%;
}
.form-abc-window, .form-movie-window, .form-toredaga-window {
	width: 880px;
	border: 2px solid #dddddd;
	background-color: #ffffff;
	margin: 0 auto;
	text-align: left;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	margin-bottom: 12px;
}
.form-abc-info  {
	width: 880px;
	font-size: 120%;
	font-weight: bold;
	text-align: left;
	margin-left: auto;
	margin-right: auto;
	padding: 0 0px 12px 0px;
}
.form-abc-submit-area, .form-movie-submit-area, .form-toredaga-submit-area {
	width: 880px;
	margin: 0 auto 20px auto;
	padding: 15px 0;
}
.form-abc-errmsg-area, .form-movie-errmsg-area, .form-radio-errmsg-area, .form-toredaga-errmsg-area {
	width: 420px;
	margin: 0 auto 20px auto;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border: 2px solid #dddddd;
}
.form-abc-errmsg-area-in, .form-movie-errmsg-area-in, .form-radio-errmsg-area-in, .form-toredaga-errmsg-area-in {
    padding: 30px 40px 30px 40px;
}
.errmsg-abc, .errmsg-movie, .errmsg-radio, .errmsg-toredaga {
	color: #ff0000;
	font-size: 90%;
	text-align: left;
}
.sendmsg {
	font-size: 120%;
	font-weight: bold;
	padding-bottom:30px;
	color:#FF0000;"
}
.return-abc-top {
	width: 380px;
	height: 50px;
	padding: 15px 40px;
	margin: 0 30px;
	font-size: 1.2em;
	border-style: none;
	background-color: #eea82f;
 	color: #ffffff;
 	font-weight: bold;
	border-radius: 8px;
	-webkit-border-radius: 8px;
	cursor: pointer;
}
.return-abc-top:hover {
	background-color: #e98f2f;
}
td {
	padding: 3px;
}
/* 赤ちゃん写真大募集！ */
.baby-photo-title {
	color: #f93;
	margin: 20px 0 10px;
	text-align: center;
	font-size: 240%;
	line-height: 160%;
}
.form-comment-text {

}
/* 撮レダガ！応募フォーム */
.toredaga-title {
	color: #1886e4;
	margin: 20px 0 10px;
	text-align: center;
	font-size: 240%;
	font-weight: bold;
	line-height: 160%;
}

/* ラジオ番組投稿フォーム */
.radio_rtn_btn {
	display: block;
	width: 250px;
	padding: 15px 40px;
	margin: 0 auto;
	font-size: 1.2em;
	border-style: none;
	background-color: #dc4c48;
	color: #ffffff !important;
	font-weight: bold;
	border-radius: 8px;
  	-webkit-border-radius: 8px;
  	-moz-border-radius: 8px;
  	text-decoration: none;
  	text-align: center;
}
.radio_rtn_btn:hover {
	background-color: #db3a35;
}

/* テレビ番組投稿フォーム */
.tv_rtn_btn {
	display: block;
	width: 250px;
	padding: 15px 40px;
	margin: 0 auto;
	font-size: 1.2em;
	border-style: none;
	background-color: #dc4c48;
	color: #ffffff !important;
	font-weight: bold;
	border-radius: 8px;
  	-webkit-border-radius: 8px;
  	-moz-border-radius: 8px;
  	text-decoration: none;
  	text-align: center;
}
.tv_rtn_btn:hover {
	background-color: #db3a35;
}