@charset "UTF-8";

/*  header  */
header {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  padding: 10px 30px;
  margin-top: 20px;
  transition: 0.3s;
}

@media screen and (max-width:1024px) {
  header {
    padding: 5px 3%;
    margin-top: 25px;
  }
}

header.change-color {
  margin-top: 0;
  background: rgba(255, 255, 255, 0.8);
  transition: 0.3s;
}

header .inner {
  display: flex;
  align-items: center;
  height: 100%;
}

@media screen and (max-width:1024px) {
  header .inner {
    justify-content: space-between;
  }
}

@media screen and (max-width:1024px) {
  header .logo-header {
    z-index: 1;
  }
}

header .logo-header a img {
  max-width: 130px;
  width: 100%;
}

@media screen and (max-width:1024px) {
  header .logo-header a img {
    max-width: 70px;
  }
}

header .navi {
  display: flex;
  align-items: center;
  width: 100%;
  margin: 0 0 0 60px;
  padding: 0;
}

@media screen and (max-width:1024px) {
  header .navi {
    display: block;
    margin: 0;
    padding: 150px 5% 70px;
    top: 0;
  }
}

header .navi li {
  margin: 5px 0;
}

header .navi li:first-child {
  margin-left: 0;
}

@media screen and (max-width:1024px) {
  header .navi li {
    margin: 0 auto 20px;
    text-align: center;
  }
}

header .navi li a {
  display: block;
  font-weight: 800;
  color: #000;
}

header .navi li.hed_nav-reservation a {
  color: #fff;
}

header .navi li.hed_nav {
  font-size: 15px;
  margin-right: 4%;
  padding-top: 10px;
}

@media screen and (max-width:1024px) {
  header .navi li.hed_nav {
    font-size: 16px;
    margin-right: auto;
    padding-top: 0;
  }
}

header .navi li.hed_nav a {
  padding-bottom: 10px;
  background: linear-gradient(currentColor 0 0) bottom /var(--d, 0) 6px no-repeat;
  transition: 0.3s;
}

@media screen and (max-width:1024px) {
  header .navi li.hed_nav a {
    display: inline-block;
  }
}

header .navi li.hed_nav a:hover {
  --d: 100%;
}

header .navi li.hed_nav:nth-of-type(3) {
  margin-right: auto;
}

@media screen and (max-width:1024px) {
  header .navi li.hed_nav:nth-of-type(3) {
    margin-bottom: 30px;
  }
}

header .navi li.hed_nav-contact,
header .navi li.hed_nav-reservation {
  max-width: 145px;
  width: 100%;
  border: 2px solid #000;
  border-radius: 50px;
  box-shadow: -2px 4px 0px 0 #000;
  text-align: center;
}

@media screen and (max-width:1024px) {

  header .navi li.hed_nav-contact,
  header .navi li.hed_nav-reservation {
    max-width: 300px;
    width: 80%;
  }
}

header .navi li.hed_nav-contact:hover,
header .navi li.hed_nav-reservation:hover {
  animation: hedBtn-anm 0.2s ease-out forwards;
}

@keyframes hedBtn-anm {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(-4px, 4px);
    box-shadow: none;
  }
}

header .navi li.hed_nav-contact a,
header .navi li.hed_nav-reservation a {
  font-size: 13px;
  padding: 15px 0;
}

@media screen and (max-width:1024px) {

  header .navi li.hed_nav-contact a,
  header .navi li.hed_nav-reservation a {
    font-size: 15px;
    padding: 20px 0;
  }
}

header .navi li.hed_nav-contact {
  background-color: #FFFAE0;
  margin-right: 2%;
}

@media screen and (max-width:1024px) {
  header .navi li.hed_nav-contact {
    margin-right: auto;
  }
}

header .navi li.hed_nav-reservation {
  background-color: #2F6C02;
}

header .navi li.hed_nav-reservation a {
  padding-left: 10px;
}

/*　　ハンバーガーメニュー　　*/
@media screen and (max-width:1024px) {
  .c-hamburger-menu__list {
    background-color: #fff;
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    left: 0;
    padding: 2rem;
    position: absolute;
    transform: translateX(-100%);
    transition: 0.3s;
    top: 100%;
    width: 100%;
  }

  #hamburger:checked ~ .c-hamburger-menu__list {
    transform: translateX(0%);
    transition: 0.3s;
    top: 0;
  }
}

.c-hamburger-menu__input {
  display: none;
}

.c-hamburger-menu__bg {
  background-color: #000;
  cursor: pointer;
  display: none;
  height: 100vh;
  left: 0;
  opacity: 0.4;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}

