@charset "UTF-8";
html {
  display: flex;
  flex-direction: column;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  margin-top: 85px;
  min-height: 1px;
}

footer {
  margin-top: auto;
}

body {
  overflow-x: hidden;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  color: #444;
  background: #ffffff;
}
@media (max-width: 767px) {
  body {
    font-size: 14px;
  }
}

p {
  margin: 0;
  line-height: 1.8;
}

a {
  display: block;
  color: #d17791;
  text-decoration: none;
  overflow-wrap: anywhere;
  transition: opacity 0.3s;
}
a:hover {
  text-decoration: none;
}
@media (any-hover: hover) {
  a:hover {
    opacity: 0.8;
  }
}
a.btn {
  text-decoration: none;
}

:focus,
button:focus {
  outline: none;
}

img {
  width: 100%;
  height: auto;
}

iframe {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  border: none;
}

:root {
  scroll-behavior: auto !important;
}

section {
  padding: 50px 0;
}
@media (max-width: 767px) {
  section {
    padding: 25px 0;
  }
}

.inner {
  width: min(88%, 1200px);
  margin-inline: auto;
}

.flex {
  display: flex;
}

h2 {
  margin-bottom: 50px;
  text-align: center;
  font-size: 38px;
  font-weight: 900;
}
@media (max-width: 767px) {
  h2 {
    margin-bottom: 25px;
    font-size: 30px;
  }
}
h2 img {
  object-fit: contain;
  max-height: 50px;
}
@media (max-width: 575px) {
  h2 img {
    max-height: 30px;
  }
}
h2 span {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  font-size: 16px;
  font-weight: 400;
}
@media (max-width: 767px) {
  h2 span {
    margin-top: 10px;
    font-size: 12px;
  }
}

h3 {
  font-size: 22px;
}
@media (max-width: 767px) {
  h3 {
    font-size: 18px;
  }
}
@media (max-width: 575px) {
  h3 {
    font-size: 16px;
  }
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.note-list li {
  position: relative;
  padding-left: 1.3em;
}
.note-list li:before {
  content: "※";
  position: absolute;
  left: 0;
  font-weight: 600;
  color: #d17791;
}

@media (max-width: 767px) {
  main section:last-of-type {
    padding-bottom: 50px;
  }
}

footer {
  padding: 20px;
  background-color: #444;
}
footer .link-pageup {
  position: fixed;
  right: 40px;
  bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  font-size: 40px;
  color: #fff;
  background: #444;
}
@media (max-width: 991px) {
  footer .link-pageup {
    right: 10px;
    bottom: 10px;
  }
}
@media (max-width: 767px) {
  footer .link-pageup {
    width: 40px;
    height: 40px;
    font-size: 30px;
  }
}
footer .copyright {
  display: block;
  text-align: center;
  color: #ffffff;
}

header {
  position: fixed;
  z-index: 100;
  width: 100%;
  height: min(85px, 100%);
  padding: 10px 20px;
  background: #fff;
  border-bottom: 1px solid #444;
}
@media (max-width: 575px) {
  header {
    height: 100px;
    padding: 8px;
  }
}
header .header-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
@media (min-width: 1200px) {
  header .header-wrap {
    width: min(90%, 1200px);
    margin-inline: auto;
  }
}
@media (max-width: 575px) {
  header .header-wrap {
    height: 100%;
    gap: 10px;
    justify-content: center;
  }
}
header h1 {
  display: flex;
  font-size: 30px;
  font-weight: 700;
}
@media (max-width: 991px) {
  header h1 {
    font-size: 26px;
  }
}
@media (max-width: 575px) {
  header h1 {
    font-size: 20px;
  }
}
@media (min-width: 992px) {
  header h1 br {
    display: none;
  }
}
@media (max-width: 575px) {
  header h1 br {
    display: none;
  }
}
header .img-logo {
  width: 40vw;
  max-width: 500px;
}
@media (max-width: 575px) {
  header .img-logo {
    width: 60vw;
  }
}
header .anker-link {
  gap: 20px;
}
@media (max-width: 767px) {
  header .anker-link {
    gap: 10px;
  }
}
@media (max-width: 575px) {
  header .anker-link {
    width: 100%;
    justify-content: center;
  }
}
header .anker-link a {
  height: fit-content;
  padding: 15px 30px;
  font-weight: 600;
  color: #444;
  border: 1px solid #444;
  border-radius: 100vmax;
}
@media (max-width: 767px) {
  header .anker-link a {
    padding: 10px 15px;
    font-size: 14px;
  }
}
@media (max-width: 575px) {
  header .anker-link a {
    width: calc((100% - 10px) / 2);
    padding-block: 6px;
    text-align: center;
  }
}
@media (max-width: 360px) {
  header .anker-link a {
    font-size: 12px;
  }
}
header .anker-link i {
  margin-right: 10px;
}

.slider-main {
  position: relative;
}
@media (min-width: 769px) {
  .slider-main img {
    margin-inline: 10px;
  }
}
.slider-main .slick-arrow {
  display: none;
}
.slider-main .slick-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 20px auto;
  padding-left: 0;
  list-style-type: none;
}
.slider-main .slick-dots > li {
  position: relative;
  width: 8px;
  height: 8px;
  margin: 0 8px;
}
.slider-main .slick-dots > li.slick-active button {
  background-color: #333333;
}
.slider-main .slick-dots button {
  position: absolute;
  width: 8px;
  height: 8px;
  padding: 0;
  font-size: 0;
  color: transparent;
  border: none;
  border-radius: 50%;
  background-color: #cccccc;
}

.slider {
  display: none;
}
.slider.slick-initialized {
  display: block;
}

