@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: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #000000;
  line-height: 1;
  background-color: #ffffff;
}

img {
  max-width: 100%;
}

.header-inner {
  max-width: 1920px;
  height: 90px;
  display: flex;
  position: absolute;
  align-items: center;
  color: #fff;
  width: 100%;
  z-index: 100;
  padding-left: 30px;
  padding-right: 30px;
}

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

.header-logo {
  position: absolute;
  left: 30px;
  width: 120px;
}
.header-site-menu {
  margin: 0 auto;
}

.site-menu ul {
  display: flex;
    gap: 0;
  list-style: none;
}

.site-menu li {
  border-right: 2px solid #fff;

}

.site-menu li:last-child {
  border-right: none;
}

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


.site-menu ul li a {
  font-family: 'montserrat', sans-serif;
  font-weight: bold;
    padding: 0 10px;
}

.footer {
  color: #ffffff;
  background-color: #24211b;
  padding-top: 30px;
  padding-bottom: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.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;
}
@media screen and (max-width: 799px) {

    .header-inner {
        height: 60px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .header-logo {
        width: 80px;
    }

    .header-site-menu {
        display: none; /* ハンバーガー未実装のため非表示 */
    }

    .toggle-menu-button {
        display: block;
        position: absolute;
        right: 15px;
        width: 40px;
        height: 40px;
        background: none;
        border: none;
        cursor: pointer;
    }

    .footer-logo {
        width: 160px;
        margin-top: 40px;
    }

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