@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: 'Kiwi Maru', serif;
  font-size: 16px;
  color: #000000;
  line-height: 1;
  background-color: #ffffff;
}

img {
  width: 100%;
}

.header-inner {
  /*
  max-width: 1200px;
  */
  width: 100%;
  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 {
  width: 300px;
}

.footer {
  color: #ffffff;
  /*
  background-color: #24211b;
  */
  background-color: rgb(0, 50, 105);
  padding-top: 30px;
  padding-bottom: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-logo{
  font-family: 'Kaisei Opti', serif;
  font-size: 45px;
  margin-top: 90px;
}

.footer-tel{
  font-family: 'Kaisei Opti', serif;
  font-size: 26px;
  font-weight: bold;
  margin-top: 28px;
}

.footer-time{
  font-family: 'Kaisei Opti', serif;
  font-size: 13px;
  margin-top: 16px;
}

.copyright{
  font-family: 'Kaisei Opti', serif;
  font-size: 14px;
  font-weight: bold;
  margin-top: 90px;
}

.site-menu ul{
  display: flex;
}

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

.site-menu ul li a{
  font-family: 'Kiwi Maru', serif;
}

@media (max-width: 1000px) {
  .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: 100px;
    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: 200px;
  }

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

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

  /*ボタン*/
  .openbtn {
    position: relative;
    background: #ffffff;
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 5px;
  }

  .openbtn span{
    display: inline-block;
    transition: all.4s;
    position: absolute;
    left: 14px;
    height: 2px;
    border-radius: 5px;
    background: #000000;
    width: 45%;
  }

  .openbtn span:nth-of-type(1){
    top: 13px;
  }

  .openbtn span:nth-of-type(2){
    top: 19px;
  }

  .openbtn span:nth-of-type(3){
    top: 25px;
  }

  .openbtn span:nth-of-type(3)::after {
    content: "Menu";
    position: absolute;
    top: 5px;
    left: -2px;
    color: #000000;
    font-size: 0.6rem;
    text-transform: uppercase;
  }

  .main {
    padding-top: 50px;
  }

  .footer-logo {
    font-family: 'Kaisei Opti', serif;
    margin-top: 60px;
  }

  .footer-tel {
    font-family: 'Kaisei Opti', serif;
    font-size: 20px;
  }

  .copyright {
    font-family: 'Kaisei Opti', serif;
    margin-top: 50px;
  }
}