html {
    scroll-behavior: smooth;
}

#header #mmenu {
  background: #ffb71f;
}

#header h1 {
  overflow: visible;
  width: auto;
}

@media screen and (min-width: 769px) {
  #sidebar {
    display: none;
  }

  #mainContent.floatLeft {
    width: 100% !important;
  }
}

/* フッター追従 */
.footer_fixed {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
}

.footer_fixed .fixed_inner {
  display: flex;
  justify-content: center;
  gap: 0 10px;
  padding: 10px;
}

.footer_fixed a {
  text-decoration: none;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.4;
}

.footer_fixed a:hover {
  opacity: 0.7;
}

.footer_fixed .reserve a {
  padding: 10px;
  background: #f08a01;
  border: 2px solid #ff9200;
  border-radius: 10px;
  height: 100%;
}

.footer_fixed .tel a {
  padding: 8px 10px;
  background: #63b62f;
  border: 2px solid #63b62f;
  border-radius: 10px;
}

.footer_fixed a img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.footer_fixed .btn_info {
  font-size: 18px;
}

.sp_footer_fixed .fixed_inner {
  padding: 0;
  gap: 0;
}

.sp_footer_fixed .fixed_inner > * {
  width: 50%;
}

.sp_footer_fixed .fixed_inner a {
  padding: 5px;
  justify-content: center;
  gap: 5px;
  border-radius: 0;
}

.sp_footer_fixed a img {
  width: 24px;
  height: 24px;
}

.sp_footer_fixed .btn_info {
  font-size: 11px;
}

.pc-switcher {
    padding-bottom: 70px;
}

.footer_fixed #top_link {
    position: fixed;
    bottom: 10px;
    right: 10px;
    width: 60px;
    height: 60px;
    background: rgb(0 0 0 / .5);
}

.footer_fixed #top_link::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 25px;
    height: 25px;
    border-top: 5px solid #fff;
    border-left: 5px solid #fff;
    rotate: 45deg;
    translate: -50% -25%;
}

.footer_fixed #top_link a {
    display: block;
    width: 100%;
    height: 100%;
}

.sp_footer_fixed #top_link {
    width: 40px;
    height: 40px;
    bottom: 50px;
    right: 5px;
}

.sp_footer_fixed #top_link::before {
    width: 15px;
    height: 15px;
    border-width: 3px;
}

footer .copyright {
    padding-bottom: 90px;
}

/* ハンバーガーメニュー */
#header #ham {
  width: 60px;
  height: 34px;
  float: right;
  margin: 10px 5px 0 0;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background: #f08a01;
}

#header #ham img {
  display: block;
  width: 60px;
  height: 34px;
}

#header #ham label {
  position: relative;
  cursor: pointer;
}

#header #ham label input {
  position: absolute;
  opacity: 0;
}

#header #ham:has(label input:checked) + #nav {
  display: block !important;
  opacity: 1 !important;
}