@charset "utf-8";



/*****************************/
/********** Default **********/
/*****************************/

* {
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 500;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

::selection { background: #CCCCCC; color: #FFFFFF; text-shadow: none;}

p {
  margin: 20px 0;
}
html {
  font-size: 62.5%;
}
html, body {
  height: 100%;
}
body {
  margin: 0 auto;
  padding: 0;
  font-size: 1.4rem;
  line-height: 160%;
  color: #FFFFFF;
  background-color: #000000;
  word-wrap: break-word;
  overflow-wrap: break-word;
  width: 100vw;
  height: 100vh;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  min-width: 1280px;
  min-height: 800px;
}

ul, ol, li, dl, dt, dd {
  margin: 0;
  padding: 0;
  list-style: none;
}
h1, h2, h3, h4, h5, h6,
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
  font-weight: bold;
  font-style: normal;
  clear: both;
}
a {
  color: #FFFFFF;
  background: none;
  text-decoration: underline;
  transition: background-color 0.3s, color 0.3s;
}
a:hover {
  color: #0F918D;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s;
}
a img {
  border: none;
  transition: opacity 0.3s;
  backface-visibility: hidden;
}
a:hover img {
  opacity: 0.7;
  transition: opacity 0.3s;
  backface-visibility: hidden;
}
address {
  font-style: normal;
}
img {
  vertical-align: middle;
}
strong, em {
  font-style: normal;
  font-weight: bold;
}
em i {
  font-style: italic;
  font-weight: bold;
}
i {
  font-style: italic;
}
.email:after {
  content: "@";
}
.no-click {
  pointer-events: none;
}
.default-pointer {
  cursor: default;
}



/****************************/
/********** Header **********/
/****************************/

header {
  width: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  color: #FFFFFF;
  border-bottom: 1px solid rgba(15,143,137,0.5);
}
header h1 {
  font-size: 1.4rem;
  font-weight: 500;
  margin: 0;
  padding: 0;
  background: rgba(15,143,137,0.5);
}
header h2 {
  font-size: 1.4rem;
  font-weight: 500;
  font-style: normal;
  margin: 0 20px;
  padding: 0;
  white-space: nowrap;
  color: #FFFFFF;
  line-height: 150%;
}
header h2 a {
  font-weight: 500;
  text-decoration: none;
  color: #FFFFFF;
}
header h2 a:hover {
  color: #FFFFFF;
}
header h2 span {
  font-size: 1.3rem;
}

header nav {
  width: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: flex-end;
}
header nav ul.first {
  margin: 0;
  padding: 0;
  display: table;
}
header nav ul.first li {
  display: table-cell;
  vertical-align: middle;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 120%;
  position: relative;
  text-align: center;
  margin-bottom: 1px;
}
header nav ul.first li a {
  display: table-cell;
  vertical-align: middle;
  padding: 4px;
  width: 100px;
  height: 80px;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 120%;
  text-decoration: none;
  color: #FFFFFF;
}
header nav ul.first li a.current,
header nav ul.first li a:hover {
  background: rgba(15,143,137,0.5);
}
header nav ul.first li.lang {
  border-left: 1px solid rgba(15,143,137,0.5);
}



header nav ul li ul.second {
  display: none;
  position: absolute;
  top: 80px;
  left: 0;
  white-space: nowrap;
  z-index: 9999;
}
header nav ul li:hover ul.second {
  display: block;
}
header nav ul li ul.second li {
  display: block;
  font-size: 1.2rem;
  font-weight: 500;
  text-align: left;
  color: #FFFFFF;
  margin: 1px 0 0 0;
}
header nav ul li ul.second li:first-child {
  margin: 2px 0 0 0;
}
header nav ul li ul.second li a {
  display: block;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 500;
  text-align: left;
  padding: 6px 12px;
  cursor: pointer;
  color: #FFFFFF;
  background: rgba(15,143,137,0.5);
  width: auto;
  height: auto;
}
header nav ul li ul.second li a.current,
header nav ul li ul.second li a:hover {
  background: rgba(15,143,137,0.8);
}



/****************************/
/********** Footer **********/
/****************************/

footer {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  background: rgba(15,143,137,0.5);
}
footer #copyright {
  font-size: 1.2rem;
  color: #FFFFFF;
  text-align: center;
  margin: 10px auto;
  padding: 0;
}



/**************************/
/********** Main **********/
/**************************/

main {
  margin: 0 auto;
  padding: 0;
  flex: 1;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}



/*****************************/
/********** Content **********/
/*****************************/

#wrapper {
  display: block;
}
.read {
  margin: 160px auto;
  font-size: 3.6rem;
  text-align: center;
}
#content {
  margin: 0 auto;
  padding: 0;
  display: flex;
  justify-content: space-around;
  width: 1280px;
}
#content article {
  width: 50%;
  margin: 0 20px;
  position: relative;
}
#content article h3 {
  clear: both;
  font-size: 1.8rem;
  font-weight: 500;
  font-style: normal;
  margin: 10px 0;
  padding: 10px 0;
  color: #FFFFFF;
  border-bottom: 1px solid rgba(15,143,137,0.5);
}
#content article dl {
  margin: 10px 0;
  padding: 0;
  display: flex;
  align-items: center;
  width: 100%;
}
#content article dl dt {
  margin: 0;
  padding: 0;
  width: 25%;
}
#content article dl dd {
  margin: 0;
  padding: 0;
  width: 75%;
}
#content article .archives {
  margin: 0;
  padding: 0;
  position: absolute;
  right: 0;
  top: 25px;
}
#content article .archives:before {
  content: "";
  display: inline-block;
  width: 9px;
  height: 10px;
  background-image: url("../images/icon02.png");
  background-size: contain;
  background-repeat: no-repeat;
  margin: 0 4px 0 0;
}
#content article .access {
  margin: 20px 0;
}
#content article .access:before {
  content: "";
  display: inline-block;
  width: 9px;
  height: 10px;
  background-image: url("../images/icon02.png");
  background-size: contain;
  background-repeat: no-repeat;
  margin: 0 4px 0 0;
}
#content article aside {
  margin: 40px 0;
}
#content article aside ul {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
#content article aside ul li {
  margin: 0 10px 10px 0;
}