@charset "utf-8";

/*
Site URL	https://plaza.umin.ac.jp/hcw/
Created		2022/03/08
Last update	2022/03/17 Hayashi Ryosuke
Author		Hayashi Ryosuke（UMIN Center）
*/
:root{
	--sso-background-color:rgb(200,250,255);/*会員専用ページ*/
}

/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
	基礎情報
		最大横サイズ	980PX
		基本フォントサイズ	18px
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
body{
	background-image:url("https://plaza.umin.ac.jp/hcw/img/hl_bg.jpg");
	font-size: 18px;
}

/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
	タイトル等ヘッダ
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.head-h1{
	background: rgb(0,0,180);
	color:rgb(255,255,255);
}
.head-title{
	max-width: 960px;
	margin: 0 auto;
	position: relative;
	border-bottom: 2px solid rgb(50, 50, 50);
	box-shadow: 0 2px 4px rgb(50, 50, 50);
}
.head-title-lang{
	position: absolute;
	right: 10px;
	top: 10px;
	width: 80px;
	display: inline-block;
	background-color: rgb(255, 255, 255);
	border: 2px solid rgb(255, 50, 50);
	border-radius: 4px;
	padding: .2em;
	font-size: 1rem;
	text-align: center;
}

/*会員専用ページ用　20240612追加*/
.head-title-sec{
	position: absolute;
	right: 10px;
	top: 45px;
	width: 80px;
	display: inline-block;
	border: 2px solid rgb(0, 0, 200, 1.0);
	background-color: rgb(50, 50, 150, 1.0);
	color: rgb(255, 255, 255, 1.0);
	border-radius: 4px;
	padding: .2em;
	font-size: 1rem;
	text-align: center;
}

.head-title-img {
	width: 100%;
}
.head-title h1{
	position: absolute;
	padding: 1rem ;
	top:50%;
	transform: translateY(-50%);
	font-size: 2rem;
	font-weight: 600;
	text-shadow: 1px 1px rgb(255,255,255);
	color: rgb(50,50,50);
	background-color: rgba(250,250,250,0.5);
}
.en-title{
	font-size: .5em;
}
@media screen and (max-width:500px) { 
	.head-title h1{
		font-size: 1rem;
	}
}
/*＝＝＝＝＝＝＝＝＝
	index.html
	nav
＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.menu--flex{
	max-width: 960px;
	padding: 0;
	margin: 0px auto;
}
.menu--flex ul{
	margin: 0 1em;
	display: flex;
	flex-wrap:wrap;
	justify-content:space-between;
}
.menu--flex li{
	border: solid 2px rgb(223,51,78);
	background: rgb(255,255,255);
	border-radius: 5px;
	width: 150px;
	text-align: center;
	margin-top: 20px;
	/* 個別CSSに記述
	filter: drop-shadow(2px 2px 0px rgba(223,51,78,1));
	*/
}
.menu--flex ul li a{
	display: block;
	width: 100%;
	padding: 12px 0;
	text-decoration: none;
}





.menu--flex2{
	max-width: 1000px;
	padding: 0;
	margin: 0px auto;
}
.menu--flex2 ul{
	margin: 0 1em;
	display: flex;
	flex-wrap:wrap;
	justify-content:space-between;
}

.menu--flex2 li{
	border: solid 2px rgb(223,51,78);
	background: rgb(255,255,255);
	border-radius: 5px;
	width: 13.7%;
	text-align: center;
	margin-top: 20px;
	/* 個別CSSに記述
	filter: drop-shadow(2px 2px 0px rgba(223,51,78,1));
	*/
}

.menu--flex2 ul li a{
	display: block;
	width: 100%;
	padding: 12px 0;
	text-decoration: none;
}

@media screen and (max-width: 768px) {
	.menu--flex2 ul {
	justify-content: flex-start;
	}

	.menu--flex2 li {
	width: 22%;
	margin-right: 1%;
	}
}







