@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: "Montserrat", sans-serif;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* ヘッダーメニュー固定 */
.header {
  padding: 20px 0;
  background-color: rgba(255, 255, 255, 0.9);
  width: 100%;
  border-bottom: 1px solid #eee;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-menu ul {
  display: flex;
  margin-bottom: 0;
  line-height: 0;
  gap: 20px;
}

.site-menu ul li {
  line-height: 0;
}

.site-menu ul li a {
  font-family: "DotGothic16", sans-serif;
  -webkit-font-smoothing: none;
  -moz-osx-font-smoothing: grayscale;
  /* Firefox用 */
  display: block;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  line-height: 1.2;
  outline: none;
  /* マーカーライン */
  transition: background-size 0.3s ease;
  background-image: linear-gradient(transparent 70%, #ffbcdd 70%);
  background-repeat: no-repeat;
  background-size: 0% 100%;
  background-position: left bottom;
  padding: 0 5px;
}

/* ホバー */
.site-menu ul li a:hover {
  background-size: 100% 100%;
}

main {
  flex: 1;
}

/* フッター */
.footer {
  padding: 20px 0;
  /* background-color: #fff; */
}

.copyright {
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  color: #666;
}