@charset "UTF-8";
html
{
  width: 100vw;
  min-height: 100vh;
  background-color: #fff;
  font-family: 'Zen Maru Gothic', Gothic;
  font-size: 18px;
  color:#333;
  text-align: center;
  align-content: center;
}
a{
  text-decoration: none;
  color:#333;
}
main
{
  width:800px;
  height: 400px;
  display:grid;
  grid-template-columns: 1fr 2fr 1fr;
  margin: 0 auto;
}
.box1{
  height:400px;
  align-content: end;
}
.icon{
  width:150px;
}
.icon2{
  width:100px;
}
.box2{
  height:400px;
  align-content: end;
}
.kanomlogo{
  width:200px;
}
/*copyright表示
---------------------------------------------------------------------------*/
.copyright {
	display: block;
  text-decoration: none;
  /*text-align: center;*/
	width: 100vw;		/*幅*/
	line-height: 13px;	/*高さ*/
	z-index: 1;
	position: fixed;
  font-size: 0.6rem;;
	bottom: 10px;	/*下から20pxの場所に配置*/
	left: 3%;		/*左から3%の場所に配置*/
	/*background: #666;	背景色（古いブラウザ用）*/
	/*background: #fff;	背景色。0,0,0は黒の事。0.6は60%色がついた状態。*/
	color: #000;	/*文字色*/
	/*border: 1px solid #666;	枠線の幅、線種、色*/
}