/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
	section 基礎
	20211115 index改修
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.sec-body{
	max-width: 960px;
	padding: 0 0 14px 0;
	margin: 40px auto 20px auto;
	/* 個別CSSに記述
	background: rgb(255,255,255);
	filter: drop-shadow(2px 2px 2px rgba(150,0,0,1));
	*/
}
.sec-body--h2{
	position: relative;
	left:-13px;
	top:-10px;
	width: 80%;
	padding: 10px 20px;
	/* 個別CSSに記述
	background: rgb(223,51,78);
	color: rgb(255,255,255);
	*/
	filter: drop-shadow(2px 2px 2px rgba(0,0,0,1));
	text-shadow:1px 1px 0 rgba(50,50,50,1);
	font-size: 1.5rem ;
	font-weight: bold;
}
.sec-body--h2:before{
    content:" ";
    position:absolute;
    top:100%;
    left:-12px;
    width:0;
    height:0;
	left:0px;
    border-width:0 10px 10px 0;
    border-style:solid;
    border-color:transparent;
    border-right-color:#330;
}
.sec-box{
	margin: 0;
	padding: .5rem .5rem 1rem .5rem;
}
.sec-box--h3a{
	border-bottom: dotted 6px rgb(80,80,80);
	font-size: 1.2rem;
	font-weight: 600;
	margin-top: 1rem ;
}
.sec-box--h4a{
	margin-top: 1.5rem;
	font-weight: 600;
	/* 個別CSSに記述
	border-bottom: solid 1px rgb(255,160,10);
	*/
}
.sec-box--h5a{
	font-weight: 600;

}

.sec-box--p-indent{
	text-indent: 1em;
	line-height: 1.4em;
	margin-top: .5rem;
}
.sec-box--p{
	line-height: 1.4em;
	margin-top: .5rem;
}


.sec-box--p-oshirase{
	line-height: 1.4em;
	margin-top: .5rem;	
}

.notes{
	font-size: 10px;
}

.ol--style_decimal{
	list-style: decimal ;
	margin-top: 1em;
	margin-left: 1em;
}
.ol--style_decimal > li{
	line-height: 1.3em;
	margin-bottom: .5em;
}

.box--ul{
	list-style: outside none;
	line-height: 1.2em;
	margin: .5em 0;
}
.box--ul li{
	margin-bottom: .2rem;
}

.font-text-red{
	color: rgb(255, 50, 50);
}

.font-text--strong{
	font-weight: 600;
}

.img-box{
	padding: 1rem;
}
.img-box img {
	width: 100%;
}


/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝
	index.html
	世話人
＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.organizer li{
	margin-left: 5em;
	margin-bottom: 5px;
	position: relative;
}
.organizer li:after{
	content: "";
	clear: both;
	height: 0;
	display: block;
	visibility: hidden;
}
.organizer li.representative:before{
	content: "【代表】";
	font-weight: bold;
	position: absolute;
	left: -4em;
}
.org-name{
	float: left;
	width: 6em;
	font-weight: bold;
	position: relative;
}
.organizer-post{
	margin-bottom: 1em;
}
.organizer-post li{
	margin-left: 1em;
	margin-bottom: 5px;
	position: relative;
}
.organizer-post span{
	font-weight: bold;
	margin-bottom: 5px;
}
.organizer-post2 li{
	margin-left: 1em;
	margin-bottom: 5px;
	position: relative;
}
.old-manager--p{
	text-align:right;
	margin: 0 1em;
}
@media screen and (max-width:500px) { 
	.organizer li{
		margin-left: 1em;
		margin-bottom: 5px;
		position: relative;
	}
	.organizer li.representative:before{
		content: "！";
		font-weight: bold;
		position: absolute;
		left: -1em;
	}
	.org-name{
		float: left;
		width: 6em;
		font-weight: bold;
	}
}
/*英語*/
.organizer-en .org-name{
	width:auto;
	float:none;
}
.organizer-en li{
	margin-left:1em;
	padding-bottom: 0.4em;
}
/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝
	index.html
	連絡先
＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.address dl{
	margin-left: 1em;
}
.address dt{
	font-weight: bold;	
}
.address dd{
	margin-left: 1em;
	margin-bottom: 2em;
	line-height: 1.4em;
}


/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝
	link.html
	リンクリスト
＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.link--style{
	margin: 1rem;
	list-style: inside none;
}
.link--style li{
	position: relative;
	margin-left: 1rem; 
	margin-bottom: 10px;
}

/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝
	All_htm
	フッター設定
＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
#hl_footer{
	background-color:#EEE;
	width:100%;
	margin-top:30px;
	border-top:#CCC 4px groove;
	border-bottom:#AAA 1px solid;
	font-size:12px;
}
#hl_footer p{
	clear:both;
	text-align:right;
}
#hl_footer ol{
	margin:0;
	padding:0;
}
#hl_footer ol li{
	float:left;
	padding:0 2px;
	font-size:12px;
}
#hl_footer ol li a{
	display:block;
	padding:2px 7px;
	text-decoration:none;
	color:#000;
}
#hl_footer ol li a:hover{
	color:#F00;
}





/*旧記述*/
.sec-box--h2{
	position: relative;
	left:-13px;
	top:-10px;
	width: 80%;
	padding: 10px 20px;
	background: rgb(223,51,78);
	color: rgb(255,255,255);
	filter: drop-shadow(2px 2px 2px rgba(0,0,0,1));
	text-shadow:1px 1px 0 rgba(50,50,50,1);
	font-size: 24px;
	font-weight: bold;
}
.sec-box--h2:before{
    content:" ";
    position:absolute;
    top:100%;
    left:-12px;
    width:0;
    height:0;
	left:0px;
    border-width:0 10px 10px 0;
    border-style:solid;
    border-color:transparent;
    border-right-color:#330;
}
.sec-box--h3{
	border-bottom: dotted 6px rgb(80,80,80);
	margin: 15px 20px;
	text-shadow:1px 1px 0 rgba(0,0,0,1);
	font-size: 24px;
}
.sec-text1--p{
	text-indent: 1em;
	padding: 1em;
	line-height: 1.4em;
}
.sec--ul{
	list-style: outside none;
	padding: 1em 1em 1em 2em;
	line-height: 1.4em;
	text-shadow:0.3px 0.3px 0 rgba(80,80,80,1);
}


/*メンバーリスト　2002/4/3追記*/
.member{
	margin: 0.5rem 1rem ;
}
.member li{
	line-height: 1.3em;
	font-size: 12px;
	margin-bottom: 1em ;
}
span.member-name{
	display: inline-block;
	font-weight: 600;
	font-size: 16px;
}


/*会員制用ページ*/
.menu--flex ul li.sso-menu{
	width: 47%;
}
.menu--flex ul li.sso-menu a{
	display: block;
	width: 100%;
	padding: 1em 2em;
	text-decoration: none;
	box-sizing: border-box;
}
body.sso-body{
	background-color: var(--sso-background-color);
	background-image: none;
}

.sso-magazine-list{
	margin: 1em 0 3rem 0;
}
.sso-magazin-title{
	display: inline-block;
	width: fit-content;
	margin-right: 1em;
}
.sso-magazin-button{
	display: inline-block;
	width: fit-content;
	margin-right: 1em;
	margin-bottom: 1em;
}
.sso-magazin-button a{
	padding: .2em 1em ;
	text-decoration: none;
	box-shadow: 1px 1px 0px rgb(0, 0, 100, 1.0);
	border: 2px solid rgb(50, 50, 150, 1.0);
	border-radius: 1em ;
	font-weight: 600;
}
.sso-magazin-button-s{
	display: inline-block;
	width: fit-content;
	margin-right: 1em;
	margin-bottom: 1em;
}
.sso-magazin-button-s a{
	padding: .2em 1em ;
	text-decoration: none;
	box-shadow: 1px 1px 0px rgb(0, 0, 100, 1.0);
	border: 2px solid rgb(50, 50, 150, 1.0);
	background-color: rgb(0, 0, 200, 1.0);
	color: rgb(255, 255, 255, 1.0);
	border-radius: 1em ;
	font-weight: 600;
}

/*20240620 HCW入会案内の注意事項追加*/
.hcwo-nyukai-uminid{
	color: rgb(255, 50, 50, 1.0);
	line-height: 1.3em;
}


/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝
	Copyright (c) HCWO -ALL
＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/




