@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;
  color: #343434;
  line-height: 1.5;
  background-color: #FFFFFF;
  font-weight: 500;
}

img {
  max-width: 100%;
}

.header {
  background-color: #FFFFFF;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 110px;
  z-index: 10;
}

.header-inner {
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.toggle-menu-button {
  display: none;
}

.header-logo {
  display: block;
  width: 100%;
  max-width: 100px;
}

.site-menu ul {
  display: flex;
}


.site-menu ul li {
  width: 110px;
  margin-left: 5px;
  margin-right: 5px;
}

.header-site-menu-sp {
  display: none;
}

.contact-text {
  font-family: 'Noto Sans JP', sans-serif;
  color: #343434;
  font-size: 14px;
  text-align: center;
  font-weight: 500;
  margin-top: 15px;
}

.contact-link-button-area {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 60px;
}

.contact-link-button {
  background-color: #FFFFFF;
  display: inline-block;
  min-width: 180px;
  line-height: 48px;
  border-radius: 24px;
  font-weight: bold;
  font-size: 12px;
  border: 1.5px solid #343434;
  color: #343434;
}

.contact-link-button:hover {
  background-color: #d8d8d8;
}


.footer {
  color: #FFFFFF;
  background-color: #343434;
  padding-top: 30px;
  padding-bottom: 15px;
}

.footer-inner {
  width: 80%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  display: block;
  width: 50px;
}

.copyright {
  font-size: 14px;
  font-weight: 500;
  margin-top: 10px;
  width: 50%;
  margin: 0 auto;
  text-align: center;
}

.contents-text a {
  font-size: 14px;
  color:#008b8b;
}



@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: 90px;
    z-index: 10;
  }

  .header-inner {
    padding-left: 20px;
    padding-right: 20px;
    height: 80%;
    position: relative;
  }

  .header-logo {
    width: 60%;
    max-width: 60px;
  }

  .header-site-menu {
    display: none;
  }

  .header-site-menu-sp {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    color: #FFFFFF;
    background-color: #343434;
    padding-top: 30px;
    padding-bottom: 50px;
    display: none;
  }

  .header-site-menu-sp.is-show {
    display: block;
  }


  .toggle-menu-button {
    display: block;
    width: 44px;
    height: 34px;
    background-image: url(../images/common/toggle-menu-button.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;
  }

  .contact-text {
    font-size: 12px;
  }
}