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;
}
  
.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;
}
 
 @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 {
    font-size: 20px;
    padding-bottom: 7px;
    color: #fff;
    text-decoration: none;
    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;
    font-size: 30px;
}
  
h1 span {
    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) {
    .aside-left {
      display: block;
    }
  
    .aside-right {
      width: 60%;
    }
}
  
.aside-anchor-a {
   display: inline-block;
}
  
.others {
    font-size: 20px;
}
  
.others li ::before {
    content: "・";
    color: yellow;
}

.panel {
    text-align: center;
}

.panel1 {
    padding-top: 50px;
}

@media screen and (min-width: 798px) {
    .panel1 p {
      font-size: 100%;
    }
}
  @media screen and (min-width: 1080px) {
    .panel1 p {
      font-size: 125%;
    }
}

.uk-heading-line {
    font-size: 20px;
    font-weight: 900;
    white-space: nowrap;
    color: rgb(0, 160, 110);
}

@media screen and (min-width: 1000px) {
    .uk-heading-line {
      font-size: 100%;
    }
}

@media screen and (min-width: 1400px) {
    .uk-heading-line {
      font-size: 125%;
    }
}

.panel h1 {
    font-size: 24px;
    padding: 0.5,0.5;/*上下 左右の余白*/
    color: #494949;/*文字色*/
    background: transparent;/*背景透明に*/
    border-left: solid 10px rgb(0, 160, 110);/*左線*/
    border-bottom: solid 2px rgb(0, 160, 110);
    display: inline;
}

@media screen and (min-width: 798px) {
    .panel1 h1
     {
      font-size: 100%;
    }
}
  @media screen and (min-width: 1080px) {
    .panel1 h1 {
      font-size: 125%;
    }
}

.photo {
    text-align: center;
    padding-top: 25px;
}

.photo1 {
    transform: rotate(90deg);
    padding: 100px 0px;
}

#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;
}