@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
body {
  margin: 0;
  background-color: #B81C22;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic", "Hiragino Sans", "BIZ UDPGothic", Meiryo, sans-serif;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  text-decoration: none;
}

.global_head {
  margin: 0;
}

.wrap {
  font-family: "Noto Sans JP", sans-serif;
  box-sizing: border-box;
  color: #FFFFFF;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .wrap {
    padding: 0 0 35px;
  }
}
@media only screen and (min-width: 769px) {
  .wrap {
    max-width: 1400px;
    width: calc(100% - 40px);
    padding: 0 0 70px;
  }
}

.header {
  box-sizing: border-box;
  text-align: center;
  display: grid;
}
@media only screen and (max-width: 768px) {
  .header {
    margin: 0 0 15px;
  }
}
@media only screen and (min-width: 769px) {
  .header {
    grid-template-columns: 1fr 2fr 1fr;
    gap: 0 18px;
    margin: 0 0 40px;
  }
}
.header__item h1 {
  margin: 0;
}
.header__item h2 {
  background-color: #231815;
  margin: 0 0 15px;
}
@media only screen and (max-width: 768px) {
  .header__item h2 {
    font-size: 1.3rem;
  }
}
.header__item p {
  text-align: left;
  margin: 0 0 10px;
  font-weight: 500;
}
@media only screen and (max-width: 768px) {
  .header__item p {
    padding: 0 20px;
  }
}
.header__item p:last-of-type {
  margin: 0;
}
.header__item--hero {
  background-color: #231815;
  display: grid;
  place-content: center;
}
@media only screen and (max-width: 768px) {
  .header__item--hero {
    order: 1;
    padding: 5px 25px;
  }
}
@media only screen and (max-width: 768px) {
  .header__item--left {
    display: none;
    order: 2;
    margin: 0 0 20px;
  }
}
.header__item--left p {
  line-height: 1.9;
  font-weight: 700;
}
@media only screen and (max-width: 768px) {
  .header__item--left p {
    font-size: 0.95rem;
  }
}
@media only screen and (min-width: 769px) {
  .header__item--left p {
    font-size: clamp(0.7rem, 0.265rem + 1.11vw, 1.1rem);
  }
}
@media only screen and (max-width: 768px) {
  .header__item--right {
    display: none;
    order: 3;
  }
}
@media only screen and (min-width: 769px) {
  .header__item--right {
    line-height: 1.5;
  }
}
.header__item--right .header__address {
  font-size: clamp(0.8rem, 0.265rem + 1.11vw, 1rem);
}
.header__item--right .header__access {
  font-size: clamp(0.7rem, 0.265rem + 1.11vw, 0.85rem);
}
.header__item--right .header__access span {
  font-weight: 700;
}
@media only screen and (max-width: 768px) {
  .header__map {
    margin: 20px 0 0;
  }
}
@media only screen and (min-width: 769px) {
  .header__map {
    margin: 15px 0 0;
  }
}
.header__map iframe {
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .header__map iframe {
    height: 220px;
  }
}
@media only screen and (min-width: 769px) {
  .header__map iframe {
    height: 180px;
  }
}

.category-nav-container {
  position: sticky;
  top: 0;
  z-index: 999;
}

@media only screen and (max-width: 768px) {
  .category-nav-bth {
    background-color: #231815;
    text-align: center;
    display: grid;
    place-content: center;
    font-weight: 500;
    font-size: 0.95rem;
    width: 100%;
    height: 47px;
    margin: 0 auto;
    position: relative;
  }
  .category-nav-bth::after {
    content: "";
    width: 7px;
    height: 7px;
    border-top: solid 1.5px #FFFFFF;
    border-right: solid 1.5px #FFFFFF;
    transform: rotate(135deg);
    position: absolute;
    top: 17px;
    right: 20px;
    pointer-events: none;
    transition: 0.3s;
  }
  .category-nav-bth.open::after {
    top: 22px;
    transform: rotate(-45deg);
  }
}
@media only screen and (min-width: 769px) {
  .category-nav-bth {
    display: none;
  }
}