#hamburger:checked ~ .c-hamburger-menu__bg {
  display: block;
}

.c-hamburger-menu__button {
  display: none;
}

@media screen and (max-width:1024px) {
  .c-hamburger-menu__button {
    align-items: center;
    appearance: none;
    background-color: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
    height: 32px;
    justify-content: center;
    width: 32px;
  }
}

.c-hamburger-menu__button-mark {
  background-color: #000;
  display: block;
  height: 2px;
  transition: 0.3s;
  width: 20px;
}

@media screen and (max-width:1024px) {
  #hamburger:checked ~ .c-hamburger-menu__button .c-hamburger-menu__button-mark:nth-of-type(1) {
    transform: translate(1px, 2px) rotate(45deg);
    transform-origin: 0%;
  }

  #hamburger:checked ~ .c-hamburger-menu__button .c-hamburger-menu__button-mark:nth-of-type(2) {
    opacity: 0;
  }

  #hamburger:checked ~ .c-hamburger-menu__button .c-hamburger-menu__button-mark:nth-of-type(3) {
    transform: translate(1px, 2px) rotate(-45deg);
    transform-origin: 0%;
  }
}

/*  footer  */
footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 250px;
  background: #000;
  color: #fff;
  padding: 0 0 110px;
}

@media screen and (max-width:1024px) {
  footer {
    height: 300px;
    padding: 0;
  }
}

footer .inner {
  max-width: 1060px;
  width: 100%;
  margin: 70px auto 0;
  padding: 0 30px;
}

@media screen and (max-width:1024px) {
  footer .inner {
    margin: 60px auto 0;
  }

}

/*
footer .footer-link {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 50px;
}
*/

@media screen and (max-width:1024px) {
  footer .footer-link {
    display: block;
  }
}

/*
@media screen and (max-width:1024px) {
  footer .logo-footer {
    text-align: center;
  }
}
*/

footer .logo-footer a img {
  max-width: 215px;
  width: 100%;
}

footer .navi {
  display: flex;
  align-items: center;
  margin-bottom: 50px;
  /*  margin: 0 0 0 60px;*/
  padding: 0;
}

@media screen and (max-width:1024px) {
  footer .navi {
    display: block;
    margin: 40px 0 50px 0;
    text-align: center;
  }
}

footer .navi li {
  font-size: 12px;
  margin-right: 25px;
}

@media screen and (max-width:1024px) {
  footer .navi li {
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 10px;
  }
}

footer .navi li a {
  display: block;
  font-weight: 800;
  color: #fff;
  transition: color 0.2s ease 0s;
}

footer .navi li a:hover {
  color: #2F6C02;
}

footer .inner .copyright {
  display: flex;
  /*  justify-content: flex-end;*/
  width: 100%;
  font-size: 8px;
}

@media screen and (max-width:1024px) {
  footer .inner .copyright {
    justify-content: center;
  }
}

footer .inner .copyright small {
  margin-right: 15px;
}

footer .inner .copyright p a {
  text-decoration: underline;
}

/*  roop text  */
.endless-txt {
  align-items: center;
  background: #000;
  display: flex;
  height: 20px;
  line-height: 20px;
  overflow: hidden;
  width: 100%;
  white-space: nowrap;
  margin-top: 0;
  z-index: 1;
}

@media screen and (max-width:1024px) {
  .endless-txt {
    height: 25px;
    line-height: 25px;
  }
}

.endless-txt ul {
  animation: flowing 35s linear infinite;
  font-size: 8px;
  transform: translateX(100%);
  margin: 0;
  padding: 0;
}

@media screen and (max-width:1024px) {
  .endless-txt ul {
    font-size: 12px;
  }
}

.endless-txt ul li {
  display: inline-block;
  padding-right: 10px;
  color: #fff;
}

.endless-txt ul li:nth-child(even) {
  color: #2F6C02;
}

@keyframes flowing {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

.LINE-link {
  position: fixed;
  right: 30px;
  bottom: 30px;
  border-radius: 14px;
  box-shadow: 0 1px 10px 0 rgba(0, 0, 0, .5);
  z-index: 2;
}

@media screen and (max-width:1024px) {
  .LINE-link {
    right: 15px;
    bottom: 15px;
    border-radius: 18px;
  }
}

@media screen and (max-width:767px) {
  .LINE-link {
    border-radius: 12px;
  }
}

.LINE-link a img {
  width: 60px;
}

@media screen and (max-width:1024px) {
  .LINE-link a img {
    width: 80px;
  }
}

@media screen and (max-width:767px) {
  .LINE-link a img {
    width: 50px;
  }
}
