@charset "utf-8";
/* -----------------------------
 chat.css
----------------------------- */

/* リセット */
@import url("./destyle.css");

:root {
	--from_color: #BEF18C; /* 自分の発言の色 */
	--to_color:   #DDDDDD; /* 相手の発言の色 */
}

body {
	height: 100vh;
	font-family: Yu Gothic, sans-serif;
}

/* ------------------------------
 general
------------------------------ */

.wholeLink {
	cursor: pointer;
}

span.nowrap {
	display: inline-block;
	white-space: nowrap;
}

input[type=text],
input[type=date],
input[type=number],
input[type=tel],
input[type=email],
input[type=url],
input[type=date],
input[type=password] {
	padding: 3px;
	border: 1px solid #CCCCCC;
	background-color: #FFFFFF;
	vertical-align: middle;
}

button {
	padding: 2px 15px;
	border: 1px solid #999999;
	border-radius: 2px;
	background:
		linear-gradient(
			to bottom,
			#EEEEEE 0%,
			#DDDDDD 100%
		);
	color: #333333;
}

button:active {
	background:
		linear-gradient(
			to bottom,
			#DDDDDD 0%,
			#EEEEEE 100%
		);
}

/* ------------------------------
 header > nav
------------------------------ */

/* ------------------------------
 main
------------------------------ */
main {
	height: 100%;
}

main article {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
}

/* ------------------------------
 main > #message
------------------------------ */
#message {
	display: none;
	margin: 5px;
	margin-bottom: 20px;
	padding: 5px;
	border: 1px solid #0000FF;
	background-color: #CCCCFF;
	color: #0000FF;
	line-height: 120%;
}

/* ------------------------------
 main > .address
------------------------------ */
.address {
	width: 100%;
}
.address p {
	line-height: 150%;
	margin: 20px 5px;
}
.address dl {
}
.address dt {
	padding: 5px;
	background-color: #CCCCCC;
}
.address dd {
	padding: 5px;
	font-weight: normal;
}
.address dd input {
	width: 100%;
}
.address .btn {
	margin: 50px;
	text-align: center;
}

/* -----------------------------
 PC
----------------------------- */
@media screen and (min-width:1000px) {
	.onlysp {
		display: none;
	}
}

/* -----------------------------
 SP
----------------------------- */
@media screen and (max-width:999px) {
	.onlypc {
		display: none;
	}
}