@media only screen and (max-width: 768px) {
  .category-nav {
    display: none;
  }
}
.category-nav__content {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-auto-rows: 50px;
  background-color: #B81C22;
  border-top: 2px solid #B81C22;
  border-bottom: 2px solid #B81C22;
}
@media only screen and (max-width: 768px) {
  .category-nav__content {
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    width: 100%;
    position: absolute;
    top: 47px;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media only screen and (min-width: 769px) {
  .category-nav__content {
    margin: 0 0 35px;
    grid-template-columns: repeat(5, 1fr);
    gap: 5px;
    border-bottom: 5px solid #B81C22;
  }
}
.category-nav__item {
  background-color: #231815;
  display: grid;
  place-content: center;
  text-align: center;
  font-weight: 500;
  position: relative;
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 768px) {
  .category-nav__item {
    font-size: 0.9rem;
  }
}
@media only screen and (min-width: 769px) {
  .category-nav__item {
    transition: 0.3s;
  }
  .category-nav__item:hover {
    background-color: #333333;
  }
}
.category-nav__item::after {
  content: "";
  border-top: solid 1.5px #FFFFFF;
  border-right: solid 1.5px #FFFFFF;
  transform: rotate(135deg);
  position: absolute;
  top: 20px;
  right: 15px;
  pointer-events: none;
}
@media only screen and (max-width: 768px) {
  .category-nav__item::after {
    width: 6px;
    height: 6px;
  }
}
@media only screen and (min-width: 769px) {
  .category-nav__item::after {
    width: 7px;
    height: 7px;
  }
}
.category-nav a {
  color: #FFFFFF;
}
.category-nav a::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.content {
  display: grid;
}
@media only screen and (max-width: 768px) {
  .content {
    width: calc(100% - 30px);
    margin: 20px auto 0;
    gap: 30px 0;
  }
}
@media only screen and (min-width: 769px) {
  .content {
    gap: 50px 0;
  }
}
.content .block:last-of-type {
  border: none;
  padding: 0;
}
.content .category-ttl {
  font-weight: 500;
  line-height: 1;
  display: flex;
  align-items: center;
  background-color: #231815;
}
@media only screen and (max-width: 768px) {
  .content .category-ttl {
    font-size: 1.25rem;
    margin: 0 0 15px;
    padding: 7px 10px 8px;
  }
}
@media only screen and (min-width: 769px) {
  .content .category-ttl {
    font-size: 2.1rem;
    margin: 0 0 20px;
    padding: 7px 15px 11px;
  }
}
.content .category-ttl .icon {
  background-color: #FFFFFF;
  border-radius: 50%;
  display: grid;
  place-content: center;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .content .category-ttl .icon {
    width: 23px;
    height: 23px;
    margin-right: 8px;
    top: 1px;
  }
}
@media only screen and (min-width: 769px) {
  .content .category-ttl .icon {
    width: 38px;
    height: 38px;
    margin-right: 10px;
    top: 2px;
  }
}
.content .category-ttl .icon img {
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .content .category-ttl .icon img {
    max-width: 17px;
    max-height: 17px;
  }
}
@media only screen and (min-width: 769px) {
  .content .category-ttl .icon img {
    max-width: 25px;
    max-height: 25px;
  }
}
.content .items-list {
  display: grid;
}
@media only screen and (max-width: 768px) {
  .content .items-list {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: max-content 43px;
    gap: 17px 10px;
    grid-template-areas: "item1 item2" "link link";
  }
}
@media only screen and (min-width: 769px) {
  .content .items-list {
    /*
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: max-content max-content 70px;
    gap: 10px 10px;
    grid-template-areas:
    "item1 item2 item3 item4 item5"
    "item6 item7 item8 item9 item10"
    "link link link link link";
    */
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: max-content 70px;
    gap: 10px 10px;
    grid-template-areas: "item1 item2 item3 item4 item5 item6" "link link link link link link";
  }
}
.content .items {
  text-align: center;
  color: #231815;
  background-color: #FFFFFF;
  position: relative;
}
@media only screen and (min-width: 769px) {
  .content .items:hover a {
    transition: 0.3s;
    opacity: 0.7;
  }
}
.content .items::before {
  content: "";
  background: url(../img/new.png?1023) no-repeat top left/contain;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  pointer-events: none;
}
@media only screen and (max-width: 768px) {
  .content .items::before {
    width: 45px;
    height: 45px;
  }
}
@media only screen and (min-width: 769px) {
  .content .items::before {
    width: 55px;
    height: 55px;
  }
}
.content .items:nth-of-type(1) {
  grid-area: item1;
}
.content .items:nth-of-type(2) {
  grid-area: item2;
}
.content .items:nth-of-type(3) {
  grid-area: item3;
}
.content .items:nth-of-type(4) {
  grid-area: item4;
}
.content .items:nth-of-type(5) {
  grid-area: item5;
}
.content .items:nth-of-type(6) {
  grid-area: item6;
}
@media only screen and (max-width: 768px) {
  .content .items:nth-of-type(3), .content .items:nth-of-type(4), .content .items:nth-of-type(5), .content .items:nth-of-type(6), .content .items:nth-of-type(7), .content .items:nth-of-type(8), .content .items:nth-of-type(9), .content .items:nth-of-type(10) {
    display: none;
  }
}
.content .items a::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99;
}
.content .items__img {
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: linear-gradient(rgba(35, 24, 21, 0.03) 1px, transparent 0), linear-gradient(90deg, rgba(35, 24, 21, 0.05) 1px, transparent 0);
  background-size: 18px 18px;
  padding: 10px 10px 22px;
  box-sizing: border-box;
}
@media only screen and (max-width: 768px) {
  .content .items__img {
    height: 190px;
  }
}
@media only screen and (min-width: 769px) {
  .content .items__img {
    height: 260px;
  }
}
.content .items__img img {
  width: auto;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(35, 24, 21, 0.3));
}
.content .items__text {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  box-sizing: border-box;
  text-shadow: 1px 1px 0 #FFFFFF, -1px 1px 0 #FFFFFF, -1px -1px 0 #FFFFFF, 1px -1px 0 #FFFFFF;
  background: linear-gradient(transparent, rgba(255, 255, 255, 0.9) 40%);
}
@media only screen and (max-width: 768px) {
  .content .items__text {
    padding: 10px 7px 0;
  }
}
@media only screen and (min-width: 769px) {
  .content .items__text {
    padding: 15px 10px 0;
  }
}
.content .items__ttl {
  color: #231815;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  margin: 0 0 1px;
  font-weight: 600;
}
@media only screen and (max-width: 768px) {
  .content .items__ttl {
    font-size: 0.75rem;
  }
}
@media only screen and (min-width: 769px) {
  .content .items__ttl {
    font-size: 0.85rem;
  }
}
.content .items__price {
  color: #ED293E;
  margin: 0;
  line-height: 1;
  font-weight: 600;
}
@media only screen and (max-width: 768px) {
  .content .items__price {
    font-size: 0.85rem;
  }
}
@media only screen and (min-width: 769px) {
  .content .items__price {
    font-size: 0.95rem;
  }
}
.content .items__price span {
  font-family: "Roboto";
  font-weight: 700;
  margin-right: 2px;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .content .items__price span {
    font-size: 1.1rem;
    top: 1px;
  }
}
@media only screen and (min-width: 769px) {
  .content .items__price span {
    font-size: 1.3rem;
    top: 2px;
  }
}
.content .items-link {
  grid-area: link;
  background-color: #231815;
  margin: 0 auto;
  font-weight: 600;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .content .items-link {
    width: 220px;
    font-size: 0.85rem;
  }
}
@media only screen and (min-width: 769px) {
  .content .items-link {
    width: 350px;
    transition: 0.3s;
    margin: 10px auto 0;
  }
  .content .items-link:hover {
    background-color: #333333;
  }
  .content .items-link:hover::after {
    right: 20px;
  }
}
.content .items-link::after {
  content: "";
  border-top: solid 2px #FFFFFF;
  border-right: solid 2px #FFFFFF;
  transform: rotate(45deg);
  position: absolute;
  pointer-events: none;
  transition: 0.3s;
}
@media only screen and (max-width: 768px) {
  .content .items-link::after {
    width: 6px;
    height: 6px;
    top: 17px;
    right: 20px;
  }
}
@media only screen and (min-width: 769px) {
  .content .items-link::after {
    width: 7px;
    height: 7px;
    top: 25px;
    right: 25px;
  }
}
.content .items-link a {
  color: #FFFFFF;
  width: 100%;
  height: 100%;
  display: grid;
  place-content: center;
}

