@charset "utf-8";
/* CSS Document */

/*----------------------------------------------------
  リセット
----------------------------------------------------*/
html,body {
    margin:0;
    padding:0;
	width: 100%;
    height:100%;
}
div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,blockquote,th,td{
	margin: 0;
	padding: 0;
}
fieldset,img{
	border: 0;
	vertical-align : middle;
}
abbr,acronym{
	border: 0;
}
address,caption,cite,code,dfn,em,strong,th,var{
	font-style: normal;
	font-weight: normal;
}
h1,h2,h3,h4,h5,h6{
	font-size: 100%;
	font-weight: normal;
}
img {border:none;}
ul,ol,li {list-style-type: none;}

/*----------------------------------------------------
  サイト定義
----------------------------------------------------*/
body {
	height: 100%;
	background: #FFF;
	font-family: 'Josefin Sans' , "Noto Sans Japanese" , "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, sans-serif;
	line-height: 1.6em;
}
p{
	margin-top: 0;
	margin-bottom: 2em;
}
html { font-size: 62.5%; } 
body { font-size: 15px; font-size: 1.5rem; } /* =15px */

/*link*/
a:link,a:active,a:visited {color:#1841ce; text-decoration:none;}
a:hover {text-decoration:underline;}

/* link画像用 */
a img {
     border:none;
     verticle-align:top;
     -webkit-transition: 0.2s ease-in-out;
     -moz-transition: 0.2s ease-in-out;
     -o-transition: 0.2s ease-in-out;
     transition: 0.2s ease-in-out;
}
a:hover img {
     opacity: 0.7;
     filter: alpha(opacity=80);
}
@media (max-width: 767px) {
a img {
     border:none;
     verticle-align:top;
}
a:hover img {
    opacity:1.0;
}
}

/* base */
.clear{clear:both; height:0; line-height:0; font-size:1%;}
.clearfix:after {
	visibility: hidden;
    display: block;
    content: " ";
    clear: both;
    height: 0;
}
* html .clearfix             { zoom: 1; } 
*:first-child+html .clearfix { zoom: 1; }
.mar_0a{margin: 0 auto;}
.mar_t20{margin-top:20px;}
.center{text-align:center;}
.right{text-align:right;}
.float_l img{float:left; margin-right:15px;}
.float_r img{float:right; margin-left:15px;}

/* font */
.att {padding-left:1em; text-indent:-1em;}
.bold{font-weight:bold;}
.700{font-weight:700;}
.font80{font-size:80%;}
.font90{font-size:90%;}
.font100{font-size:100%;}
.font110{font-size:110%;}
.font120{font-size:120%;}
.font150{font-size:150%;}
.f_color_red{color:#c70000;}
.f_color_redbrown{color:#ac3e28;}
.f_color_orange{color:#ee5c1b;}
.f_color_gray{color:#6b6b6b; font-size:90%;}

/*----------------------------------------------------
  構成
----------------------------------------------------*/
#wrapper {
	width: 100%;
	min-height: 100%;
	margin-bottom: -110px;
}

#container {
	height: 100%;
	background-color: #fff;
	padding-bottom: 15px;
}
.side {
	display: block;
	width: 100px;
	height: 100%;
}
.main {
	width: 1000px;
	height: 100%;
	margin: 0 auto;
	padding-top: 5px;
	padding-bottom: 30px;
	background-color: #fff;
}
#footer {
	clear: both;
}
.footer_yellow {
	height: 110px;
	background-color: #dff241;
	display: flex;
	justify-content: center;
	align-items: center;
}
.footerlogo {
	text-align: center;
}

/*----------------------------------------------------
  ヘッダー
----------------------------------------------------*/
header {
	width: 100%;
	background-color: #dff241;
}

#h_wrapper {
	-js-display: flex;
	display:flex;
	width: 100%;
	height: 80px;
}

.logo {
	-js-display: flex;
	display:flex;
	align-items: center;
	height: 80px;
	width: 295px;
	padding-right: 5px;
}

.ico-gear {
	height: 80px;
	fill: #000;
		-webkit-animation: spin 5s linear infinite;
		-moz-animation: spin 5s linear infinite;
		-ms-animation: spin 5s linear infinite;
		-o-animation: spin 5s linear infinite;
		animation: spin 5s linear infinite;
} 
@-webkit-keyframes spin {
	0% {-webkit-transform: rotate(0deg);}
	100% {-webkit-transform: rotate(360deg);}
}
@-moz-keyframes spin {
	0% {-moz-transform: rotate(0deg);}
	100% {-moz-transform: rotate(360deg);}
}
@-ms-keyframes spin {
	0% {-ms-transform: rotate(0deg);}
	100% {-ms-transform: rotate(360deg);}
}
@-o-keyframes spin {
	0% {-o-transform: rotate(0deg);}
	100% {-o-transform: rotate(360deg);}
}
@keyframes spin {
	0% {transform: rotate(0deg);}
	100% {transform: rotate(360deg);}
}

.border_bg {
	width: 100%;
	height: 20px;
	background-color: #000;
	background-image: repeating-linear-gradient(-45deg, transparent, transparent 10px, rgba(255,255,255,1) 10px, rgba(255,255,255,1) 20px);
}

/*----------------------------------------------------
  メニュー
----------------------------------------------------*/
#menu {
	-js-display: flex;
	display: flex;
	align-items: flex-end;
	font-size: 120%;
	height: 80px;
}
.dropmenu {
	list-style-type: none;
	width: 800px;
	padding: 0;
}
.dropmenu ul{
	-js-display: flex;
	display: flex;
	height: 100%;
}
.dropmenu li:first-child {
   margin-right: auto;
}

