@charset "UTF-8";

/*背景色*/
body {
/*  background-color: #efefef; */
  background-color: #021558;
}
/*Studyページの見え隠れボタン*/
.cp_box *, .cp_box *:before, .cp_box *:after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.cp_box {
	position: relative;
}
.cp_box label {
	position: absolute;
	z-index: 1;
	bottom: 0;
	width: 100%;
	height: 140px; /* グラデーションの高さ */
	cursor: pointer;
	text-align: center;
	/* 以下グラデーションは背景を自身のサイトに合わせて設定してください */
	background: linear-gradient(to bottom, rgba(250, 252, 252, 0) 0%, rgba(250, 252, 252, 0.95) 90%);
}
.cp_box input:checked + label {
	background: inherit; /* 開いた時にグラデーションを消す */
}
.cp_box label:after {
	line-height: 2rem; /* ボタンの高さ、もとは2.5rem */
	position: absolute;
	z-index: 2;
	bottom: 20px;
	left: 50%;
	width: 10rem;/*ボタンの幅、もとは16rem*/
	font-family: FontAwesome;
	content: 'See More';
	transform: translate(-50%, 0);
	letter-spacing: 0.05em;
	color: #ffffff;
	border-radius: 20px;
	background-color: rgba(27, 37, 56, 1);
}
.cp_box input {
	display: none;
}
.cp_box .cp_container {
	overflow: hidden;
	height: 200px; /* 開く前に見えている部分の高さ */
	transition: all 0.5s;
}
.cp_box input:checked + label {
	/* display: none ; 閉じるボタンを消す場合解放 */
}
.cp_box input:checked + label:after {
	font-family: FontAwesome;
	content: 'Close';
}
.cp_box input:checked ~ .cp_container {
	height: auto;
	padding-bottom: 80px; /* 閉じるボタンのbottomからの位置 */
	transition: all 0.5s;
}

/*見え隠れボタンここまで*/

/*スクロールコピペ*/


.box_srcollbar {
		overflow:auto;
		width:100%;
		height:200px;
		padding:5px;
		border:0.5px solid #000;
		background-color:#F9F9F9;
		color:#000;
}

/*スクロールコピペここまで*/

/*小さいナビバー*/
.info {
  color: #fff;
  font-size: 0.8rem;
}
.info a {
	color: #fff;
}
.info a:hover {
	color: #ddd;
}

.sm-menu {
     text-align: left;  /* 文章を左寄せする(※) */
     float: left;     /* 左端に寄せて、後続を右側へ回り込ませる */
  }
.language {
     text-align: right; /* 文章を右寄せする */
  }
span {
     display: inline-block;　/* 不自然な改行を防ぐ */
  }
