@charset "utf-8";
/* CSS Document */

:root {
	--main-color1: #18a58a;
	--main-color2: #da627b;
	--main-color3: #1821a5;

	--main-color1-light: #ddede8;
	--main-color2-light: #efd6db;
	--main-color3-light: #e8e9de;

	--text-color1: #393939;
	--text-color2: #696969;

	--link-color: #cb533e;

	--menu1-color: #9ae392;
	--menu2-color: #8bc3d3;
	--menu3-color: #d9b1c8;
	--menu4-color: #e0b898;
}

body {
	margin:0;
	padding:0;
	color: var(--text-color1);
	font-size:12px;
	font-family:"Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}
a {
	color: var(--link-color);
	text-decoration:none;
	font-size:15px;
}
a:hover {
	text-decoration:underline;
}
body:after {/*擬似要素をつくる*/
	position: fixed;/*固定配置*/
	top: 0; left: 0;/*左上に固定*/
	width: 100%; height: 100%;/*画面全体を覆う*/
	content: "";
	z-index:-10;
}


#outline {
	width: 96%;
	max-width: 800px;
	margin: 0 auto;
}

#header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 100;
	background-color: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(10px);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
#header_in {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 10px;
	max-width: 800px;
	margin: 0 auto;
}

#h_logo a {
	display: flex;
	align-items: center;
	gap: 5px;
	font-size: 10px;
	white-space: nowrap;
	font-weight: bold;
}

#h_logo img {
	width: 120px;
}

#h_logo span {
	font-size: 14px;
	color: var(--main-color1);
	margin-top: 4px;
}

#header_in .btn_home {
	font-size: 12px;
	color: var(--main-color1);
	line-height: 1.2;
	text-align: center;
}

#contents {
	margin-top: 50px;
	position: relative;
}

h1 {
	font-size: 1.6em;
	padding-top: 15px;
}
h2 {
	font-size: 1.4em;
}
h3 {
	font-size: 1.2em;
}


#footer {
	margin-top: 80px;
	padding: 20px 0;
	text-align: center;
	font-size: 12px;
}


#center_contents {
	position: absolute;
    top: 50%;
    left: 50%;
    width: 480px;
    max-width: 90%;
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
	background-color: rgba(255,255,255,0.95);
	border-radius:10px;
}
#center_contents_in {
	padding:25px 20px;
}

#center_contents input[type="text"]
,#center_contents input[type="password"] {
	width:calc(100% - 12px);
}
#center_contents dl {
	display:block;
	padding:10px 0 20px;
}
#center_contents dl dt {
	padding-top:10px;
}
#center_contents .l_box {
	width:50%;
	float:left;
	margin-top:10px;
}
#center_contents .l_box a {
	font-size:80%;
}
#center_contents .r_box {
	width:50%;
	float:right;
	text-align:right;
}
@media print, screen and (max-width: 500px){
	#center_contents .l_box {
		width:100%;
		float:none;
	}
	#center_contents .r_box {
		width:100%;
		float:none;
	}
}


#ovray_hanyou1_out {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 1000;
	display: none;
}
#ovray_hanyou1_out.active {
	display: block;
}
#ovray_hanyou1 {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 85%;
	max-width: 700px;
	background-color: white;
	border-radius: 10px;
	padding: 30px 15px;
	max-height: 75vh;
	min-height: 40vh;
	overflow-y: auto;
}
#ovray_hanyou1_in {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	font-size: 0.9rem;
}
.overlay_header {
	text-align: center;
}
.overlay_header h3 {
	font-size: 1.2em;
}
.overlay_header p {
	font-size: 0.95em;
	color: var(--text-color2);
	margin: 10px 0;
}