@font-face {
  font-family: "yasashisa";
  src: url("../fonts/yasashisa.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "nikumaru";
  src: url("../fonts/nikumaru.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: "yasashisa", sans-serif;
  font-size: 16px;
  line-height: 1.8;
  background-color: #fdf5e6;
  color: #333333;
  padding-top: 100px;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: normal;
}

p {
  margin: 20px 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.l-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.875rem;
}
@media (max-width: 768px) {
  .l-inner {
    padding: 0 1rem;
  }
}

section {
  padding: 60px 0;
}

.global-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: transparent;
  transition: all 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
}
.global-header .site-logo a {
  display: flex;
  align-items: center;
  gap: 8px;
}
.global-header .site-logo a img {
  height: 36px;
  width: auto;
  display: block;
}
.global-header .site-logo a .site-title {
  font-family: "nikumaru", cursive;
  font-size: 24px;
  font-weight: bold;
}
.global-header .global-nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.global-header .global-nav .menu-list {
  display: flex;
  gap: 24px;
  list-style: none;
}
.global-header .global-nav .menu-list li a {
  text-decoration: none;
}
.global-header .global-nav .menu-list li a:hover {
  text-decoration: underline;
}
.global-header .global-nav .menu-list li.is-disabled a {
  color: #ccc;
  text-decoration: line-through;
  pointer-events: none;
  cursor: default;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}
.global-header.scrolled {
  background-color: #fdf5e6;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}
