html {
  font-size: 62.5%;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
  scroll-padding-top: 10rem;
}

body {
  width: 100%;
  max-width: 1512px;
  margin: 0 auto;
  background-color: #f5efe6;
}

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

.comp_sp {
  display: none;
}
@media screen and (max-width: 600px) {
  .comp_sp {
    display: block;
  }
}

.header_flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-right: 4%;
  height: 10rem;
  background-color: rgba(255, 255, 255, 0.2);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 0 0 10px 10px;
  z-index: 5;
}
.header_flex::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(10px);
  z-index: -1;
  border-radius: 0 0 10px 10px;
}
.header_flex-left {
  margin-left: 3%;
}
.header_flex-left img {
  height: 6.5rem;
  width: auto;
}
@media screen and (max-width: 600px) {
  .header_flex-left img {
    height: 5rem;
  }
}
.header_flex-right {
  display: flex;
  gap: 3rem;
}
@media screen and (max-width: 600px) {
  .header_flex-right {
    display: none;
    position: absolute;
    top: 60px;
    right: 0;
    background-color: #fff;
    width: 200px;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
}
.header_flex-item {
  text-align: center;
  transition: transform 0.3s ease, color 0.3s ease;
  cursor: pointer;
}
.header_flex-item:hover {
  transform: scale(1.05);
  color: #007bff;
}
.header_flex-ttl {
  font-family: "program", sans-serif;
  font-style: normal;
  font-size: 2.2rem;
  font-weight: bold;
  color: #272727;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 960px) {
  .header_flex-ttl {
    font-size: 1.8rem;
  }
}
.header_flex-subttl {
  font-family: "dnp-shuei-nshogomincho-std", sans-serif;
  font-style: normal;
  font-weight: 100;
  font-size: 1.2rem;
  color: #cd5c08;
}
@media screen and (max-width: 960px) {
  .header_flex-subttl {
    font-size: 1rem;
  }
}

.hamburger {
  display: none;
  cursor: pointer;
  overflow: hidden;
}
@media screen and (max-width: 600px) {
  .hamburger {
    display: block;
    position: relative;
    z-index: 3;
    width: 45px;
    height: 36px;
  }
}
.hamburger_menu {
  position: absolute;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 6rem 0;
  top: 0;
  height: 40rem;
  text-align: center;
  font-size: 2.4rem;
  font-family: "program", sans-serif;
  font-style: normal;
  font-weight: bold;
  transition: transform 0.5s ease, opacity 0.5s ease, visibility 0s 0.5s;
  opacity: 0;
  visibility: hidden;
}
.hamburger_menu::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.7);
  z-index: -1;
  border-radius: 10px;
}
.hamburger_menu-items {
  list-style: none;
}
.hamburger_menu-items li {
  margin-bottom: 5rem;
}
.hamburger_menu.active {
  transform: translateX(0%);
  opacity: 1;
  visibility: visible;
  transition: transform 0.5s ease, opacity 0.5s ease;
}
.hamburger span {
  position: absolute;
  display: inline-block;
  width: 100%;
  height: 1px;
  background-color: #1a4d2e;
  transition: all 0.4s ease;
}
.hamburger span:nth-of-type(1) {
  top: 5px;
  width: 30px;
}
.hamburger span:nth-of-type(2) {
  top: 15px;
  width: 30px;
}
.hamburger span:nth-of-type(3) {
  top: 25px;
  width: 30px;
}
.hamburger.active span:nth-of-type(1) {
  top: 14px;
  left: 2px;
  transform: rotate(45deg);
  width: 30px;
}
.hamburger.active span:nth-of-type(2) {
  top: 14px;
  left: 2px;
  transform: rotate(-45deg);
  width: 30px;
}
.hamburger.active span:nth-of-type(3) {
  opacity: 0;
}

.footer {
  height: 38em;
  background: linear-gradient(to bottom, rgba(79, 111, 82, 0) 0%, rgba(79, 111, 82, 0.6) 33%, rgb(79, 111, 82) 100%);
}
@media screen and (max-width: 600px) {
  .footer {
    height: 58rem;
  }
}
.footer_flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10rem 10% 0 10%;
  color: #f5efe6;
  font-family: "program", sans-serif;
  font-style: normal;
  font-weight: bold;
}
@media screen and (max-width: 600px) {
  .footer_flex {
    display: block;
    text-align: center;
  }
}
.footer_Left {
  font-size: 4rem;
}
@media screen and (max-width: 600px) {
  .footer_Left {
    font-size: 5rem;
  }
}
.footer_Right {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 3rem;
  font-size: 2.4rem;
}
@media screen and (max-width: 960px) {
  .footer_Right {
    margin-left: 20%;
  }
}
@media screen and (max-width: 600px) {
  .footer_Right {
    flex-direction: column;
    margin-top: 8rem;
    margin-left: 0;
    text-align: left;
    gap: 2rem;
  }
}
.footer_copyright {
  text-align: center;
  font-size: 1.4rem;
  margin-top: 10rem;
  color: #f5efe6;
}
@media screen and (max-width: 600px) {
  .footer_copyright {
    margin-top: 3rem;
    font-size: 1rem;
  }
}

div.wpcf7 .wpcf7-spinner {
  display: none !important;
}