﻿@charset "utf-8";

#softopia {
	position: relative; /* absoluteを指定したボックス（↓）の親ボックスには static以外の値が指定されているべし（『上級レイアウト』p29-30参照）*/

	width: 760px;
	height: 620px;
	background: url(../softopia/images/softopia.jpg) ;
}



p.infobox {
	position: absolute; /* absoluteを指定したボックスの親ボックス（↑）には static以外の値が指定されているべし（『上級レイアウト』p29-30参照）*/
	left: 515px;
	top: 68px;

	width: 201px;  /* 元の幅 219px   */
	height: 240px; /* 元の高さ 258px */
	padding: 8px;
	overflow: auto;
	overflow-x: hidden; /* ← Windows Internet Explorer対策　*/
	background-color: #FFFFFF;
	border: 1px solid #C0C0C0;
}

#return {
	position: absolute;
	left: 650px;
	top: 350px;
	width: 85px;
	height: 25px;
}




#access {
	position: absolute;
	left: 0px;
	top: 52px;
	width: 410px; 　/* 元の幅 418px   */
	height: 40px;　/* 元の高さ 258px */
	overflow: auto;
	padding: 4px 5px 4px 8px;
	border: 5px solid #E0E0E0;
}