.dropmenu:before, .dropmenu:after{
	content: "";
	display: table;
}
.dropmenu:after{
	clear: both;
}
.dropmenu li{
	position: relative;
	width: 200px;
	float: left;
	margin: 0;
	padding: 0;
	text-align: center;
}
.dropmenu li a{
	display: block;
	margin: 0;
	padding: 30px 0 20px;
	color: #000;
	line-height: 1;
	text-decoration: none;
	font-weight: 800;
}
.dropmenu li ul{
	list-style: none;
	position: absolute;
	z-index: 9999;
	top: 100%;
	left: 0;
	margin: 0;
	padding: 0;
}
.dropmenu > ul {
    height: 100%;
}

.menu-button {
  display: inline-block;
  background-image: linear-gradient(to top, #000 50%, rgba(0,0,0,0) 50% );
  background-position: 0 0;
  background-size: auto 200%;
  transition: all .2s ease 0s;
  text-decoration: none;
}
.menu-button:hover {
  cursor: pointer;
  background-position: 0 100%;
  color: #fff;
}


/*----------------------------------------------------
  更新情報
----------------------------------------------------*/
.newsbox {
	margin-bottom: 10px;
}
.newsbox ul{
	-js-display: flex;
	display: flex;
	align-items: center;
	overflow: hidden;
}

.newsbox li:first-child {
   margin-right: auto;
   padding-left: 30px;
}

.newsbox .inner-1 {
	float: left;
}
.newsbox .inner-2 {
	float: left;
	border: 1px solid #CCC;
	padding: 5px;
	margin-left: 20px;
}

dl.update {
    height: 160px;
	width: 500px;
    overflow: auto;
    padding: 10px;
}
dl.update dt{
    float: left;
    width: 90px;
	font-size: 90%;
	font-weight: 700;
}
dl.update dd {
    margin: 0 0 10px 0;
    padding: 0 0 10px 90px;
    border-bottom: 1px solid #ccc;
}
dl.update a:link {font-weight:bold;}

/*----------------------------------------------------
  TOPに戻るボタン
----------------------------------------------------*/
#page-top {
    position: fixed;
    bottom: 50px;
    right: 20px;
    font-size: 120%;
	font-family: 'Kanit';
	font-weight: 700;
}
#page-top a {
    background: #000;
    text-decoration: none;
    color: #fff;
    width: 120px;
    padding: 15px 0;
    text-align: center;
    display: block;
}
#page-top a:hover {
    text-decoration: none;
    background: #666;
}
/*----------------------------------------------------
  サイドバー
----------------------------------------------------*/
.side-thumb {
	position: fixed;
	width: 140px;
	margin-left: auto;
	margin-right: auto;
}
.side-thumb img{
    display:block;
	box-sizing: border-box;
	border-radius: 50%;
	height: 140px;
	width: 140px;
	border: 2px solid #000;
}
.side-thumb a{
    display:block;
	border-radius: 50%;
	height: 140px;
	width: 140px;
    background-color:#ffffff;
	margin-bottom: 15px;
}
.side-thumb a:hover img{
    cursor:pointer;
    filter: alpha(opacity=60);
    -ms-filter: "alpha(opacity=60)";
    -moz-opacity:0.6;
    -khtml-opacity: 0.6;
    opacity:0.6;
    zoom:1;
}
/*----------------------------------------------------
  装飾
----------------------------------------------------*/

