<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/* CSS Document */
a {
  transition: all 0.3s ease-in-out;
}
#banner{
	text-align: center;
	position: relative;
	max-width: 768px;
	margin: 300px auto 0 auto;
}
#banner:after{
	content:"";
	display: block;
	position: absolute;
	top:25px;
	left:25px;
	background: rgba(112,172,179,0.2);
	width:100%;
	height:100%;
	z-index: -1;
}
@media only screen and (max-width:769px) {
	#banner{
		margin: 50px 20px;
	}
	#banner:after{
		top:10px;
		left:10px;
	}
}
#kv {
  height: 70vh;
  position: relative;
  top: 200px;
  margin-bottom: 220px;
  overflow: hidden;
  padding-bottom: 30vw;
  display: block;
  clear: both;
}
#kv:before, #kv:after {
  content: "";
  overflow: hidden;
  display: block;
  clear: both;
}
#kv:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 30vw 30vw 0 0;
  border-color: #70acb3 transparent transparent transparent;
  position: absolute;
  top: 70vh;
  z-index: -1;
}
#kv .bk {
  background: url("../img/background/kv2.jpg") 0 0 no-repeat;
  background-size: cover;
  width: 70%;
  height: 70vh;
  left: 30%;
  position: relative;
}
#kv:before{
	content:"";
	position: absolute;
	width:100%;
	height:100%;
	background: #f6f4ef;
	top:0;
	left:0;
	animation: 1s upper 2s forwards;
	z-index: 9999;
}
@keyframes upper {
  0% {
    height:100%;
  }
  100% {
   height:0;
  }
}
#kv h1 {
  opacity: 0;
  position: absolute;
  left: 50px;
  transform: translateY(-50%);
  font-size: 8vw;
  line-height: 1;
  font-weight: bold;
  font-family: 'Roboto', sans-serif !important;
  animation: kv1 1s ease-in-out 3s forwards;
}
@keyframes kv1 {
  0% {
    top: 30%;
    opacity: 0;
  }
  100% {
    top: 22.5%;
    opacity: 1;
  }
}
section p, section dl, #about .wrap nav ul li {
  font-size: 1.15vw;
  line-height: 1.5 !important
}
@media only screen and (max-width:769px) {
	#kv .bk {
  background: url("../img/background/kv2-sp.jpg") center 0 no-repeat;
  background-size: cover;
	}
  @keyframes kv1 {
    0% {
      top: calc(50% - 15vw);
      opacity: 0;
    }
    100% {
      top: calc(45% - 15vw);
      opacity: 1;
    }
  }
  section p, section dl {
    font-size: 3.75vw !important;
    line-height: 1.5 !important
  }
  #kv {
    top: 75px;
    height: 60vh;
    margin-bottom: 0;
  }
  #kv .bk {
    height: 60vh;
  }
  #kv h1 {
    left: 20px;
    font-size: 14vw;
    line-height: 1.1;
    letter-spacing: -1px;
  }
  #kv:after {
    top: 60vh;
  }
}
#news {
  margin: -30vw 0 0 30vw;
}
dl.news-list:before, dl.news-list:after {
  overflow: hidden;
}
dl.news-list {
  font-size: 1vw;
}
dl.news-list dt {
  float: left;
  clear: left;
  border-right: 1px solid #999;
  padding: 5px 10px 0 0;
  font-weight: bold;
  font-family: 'Roboto', sans-serif !important;
}
dl.news-list dd time {
  margin: 0 10px 0 0;
  display: inline-block;
  font-family: 'Roboto', sans-serif !important;
}
dl.news-list dd {
  float: left;
  padding: 0 0 0 10px;
}
dl.news-list dd span {
  margin: 0 0 0 0;
}
dl.news-list dd a {
  border: 1px solid #999;
  padding: 5px 10px;
  font-family: 'Roboto', sans-serif !important;
  text-decoration: none;
  color: #333;
  position: relative;
  z-index: 99;
  display: inline-block;
	margin-left: 20px;
}
dl.news-list dd a:after {
  content: "&gt;";
  margin: 0 0 0 10px;
  display: inline-block;
  transform: scale(0.7, 1)
}
@media only screen and (max-width:769px) {
  #news {
    margin: 0 0 0 20px;
  }
  dl.news-list dt {
    float: none;
    clear: both;
    font-size: 0.9rem;
  }
  dl.news-list dd {
    float: none;
    padding: 10px 0 0 0;
    font-size: 0.75rem;
  }
  dl.news-list dd a {
    display: block;
    margin: 10px 20px 0 0;
    width: 70px;
  }
}
.textarea dl.news-list dt {
  font-size: 2rem;
  border: none;
  margin-bottom: 20px;
}
.textarea dl.news-list dd {
  padding: 0;
  border-bottom: 1px solid #CCC;
  padding: 10px 0;
  clear: both;
  overflow: hidden;
}
/*============================================================================================*/
#date {
  position: absolute;
  top: 75vh;
  right: 50px;
}
#date .date-inside {
  position: relative;
  background: #d7807f;
  color: #FFF;
  text-align: center;
  width: 14vw;
  height: 14vw;
  border-radius: 50%;
  padding: 0.5vw;
}
.date-inside small {
  font-size: 70%;
}
#date .date-inside:before {
  content: "";
  width: 92%;
  height: 92%;
  display: block;
  border-radius: 50%;
  border: 2px solid #FFF;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%)
}
#date h2 {
  font-size: 2.5vw;
  line-height: 1;
  font-weight: bold;
  margin: 0.5vw 0 0 0;
  letter-spacing: 1px;
}
#date p {
  color: #FFF;
  margin: 3vw 0 0 0;
  font-size: 1.5vw;
}
@media only screen and (max-width:1400px) {
  #date {
    top: 65vh;
  }
}
@media only screen and (max-width:769px) {
  #date {
    position: absolute;
    top: 54vh;
    right: 10px;
  }
  #date .date-inside {
    position: relative;
    background: #d7807f;
    color: #FFF;
    text-align: center;
    width: 38vw;
    height: 38vw;
    border-radius: 50%;
    padding: 0.5vw;
  }
  #date h2 {
    font-size: 6vw;
    line-height: 1.2;
    font-weight: bold;
    margin: 1vw 0 0 0;
    letter-spacing: -1px;
  }
  #date p {
    color: #FFF;
    margin: 8vw 0 0 0;
    font-size: 3.5vw;
  }
}
/*=============================================================================================================*/
section h2.title {
  color: #414042;
  font-weight: bold;
  margin: 10px 0 20px 0;
  position: relative;
}
section h2.title:before {
  content: "";
  position: absolute;
  top: -10px;
  left: -60px;
  background: rgba(112, 172, 179, 0.5);
  display: block;
  width: 10vw;
  height: 10vw;
  z-index: -1;
}
section h2.title:after {
  content: "";
  position: absolute;
  top: -30px;
  left: -80px;
  background: rgba(112, 172, 179, 0.25);
  display: block;
  width: 10vw;
  height: 10vw;
  z-index: -2;
}
section h2.title span {
  font-size: 5vw;
  line-height: 1;
}
section h2.title span.jp {
  font-size: 4vw;
}
section h2.title i {
  letter-spacing: 1px;
  color: #FFF;
  font-family: 'Roboto', sans-serif !important;
  font-size: 1.75vw;
  display: block;
  position: relative;
  left: -50px;
}
@media only screen and (max-width:769px) {
	section h2.title span.jp {
  font-size: 5vw;
}
  section h2.title:before {
    content: "";
    position: absolute;
    top: 10px;
    left: -7px;
    background: rgba(112, 172, 179, 0.3);
    display: block;
    width: 8vw;
    height: 8vw;
    z-index: -1;
  }
  section h2.title:after {
    content: "";
    position: absolute;
    top: 30px;
    left: 10px;
    background: rgba(112, 172, 179, 0.2);
    display: block;
    width: 8vw;
    height: 8vw;
    z-index: -2;
    display: none;
  }
  section h2.title span {
    font-size: 7vw
  }
  section h2.title i {
    letter-spacing: 1px;
    font-family: 'Roboto', sans-serif !important;
    font-size: 3.5vw;
    display: block;
    position: relative;
    left: -5px;
    color: #70abb2;
    margin-bottom: 10px;
  }
}
section#about {
  margin: 0 auto;
  box-sizing: border-box;
  padding: 100px 0 100px 100px;
  position: relative;
}
section#about:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 30vw 30vw;
  border-color: transparent transparent #70acb3 transparent;
  position: absolute;
  bottom: -50vh;
  right: 0;
  z-index: -1;
}
#about .wrap {
  display: flex;
  justify-content: space-between;
  position: relative;
}
@media only screen and (max-width:769px) {
	section#about:after {
		bottom:0;
	}
  #about .wrap {
    display: block;
    justify-content: space-between;
    position: relative;
  }
}
#about .wrap nav {
  position: sticky;
  position: -webkit-sticky;
  top: 150px;
  height: 100%;
  width: 20%;
  margin: 75px 0 0 0;
}
@media only screen and (max-width:769px) {
  section#about {
    margin: 0 auto;
    box-sizing: border-box;
    padding: 0;
    margin: 20px 0 20px 20px;
    position: relative;
  }
  #about .wrap nav {
    background: #f6f4ef;
    top: 75px;
    height: auto;
    width: auto;
    margin: 0;
    z-index: 9;
    border-bottom: 1px solid #CCC;
  }
  #about .wrap nav ul {
    overflow-x: scroll;
    display: flex;
    -webkit-overflow-scrolling: touch;
    overflow-scrolling: touch;
  }
  #about .wrap nav ul li {
    padding: 0 20px 0 0;
    white-space: nowrap;
    font-size: 3.5vw
  }
}
#about .wrap nav ul li {
  margin: 0 0 15px 0;
}
#about .wrap nav ul li a {
  position: relative;
}
#about .wrap nav ul li a:before {
  content: "";
  position: absolute;
  height: 100%;
  background: #ddd66b;
  width: 0;
  transition: all 0.3s ease-in-out;
  z-index: -1;
}
#about .wrap nav ul li a:hover:before {
  animation: hov-n 0.3s ease-in-out forwards;
}
@keyframes hov-n {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
#about .wrap article {
  width: 72%;
}
@media only screen and (max-width:769px) {
  #about .wrap article {
    width: auto;
    margin: 50px 0 0 0;
  }
}
h3.title {
  position: relative;
  font-size: 3vw;
  word-wrap: break-word;
  font-weight: bold;
}
h3.title span {
  color: #58595b;
}
h3.title:before {
  content: "";
  display: inline-block;
  width: 0.7vw;
  height: 0.7vw;
  background: #d7807f;
  border-radius: 50%;
  position: absolute;
  top: 1.7vw;
  left: -1.7vw;
}
#introduction {
  margin-top: -100px;
}
@media only screen and (max-width:769px) {
  #introduction {
    margin-top: 0;
  }
  h3.title {
    font-size: 6vw;
    padding-left: 0;
  }
	h3.title span.jp {
   font-size: 4.5vw;
}
  h3.title:before {
    content: "";
    display: inline-block;
    width: 7px;
    height: 7px;
    background: #d7807f;
    border-radius: 50%;
    position: relative;
    top: -5px;
    left: 0;
    margin: 0 10px 0 0;
  }
}
.three-c {
  width: calc(100% - 50px);
  display: flex;
  justify-content: space-around;
  margin: 0 0 75px 0;
}
@media only screen and (max-width:769px) {
  .three-c {
    display: block;
    width: auto;
    margin: 0 20px 50px 0;
  }
}
.three-c h3 {
  width: 32%;
}
.three-c .text1 {
  width: 39%;
  margin: 15px 0 0 0;
}
.three-c aside {
  width: 25%;
  margin-left: auto;
  margin-top: 20px;
}
@media only screen and (max-width:769px) {
  .three-c h3, .three-c .text1, .three-c aside {
    width: auto;
    margin-left: auto;
    margin-top: 20px;
  }
  .three-c .text1 {
    margin-left: 20px;
  }
}
.aside ul li {
  margin-bottom: 25px;
}
.aside ul li .pic {
  position: relative;
}
.aside ul li .pic:after {
  content: "";
  display: block;
  background: #CCC;
  position: absolute;
  top: 10px;
  width: calc(100% + 10px);
  height: 100%;
  z-index: -1;
}
.aside ul li .text {
  background: #FFF;
  text-align: center;
  position: relative;
  top: -10px;
  left: 10px;
  padding: 0.5vw 5px;
}
.aside ul li .text p:after {
  content: "";
  display: inline-block;
  background: url("../img/icon/blank.svg") no-repeat;
  width: 12px;
  height: 12px;
  margin: 0 0 0 20px;
}
 p.btn a{
	background: #333;
	color: #FFF;
	text-align: center;
	display: block;
	padding:1vw 15px;
	position: relative;
}
p.btn a:after{
	  content: "";
  display: block;
  background: #CCC;
  position: absolute;
  top: 10px;
  width: 100%;
  height: 100%;
  z-index: -1;
	
}
  .aside  p {
    font-size: 1vw;
  }
