@charset "UTF-8";

/* 前提 */
html {
  font-size: 100%;
}
body {
  font-family: "Sawarabi Gothic";
  color: #432;
}
a {
  text-decoration: none;
}
img {
  max-width: 100%;
}
.wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 4%;
}

/* HEADER */
.logo {
  font-family: 'Caveat', cursive;
  font-size: 3.1rem;
  color: #5f9ea0;
}
.logo a:hover {
  color: #20b2aa;
  transition: all 0.5s;
}
.toggle-menu-button {
  margin: 0;
  display: none;
}
.site-menu {
  display: flex;
  font-family: 'Zen Kurenaido', sans-serif;
  font-size: 1.7rem;
  list-style: none;
}
.site-menu a:hover {
  color: #20b2aa;
  transition: all 0.5s;
}
.site-menu li {
  margin-left: 40px;
}
.header-inner {
  display: flex;
  justify-content: space-between;
  height: 100px;
  align-items: center;
}
.tab {
  color: #5f9ea0;
}

/* 見出し */
.head-line {
  font-family: 'Zen Kurenaido', sans-serif;
  font-size: 3.4rem;
  color: #5f9ea0;
  font-weight: 600;
  text-align: center;
  display: flex;
  width: 300px;
  margin: 15px auto 30px;
}
.head-line::before,
.head-line::after {
  flex: 1;
  height: 4px;
  content: "";
  background-color: #5f9ea0;
  position: relative;
  top: 2.25rem;
}
.head-line::before {
  margin-right: 1.25rem;
}
.head-line::after {
  margin-left: 1.25rem;
}
/* CONTENT */
.content {
  opacity: 0;
}

/* FOOTER */
.footer {
  color: #fff;
  background-color: #5f9ea0;
  margin-top: 80px;
  padding: 30px 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer-logo {
  font-family: 'Caveat', cursive;
  font-size: 3rem;
  margin: 15px 0 30px;
}
.copyright {
  font-size: 16px;
}















