* {
  /* transition: all .3s; */
}

html {
  font-size: 62.5%;
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-style: normal;
  font-size: 1.5rem;
  color: #000;
  letter-spacing: .05em;
  font-feature-settings: "palt";

}

a {
  color: #000;
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 500;
}

p {
  line-height: 1.64;
}



#site-h {
  z-index: 1;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 12rem;
  background-color: #58566b;
  transform: translateY(-3rem);
  transition: all 1.5s;
  transition-delay: 1.5s;

}

.site-h-in {
  width: 120rem;
  height: 100%;
  margin: 0 auto;
}

.h-logo {
  z-index: 15;
  width: auto;
  height: 8rem;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}

.h-logo img {
  width: auto;
  height: 100%;
}

#cont {
  width: 100%;
  margin: 0 auto;
}

#cont.fade-in {
  transition-delay: .75s;
}

#site-f {
  background-color: #58566B;
  padding: 10rem 0;
  position: relative;
}

.site-f-in {
  display: flex;
  flex-wrap: wrap;
  width: 90rem;
  height: 100%;
  margin: 0 auto;
}

.site-f-in-l {
  width: 36rem;
}

.site-f-in-r {
  width: calc(100% - 36rem);
  padding: .6rem 0 0;
}

.f-logo {
  height: 17rem;
  margin: 0 0 6rem 0;
}

.f-logo img {
  width: auto;
  height: 100%;
}

.covaks-f-info {
  font-size: 1.2rem;
  font-weight: 300;
  color: #fff;
  line-height: 2;
}

.site-f-in-r ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.site-f-in-r li {
  width: 48%;
  border-top: .1rem solid rgba(255, 255, 255, .5);
  padding: 2.5rem 0 2.5rem 1rem;
}

.site-f-in-r li a {
  font-size: 1.2rem;
  color: #fff;
  font-weight: 300;
  position: relative;
}


.site-f-in-r li a::after {
  content: '';
  position: absolute;
  bottom: -.3rem;
  left: 0;
  opacity: 0;
  width: 100%;
  height: 0.1rem;
  background: rgba(255, 255, 255, .5);
  transition: opacity 0.3s ease;
}

.site-f-in-r li a:hover::after {
  opacity: 1;
}

.copy-right {
  font-size: 1.1rem;
  font-weight: 300;
  color: #fff;
  position: absolute;
  bottom: 3rem;
  right: 3rem;
}



.btn-b {
  text-align: center;
  margin: 4rem 0 0;
}

.btn-b a {
  display: inline-block;
  align-items: center;
  justify-content: right;
  margin: 0 1rem 1rem;
  position: relative;
  width: 28rem;
  padding: 2rem 0;
  background-color: #fff;
  border: .1rem solid #c0b780;
  font-size: 1.4rem;
  line-height: 1.6;
  text-decoration: none;
  text-align: center;
  transition: .2s;
  box-sizing: border-box;
  border-radius: 5rem;
}

.btn-b a::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 2.5rem;
  width: .9rem;
  height: .9rem;
  margin: auto;
  border-top: .15rem solid #c0b780;
  border-right: .15rem solid #c0b780;
  transform: rotate(45deg);
  transition: .2s;
  box-sizing: border-box;
}

.btn-b a:hover {
  /* opacity: .5; */
  background-color: #c0b780;
  color: #fff;
}

.btn-b a:hover::after {
  border-top: .15rem solid #fff;
  border-right: .15rem solid #fff;
}


/* .btn-b .link-text {
  font-size: 1.4rem;
  border-bottom: .1rem #000 solid;
  padding: 0 0 .3rem;
  margin: 0 .6rem 0 0;
}

.btn-b img {
  width: 2.5rem;
  height: auto;
} */



.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
}

.pagination a,
.pagination span {
  margin: 0 1rem;
}

.page-numbers.prev img,
.page-numbers.next img {
  width: 2.5rem;
  height: auto;
}

.page-numbers.current {
  text-decoration: underline;
}