.loading {
  display: grid;
  place-content: center;
  padding: 1rem;
}

.loader {
  margin: auto;
  border: 10px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  border-top: 10px solid #ED293E;
  width: 40px;
  height: 40px;
  animation: spinner 1.5s linear infinite;
}

@keyframes spinner {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.to-top {
  display: none;
  background-color: #231815;
  color: #FFFFFF;
  border-radius: 50px;
  display: grid;
  place-content: center;
  font-family: "Roboto";
  font-weight: 500;
  letter-spacing: 0.05rem;
  position: fixed;
  z-index: 15;
  cursor: pointer;
}
@media only screen and (max-width: 768px) {
  .to-top {
    width: 50px;
    height: 50px;
    font-size: 0.55rem;
    bottom: 13px;
    right: 13px;
  }
}
@media only screen and (min-width: 769px) {
  .to-top {
    width: 60px;
    height: 60px;
    font-size: 0.65rem;
    bottom: 20px;
    right: 20px;
    transition: 0.3s;
  }
  .to-top:hover {
    background-color: #333333;
  }
}
.to-top::before {
  content: "";
  border-top: solid 2px #FFFFFF;
  border-right: solid 2px #FFFFFF;
  transform: rotate(315deg);
  width: 9px;
  height: 9px;
  pointer-events: none;
  position: relative;
  top: 1.5px;
}
@media only screen and (max-width: 768px) {
  .to-top::before {
    left: 3.5px;
  }
}
@media only screen and (min-width: 769px) {
  .to-top::before {
    left: 5px;
  }
}

@media only screen and (min-width: 769px) {
  .sponly {
    display: none;
  }
}

@media only screen and (max-width: 768px) {
  .pconly {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */