/* ===== Modern CSS Reset ===== */

/* Box sizing */
*, *::before, *::after {
  box-sizing: border-box;
}

/* Margin reset */
body, h1, h2, h3, h4, h5, h6,
p, ul, ol, li, figure,
blockquote, dl, dd {
  margin: 0;
}

/* Body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Remove list styles */
ul, ol {
  list-style: none;
  padding: 0;
}

/* Remove link default style */
a {
  text-decoration: none;
  color: inherit;
}

/* Images */
img, picture {
  max-width: 100%;
  display: block;
}

/* Form elements */
input, button, textarea, select {
  font: inherit;
}

button {
  background: none;
  border: none;
  cursor: pointer;
}

/* Tables */
table {
  border-collapse: collapse;
  border-spacing: 0;
}


/******************************
 * HEADER
******************************/
.site-header {
	width: 100%;
	background-color: #fff;
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	height: 60px;
	padding: 0 3vw;
	border-bottom: 1px solid #e5e5e5;
}

h1.site-logo {
	position: relative;
	top: 32%;
}

.site-header h1 img {
	width: 100px;
	height: 100%;
}

/* ===== PC表示 ===== */
.site-nav .menu {
  display: flex;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 30px;
  flex-direction: column;
  justify-content: space-between;
}

.nav-toggle span {
  display: block;
  height: 3px;
  background: #000;
  border-radius: 2px;
}

/* ===== 768px以下 ===== */
@media (max-width: 768px) {

  .nav-toggle {
    display: flex;
  }

  .site-nav {
    display: none;
  }

  .site-nav.is-open {
    display: block;
    margin-top: 16px;
  }

  .site-nav .menu {
    flex-direction: column;
    gap: 16px;
  }
}




/**/
.container {
    width: min(1000px, 92%);
    margin: 0 auto;
}