@charset "UTF-8";
header .overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 95px;
  background-color: #ff850a;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease;
}
header .overlay .menu-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  height: 100%;
  gap: 1rem;
}
header .overlay .menu-items a {
  color: #ffffff;
  height: 100%;
  align-items: center;
  display: flex;
  margin: auto 0;
  justify-content: center;
  font-family: "FP-ヒラギノ角ゴ ProN W6";
  padding: 0 2rem;
}
header .overlay .menu-items a:hover {
  color: #a06e32;
}
header .overlay .menu-items .contact-btn {
  background: linear-gradient(90deg, #62e1b7, #428bbf);
}
header .overlay .menu-items .contact-btn:hover {
  background: white;
  color: #34bdc9;
}

footer .f-menu {
  padding: 10% 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: auto;
  background: linear-gradient(180deg, #ff850a, #eb595c);
  border-top: 10px solid transparent;
  border-image-width: 100%;
  -o-border-image: linear-gradient(90deg, #62e1b7, #428bbf) 1;
     border-image: linear-gradient(90deg, #62e1b7, #428bbf) 1;
}
footer .f-menu img {
  height: 59px;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
footer .f-menu .f-menu-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  height: 100%;
  padding-top: 30px;
  gap: 30px;
}
footer .f-menu .f-menu-items a {
  color: #ffffff;
  height: 100%;
  align-items: center;
  display: flex;
  margin: auto 0;
  justify-content: center;
  font-family: "FP-ヒラギノ角ゴ ProN W6";
}
footer .f-menu .f-menu-items a:hover {
  color: #a06e32;
}
footer .copyright {
  text-align: center;
  color: #ffffff;
  font-size: 14px;
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: #1f384b;
}

.mob {
  display: none;
}

@media (max-width: 768px) {
  header {
    height: 55px;
    display: flex;
    align-items: center;
    background-color: #ff850a;
    width: 100%;
    position: fixed;
    z-index: 999;
  }
  header .hamburger-btn {
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 10;
    background: none;
    border: none;
    cursor: pointer;
  }
  header .hamburger-btn .line {
    display: block;
    width: 30px;
    height: 4px;
    margin: 6px;
    background: #333;
  }
  header .overlay {
    position: fixed;
    bottom: 0px;
    top: auto;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(180deg, #ff850a, #eb595c);
    clip-path: none;
    z-index: 5;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    opacity: 0;
    padding: 0%;
  }
  header .overlay .logo {
    display: none;
  }
  header .overlay .menu-items {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: auto;
  }
  header .overlay .menu-items a {
    margin: 10px 0;
    color: white;
    pointer-events: none;
    position: relative;
  }
  header .overlay .menu-items a:last-child {
    background: transparent;
  }
  header .close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 2rem;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
  }
  header .hamburger-btn {
    width: 40px;
    height: 40px;
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 100;
    background: none;
    border: none;
    cursor: pointer;
  }
  header .hamburger-btn .line {
    position: absolute;
    width: 100%;
    height: 4px;
    background: #ffffff;
    left: 0;
    transition: 0.3s ease;
  }
  header .hamburger-btn .line:nth-child(1) {
    top: 0px;
  }
  header .hamburger-btn .line:nth-child(2) {
    top: 10px;
  }
  header .hamburger-btn .line:nth-child(3) {
    top: 20px;
  }
  header .hamburger-btn {
    /* open状態：× に変身 */
  }
  header .hamburger-btn.open .line:nth-child(1) {
    transform: rotate(45deg);
    top: 9px;
  }
  header .hamburger-btn.open .line:nth-child(2) {
    opacity: 0;
  }
  header .hamburger-btn.open .line:nth-child(3) {
    transform: rotate(-45deg);
    top: 9px;
  }
  footer .f-menu img {
    height: 30px;
  }
  footer .f-menu .f-menu-items {
    grid-template-columns: repeat(2, 1fr);
    gap: 5vw;
  }
  footer .copyright {
    font-size: 8px;
  }
  .mob {
    display: inline-block;
    padding-left: 5vw;
  }
  .mob img {
    height: 40px;
  }
}
nav a.current {
  font-weight: bold;
  border-bottom: white 5px solid;
}/*# sourceMappingURL=common.css.map */