@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_Piratis {
  max-width: 70%;
}

img {
  max-width: 100%;
}

.header-inner {
  max-width: 1200px;
  height: 110px;
  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: flex;
  width: 100px;
  height: auto;
}

.header-logo-font {
  display: block;
}

.header-logo-font a {
  display: flex;
}

.site-menu ul {
  display: flex;
}

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

.site-menu ul li{
  font-family: 'Montserrat', sans-serif;
  font-weight: bold;
}

.header{
  background-image:url(../images/common/header-logo-background.jpg);
}

.footer{
  color: #000000;
  background-image:url(../images/common/header-logo-background.jpg);
  padding-top: 30px;
  padding-bottom: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-logo{
  display: block;
  width: 235px;
  margin-top: 28px;
}

.footer-tel{
  font-size: 26px;
  font-weight: bold;
  margin-top: 28px;
}

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

.copyright{
  font-size: 14px;
  font-weight: bold;
  margin-top: 90px;
}

.footer-logo{
  font-size: 40px;
  text-align: center;
}

.footer-line-id {
  font-size: 25px;
  padding-top: 10px;
}

@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-image:url(../images/common/header-logo-background.jpg);
    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-inner p {
    font-size: 50px;
  }

  .header-logo{
    width: 50px;
    max-width: 70%;
    display: flex;
  }

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

  .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;
  }

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

  .main{
    padding-top: 50px;
  }

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

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

  .copyright{
    margin-top: 50px;
  }

  .footer-line-id {
    font-size: 20px;
    padding-top: 10px;
  }

}