* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background-color: #efefef;
  /*
  ---------------- header -------------
  */
  /*
  ---------------- header -------------
  */
  /*
  ---------------- main -------------
  */
  /*
  ---------------- main -------------
  */
  /*
  ---------------- footer -------------
  */
  /*
  ---------------- footer -------------
  */
}
body .error_blank {
  color: red;
  display: block;
  font-weight: bold;
}
body .error_blank:not(:first-of-type) {
  display: none;
}
body header .headerHead {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5em 2.5%;
  background-color: #efefef;
  min-height: 80px;
  z-index: 9;
}
body header .headerHead h1 {
  margin: 0;
}
body header .headerHead h1 img {
  width: 8em;
  max-width: 80px;
}
body header .headerHead .navMenus {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(100dvh - 80px);
  background-color: rgba(0, 0, 0, 0.85);
  opacity: 0;
  visibility: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
}
body header .headerHead .navMenus.OnView {
  transition: all 0.5s;
  opacity: 1;
  visibility: visible;
}
body header .headerHead .navMenus ul {
  text-align: center;
  padding: 12.5vh 2.5%;
  list-style: none;
}
body header .headerHead .navMenus ul li {
  font-size: 14px;
  line-height: 1.8;
}
body header .headerHead .navMenus ul li:not(:last-of-type) {
  margin-bottom: 2.5em;
}
body header .headerHead .navMenus ul li a {
  text-decoration: none;
  color: #fff;
  display: block;
}
body header .headerHead .navMenus ul li a:hover {
  transition: color 0.5s;
  color: gold;
}
body header .headerHead button {
  cursor: pointer;
  outline: none;
  border: 0;
  padding: 0;
  background-color: transparent;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  position: relative;
}
body header .headerHead button span {
  display: block;
  width: 100%;
  height: 1px;
  background-color: #333;
}
body header .headerHead button::before, body header .headerHead button::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #333;
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0deg);
}
body header .headerHead button::after {
  top: 75%;
}
body header .headerHead button.OnView {
  overflow: hidden;
}
body header .headerHead button.OnView span {
  transition: all 0.5s;
  transform: translateX(-100%);
  opacity: 0;
}
body header .headerHead button.OnView::before, body header .headerHead button.OnView::after {
  top: 50%;
  transition: transform 0.5s;
  transform: translate(-50%, -50%) rotate(45deg);
}
body header .headerHead button.OnView::after {
  transform: translate(-50%, -50%) rotate(135deg);
}
@media screen and (min-width: 1025px) {
  body header .headerHead {
    min-height: 72px;
  }
  body header .headerHead h1 img {
    max-width: 80px;
  }
  body header .headerHead button {
    display: none;
  }
  body header .headerHead .navMenus {
    position: relative;
    top: unset;
    left: unset;
    width: clamp(560px, 72%, 800px);
    height: auto;
    background-color: transparent;
    opacity: 1;
    visibility: visible;
    z-index: 9;
  }
  body header .headerHead .navMenus ul {
    padding: 0.25em 0.5em;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4%;
  }
  body header .headerHead .navMenus ul li {
    font-size: 16px;
  }
  body header .headerHead .navMenus ul li:not(:last-of-type) {
    margin-bottom: 0;
  }
  body header .headerHead .navMenus ul li a {
    color: #333;
  }
}
body main {
  color: #333;
  line-height: 1.8;
  padding: 0 2em;
  max-width: 560px;
  margin: 0 auto 8em;
  display: grid;
  place-items: center;
  padding-top: 7.2rem;
}
body main h2 {
  line-height: 1.5;
  font-size: 32px;
  text-align: center;
}
body main h2 span {
  font-size: 14px;
  display: block;
}
body main form dl {
  padding: 1em 2em;
  border-radius: 8px;
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.15);
}
body main form dl div {
  line-height: 1.75;
  font-size: 16px;
  padding-bottom: 1em;
}
body main form dl div dt {
  margin-bottom: 0.5em;
}
body main form dl div dd {
  margin: 0;
}
body main form dl div dd a {
  display: block;
}
body main form dl div dl {
  padding: 0;
  border-radius: 0;
  box-shadow: unset;
}
body main form dl div:not(:last-of-type) {
  margin-bottom: 2em;
  border-bottom: 1px solid #333;
}
body main form dl .separateInputs dd {
  display: flex;
  gap: 2%;
}
body main form input[type=text], body main form input[type=tel], body main form input[type=url], body main form input[type=email] {
  width: 94%;
}
body main form input[type=button] {
  font-size: 16px;
}
body main form textarea {
  width: 94%;
  height: clamp(80px, 33.3333333333vw, 240px);
}
body main form #form_submit {
  text-align: center;
}
body main form .privacy-box {
  height: 160px;
  overflow-y: scroll;
  padding: 0.5em;
  background-color: #fff;
  color: #333;
}
body main form .privacy-details {
  padding: 16px;
  max-width: 960px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.8;
}
body main form .privacy-details h3 {
  font-size: 20px;
  border-bottom: 1px solid;
  margin-bottom: 16px;
}
body main form .privacy-items {
  margin-bottom: 32px;
}
body main form .privacy-items dt {
  padding-left: 2.5em;
  text-indent: -2.5em;
  font-size: 14px;
}
body main form .privacy-items dd {
  padding-left: 1em;
  text-indent: -1em;
  font-size: 14px;
}
body main figure.thumbnail {
  max-width: 320px;
  display: block;
  margin: 4em auto;
}
body main .thumbnail img {
  display: block;
  box-sizing: border-box;
  width: 100%;
  margin: auto;
  height: auto;
}
body main .backTop {
  display: block;
  text-decoration: none;
  text-align: center;
  line-height: 44px;
  width: clamp(80px, 50vw, 240px);
  margin: 4em auto;
  color: #fff;
  background-color: #333;
  border-radius: 4px;
}
@media screen and (min-width: 1025px) {
  body main {
    padding-top: 160px;
  }
}
body footer {
  padding: 2.5em 5% 0;
  background-color: #dadada;
  text-align: center;
}
body footer .footerWrapper nav {
  margin-bottom: 2.5em;
}
body footer .footerWrapper nav ul {
  list-style: none;
  padding: 0;
}
body footer .footerWrapper nav ul li:not(:last-of-type) {
  margin-bottom: 2.5em;
}
body footer .footerWrapper nav ul li a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
}
body footer .footerWrapper nav ul li a:hover {
  transition: all 0.5s;
  color: gold;
}
body footer .footerWrapper nav ul li.lists button {
  font-size: 14px;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  cursor: pointer;
  text-align: center;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
  border-radius: 0;
  border: unset;
  padding: 0;
  background: transparent;
  color: #333;
}
body footer .footerWrapper nav ul li.lists button:hover {
  transition: color 0.5s;
  color: gold;
}
body footer p {
  font-size: 12px;
  line-height: 2;
  margin: 0;
}
@media screen and (min-width: 1025px) {
  body footer {
    padding: 2.5em 5% 0;
  }
  body footer .footerWrapper {
    max-width: 1280px;
    margin: auto;
  }
  body footer .footerWrapper nav ul {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 2%;
  }
  body footer .footerWrapper nav ul li:not(:last-of-type) {
    margin-bottom: 0;
  }
  body footer .footerWrapper nav ul li a {
    font-size: 16px;
  }
  body footer .footerWrapper nav ul li.lists button {
    font-size: 16px;
  }
  body footer p {
    font-size: 12px;
  }
}
/*# sourceMappingURL=style.css.map */