.slider-main .slick-dots button {
  background: #ccc;
}

.slider-main .slick-dots > li.slick-active button {
  background: #444;
}

.item-wrap {
  border: 1px solid #444;
  outline: 4px solid #444;
  outline-offset: 6px;
  border-radius: 10px;
}
@media (max-width: 767px) {
  .item-wrap {
    outline-width: 3px;
    outline-offset: 4px;
  }
}
.item-wrap h3 {
  padding-bottom: 15px;
  border-bottom: 1px solid;
}

.tab-wrap {
  padding: 0 30px 30px;
}
@media (max-width: 767px) {
  .tab-wrap {
    padding: 0 10px 30px;
  }
}

.nav-tabs {
  border: none;
}

.group-nav {
  display: flex;
  margin-inline: auto;
}
.group-nav .group-item {
  width: 25%;
}
.group-nav .group-item + .group-item {
  border-left: 1px solid #444;
}
.group-nav .group-item button {
  width: 100%;
  background: #eee;
  border: none;
  border-bottom: 1px solid #444;
  border-radius: 0;
  opacity: 0.6;
}
@media (max-width: 767px) {
  .group-nav .group-item button {
    padding: 5px 10px;
  }
}
.group-nav .group-item button.active {
  opacity: 1;
}
.group-nav .group-item:first-of-type button {
  border-top-left-radius: 10px;
}
.group-nav .group-item:last-of-type button {
  border-top-right-radius: 10px;
}
.group-nav img {
  display: block;
  max-width: 100px;
  margin-inline: auto;
}
.group-nav span {
  color: #3e212a;
  font-weight: 600;
}
@media (max-width: 767px) {
  .group-nav span {
    font-size: 12px;
  }
}

.sub-nav {
  margin: 30px 0 50px;
  justify-content: center;
  gap: 15px;
}
@media (max-width: 575px) {
  .sub-nav {
    margin: 20px 0 40px;
    gap: 5px;
  }
}
.sub-nav .nav-item {
  width: calc((100% - 105px) / 8);
}
@media (max-width: 1199px) {
  .sub-nav .nav-item {
    width: calc((100% - 45px) / 4);
  }
}
@media (max-width: 575px) {
  .sub-nav .nav-item {
    width: calc((100% - 15px) / 4);
  }
}
.sub-nav .nav-link {
  width: 100%;
  font-weight: 600;
  color: #444;
  border: 1px solid #444;
}
@media (max-width: 575px) {
  .sub-nav .nav-link {
    padding: 8px 5px;
    font-size: 11px;
  }
}
.sub-nav .nav-link.active {
  background: #444;
}

.stock-check {
  padding-left: 30px;
  margin-block: 30px;
}
@media (max-width: 767px) {
  .stock-check {
    margin-block: 20px;
    padding-left: 10px;
  }
}

.tab-pane h4,
.title-category {
  text-align: center;
}

.tab-content h3 {
  text-align: center;
}

.StyleF_Frame_ {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 50px;
}
@media (max-width: 767px) {
  .StyleF_Frame_ {
    margin-top: 20px;
    gap: 8px;
  }
}

.StyleF_Item_ {
  display: flex;
  flex-direction: column;
  width: calc((100% - 40px) / 3);
  padding: 20px;
  border: 1px solid #ccc;
}
@media (max-width: 767px) {
  .StyleF_Item_ {
    width: calc((100% - 8px) / 2);
    padding: 10px;
  }
}

.price_ {
  margin-block: 0.5em;
  text-align: right;
  font-weight: 600;
}

.goods_name_,
.name_ {
  margin-top: 10px;
  color: #444;
}
@media (max-width: 767px) {
  .goods_name_,
  .name_ {
    font-size: 12px;
  }
}

.cart_ {
  margin-top: auto;
}

.comment_,
.rdt_ {
  display: none;
}

.cart_btn_ {
  display: block;
  width: 100%;
  padding: 5px;
  text-align: center;
  font-size: 12px;
  color: #fff;
  background: #444;
  border: none;
}
.cart_btn_.closed_ {
  background: #ccc;
}
.cart_btn_.sold_out_ {
  background: #ccc;
}
.cart_btn_.reservation_ {
  background: #d17791;
}

.caution_sec .inner {
  padding: 30px 30px 50px;
  border: 1px solid #444;
  outline: 4px solid #444;
  outline-offset: 6px;
  border-radius: 10px;
}
@media (max-width: 767px) {
  .caution_sec .inner {
    padding: 20px 20px 30px;
    outline-width: 3px;
    outline-offset: 4px;
  }
}
.caution_sec .box-inner + .box-inner {
  margin-top: 30px;
}
.caution_sec h2 {
  position: relative;
  padding-bottom: 30px;
}
@media (max-width: 767px) {
  .caution_sec h2 {
    padding-bottom: 20px;
  }
}
.caution_sec h2:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  display: block;
  width: calc(100% + 60px);
  height: 1px;
  background: #444;
}
@media (max-width: 767px) {
  .caution_sec h2:after {
    width: calc(100% + 40px);
  }
}
.caution_sec h3 {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  font-weight: 600;
}
@media (max-width: 767px) {
  .caution_sec h3 {
    margin-bottom: 12px;
  }
}
.caution_sec h3:before {
  content: "";
  background: url(../img/icon-star.png) no-repeat center/contain;
  display: inline-block;
  margin-right: 5px;
  width: 20px;
  height: 20px;
}
@media (max-width: 767px) {
  .caution_sec h3:before {
    width: 15px;
    height: 15px;
  }
}
.caution_sec li:not(dl li) + li {
  margin-top: 0.5em;
}