@charset "UTF-8";
/* =============================
   リセット
 明朝：font-family: "Noto Serif JP", serif;
 ゴシック：font-family: "Noto Sans JP", sans-serif;
============================= */
*, *::before, *::after {
  box-sizing: border-box;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  margin: 0;
  padding: 0;
  line-height: 1.7;
  font-family: sans-serif;
  font-family: "Noto Serif JP", serif;
  overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-weight: normal;
  line-height: 1.4;
}
p {
  margin: 0;
}
ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  opacity: 0.7;
  transition: 0.3s;
}
/* =============================
   共通レイアウト
============================= */
.section {
  padding: 0px;
}
/* 通常コンテナ */
.container {
  max-width: 1200px;
  margin: 0px auto;
  padding: 0 20px;
}
/* 小さめコンテナ */
.container-small {
  max-width: 620px;
}
/* フル幅コンテナ（完全にフル） */
.container-full {
  max-width: none;
  width: 100%;
}
/* =============================
カラム
============================= */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 500px) {
  .grid-2, .grid-3 {
    grid-template-columns: 1fr;
  }
}
/* =============================
   ヘッダー
============================= */
.site-header {
  padding: 20px 0;

}
.header-inner {
  max-width: 1080px;
  padding: 0 20px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
/* ロゴ */
.logo {
  margin: 0;
}
.logo img {
  width: 108px;
  height: auto;
  display: block;
}
@media (max-width: 800px) {
  .site-header {
    padding: 5px 0;
  }
  .logo img {
    width: 90px;
    height: auto;
    display: block;
  }
}
/* =============================
   フッター
============================= */
.footer {
  background-color: #000;
  color: #fff;
  padding: 80px 0 20px;
}
.footer-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-bottom: 40px;
}
/* ロゴ */
.footer-logo img {
  width: 153px;
  height: auto;
  display: block;
  margin-bottom: 30px;
}
.footer-inner p {
  font-size: 10px
}
.gmap {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  margin-top: 5px;
  margin-bottom: 40px
}
.gmap::before {
  content: "";
  width: 8px;
  height: 11px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../image/gmap_icon.webp);
  display: inline-block;
}
.footer_contact img {
  width: 48px;
  height: auto
}
/* ナビ */
.footer-nav ul {
  display: flex;
  gap: 30px;
}
.footer-nav a {
  color: #fff;
  font-size: 12px;
  letter-spacing: 1px;
}
/* コピーライト */
.copyright {
  text-align: center;
  font-size: 12px;
  opacity: 0.6;
}
@media (max-width: 800px) {
  .footer {
    background-color: #000;
    color: #fff;
    padding: 40px 0 20px;
  }
  .footer-logo img {
    width: 80px;
    margin-bottom: 30px;
  }
  .footer_contact img {
    width: 40px;
  }
}