* {
  box-sizing: border-box;
}
html {
  font-size: 100%;
  font-family: "Noto Sans JP", sans-serif;
  scroll-behavior: smooth;
}
body {
  font-size: 62.5%;
  max-width: 1280px;
  margin: 0 auto;
}
a {
  text-decoration: none;
}

li {
  list-style: none;
}
h1 {
  background-color: #6a4834;
}
h2 {
  background-color: #f3e9d4;
  font-size: 1.6rem;
  color: #080707;
  padding-left: 2rem;
}
h2::before {
  content: url(../images/leaf2.png);
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-right: 10px;
}
h2.cafe::before {
  content: url(../images/cafeicon32.png);
  display: inline-block;
  width: 32px;
  height: 32px;
  margin-right: 20px;
  vertical-align: middle;
}
h3 {
  font-size: 1.2rem;
  color: #1c0000;
}
h3 span {
  color: red;
  font-size: 2rem;
}
h4 {
  font-size: 2rem;
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  color: #1c0000;
  padding-left: 1rem;
}
p {
  font-size: 1rem;
}
p.caution {
  font-size: 0.9rem;
  color: crimson;
}
p.subcom {
  font-size: 0.9rem;
  color: #130508;
}
.strong {
  font-weight: 600;
}

ol li {
  font-size: 1rem;
  margin-left: 6rem;
  padding-left: 1rem;
  list-style-type: decimal;
}

dt {
  font-size: 1rem;
  font-weight: 600;
  padding-left: 2rem;
}
dd {
  font-size: 1rem;
  padding-left: 2rem;
}
img {
  width: 100%;
  height: auto;
}

/* ------------------map-------------------- */
.map {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 75%;
}
.map iframe {
  position: absolute;
  top: 0;
  left: 0;
  padding: 40px;
  width: 100%;
  height: 100%;
}
/* ------------装飾-------------- */
.circle {
  border-radius: 50%;
}
img.dropsdw {
  border-radius: 5px;
  box-shadow: 3px 3px 15px -5px #886d5d;
}

.wrapper {
  margin: 2rem;
}
.toppage {
  display: flex;
}
.wrapper p {
  padding: 1rem 2rem;
}
a:hover img {
  opacity: 0.8;
}
.header_wrap {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin: 0 auto;
}
.logo,
.sns-box {
  width: 30%;
}
.webreservation {
  display: flex;
  width: 30%;
  justify-content: flex-end;
}

/* ------------------SNSアイコン---------------------- */
.sns-box {
  display: flex;
  gap: 1rem;
  justify-content: end;
  margin-right: 50px;
}
.btn-sns {
  width: 72px;
  height: 72px;
  padding-top: 1rem;
  box-sizing: border-box;
  border-radius: 0.2rem;
  color: white;
  text-align: center;
  text-decoration: none;
  line-height: 1;
}
.btn-sns a {
  color: #fff;
}

.btn-sns div {
  margin-top: 0.5rem;
  font-size: 0.8rem;
}
.btn-sns img {
  width: 24px;
  height: 24px;
}
.btn-sns:hover {
  transform: translateY(-0.5rem);
  transition: 0.5s;
  opacity: 0.8;
}

.btn-instagram,
.btn-line {
  background-color: #6a4834;
}

/*-------------------- nav -----------------------------------*/
.navwrap {
  height: 90px;
  background-color: #f3e9d4;
}
ul.gnav-navi-1 {
  background: #f3e9d4;
  padding: 0;
  text-align: center;
}
ul.gnav-navi-1 li {
  display: inline-block;
  font-size: 1rem;
}
li span.subnavmenu {
  color: #000;
  font-size: 0.8em;
}
ul.gnav-navi-1 li a {
  display: block;
  padding: 1em;
  color: #1c0000;
  text-decoration: none;
}
ul.gnav-navi-1 a::first-line {
  font-size: 16px;
  font-weight: bold;
}
ul.gnav-navi-1 li:hover {
  background: #f9ebf4;
  border-bottom: 5px solid #ff7f50;
}
li.hover {
  background: #f9ebf4;
  border-bottom: 5px solid #ff7f50;
}
/* -------------パンくずリスト---------------------- */
.breadcrumb {
  background-color: #6a4834;
}
.breadcrumb ul {
  display: flex;
  align-items: center;
  padding-bottom: 6px;
  background-color: #6a4834;
}
.breadcrumb li {
  margin-left: 1rem;
  color: #fff;
}
.breadcrumb li a {
  font-size: 0.8rem;
  color: #fff;
}
.breadcrumb li a:hover {
  color: #f8b9de;
}
.breadcrumb li:not(:first-child)::before {
  content: ">";
  font-size: 0.8rem;
  top: 50%;
  margin-right: 1rem;
  display: inline-block;
}
/*-----カード---------------*/

