html {
  font-size: 75%;
}
@media screen and (min-width: 768px) {
  html {
    font-size: 87.5%;
  }
}
@media screen and (min-width: 1024px) {
  html {
    font-size: 100%;
  }
}

body {
  padding-top: 90px;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

.photo {
  text-align: center;
  height: 25vh;
  background:url(photo/saiyou.jpeg) center top/90% auto no-repeat;
}

.header {
  background: #fff;
  width: 100%;
  height: 70px;
  font-family: sans-serif;
  font-weight: 600px;
  text-align: center;
  padding-top: 20px;
  justify-content: space-between;
  position: fixed;
  z-index: 100;
  border-bottom:rgb(0, 160, 110) solid 1px;
}

.header img {
  padding-bottom: 15px;
}

.header-logo {
  font-weight: 900px;
  color: rgb(0, 160, 110);
  white-space: nowrap;
  text-align: center;
  display: inline;
}

@media screen and (min-width: 768px) {
  .header-logo {
    font-size: 125%;
  }
}
@media screen and (min-width: 1024px) {
  .header-logo {
    font-size: 150%;
  }
}

.main {
  z-index: 100;
  overflow: hidden;
  padding-top: 50;
}

.uk-navbar-toggle span {
  font-size: 20px;
  font-weight: 600px;
  font-family:sans-serif;
  color: rgb(77, 77, 77);
  padding-top: 10px;
}

.uk-offcanvas-bar li {
  font-size: 20px;
  padding-bottom: 25px;
  text-align: center;
  font-family: sans-serif;
  font-weight: 900px;

}

.uk-offcanvas-bar h3 {
  font-family: sans-serif;
  font-weight: 900px;
}

@import url('https://fonts.googleapis.com/css?family=Montserrat');

body,
html {
  background-color: #fff;
  height: 100%;
  width: 100%;
  padding: 0;
  margin: 0;
  font-family: "Montserrat", sans-serif;
}

.aside-section {
  top: 0;
  bottom: 0;
  position: fixed;
  z-index: 99;
}

.aside-left {
  display: none;
  width: 40%;
  left: 0;
  background-color: rgb(50, 150, 255);
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transform: translateY(-100%);
  transition: transform 0.4s ease-in-out;
}

.aside-right {
  width: 100%;
  right: 0;
  background-color: rgb(50,160,110);
  -webkit-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
  transform: translateX(100%);
  transition: transform 0.4s ease-in-out;
}

.aside-list {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 150px;
  text-align: left;
  padding-left: 50px;
}

.aside-content {
  margin-top: 150px;
  padding: 0 40px;
  position: relative;
  color: white;
  text-align: center;
}

.aside-list li {
  margin-bottom: 20px;
}


.aside-anchor::after {
  content: "";
  position: absolute;
  bottom: 0;
  background-color: rgb(50, 150, 255);
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 3px;
}

.aside-anchor::before {
  border-radius: 3px;
  content: "";
  position: absolute;
  bottom: 0;
  background-color: #fff;
  height: 3px;
  z-index: 1;
  width: 50%;
  -webkit-transition: transform 0.2s ease-in-out;
  -o-transition: transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out;
}

.aside-anchor:hover:before {
  -webkit-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
  transform: translateX(100%);
}

.aside-anchor {
  padding-bottom: 7px;
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  position: relative;
  font-weight: 500;
}

input[type="checkbox"] {
  display: none;
}

input[type="checkbox"]:checked ~ aside .aside-left {
  transform: translateY(0%);
}

input[type="checkbox"]:checked ~ aside .aside-right {
  transform: translateX(0%);
}

input[type="checkbox"]:checked ~ label .bar {
  background-color: rgb(0, 160, 110);
}

input[type="checkbox"]:checked ~ label .top {
  -webkit-transform: translateY(0px) rotateZ(45deg);
  -moz-transform: translateY(0px) rotateZ(45deg);
  -ms-transform: translateY(0px) rotateZ(45deg);
  -o-transform: translateY(0px) rotateZ(45deg);
  transform: translateY(0px) rotateZ(45deg);
}

input[type="checkbox"]:checked ~ label .bottom {
  -webkit-transform: translateY(-15px) rotateZ(-45deg);
  -moz-transform: translateY(-15px) rotateZ(-45deg);
  -ms-transform: translateY(-15px) rotateZ(-45deg);
  -o-transform: translateY(-15px) rotateZ(-45deg);
  transform: translateY(-15px) rotateZ(-45deg);
}

input[type="checkbox"]:checked ~ label .middle {
  width: 0;
}

.middle {
  margin: 0 auto;
}

label {
  top: 10px;
  display: inline-block;
  padding: 7px 10px;
  background-color: transparent;
  cursor: pointer;
  margin: 10px;
  z-index: 100;
  position: fixed;
}

.bar {
  display: block;
  background-color: rgb(0,160,110);
  width: 30px;
  height: 3px;
  border-radius: 5px;
  margin: 5px auto;
  transition: background-color 0.4s ease-in, transform 0.4s ease-in,width 0.4s ease-in;
}

h1 {
  margin: 0;
  position: relative;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  text-align: center;
}

h1 span {
  font-size: 20px;
  display: block;
}

.button {
  display: inline-block;
  background-image: none;
  border: none;
  background-color: transparent;
  padding-bottom: 7px;
  position: relative;
  cursor: pointer;
  font-size: 20px;
  color: white;
  padding: 7px 50px;
  border: 2px solid white;
}

@media (min-width: 992px) {

  h1 {
    font-size: 40px;
  }
  .aside-left {
    display: block;
  }

  .aside-right {
    width: 60%;
  }
}

.aside-anchor-a {
  display: inline-block;
}

.others {
  font-size: 20px;
}

.others a {
  color: #fff;
}

.others li ::before {
  content: "・";
  color: yellow;
}

.uk-heading-line {
  font-size: 15px;
  font-weight: 900;
  white-space: nowrap;
  color: rgb(0, 160, 110);
}

@media screen and (min-width: 1000px) {
  .uk-heading-line {
    font-size: 125%;
  }
}
@media screen and (min-width: 1700px) {
  .uk-heading-line {
    font-size: 150%;
  }
}

.panel {
  text-align: center;
  display: block;
}

.uk-panel-1 {
  font-size: 10px;
}

@media screen and (min-width: 10px) {
  .uk-panel-1 {
    font-size: 80%;
  }
}
@media screen and (min-width: 1000px) {
  .uk-panel-1 {
    font-size: 100%;
  }
}
@media screen and (min-width: 1700px) {
  .uk-panel-1 {
    font-size: 130%;
  }
}

.text {
  text-align: left;
  display: inline-block;
}

#page-top {
  display: block;
  font-weight: bold;
  padding: .7em;
  text-align: center;
  background: #fff; /*背景色*/
  color: #666; /*文字色*/
  transition: .3s;
}
/***マウスホーバー時***/
#page-top:hover {
  background: rgb(0, 160, 110); /*背景色*/
  color: #fff; /*文字色*/
}

.footer {
  background-color: rgb(0, 160, 110);
  padding-bottom: 100px;
  position: relative;
  margin-top: 100px;
}

.footer h1 {
  font-size: 16px;
  color: rgb(255, 255, 255);
  position: absolute;
  bottom: 50px;
}