@charset "UTF-8";

html,
body {
	min-height:100%;
	height:100%;
}

/* ************ wrapper start ************ */
body > h1 {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100vw;
	height: 100vh;
	font-size: 40px;
}
#date,
#ipaddress{
	position: fixed;
	left: 0;
	top: 0;
	border: 1px #ccc solid;
	padding: 5px 10px;
	font-size: 200%;
	line-height: 1;
	background-color: rgba(255, 255, 255, 0.8);
}
#ipaddress {
	left: auto;
	right: 0;
}

#googleSearch {
	margin: 30px 0;
	text-align: center;
}
#googleSearch input {
	width: 40%;
	padding: 0 5px;
	text-align: center;
}
.navi {
	margin: 30px 50px;
	letter-spacing: -.4em;
	text-align: center;
}
.navi li {
	display: inline-block;
	width: 300px;
	margin: 10px;
	letter-spacing: 0;
}

table {
	width: 100%;
	table-layout: fixed;
}
table td {
	width: 33.333%;
	padding: 10px;
	border: 1px #ccc solid;
	box-sizing: border-box;
	vertical-align: top;
	overflow: hidden;
	background-color: rgba(238, 238, 238, 0.9);
}
table tr:nth-child(2n+1) td:nth-child(1),
table tr:nth-child(2n+1) td:nth-child(3) {
	background-color: transparent;
}
table tr:nth-child(2n) td:nth-child(2n) {
	background-color: transparent;
}
table td h1 {
	font-size: 150%;
	line-height: 130%;
}
table td p {
	margin-top: 10px;
}
table td input[type=text] {
	width: 45%;
}
img.qr {
	width: 100px;
	height: 100px;
	border: 1px #efefef solid;
	background-color: #fff;
}
textarea.basicText {
	width: 320px;
	max-width: 100%;
	height: 190px;
}
textarea.encode,
textarea.decode,
textarea.translate {
	width: 100%;
	height: 130px;
	margin-top: 10px;
}
iframe {
	display: block;
	width: 100%;
	height: 80%;
	margin-top: 5px;
}
#linklist li a {
	position: relative;
	display: block;
	padding-left: 1.2em;
}
#linklist li a:before {
	content: "・";
	position: absolute;
	left: 0;
	top: 0;
}

#download {
	margin: 50px 0 0;
	padding: 10px 0;
	border: 1px #ccc solid;
	text-align: center;
}

/* ************ clearFix start ************ */
.clear {
	clear: both;
	display: block;
	overflow: hidden;
	visibility: hidden;
	width: 0;
	height: 0;
}
.clearFix:after {
	clear:both;
	content:".";
	display:block;
	height:0;
	visibility:hidden;
	font-size:0;
	line-height:0;
}
* html .clearFix {
	height:1%;
}
.clearFix {
	display:block;
}