/* ----------------------menu_page---------------------------- */
.CardList {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px 40px;
}
.Card {
  display: grid;
  row-gap: 20px;
  min-height: 100px;
  padding: 10px 20px;
  background-color: #f3e9d4;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.Cardpanel {
  display: grid;
  row-gap: 20px;
  min-height: 100px;
  padding: 10px 40px;
  background-color: #f3e9d4;
  color: #fff;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 8px;
}
.Card2 {
  background-image: url(../images/room.jpg);
}
.Card3 {
  background-image: url(../images/open.jpg);
}
.Card2:hover,
.Card3:hover {
  cursor: pointer;
  background-image: none;
  background-color: #f3e9d4;
  color: #000;
  transition: color 1s ease-in-out;
}
.Card2 h3,
.Card3 h3,
.CreditCard h3 {
  margin-top: 2rem;
}
.Card p {
  margin: 0;
  padding: 0;
}
span {
  align-self: end;
  justify-self: end;
}
span.kakaku {
  font-family: serif;
  font-size: 2rem;
}
span.kakaku::after {
  content: "円";
  font-size: 1rem;
}

/* -------------STAFF------------- */

.staffcard {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  row-gap: 20px;
  min-height: 100px;
  padding: 10px 20px;
  margin-bottom: 40px;
  background-color: #ffffff;
  border-radius: 8px;
}
.staffs {
  width: 80%;
  margin: 10px auto;
  padding: 20px 40px;
  background-color: #f3e9d4;
  border-radius: 8px;
  position: relative;
}
.staff {
  width: 80%;
  height: auto;
  display: block;
  margin: 20px auto;
  border-radius: 10px;
  box-shadow: 3px 3px 15px -5px #886d5d;
}
.staffother {
  width: 120px;
  border: solid 2px #fff;
  border-radius: 50%;
  position: absolute;
  right: 0;
  bottom: 50%;
}
/*---footernav--------------------------------------------*/
footer {
  max-width: 1280px;
  height: 80px;
  background-color: #1c0000;
  width: 100%;
  bottom: 0;
}
footer p {
  text-align: center;
  color: #fff;
  font-size: 0.8rem;
  padding-top: 0.8rem;
}

.page_top {
  position: fixed;
  bottom: 60px;
  right: 20px;
  padding: 10px;
  background-color: rgb(98, 72, 0, 0.5);
  color: #ffffff;
  border-radius: 5px;
  text-decoration: none;
  transition: opacity 0.3s;
}
/* Navbar & Navmenu color */
:root {
  --background-navbar: rgba(14, 6, 6, 0.9);
}
.footer {
  max-width: 1280px;
  background: var(--background-navbar);
  position: relative;
  width: 100%;
  height: 52px;
}
/* Nav items */
.menu {
  list-style: none;
  position: absolute;
  width: 100%;
  height: auto;
  bottom: 0;
  margin-bottom: 52px;
  padding: 0 0 10px 0;
  clear: both;
  background: var(--background-navbar);
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
  transform: scale(1, 0);
  transform-origin: bottom;
}

/* Hamburger menu button */
.menu-btn:checked ~ .menu {
  transform: scale(1, 1);
  transform-origin: bottom;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}

/* Hamburger menbu text */
.menu a {
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 2px;
  font-size: 16px;
  text-transform: capitalize;
  color: #ffffff;
  opacity: 0;
  transition: 0.5s;
}
.menu a:hover {
  background-color: #f8b9de;
  padding: 1rem;
  color: #000;
}

.menu li {
  border-top: 1px solid rgb(116, 116, 116);
  padding: 15px 0;
  margin: 0 54px;
  opacity: 0;
  transition: 0.5s;
}

.menu-btn:checked ~ .menu a,
.menu-btn:checked ~ .menu li {
  opacity: 1;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.2s;
}

.menu-btn {
  display: none;
}

.menu-icon {
  display: inline-block;
  position: relative;
  cursor: pointer;
  padding: 24px 14px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.navicon {
  background: #ddd;
  display: block;
  height: 3px;
  width: 26px;
  position: relative;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}

.navicon:before,
.navicon:after {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  background: #ddd;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}

.navicon:before {
  top: 9px;
}

.navicon:after {
  bottom: 9px;
}

/* Hamburger Menu Animation Start */
.menu-btn:checked ~ .menu-icon .navicon:before {
  transform: rotate(-45deg);
}

.menu-btn:checked ~ .menu-icon .navicon:after {
  transform: rotate(45deg);
}

.menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before {
  top: 0;
}
.menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
  bottom: 0;
}

.menu-btn:checked ~ .menu-icon .navicon {
  background: rgba(0, 0, 0, 0);
  transition: 0.2192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}
/* Hamburger Menu Animation End */

/* Navbar Container */
.navtext-container {
  width: 100%;
  height: 52px;
  position: absolute;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Navbar Text */
.navtext {
  position: absolute;
  text-transform: uppercase;
  color: #ddd;
  letter-spacing: 4px;
  font-size: 20px;
}
.footer {
  display: none;
}
/*---btn--------------------------------------------*/
button {
  background-color: #f6916b;
  color: #fff;
  text-shadow: 1px 1px 2px #333;
  padding: 10px 20px;
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: 5px;
  margin-left: 30px;
  text-align: left;
}

/*------------------------------------------------------*/
@media screen and (max-width: 600px) {
  /* 600px以下の画面サイズで適用されるスタイル */
  .sns-box {
    display: none;
  }
  .navwrap {
    display: none;
  }
  .footer {
    display: block;
    position: fixed;
    bottom: 0;
  }
  .wrapper {
    display: block;
  }
  .circle {
    width: 200px;
    height: 200px;
    display: block;
    margin: 0 auto;
  }
  button {
    font-size: 1rem;
  }
}
@media screen and (max-width: 470px) {
  h2 {
    font-size: 1.2rem;
  }
}