@media only screen and (max-width:769px) {
	 p.btn a{
		padding:3vw 15px; 
	}
  .aside ul {
    display: flex;
  }
  .aside ul li:first-child {
    margin: 0 10px 0 0;
  }
	.aside ul li .text {
  padding: 2vw 5px;
}
  .aside ul li .text p {
    font-size: 3vw !important;
  }
}
.two-c {
  width: calc(100% - 50px);
  display: flex;
  justify-content: space-between;
  margin: 0 0 75px 0;
}
.two-c h3 {
  width: 27%;
}
.two-c .text2 {
  width: 68%;
  margin: 15px 0 0 0;
}
@media only screen and (max-width:769px) {
  .two-c {
    width: auto;
    display: block;
    margin: 0 20px 75px 0;
  }
  .two-c h3 {
    width: auto;
  }
  .two-c .text2 {
    width: auto;
    margin: 15px 0 0 20px;
  }
}
ul.list-dl li {
  clear: both;
  overflow: hidden;
  padding-bottom: 20px;
}
ul.list-dl li dl dt {
  float: left;
  clear: left;
  width: 35%;
  min-width: 160px;
  margin-right: 5%;
}
ul.list-dl li dl dt:before {
  content: "-";
  margin: 0 5px 0 0;
}
ul.list-dl li dl dd {
  float: left;
  width: 60%;
}
ul.list-dl li dl dd small {
  font-size: 80%;
  display: block;
  color: #666;
}
@media only screen and (max-width:1100px) {
  ul.list-dl li dl dt {
    float: none;
    clear: none;
    width: auto;
    min-width: 160px;
    margin-right: 5%;
  }
  ul.list-dl li dl dt:before {
    content: "-";
    margin: 0 5px 0 0;
  }
  ul.list-dl li dl dd {
    float: none;
    width: auto;
    margin: 0 0 0 12px;
  }
}
/*=================================================================================================================================*/
ul.slider {
  margin: 25px 0 0 0;
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 1px;
  position: relative;
}
/*
ul.slider:after{
	content:"";
	position: absolute;
	bottom:90px;
	left:0;
	width:100%;
	height:1px;
	background: #999;
	z-index: -1;
}
*/
ul.slider li {
  position: relative;
  margin-right: 15px;
  min-height: 250px;
  height: 11vw;
  background: #FFF;
}
ul.slider li div.text {
  background: #FFF;
  text-align: center;
  padding: 25px !important;
}
ul.slider li date {
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
@media only screen and (min-width:2000px) {
  ul.slider li date {
    position: absolute;
    bottom: -2.5vw;
  }
}
ul.slider li date span {
  font-size: 1.15vw;
}
ul.slider li div.text i {
  font-family: 'Roboto', sans-serif !important;
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(112, 172, 179, .5);
  font-size: 1vw;
  padding: 10px 13px;
}
@media only screen and (max-width:769px) {
  ul.slider {
    margin: 20px 0 50px 20px;
  }
  ul.slider li {
    margin-right: 20px;
  }
  ul.slider li div.text i {
    padding: 5px 10px;
    font-size: 3vw;
  }
  ul.slider li date span {
    font-size: 3.5vw
  }
}
ul.slider li div.text b {
  position: absolute;
  right: 0;
  top: 0;
  background: #d7807f;
  font-size: 1rem;
  padding: 13px 13px;
  color: #FFF;
	line-height:1;
}
ul.slider li div.text img {
  width: 35% !important;
  margin: 25px auto;
  display: block;
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
}
ul.slider li:nth-child(3) div.text img {
  width: 30% !important;
}
ul.slider li:nth-child(4) div.text img, ul.slider li:nth-child(5) div.text img, ul.slider li:nth-child(7) div.text img, ul.slider li:nth-child(6) div.text img {
  width: 40% !important;
}
ul.slider li:nth-child(5) div.text img, ul.slider li:nth-child(7) div.text img {
  top: 35%;
}
ul.slider li:nth-child(8) div.text img, ul.slider li:nth-child(10) div.text img {
  width: 45% !important;
}
ul.slider li:nth-child(9) div.text img {
  width: 50% !important;
  top: 25%;
}
ul.slider li div.text h4 {
  font-size: 1.25vw;
  line-height: 1.2;
}
@media only screen and (min-width:2000px) {
  ul.slider li div.text h4 {
    font-size: 1vw;
  }
}
@media only screen and (max-width:769px) {
	ul.slider li div.text b {
  padding:6px 6px;
	}
  ul.slider li div.text h4 {
    font-size: 4.5vw;
  }
  ul.slider li div.text img, ul.slider li:nth-child(5) div.text img, ul.slider li:nth-child(7) div.text img {
    width: 40% !important;
    position: absolute;
    top: 30%;
  }
  ul.slider li:nth-child(5) div.text img, ul.slider li:nth-child(7) div.text img {
    top: 35%;
  }
  ul.slider li:nth-child(6) div.text img {
    width: 50% !important;
  }
  ul.slider li:nth-child(3) div.text img {
    width: 35% !important;
  }
}
ul.slider li div.text:after {
  content: "";
  background: url("../img/icon/line.svg") no-repeat;
  width: 50px;
  height: 30px;
  position: absolute;
  left: 50%;
  bottom: -20px;
  margin-left: -25px;
}
.arrow-box {
  display: none;
  position: absolute;
  padding: 16px;
  background: #58595b;
  right: 50px;
  top: 60px;
  text-align: left;
  font-size: 14px;
  z-index: 9999 !important;
  width: 300px;
}
.arrow-box p {
  color: #fff;
	font-size: 100%;
}
.arrow-box em {
  display: block;
  font-weight: bold;
}
.arrow-box:after {
  position: absolute;
  bottom: 100%;
  right: -17px;
  width: 0;
  height: 0;
  margin-left: -10px;
  border: solid transparent;
  border-color: rgba(51, 51, 51, 0);
  border-bottom-color: #58595b;
  border-width: 10px;
  pointer-events: none;
  content: " ";
  transform: rotate(45deg)
}
@media only screen and (max-width:769px) {
  .arrow-box {
    width: 220px;
	   right: 35px;
  top: 45px;
  }
  .arrow-box p {
    font-size: 12px !important;
  }
}
/*=================================================================================================================================*/
ul.school-list:before, ul.school-list:after {
  content: "";
  display: block;
  overflow: hidden;
  clear: both;
}
ul.school-list {
  margin: 25px 50px 100px 0;
}
ul.school-list li {
  width: 30%;
  float: left;
  margin-right: 5%;
}
ul.school-list li a {
  text-decoration: none;
}
ul.school-list li a p.more:before {
  transition: all 0.3s ease-in-out;
}
ul.school-list li a:hover p.more:before {
  content: "＋";
	animation: rolling 1s linear infinite;
}
@keyframes rolling {
	0%{
		transform: rotate(0)
	}
	100%{
		transform: rotate(360deg)
	}
}

ul.school-list li:last-child {
  margin-right: 0;
}
ul.school-list li .text h2 {
  margin-bottom: 5px;
}
ul.school-list li .text h2:first-letter {
  color: #d7807f;
  font-weight: bold;
}
ul.school-list li .text h2 span {
  color: #58595b;
  font-size: 1.75vw !important;
  line-height: 1.2;
}
ul.school-list li .text p span {
  font-size: 90%;
}
ul.school-list li .pic:hover {
  transform: scale(0.9)
}
ul.school-list li .pic img {
  width: 100%;
  height: 13vw;
  object-fit: cover;
  transition: all .3s ease-out;
}
ul.school-list li .pic {
  height: 13vw;
  overflow: hidden;
  transition: all .3s ease-out;
  margin: 0 0 10px 0;
}
ul.school-list li .pic:hover img {
  transform: scale(1.2)
}
@media only screen and (max-width:769px) {
  ul.school-list {
    margin: 20px 20px 100px 20px;
  }
  ul.school-list li {
    width: auto;
    float: none;
    margin: 0 0 50px 0;
  }
  ul.school-list li .pic img {
    width: 100%;
    height: auto;
  }
  ul.school-list li .pic {
    height: auto;
  }
  ul.school-list li .text h2 span {
    color: #58595b;
    font-size: 6vw !important;
    line-height: 1.2;
  }
}
/*=================================================================================================================================*/
ul.staff-list:before, ul.staff-list:after {
  content: "";
  display: block;
  overflow: hidden;
  clear: both;
}
ul.staff-list {
  margin: 25px 50px 100px 0;
}
ul.staff-list li {
  width: 23%;
  float: left;
  margin-right: 2.65%;
}
ul.staff-list li .pic {
  position: relative;
}
ul.staff-list li .pic img {
  width: 90%;
  margin: 0 auto;
  display: block;
}
ul.staff-list li .pic:after {
  content: "";
  display: block;
  background: url("../img/pic/staffback.png") no-repeat center bottom;
  width: 100%;
  height: 300px;
  background-size: 100%;
  z-index: -1;
  position: absolute;
  bottom: 0;
}
ul.staff-list li h2 {
  margin: 10px 0 0 0;
}
ul.staff-list li h2 span {
  font-size: 1.2vw;
  font-weight: bold;
  color: #58595b
}
ul.staff-list li p {
  font-size: 1vw;
}
ul.staff-list li:last-child {
  margin-right: 0;
}
ul.staff-list li p.message {
  border-top: 1px solid #CCC;
  margin: 5px 0;
  padding: 5px 0 0 0;
}
p.url {
  font-family: 'Roboto', sans-serif !important;
}
ul.staff-list li p.message span, p.career span {
  font-size: 0.9vw !important;
}
p.career {
  margin: 0 0 10px 0;
}
ul.staff-list li a {
  position: relative;
  display: block;
}
ul.staff-list li a:before, ul.staff-list li a:after {
  position: absolute;
  z-index: 2;
  content: '';
  width: 0;
  height: 0;
  border: 5px solid transparent;
}
ul.staff-list li a:before {
  top: -5px;
  left: -5px;
}
ul.staff-list li a:after {
  bottom: -5px;
  right: -5px;
}
ul.staff-list li a:hover {
  color: #FFF;
  padding: 10px;
}
ul.staff-list li a:hover::before, ul.staff-list li a:hover::after {
  width: 100%;
  height: 100%;
}
ul.staff-list li a:hover::before {
  border-bottom-color: #d7807f;
  border-left-color: #d7807f;
  transition: height .3s, width .3s .3s;
}
ul.staff-list li a:hover::after {
  border-top-color: #d7807f;
  border-right-color: #d7807f;
  transition: height .3s, width .3s .3s;
}
@media only screen and (max-width:769px) {
  ul.staff-list {
    margin: 20px 20px 100px 0;
  }
  ul.staff-list li {
    width: 48%;
    margin-right: 4%
  }
  ul.staff-list li:nth-child(2n) {
    margin-right: 0;
  }
  ul.staff-list li h2 span {
    font-size: 4vw;
    font-weight: bold;
    color: #58595b
  }
  ul.staff-list li p {
    font-size: 1.1vw;
  }
  ul.staff-list li p.message span, p.career span {
    font-size: 3.5vw !important;
  }
  ul.staff-list li .pic img {
    width: 70%;
    margin: 0 auto;
    display: block;
  }
  ul.staff-list li .pic:after {
    bottom: 0;
  }
}
/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
#download:before, #download:after {
  content: "";
  display: block;
  overflow: hidden;
  clear: both;
}
#download {
  margin: 0 auto;
  position: relative;
}
#download .bk {
  position: relative;
  padding: 100px;
  display: flex;
  justify-content: space-between;
}
#download:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 30vw 30vw 0 0;
  border-color: #70acb3 transparent transparent transparent;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media only screen and (max-width:769px) {
  #download:before {
    display: none;
  }
  #download .bk {
    position: relative;
    padding: 20px 20px 0 20px;
    display: block;
    justify-content: space-between;
  }
  #download section {
    margin-bottom: 75px;
  }
}
#reports .bk {
  position: relative;
  padding: 100px 50px 100px 100px;
}
@media only screen and (max-width:769px) {
  #reports .bk {
    position: relative;
    padding: 20px;
  }
}
#reports .bk section {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width:769px) {
  #reports .bk section {
    display: block;
  }
}
#reports .bk section &gt; div {
  margin-left: 10vw;
}
#reports .bk section &gt; div ul li {
  margin-bottom: 25px;
  overflow: hidden;
}
#reports .bk section &gt; div ul li dl{
	display: flex;
	align-items: center;
}
#reports .bk section &gt; div ul li dl dt {
  width: 8%;
  float: left;
  clear: left;
  font-family: 'Roboto', sans-serif !important;
  font-size: 1.25vw;
  margin-right: 5%;
  word-wrap: break-word;
}
#reports .bk section &gt; div ul li dl dt em {
  font-size: 150%;
  line-height: 1.2;
  font-family: 'Roboto', sans-serif !important;
}
#reports .bk section &gt; div ul li dl dd {
  width: 87%;
  float: left;
}
#reports .bk section &gt; div ul li dl dd ul {
  overflow: hidden;
}
#reports .bk section &gt; div ul li dl dd ul li {
  float: left;
  width: 23%;
  overflow: hidden;
  margin-right: 2.65%;
  margin-bottom: 2.65%;
}
#reports .bk section &gt; div ul li dl dd ul li img{
	transition: all 0.3s;
}
#reports .bk section &gt; div ul li dl dd ul li img:hover{
	opacity: 0.7;
}
#reports .bk section &gt; div ul li dl dd ul li p {
  font-size: 1vw !important;
}
#reports .bk section &gt; div ul li dl dd ul li:last-child {
  margin-right: 0;
}
#reports section h2.title {
  width: 300px !important;
}
@media only screen and (max-width:769px) {
  #reports .bk section &gt; div {
    margin-left: 0;
    margin-top: 20px;
  }
  #reports .bk section &gt; div ul li dl dt {
    width: auto;
    float: none;
    clear: none;
    font-family: 'Roboto', sans-serif !important;
    font-size: 3vw;
    margin-right: 5%;
    word-wrap: break-word;
  }
  #reports .bk section &gt; div ul li dl dt em {
    display: block;
    font-size: 150%;
    line-height: 1.2;
    font-family: 'Roboto', sans-serif !important;
    margin-bottom: 15px;
  }
  #reports .bk section &gt; div ul li dl dd {
    width: auto;
    float: auto;
  }
  #reports .bk section &gt; div ul li dl dd ul li {
    float: left;
    width: 48%;
    overflow: hidden;
    margin-right: 4%;
    margin-bottom: 4%;
  }
  #reports .bk section &gt; div ul li dl dd ul li:nth-child(2n) {
    margin-right: 0;
  }
  #reports .bk section &gt; div ul li dl dd ul li p {
    font-size: 3.5vw !important;
  }
}</pre></body></html>