﻿@charset "utf-8";
/*
Created		2021/04/08
Last update	2021/04/08
Author		Hayashi Ryosuke
*/

html{
	font-size: 62.5%; /*フォント級数10px*/
}
body{
	border-top:5px solid #6666FF;
	padding: 0 ;
	margin: 0 ;
}
.acjp-body{
	border-top:5px solid rgb(255,50,0);
}
.org-body{
	border-top:5px solid rgb(227,117,56);
}
.net-body{
	border-top:5px solid rgb(0,0,102);
}
/*
　ヘッダ共通部分
*/

.tmp_section{
	max-width: 980px;
	margin: 0 auto;
	padding: 0;
}
.top_header{
	display: grid;
	grid-template-areas: "title-img title-text menu";
	grid-template-columns: 90px 1fr 110px;
	/*background-color: rgb(255,255,200);*/
}
.header_link_flex{
	padding: 0;
}
.header_link_flex a{
	text-decoration: none;
}
@media only screen and (max-width : 500px) {
	.top_header{
		grid-template-areas:
		"title-img title-text"
		"menu menu";
		grid-template-columns: 90px 1fr;
	}
	.header_link_flex{
		display: flex;
		justify-content: flex-start;
	}
	.header_link_flex li{
		margin-right: 1rem;
	}
}
.grid-aria-a{
	grid-area: title-img;
}
.grid-aria-b{
	grid-area: title-text;
}
.grid-aria-c{
	grid-area:menu;
}
.header_link ol{
	list-style: none;
}
h1{
	font-size: 2.0rem;
	margin: 0;
	padding: .5rem 0 0 0 ;
}
@media only screen and (max-width : 500px) {
	.nav_br::after{
		content: "\A";
		white-space: pre ;
	}
}

.menu_ber{
	display: flex;
	justify-content: flex-start;
	list-style: none;
	margin: 0.5rem;
	padding: 0;
}
.menu_ber li{
	border:solid 1px rgb(200,200,200);
	background-color: rgb(255,255,255);
	padding:0.2rem 1rem;
	font-size: 1.2rem;
}
.menu_ber li.check{
	background-color: rgb(255,250,230);
	border-color: rgb(255,240,210);
}
.menu_ber li a{
	text-decoration: none;
}

.oshirase{
	position: relative;
	border: 2px solid rgb(50,150,180);
	font-size: 1.6rem;
	padding: 1rem;
	margin-top: 4rem;
}
.oshirase h2{
	position: absolute;
	top:-3.5rem;
	background-color: rgb(255,255,255);
	border: 2px solid rgb(50,150,180);
	font-size: 2rem;
	padding: 0 2em;
}
/*==========================================
	フッター共通部分
==========================================*/
footer{
	margin-top: 2rem;
	width: 100%;
}
footer img{
	width: 100%;
}

/*==========================================
	index.htm
==========================================*/
.tensou_section{
}
.tensou_section h2{
	font-size: 2.0rem;
	background-image:url(/images/h2_bg.png);
	padding: 1rem;
	border-top: double 3px rgb(200,200,200);
	border-bottom: double 3px rgb(200,200,200);
}
.tensou_section h3{
	font-size: 1.6rem;
	padding-bottom:20px;
	background:url(/images/hayashi/10px_666_shy.png) repeat-x bottom left ;
}
.tensou_section p{
	font-size: 1.4rem;
	margin: 1rem;
}
.tensou_button_all--body{
	width: 100%;
	display: block;
	padding: 1rem 0;
	text-align: center;
	border: 2px solid;
	border-radius: 5px;
	box-shadow: 2px 2px 4px rgba(150,150,150,1);
	font-size: 2rem;
	font-weight: 600;
	text-decoration: none;
	background:url(/images/hayashi/link_icon_triangle.gif) no-repeat right rgb(255,255,255);
}
/* ==========================================
acjp転送案内
========================================== */
.tensou_acjp--body{
	background-color: rgb(255,240,240);
	margin-top: 2rem;
}
a.tensou_acjp--border{
	border-color: rgb(255,50,0);
}
.tensou_acjp--grid{
	display: grid;
	grid-template-areas:
	"acjp_1 acjp_1"
	"acjp_2 acjp_3";
	grid-template-columns: 250px 1fr;
}
.tensou_acjp--aria_a{
	grid-area: acjp_1;
}
.tensou_acjp--aria_b{
	grid-area: acjp_2;
	padding: 1rem;
}
.tensou_acjp--aria_c{
	grid-area: acjp_3;
}
@media only screen and (max-width : 500px) {
	.tensou_acjp--grid{
		grid-template-areas:
		"acjp_1 "
		"acjp_3 "
		"acjp_2 ";
		grid-template-columns: 1fr;
	}
}
/*==========================================
 org転送案内
 ==========================================*/
