html {
    font-size: 80%;
}
@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;
}
  
.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: 100;
}

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 li ::before {
  content: "・";
  color: yellow;
}

.panel1 {
    text-align: center;
    font-family: sans-serif;
    padding-top: 100px;
}
    
.panel1 h2 {
  font-size: 24px;
    text-align: center;
    font-family: sans-serif;
    color: rgb(0, 160, 110);
    font-weight: 900;
}
    
.panel {
    text-align: center;
    font-family: sans-serif;
}
    
.uk-panel-1 p {
    display: inline-block;
    font-size: 10px;
}

@media screen and (min-width: 768px) {
  .uk-panel-1 p {
    font-size: 100%;
  }
}
@media screen and (min-width: 1200px) {
  .uk-panel-1 p {
    font-size: 125%;
  }
}

.iso {
  text-align: center;
  display: inline;
}

.uk-panel-1 {
  text-align: left;
  display: inline-block;
}

.text1 {
  font-size: 20px;
  color: rgb(0, 160, 110);
}

@media screen and (min-width: 1200px) {
  .text1 {
    font-size: 120%;
  }
}
@media screen and (min-width:　1400px) {
  .text1 {
    font-size: 150%;
  }
}

.text2 {
  font-size: 15px;
  text-align: center;
  margin-left: 150px;
}

.text2 p {
  text-align: left;
}

.photo {
  display: 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;
}
