﻿/*---------
Page Layout
----------*/
html {
	box-sizing: border-box;
	font-size: 16px;
}
body{
	background-color: #38b48b;
}

#mainimage{
		width: 100%;
		height: 100%;
}
.iframe_div{
	border: 1px black solid;
	margin-bottom: 30px;
}
.text-right{
	text-align: right;
}
.text-center{
	text-align: center;
}
#msg{
	margin: 30px;
	text-align: center;
    width: 100%;
}
.wrapper {
    width: 100%;
    margin-left:0;
	padding-left: 2%;
	color:snow;
	background-color:royalblue;
	background-color:rgb(225, 65, 65);
}
#blackpanel{
	background-color: blue;	
	opacity: 0.3;
	width: 100%;
	height: 100%;
	position: fixed;
	top:0;
	left:0;
	display: none;
}

.input_form_main{
	padding: 2px;
	border: 1px dodgerblue solid;
	border-radius: 5px;
}
.input_form_cmnt{
	padding: 2px;
	border: 1px limegreen solid;
	border-radius: 5px;
}
.input_form_red{
	padding: 2px;
	border: 1px red solid;
	border-radius: 5px;
}

#ttl{
	width: auto;
}
#keyword{
	display: inline;
}
#gend{
	width: auto;
	display: inline-block;
}
#txt{
	width: 100%;
}

.maintext{
	position: relative;
	background-color: paleturquoise;/*  lightcyan */
	padding: 10px;
	border-radius: 5px;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;	
}


/* 吹き出し本体 */
.balloon{
	position: relative;
	padding: 20px;
	background-color: palegreen;
	padding: 10px;
	border-radius: 5px;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
  }
  /* 三角アイコン */
.balloon::before{
	content: '';
	position: absolute;
	display: block;
	width: 0;
	height: 0;
	left: -12px;
	bottom: 10px;
	border-right: 12px solid palegreen;
	border-top: 8px solid transparent;
	border-bottom: 8px solid transparent;
}
.dttm_cmnt{
	width: auto;
	text-align:right;
	margin-top: 0;
	margin-bottom: 10px;

}
.cunt_cmnt{
	text-align:center;
}

.tag_label{
	display: inline-block;
	width: 70px;
}

#poppanel{
	background-color: #ffffff;
	width:fit-content;
	position: fixed;
	top: 25%;
	right: 0;
	bottom: auto;
	left: 0;
	padding: 0;
	margin: auto;
	display: none;
	border: 2px crimson solid;   /* 枠線を引く */	
	border-radius: 25px;      /* 角丸の指定 */
	opacity: 0.98;
	box-shadow:1px 1px 2px dimgray;
}

#panel_header{
	padding-left: 20px;
	width:100%;
	height:25px;
	color:snow;
	background-color: crimson;
	border: 2px crimson solid;   /* 枠線を引く */
	margin: 0;
	border-radius: 25px 25px 0 0;
}

#panel_close{
	position:absolute;
	top:0;
	right:0;
	width:44px;
	height:24px;
	color:snow;
	text-align:center;
	cursor:pointer;
}

#panel_text{
	width:100%;
	height:100%;
	height: auto;
	padding: 20px;
	margin: 0;
}


#copylight{
	height:120px;
	text-align: center;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
}

