@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: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: bolder;
  color: #363636;
  line-height: 1;
  background-color: #ffffff;
    -webkit-animation: fadeIn 1.5s ease 0s 1 normal;
    animation: fadeIn 1.5s ease 0s 1 normal;
  }

  @keyframes fadeIn {
    0% {
      opacity: 0
    }

    100% {
      opacity: 1
    }
  }

  @-webkit-keyframes fadeIn {
    0% {
      opacity: 0
    }

    100% {
      opacity: 1
    }
  }

img {
  max-width: 100%;
}
.header-area{
  border-bottom: solid #786ed4;
  border-bottom-width: 0.5px;
  position: fixed;
  top: 0;
  z-index: 10000;
  box-shadow: 0 0 10px #000000;
  width: 100%;
  background-image: url(../img/header-01.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.header-inner {
  max-width: 1500px;
  height: 80px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.toggle-menu-button {
  display: none;
}

.header-logo {
  display: block;
  width: 170px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.header-logo-tel {
  padding-top: 15px;
  display: block;
  width: 170px;
}

.site-menu ul {
  display: flex;
}

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

.site-menu ul li a {
  font-weight: bold;
}

.site-menu ul li a:hover{
  color: #b93939;
}

.footer {
  border-top: solid 0.5px #786ed4;
  color: #ffffff;
  background-color: #080522;
  padding-top: 30px;
  padding-bottom: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-logo {
  text-align: center;
  display: block;
  width: 200px;
  margin-top: 90px;
}

.footer-tel {
  margin-top: 20px;
}

.footer-tel a {
  font-size: 20px;
  font-weight: bold;
}

.footer-time {
  font-size: 13px;
  margin-top: 16px;
}

.copyright {
  font-size: 14px;
  font-weight: bold;
  margin-top: 90px;
}
/*タブレットサイズ*/
@media (max-width: 900px) {
  .gnavi ul {
    display: block;
    text-align: center;
  }

  .gnavi li{
    margin-top: 20px;
  }

  .header area{
    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, 1);
  }

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

  .header-logo{
    width: 100px;
  }

  .header-logo-tel {
    display: none;
  }

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

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

  .toggle-menu-button{
    display: block;
    width: 45px;
    height: 35px;
    background-image: url(../img/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: 0px;
  }

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

  .footer-tel a{
    font-size: 15px;
  }
  .copyright{
    margin-top: 50px;
    font-size: small;
  }

  body {
    font-weight: lighter;
    }
}
