@charset "utf-8";

/*------------------------------------------------------------------------------
Css name: common.css
Css info: 共通スタイル
------------------------------------------------------------------------------*/

/*------------------------------------------------------------------------
基本
--------------------------------------------------------------------------*/
*{
	margin: 0px;
	padding: 0px;
	box-sizing: border-box;
}

html{
	box-sizing: border-box;
	overflow-y: scroll;
	font-size: 62.5%;
	-webkit-text-size-adjust: 100%;
}

body{
	height:100%;
	width:100%;

	margin:0 auto;
	padding:0px;
	font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, "Yu Gothic", YuGothic, "Hiragino Sans", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
	font-feature-settings: "pkna";
	font-weight: 400;
	font-style:normal;
	color:#373c3c;
	font-size:1.5em;
	letter-spacing: 0.01em;
	-ms-word-wrap: break-word;
	word-wrap: break-word;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
	display: block;
}

p{
	line-height:2;
}


img,table {
	border:none;
}

img{
	vertical-align: bottom;
	max-width: 100%;
	height: auto;
}

a{		/* テキストリンク */
	color:#373c3c;
	text-decoration:none;
	background-color: transparent;
	-webkit-text-decoration-skip: objects;
}
a:active,
a:hover{		/* テキストリンク */
	color:#373c3c;
	text-decoration:none;
	outline:none;
}

a:hover img{		/* 画像リンク */
	/*opacity:0.8;
	filter: alpha(opacity=80);*/
}

/*-------------------------------------------------------*/
.gp_body{
	width: 100%;
	min-height: 100dvh;
	background: #B4DDC9;
}
.course_name{
	width: 300px;
	max-width: 80%;
	margin: 40px auto 80px;
}
.course_btn{
	width: 500px;
	max-width: 90%;
	margin: 0 auto 60px;
}

.member_list{
	display: flex;
	flex-wrap: wrap;

	width: 1100px;
	max-width: 90%;
	margin: 0 auto;
}
.member_list li{
	width: 22%;
	margin-right: 4%;
	margin-bottom: 30px;
	list-style: none;
}
.member_list li:nth-of-type(4n){
	margin-right: 0;
}

.member_list li a,
.course_btn a{
	display: block;
	width: 100%;
	padding: 1em;
	text-align: center;
	color: #1a5560;
	font-weight: bold;
	border: 1px solid #fff;
}

.member_list li a:hover,
.course_btn a:hover{
	background-color: rgba(255,255,255,.5);
}
