@charset "utf-8";
/* CSS Document */

h3 {
	background-size: 5px 5px;
	background-image: url(../image/h3.gif);
	background-repeat: repeat-x;
	background-position: 0 bottom;
	border-left: #a9a9a9 5px solid !important;
}
body#riku{
	background: url(../riku/image/background.gif);
}
body#fumiya{
	background: url(../fumiya/image/background.gif);
}
body#hokenshitsu{
	background: url(../hokenshitsu/image/background.gif);
}
body#zenra{
	background: url(../bushitsu/image/background_zenra.gif);
}

#room {
	width: 650px;
	margin:10px 15px;
}
div.riku_change{
	width: 675px;
	text-align: right;
	font-size: 12px;
	margin-bottom: 10px;
}
#room_riku_ver_b {
	width: 630px;
	margin:0 25px;
	line-height: 20px;
}

#room_riku_ver_b .himitsu {
	width:350px;
	margin:0 auto;
	padding:20px;
	text-align:left;
}
ul.date {
	width: 180px;
	margin: 10px 225px 10px;
}
ul.date li {
	width: 180px;
	background: url(../riku_ver_b/image/date.gif) no-repeat;
	line-height: 20px;
	text-align: right;
	font-size: 13px;
}

h4 {
	width: 100%;
	line-height: 2;
	font-weight: bold;
	text-align: center;
	font-size: 20px;
	margin-bottom: 20px;
}

.guidance {
	width: 100%;
	text-align: center;
	line-height: 1.4;
	margin-bottom: 0;
}

.secret_tent_top div {
	width: 100%;
	min-height: 350px;
	padding-top: 100px;
	background-image: url(../secret/image/secret_tent_bg.jpg);
	background-repeat: no-repeat;
}

.secret_tent div {
	width: 100%;
	min-height: 350px;
	background-image: url(../secret/image/secret_tent_bg.jpg);
	background-repeat: no-repeat;
	text-align:center;
}

.hokenshitsu div {
	width: 100%;
	min-height: 350px;
	padding-top: 100px;
	background-image: url(../hokenshitsu/image/hokenshitsu_bg.jpg);
	background-repeat: no-repeat;;
}

.hokenshitsu div.tokuten02 {
	padding-top: 0;
	position: relative;
	min-height: 500px;
}

.hokenshitsu div.tokuten02 #character_img {
	position: absolute;
	right: 0;
	top: 20px;
	cursor: pointer;
}

.hokenshitsu div.tokuten02 #kaisou01 {
	position: absolute;
	top: 20px;
	left: 100px;
	display: none;
}

.hokenshitsu div.tokuten02 #kaisou02 {
	position: absolute;
	top: 165px;
	left: 10px;
	display: none;
}

.hokenshitsu div.tokuten02 #kaisou03 {
	position: absolute;
	top: 285px;
	left: 130px;
	display: none;
}

.hokenshitsu .last_message {
	display: none;
}




.fumiya_room div {
	width: 100%;
	min-height: 350px;
	background-image: url(../fumiya/image/fumiya_room_bg.jpg);
	background-repeat: no-repeat;
	text-align:center;
}

.secret_tent div.no_tent {
	background-image: none;
}

.secret_tent div img, .fumiya_room div img {
	display: inline-block;
	cursor: pointer;
}

.character_name {
	display: inline-block;
	margin: 5px 0px 10px;
	font-size: 25px;
	color: #888;
	width: auto;
	text-align: center;
	padding: 10px 15px;
	background: #fff;
	border-radius: 5px;
}

.secret_tent .comment_area, .fumiya_room .comment_area, .hokenshitsu .comment_area{
	margin: 5px 15px;
	min-height: 90px;
	font-size: 23px;
	line-height: 1.1;
}

.comment_area.two_lines {
	min-height: 60px;
}

.secret_tent_top .scroll, .hokenshitsu .scroll {
	overflow-x: hidden;
	overflow-y: scroll;
	margin: 0px auto 20px;
	padding: 25px;
	width: 300px;
	height: 200px;
	background:rgba(255,255,255,0.8);
}

