@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@400;500&display=swap');
html {
  font-size: 16px;
}

a {
  text-decoration: none;
  transition: opacity 0.3s;
  cursor: pointer;
}

a:hover {
  opacity: 0.5;
}

body {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  min-height: 100vh;
}

* {
  box-sizing: border-box;
  line-height: 2;
}

.btn {
  border-radius: 6rem;
  font-weight: 500;
  min-width: 250px;
  padding: 0.5rem 0;
  display: block;
  font-size: 1rem;
  transition: opacity 0.3s;
  cursor: pointer;
}

.btn:hover {
  opacity: 0.5;
}

input,
textarea {
  outline: none;
}

.error_text {
  color: var(--color-main-red);
  font-size: 0.875rem;
}

/* ----------------------------------------
 * スマホの時のみ下にホバーしているような形で出るやつ
 */

@media screen and (max-width: 767px) {
  #hover_menu {
    position: fixed;
    bottom: 60px;
    left: 0;
    width: 100%;
    box-shadow: 0px -6px 10px rgba(0, 0, 0, 0.2);
    border-radius: 1rem 1rem 0 0;
    padding: 0.5rem 0.5rem 2.4rem;
    z-index: 2;
    background-color: white;
  }

  .no-scrollbar {
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
  }
  .no-scrollbar::-webkit-scrollbar {
    display: none; /* Chrome, Safari, and Opera */
  }
}