.publishbox {
	margin-top: 40px;
    padding: 20px 30px;
	overflow: hidden;
}
.publish-inner{
	float: left;
	border: 1px solid #CCC;
	padding: 5px;
	margin-left: 10px;
	background-color: #dff241;
}


.yellowbox {
	position: relative;
	height: 55px;
	width: 100%;
	background-color: #dff241;
	border: 2px solid #000;
	border-radius: 10px;
	box-sizing: border-box;
	text-indent: 2em;
    line-height: 2em;
}
.yellowbox::before,
.yellowbox::after {
	position: absolute;
	top: 100%;
	left: 50px;
	content: '';
	height: 0;
	width: 0;
	border: 8px solid transparent;
}
.yellowbox::before {
	border-top: 18px solid #000;
}
.yellowbox::after {
	margin-top: -4px;
	border-top: 18px solid #dff241;
}
.yellowbox-text {
	position: absolute;
    top: 50%;
    margin-top: -0.5em;
	font-size: 170%;
	font-weight: 900;
}

.fontinfo {
	margin-left: auto;
	margin-right: auto;
	margin-top: 40px;
	width: 800px;
}
.fontinfo-text {
	width: 80%;
	margin: 30px auto;
}
.info-border {
	border: solid 1px #999;
    padding: 10px 0;
	width: 800px;
	margin: 0 auto;
}
.example {
	text-align: center;
}

.bottombox {
	margin-bottom: 50px;
}
.topbox {
	margin-top: 20px;
}

.imgcap {
	font-size:90%;
	color:#6b6b6b;
	padding-left: 2em;
	text-indent: -1em;
	padding-right: 2em;
	margin: 0;
}
.imgcap:before {
	content:"■";
	color:#dff241;
}

.fontinfo img {
	margin-left:auto; 
    margin-right:auto; 
    display:block;
}
.example img{
	display: inline-block;
}
.download {
	margin-top: 30px;
	text-align: center;
}

.download-w {
	-js-display: flex;
	display: flex;
	margin: 0 90px;
}
.download-w-child {
	padding-right: 40px;
	text-align: center;
}


.fontinfo ul{
}
.fontinfo li{
	background-image: url(../img/ico_gear.svg);
	background-repeat: no-repeat;
	background-position: left 0;
	padding-left: 25px;
	padding-bottom: 1.5em;
}


/*----------------------------------------------------
  ライセンス表
----------------------------------------------------*/
table.licence {
	width: 100%;
	border-spacing: 1;
}

table.licence th {
	width: 304px;
	height: 60px;
	outline: none;
	background: #dff241;
	font-weight: 700;
	padding: 10px;
}

table.licence th:first-child{
	background: none;
	border: none;
}

table.licence td {
	width: 304px;
	height: 60px;
	text-align: center;
	background: #f0f0f0;
	padding: 10px;
	font-weight: 500;
}

table.licence tr > td#bgtitle{
	background: #999;
	font-weight: 700;
}

.star{
	font-size: 90%;
	color: #000;
}

/*----------------------------------------------------
  ライセンス表簡易
----------------------------------------------------*/
table.licence_s {
	width: 100%;
	border-collapse: separate;
	border-spacing: 1;
}
table.licence_s th {
	width: 20%;
	padding: 20px 10px;
	font-weight: 700;
	vertical-align: central;
	background: #999;
	text-align: center;
}
table.licence_s td {
	width: 80%;
	padding: 10px;
	vertical-align: central;
	background: #f0f0f0;
}

