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

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

.sp {
  display: none;
}

.hamburger {
  display: none;
  position: fixed;
  background-color: #fff;
  border-radius: 1.5rem;
  top: 20px;
  right: 20px;
  z-index: 1100;
  width: 30px;
  height: 22px;
  padding: 15px 12px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  height: 3px;
  background: #85CAC8;
  margin-bottom: 6px;
  border-radius: 2px;
  transition: 0.3s;
}
.hamburger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

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;
}

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

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

li {
  padding-bottom: 5px;
}

dd {
  margin-inline-start: 0;
}

.page_top a {
  position: fixed;
  width: 60px;
  height: 60px;
  right: 30px;
  bottom: 80px;
  background: #F9D375;
  border-radius: 50%;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.page_top a.show {
  opacity: 1;
  pointer-events: auto;
}
.page_top a:hover {
  opacity: 0.8;
}
.page_top p {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 60px;
}
.page_top p::before {
  transform: rotate(45deg);
}
.page_top p::after {
  transform: rotate(-45deg);
}
.page_top p::before, .page_top p::after {
  content: "";
  color: #fff;
  position: absolute;
  top: 20px;
  left: calc(50% - 2.5px);
  width: 5px;
  height: 18px;
  border-radius: 9999px;
  background-color: #fff;
  transform-origin: 50% 2.5px;
}

footer {
  width: 100%;
  background-color: #E4EDF1;
  display: flex;
  justify-content: center;
  padding: 35px 0 20px;
}
footer .footer {
  width: -moz-fit-content;
  width: fit-content;
}
footer .footer__title {
  color: #696C25;
  font-weight: 500;
}
footer .footer__menu {
  padding: 15px 0 30px;
}
footer .footer__menu a {
  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;
}
footer .footer__menu a:hover {
  background-position: bottom left; /* 下線のホバー時位置 */
  background-size: 100% 1px; /* 下線の横幅を100%にする */
}
footer .footer__name {
  color: #97A3A6;
  text-align: center;
}

@media (max-width: 1240px) {
  .sp {
    display: block;
  }
  nav {
    top: 20px;
    right: 20px;
  }
  section .titleWrap {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .sp {
    display: none;
  }
  .nav {
    right: 10px;
    top: 15px;
    width: 50%;
    height: -moz-fit-content;
    height: fit-content;
    padding: 55px 0 35px;
    border-radius: 2rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }
  .nav__flex {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .nav a {
    width: -moz-fit-content;
    width: fit-content;
  }
  .nav.active {
    transform: translateX(0);
  }
  .hamburger {
    display: block;
  }
  .page_top a {
    right: 5vw;
    bottom: 18vh;
  }
}/*# sourceMappingURL=main.css.map */