@charset "UTF-8";
html {
  font-size: 62.5%;
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  margin: 0;
  color: #444;
  font-size: 1.6rem;
  line-height: 1.7;
  letter-spacing: 0.05em;
}

nav {
  position: fixed;
  top: 20px;
  right: calc((100% - 1200px) / 2);
  z-index: 1000;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  background-color: #fff;
  border-radius: 1.5rem;
  padding: 15px;
}
nav a {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  color: #444;
  padding: 5px;
  background-image: linear-gradient(#000, #000);
  background-repeat: no-repeat;
  background-position: bottom right; /* 下線の初期位置 */
  background-size: 0 1px; /* 下線のサイズ（横幅、高さ） */
  transition: background-size 0.3s;
}
nav a:hover {
  background-position: bottom left; /* 下線のホバー時位置 */
  background-size: 100% 1px; /* 下線の横幅を100%にする */
}
nav a.btn {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #696C25;
  background-color: #F9D375;
  border-radius: 1.5rem;
  padding: 5px 10px;
  margin: 0 5px;
  transition: background-color 0.3s ease, color 0.3s;
}
nav a.btn:hover {
  background-color: #696C25;
  color: #F9D375;
  background-position: none; /* 下線のホバー時位置 */
  background-size: 0% 0px; /* 下線の横幅を100%にする */
}

a {
  color: #444;
  text-decoration: none;
}

p {
  margin-block-start: 0;
  margin-block-end: 0;
}

h1 {
  font-family: "Limelight", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 3rem;
  color: #85CAC8;
  border-bottom: solid 1px #85CAC8;
  margin-block-start: 0;
  margin-block-end: 0;
  margin: 20px 0 0;
}

h3 {
  padding: 10px 0 20px;
  border-bottom: solid 1px #aaa;
  text-align: center;
}

section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
section .titleWrap {
  position: relative;
  width: 1200px;
  text-align: center;
  padding: 0 0 50px;
}

li {
  padding-bottom: 5px;
}

footer {
  width: 100%;
  background-color: #E4EDF1;
}/*# sourceMappingURL=main.css.map */