@charset "utf-8";
@import url(https://fonts.googleapis.com/earlyaccess/notosansjp.css);
@charset "utf-8";
/**
 * lib_default.css
 *
 * @copyright  Copyright (c) 
 * @version    
 */
* {
  margin: 0px;
  padding: 0px;
  font-family: 'Noto Sans JP',Meiryo,Arial Unicode MS,Hiragino Sans,Hiragino Kaku Gothic Std,MS Gothic,sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  box-sizing: border-box;
}
body {
  height: 100%;
  line-height: 20px;
  background-color: #fff;
  font-family: 'Noto Sans JP',Meiryo,Arial Unicode MS,Hiragino Sans,Hiragino Kaku Gothic Std,MS Gothic,sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: #000;
}
img {
  max-width: 100%;
  height: auto;
  border: 0px;
}
a {
  color: #575757;
  text-decoration: none;
}
input[type="text"], input[type="password"] {
  margin-top: 30px;
  padding: 5px 5px;
  width: 100%;
  border: none;
  border-radius: 0;
  border-bottom: 1px solid #000;
  vertical-align: middle;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  outline: none;
}
button {
  margin-top: 24px;
  width: 100%;
  height: 50px;
  border: none;
  font-size: 15px;
  font-weight: 400;
  background: #000;
  color: #fff;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  outline: none;
  cursor: pointer;
}
button:hover {
  background-color: #81d8d0;
  color: #000;
  transition: 0.3s;
}
ul li {
  list-style-type: none;
}
* html .clearfix {
  height: 1%;
}
.clearfix {
  display: block;
}
.clearfix:after {
  clear: both;
  display: block;
  height: 0px;
  line-height: 0px;
  content: ".";
  visibility: hidden;
}
/*----------------------------------------------------------------------
wrapping size
------------------------------------------------------------------------*/
div.wrap {
  margin: 0 auto;
  min-width: 1200px;
}
/*----------------------------------------------------------------------
header
------------------------------------------------------------------------*/
header {
  width: 100%;
  height: auto;
  background-color: #81d8d0;
}
header div.wrap {
  padding: 0 20px;
  height: 60px;
  background-color: #81d8d0;
  display: flex;
  align-items: center;
  justify-content: center;
}
header p:nth-child(1) {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-size: 22px;
  font-weight: 700;
  color: #51bec1;
  border-radius: 20px;
  background: #f0f0f0;
  transform: rotate(341deg);
  box-shadow: 0px 0px 10px 5px #cbfffa;
}
header p:nth-child(2) {
  margin-left: 20px;
  font-size: 40px;
  font-weight: 200;
}

/*----------------------------------------------------------------------
footer
------------------------------------------------------------------------*/
footer {
  width: 100%;
  height: auto;
  background-color: #eee;
}
footer div.wrap {
  height: 30px;
  background-color: #eee;
  display: flex;
  align-items: center;
  justify-content: center;
}
/*----------------------------------------------------------------------
section
------------------------------------------------------------------------*/
section {
  width: 100%;
  min-height: calc(100vh - 90px);
  background-color: #fff;
}
section div.wrap {
  padding: 0 20px;
  display: flex;
}
section div.wrap > nav {
  margin-bottom: 20px;
  min-width: 200px;
}
section div.wrap > article {
  padding-left: 20px;
  padding-bottom: 50px;
  width: 100%;
  min-height: calc(100vh - 60px);
  position: relative;
}
/*----------------------------------------------------------------------
nav
------------------------------------------------------------------------*/
section div.wrap > nav ul li a {
  display: block;
  margin-top: 20px;
  width: 100%;
  height: 60px;
  background: #f1f1f1;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}
section div.wrap > nav ul li a:hover {
  background: #81d8d0;
  transition: 0.3s;
}
/*----------------------------------------------------------------------
article
------------------------------------------------------------------------*/
section div.wrap > article h1 {
  margin-top: 50px;
  font-size: 38px;
  line-height: 50px;
  border-bottom: 1px solid #81d8d0;
}
section div.wrap > article p {
  padding: 20px 0;
}
section div.wrap > article > dl {
  display: flex;
  margin-top: 50px;
}
section div.wrap > article > dl dt {
  min-width: 300px;
  font-size: 16px;
  line-height: 22px;
}
section div.wrap > article > dl dd {
  width: 100%;
  font-size: 16px;
  line-height: 22px;
}
section div.wrap > article > dl dd table {
  width: 100%;
  border-collapse: collapse;
}
section div.wrap > article > dl dd table tr td {
  padding: 5px;
  border: 1px solid #ccc;
}
section div.wrap > article > dl dd img {
  padding: 5px;
  background: #f1f1f1;
}
