@charset "UTF-8";
::selection {
  background: #a28b79;
  color: white;
}

@view-transition {
  navigation: auto;
}
body, html {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  padding: 0;
  margin: 0;
}

textarea::placeholder,
input::placeholder {
  color: #bbb;
  font-size: 14px;
}

header {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5px 15px;
  text-align: left;
  display: grid;
  grid-template-columns: 173px auto;
  align-items: center;
}

.close-wrap {
  text-align: right;
  width: auto;
}
.close-wrap button {
  border: none;
  background: #a28b79;
  color: white;
  font-size: 15px;
  letter-spacing: 0;
  border-radius: 3em;
  padding: 0.25em 0.75em 0.3em 0.75em;
  cursor: pointer;
}

footer {
  max-width: 1200px;
  margin: 0 auto;
  padding: 25px 0;
}
footer .copyright {
  text-align: center;
  font-size: 12px;
  padding: 30px 0 80px 0;
}

.container {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 15px;
  line-height: 1.5;
  letter-spacing: 0.03em;
}

.heading {
  background: #a28b79;
  width: 100%;
  padding: 20px 0;
  color: white;
}
.heading .inset {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 30px;
}
.heading .inset h1 {
  padding: 0 0 0 10px;
  margin: 0.25em 0;
  text-align: left;
  font-size: 24px;
  font-weight: 700;
  border-left: solid 3px white;
}
.heading .inset h1 small {
  font-size: 14px;
  font-weight: 400;
  display: inline-block;
  padding-right: 0.75em;
  vertical-align: middle;
}
.heading .inset h1 em {
  font-style: normal;
  display: inline-block;
  vertical-align: middle;
}
.heading .inset .shop-button {
  display: grid;
  grid-template-columns: repeat(3, auto);
  align-items: stretch;
  gap: 8px;
  justify-content: right;
  margin: 0;
  padding: 0;
  list-style: none;
}
.heading .inset .shop-button li {
  text-align: center;
}
.heading .inset .shop-button li a {
  place-content: center;
  text-decoration: none;
  color: white;
  display: block;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  padding: 0.35em 0.75em;
  border-radius: 5px;
  font-size: 14px;
  font-family: "Noto Sans JP", Sans-Serif;
  border: solid 1px rgba(255, 255, 255, 0.3);
  transition: all 0.3s;
}
.heading .inset .shop-button li a:hover {
  background: white;
  border: solid 1px rgb(255, 255, 255);
  color: #a28b79;
}
.heading .inset .shop-button li.active a {
  background: white;
  font-weight: 600;
  border: solid 1px rgb(255, 255, 255);
  color: #a28b79;
}

@media (max-width: 767px) {
  .heading {
    padding: 3vw 0 3.5vw 0;
  }
  .heading .inset {
    grid-template-columns: 1fr;
    gap: 1vw;
  }
  .heading .inset h1 {
    order: 2;
  }
}
@media (max-width: 499px) {
  .heading .inset {
    grid-template-columns: 1fr;
    gap: 1vw;
  }
  .heading .inset h1 {
    order: 2;
  }
  .heading .inset .shop-button {
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
    justify-content: center;
  }
  .heading .inset .shop-button li a {
    font-size: 13px;
  }
  .heading .inset .shop-button li a:hover {
    background: transparent;
    border: solid 1px rgba(255, 255, 255, 0.3);
    color: white;
  }
}
h2.menu-h2 {
  font-size: 22px;
  padding: 0.75em 1em;
  margin: 0;
  border-radius: 8px;
  font-weight: 600;
  text-align: left;
  color: #40220f;
  background: #e7dbd2;
}
@media (max-width: 767px) {
  h2.menu-h2 {
    font-size: 22px;
    padding: 0.5em 0.75em;
  }
}