.tensou_org--body{
	background-color: rgb(250,240,220);
	margin-top: 2rem;
}
a.tensou_org--border{
	border-color: rgb(227,117,56);
}
.tensou_org--grid{
	display: grid;
	grid-template-areas:
	"org_1 org_1"
	"org_2 org_3";
	grid-template-columns: 250px 1fr;
}
.tensou_org--aria_a{
	grid-area: org_1;
}
.tensou_org--aria_b{
	grid-area: org_2;
	padding: 1rem;
}
.tensou_org--aria_c{
	grid-area: org_3;
}
@media only screen and (max-width : 500px) {
	.tensou_org--grid{
		grid-template-areas:
		"org_1 "
		"org_3 "
		"org_2 ";
		grid-template-columns: 1fr;
	}
}

/*==========================================
net転送案内
==========================================*/
.tensou_net--body{
	background-color: rgb(240,240,255);
	margin-top: 2rem;
}
a.tensou_net--border{
	border-color: rgb(0,0,102);
}
.tensou_net--grid{
	display: grid;
	grid-template-areas:
	"net_1 net_1"
	"net_2 net_3";
	grid-template-columns: 250px 1fr;
}
.tensou_net--aria_a{
	grid-area: net_1;
}
.tensou_net--aria_b{
	grid-area: net_2;
	padding: 1rem;
}
.tensou_net--aria_c{
	grid-area: net_3;
}
@media only screen and (max-width : 500px) {
	.tensou_net--grid{
		grid-template-areas:
		"net_1 "
		"net_3 "
		"net_2 ";
		grid-template-columns: 1fr;
	}
}

/*
index-umin-ac-jp.htm
index-umin-net.htm
index-umin-org.htm
*/
.tensou_note_section{
	margin:1rem 1rem;
	padding: .5rem 0;
}
.tensou_note_section h2{
	font-size: 2.0rem;
	background-image:url(/images/h2_bg.png);
	padding: 1rem;
	border-top: double 3px rgb(200,200,200);
	border-bottom: double 3px rgb(200,200,200);
}
.tensou_note_section h3{
	font-size: 1.6rem;
	padding:0;
	border-bottom: 1px dotted rgb(50,50,50);
}
.tensou_note_section p{
	font-size: 1.4rem;
	margin: 1rem;
}
.tensou_note_section_all--body{
	width: 100%;
	display: block;
	padding: 1rem 0;
	text-align: center;
	border: 2px solid;
	border-radius: 5px;
	box-shadow: 2px 2px 4px rgba(150,150,150,1);
	font-size: 2rem;
	font-weight: 600;
	text-decoration: none;
	background:url(/images/hayashi/link_icon_triangle.gif) no-repeat right rgb(255,255,255);
}

.personal_id{
	color: rgb(255,255,255);
	background-color: rgb(255,100,100);
	padding: 0 1rem;
	border-radius: 5rem;
	text-shadow: 1px 1px 0px rgb(50,50,50);
}
.other_id{
	color: rgb(255,255,255);
	background-color: rgb(100,200,100);
	padding: 0 1rem;
	border-radius: 5rem;
	text-shadow: 1px 1px 0px rgb(50,50,50);
}