@charset "utf-8";

*,
::before,
::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

ul,
ol {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

body {
  font-family: sans-serif;
  font-size: 16px;
  color: #000000;
  line-height: 1;
  background-color: #ffffff;
}

img {
  max-width: 100%;
}

.header{
  position: fixed;
  width: 100%;
  z-index: 20;
  -webkit-transition:	all 0.6s ease;
  transition:	all 0.6s ease;
}

.header-inner {
  max-width: px;
  height: 110px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-inner.on{
  justify-content: flex-end;
}
.toggle-menu-button {   
  display: none;
}

.header-logo {
  display: block;
  width: 110px;
  margin-top: 50px;
  position: relative;
  
}
.header-logo.on{
  opacity: 0;
  animation: op 1s both 0.5s;
  position: absolute;
top: 30%;
right: 50px;
}
@keyframes op {
  100%{
    opacity: 1;
  }
}


.site-menu ul {
  display: flex;
}

.site-menu ul li {
  margin-left: 20px;
  margin-right: 30px;
}

.site-menu ul li a {
  color: #ffffff;
  font-family: "Helvetica"'Montserrat', sans-serif;
  font-weight: bold;
  mix-blend-mode:screen;
}

.footer {
  color: #ffffff;
  background-color: #7e7e7e;
  padding-top: 20px;
  padding-bottom: 15px;
  display: flex;
  flex-direction: column;


}
.footer ul{
    display: flex;
    justify-content: space-between;
}

.footer-sns{
    width: 100%;
    padding-right: 30px;
    justify-content: flex-end; 
}

.footer-sns li{
    padding-right: 25px;
}


.copyright {
  font-size: 14px;
  font-weight: bold;
padding: 50px 0 20px 30px;

  /* margin-left: 30px;
  margin-bottom:  */
}


.footer-sns{
    display: flex;
}


@media (max-width: 800px) {
  .site-menu ul {
    display: block;
    text-align: center;
  }

  .site-menu li {
    margin-top: 20px;
  }

  .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    height: 50px;
    z-index: 10;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  }

  .header-inner {
    padding-left: 20px;
    padding-right: 20px;
    height: 100%;
    position: relative;
  }

  .header-logo {
    width: 100px;
  }

  .header-site-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    color: #ffffff;
    background-color: #736E62;
    padding-top: 50px;
    padding-bottom: 50px;
    display: none;
  }

  .header-site-menu.is-show {
    display: block;
  }

  .toggle-menu-button {
    display: block;
    width: 44px;
    height: 34px;
    background-image: url(../images/common/icon-menu.png);
    background-size: 50%;
    background-position: center;
    background-repeat: no-repeat;
    background-color: transparent;
    border: none;
    border-radius: 0;
    outline: none;
  }

  .main {
    padding-top: 50px;
  }

  .footer-logo {
    margin-top: 60px;
  }

  .copyright {
    margin-top: 50px;
  }
}