.menu-type {
  display: grid;
  grid-template-columns: repeat(2, auto);
  align-items: center;
  justify-content: left;
  max-width: 1170px;
  margin: 0 auto;
  padding: 30px;
  box-sizing: border-box;
  gap: 30px;
}
.menu-type .type-label {
  font-size: 16px;
  font-weight: 500;
  padding: 0;
  margin: 0;
}
.menu-type ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.menu-type ul li {
  display: inline-block;
}
.menu-type ul li a {
  display: inline-block;
  font-size: 16px;
  text-decoration: none;
  font-weight: 600;
  color: #40220f;
  padding: 0.35em calc(1.5em + 20px) 0.35em 1em;
  border: solid 1px #e7dbd2;
  border-radius: 5em;
  position: relative;
  transition: all 0.3s;
}
.menu-type ul li a svg {
  position: absolute;
  right: 1em;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  fill: #e7dbd2;
  transition: all 0.3s;
}
.menu-type ul li a:hover {
  background: #e7dbd2;
}
.menu-type ul li a:hover svg {
  fill: #40220f;
  transform: translateY(-25%);
}
@media (max-width: 767px) {
  .menu-type {
    padding: 3.5vw 3.5vw 25px 3.5vw;
    display: block;
  }
  .menu-type .type-label {
    margin-bottom: 0.75em;
  }
  .menu-type ul li a {
    font-size: 15px;
    padding: 0.3em calc(1em + 20px) 0.3em 0.75em;
    border: solid 1px #e7dbd2;
  }
  .menu-type ul li a svg {
    right: 0.75em;
    width: 15px;
    height: 15px;
    fill: #40220f;
  }
  .menu-type ul li a:hover {
    background: white;
  }
  .menu-type ul li a:hover svg {
    transform: translateY(-50%);
  }
}

figure {
  margin: 0;
  padding: 0;
}

.recommend-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 30px;
  list-style: none;
  width: 100%;
  padding: 30px 50px;
  margin: 0 0 50px 0;
  box-sizing: border-box;
}
.recommend-items li a {
  text-align: center;
  display: block;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  text-decoration: none;
  font-size: 16px;
  color: #40220f;
  padding: 20px;
  border: solid 1px #f1f1f1;
  background: white;
  position: relative;
  transition: all 0.3s;
}
.recommend-items li a figure {
  aspect-ratio: 1/1;
  overflow: hidden;
  place-content: center;
}
.recommend-items li a figure img {
  width: 100%;
  height: auto;
  transition: all 0.3s;
  transform: scale(0.85);
  transform-origin: center center;
}
.recommend-items li a h3 {
  display: inline-block;
  margin: 0 auto;
  text-align: left;
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 0.75em;
}
.recommend-items li a h3 br {
  display: none;
}
.recommend-items li a p {
  display: inline-block;
  margin: 0 auto;
  font-size: 14px;
  font-weight: 500;
  text-align: left;
}
.recommend-items li a:after {
  content: url("../images/icon-zoom.svg");
  position: absolute;
  right: 30px;
  top: 30px;
  transform: scale(1);
  transition: all 0.3s;
}
.recommend-items li a:hover {
  color: black;
  border: solid 1px #a28b79;
  background: #faf7f4;
}
.recommend-items li a:hover figure img {
  transform: scale(1);
}
.recommend-items li a:hover:after {
  transform: scale(1.35);
}
@media (max-width: 1199px) {
  .recommend-items {
    padding: 25px;
    gap: 20px;
  }
}
@media (max-width: 991px) {
  .recommend-items {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}
@media (max-width: 767px) {
  .recommend-items {
    padding: 15px;
  }
  .recommend-items li a {
    padding: 15px;
  }
  .recommend-items li a figure img {
    transform: scale(1);
  }
  .recommend-items li a h3 {
    font-size: 18px;
  }
  .recommend-items li a:after {
    right: 15px;
    top: 15px;
  }
  .recommend-items li a:hover:after {
    transform: scale(1);
  }
}
@media (max-width: 499px) {
  .recommend-items {
    padding: 3vw;
    grid-template-columns: 1fr;
    gap: 3vw;
  }
  .recommend-items li a {
    border: solid 1px #e7dbd2;
  }
  .recommend-items li a figure img {
    transform: scale(1);
  }
  .recommend-items li a:after {
    transform: scale(1.35);
  }
  .recommend-items li a:hover {
    color: #40220f;
    border: solid 1px #e7dbd2;
    background: white;
  }
}

/* NEWマーク */
.wappen-new {
  position: absolute;
  right: 0;
  top: 0;
  width: 48px;
  height: 30px;
  padding-top: 18px;
  border-radius: 50%;
  background: #ffff00;
  color: #cc0000;
}

.pagetop {
  position: fixed;
  right: 30px;
  bottom: 50px;
  opacity: 0.5;
  transition: all 0.3s;
}
.pagetop svg .pagetop-maru {
  fill: white;
}
.pagetop svg .pagetop-arrow {
  fill: #40220f;
}
.pagetop:hover {
  opacity: 1;
}

.pdf-wrapper embed {
  width: 100%;
  height: 900px;
}
@media (max-width: 767px) {
  .pdf-wrapper embed {
    height: 60vh;
    overflow: auto;
  }
}

/*# sourceMappingURL=menu.css.map */