.hokenshitsu p.sentence {
	font-size: 14px;
	line-height: 1.5;
	margin-bottom: 1.2em;
}

.scroll li {
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 20px;
}

.scroll li:last-child{
	margin-bottom: 0px;
}

h5{
	height: 18px;
	margin-bottom: 5px;
	padding: 2px 0 0 26px;
	color: #616161;
	font-size: 14px;
	font-weight: bold;
	background-size: 300px 20px;
	background-image: url(../../image/h5_pencil.gif);
	background-repeat: no-repeat;
	background-position: 0px 1px;
}

form .group {
	margin-bottom: 15px;
	padding: 0 50px;
}

.password_box {
    display: flex; /*アイコン、テキストボックスを調整する*/
    align-items: center; /*アイコン、テキストボックスを縦方向の中心に*/
    justify-content: center; /*アイコン、テキストボックスを横方向の中心に*/
    height: 50px;
    border-radius: 5px;
    border: 2px solid #accc95;
}

.password_box.ex {
    border: 2px solid #560e64;
}

.password_inner{
    width: 100%;
    height: 100%;
    background-color: transparent; /*.password_boxの枠線お角一部被るため透明に*/
    position: relative;
}

#password_area{
    position: absolute;
    z-index: 1; /*.password_stringよりも上に配置*/
    height: 100%;
    width: 100%;
    top: 0; left: 0; bottom: 0; right: 0;
    border: none; /*枠線非表示*/
    outline: none; /*フォーカス時の枠線非表示*/
    padding: 0 10px;
    font-size: 16px;
    background-color: transparent; /*後ろの.password_stringを見せるため*/
    box-sizing: border-box; /*横幅の解釈をpadding, borderまでとする*/
}

.password_string{
    position: absolute;
    height: 100%;
    width: 140px; /*文字列分の長さ*/
    top: 0; left: 0; bottom: 0; right: 0;
    padding-left: 10px; /*position: absolute;でのmarginは親要素はみ出す*/
    font-size: 16px;
    line-height: 50px; /*文字列を縦方向にmiddleに見せるため*/
    background-color: transparent;
    color: #80868b;
    box-sizing: border-box; /*横幅の解釈をpadding, borderまでとする*/
    transition: all 0.2s;
    -webkit-transition: all 0.2s;
}

/*アニメーション*/
#password_area + .password_string.focus{
    color: #7baa5b;
    font-size: 10px;
    line-height: 10px;
    width: 88px;
    height: 10px;
    padding: 0 4px;
    background-color: white;
    transform:translate3d(5px, -6px, 0);
}

#password_area + .password_string.ex.focus{
    color: #560e64;
}

form .formbtn {
	text-align: center;
} 

form #submit_btn {
	display: inline-block;
	vertical-align: middle;
	margin: 0 10px;
	padding: 6px 25px;
	color: #ffffff;
	font-size:  16px;
	font-weight: bold;
	letter-spacing: 0.5pt;
	text-decoration: none;
	background-color: #72ac4c;
	border: 2px solid #72ac4c;
	cursor: pointer;
	transition-duration:0.1s;
    -webkit-transition-duration:0.1s;
    -moz-transition-duration:0.1s;
    -o-transition-duration:0.1s;
    -ms-transition-duration:0.1s;
} 

form #submit_btn.ex {
	background-color: #560e64;
	border: 2px solid #560e64;
} 

form #submit_btn:hover{
    color: #ffffff;
    background-color: #89be7b;
	border: 2px solid #72ac4c;
}

form #submit_btn.ex:hover{
    background-color: #7f2e8f;
	border: 2px solid #7f2e8f;
}

h4.input_password{
	font-size: 17px;
	line-height: 1.2em;
	margin: 15px 0 15px;
}

.password_error_message {
	text-align: center;
	color: #ee635c;
	line-height: 1.3em;
}

h4.suieibu_top {
	background: url(/room/bushitsu/image/kunegakusuieibu_nisshitop.jpg);
	background-size: cover;
	color: #fff;
	min-height: 120px;
	line-height: 120px;
	font-size: 16px;
}