@charset "UTF-8";
html {
  font-size: clamp(8.5px, 2.666vw, 16px) !important;
}

body {
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: #1f1f1f;
  letter-spacing: 0.05em;
}

main {
  position: relative;
}

a {
  transition: 0.3s;
}

a:hover {
  opacity: 0.7;
  text-decoration: none;
}

img {
  max-width: 100%;
  width: 100%;
}

@media (min-width: 768px) {
  html {
    font-size: 12px !important;
  }
  .pcnone {
    display: none !important;
  }
}
@media (max-width: 767.98px) {
  .spnone {
    display: none !important;
  }
}
.container {
  padding: 0;
  overflow: hidden;
  position: relative;
  background-image: url(../img/contents_back.jpg);
  background-size: 100%;
}

@media (min-width: 768px) {
  body {
    background-image: url(../img/back.avif);
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
  }
  .container {
    width: 450px;
    margin: 0 11vw 0 auto;
    box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.35);
  }
}
@media (max-width: 767.98px) {
  .container {
    width: 100%;
  }
}
.category_ttl {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8em;
  margin: 6rem 0 2rem;
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
}
.category_ttl.hot {
  color: #db3914;
}
.category_ttl.cool {
  color: #48bee4;
}

.category_ttl::before,
.category_ttl::after {
  content: "";
  width: 1.5em;
  height: 1px;
  background-color: currentColor;
  flex-shrink: 0;
}

.shop_wrap {
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.shop_wrap .shop_box {
  background-color: #fff;
  border-radius: 1rem;
  overflow: hidden;
  position: relative;
}
.shop_wrap .shop_box.hot {
  border: 2px solid #db3914;
}
.shop_wrap .shop_box.cool {
  border: 2px solid #48bee4;
}
.shop_wrap .shop_box .gentei {
  position: absolute;
  z-index: 2;
  right: 3%;
  top: 17rem;
  width: 8.5rem;
}
.shop_wrap .shop_box .img {
  position: relative;
  aspect-ratio: 600/350;
  overflow: hidden;
}
.shop_wrap .shop_box {
  /* 背景 */
}
.shop_wrap .shop_box .img_bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}
.shop_wrap .shop_box .img_bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: blur(5px);
  transform: scale(1.1); /* ぼかしで端が見えないように */
}
.shop_wrap .shop_box .img_bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.1);
}
.shop_wrap .shop_box {
  /* メイン画像 */
}
.shop_wrap .shop_box .img_main {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}
.shop_wrap .shop_box .img_main img {
  height: 100%;
  width: auto;
  display: block;
}
.shop_wrap .shop_box .info {
  padding: 2rem 1.5rem;
}
.shop_wrap .shop_box .info .category {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  width: 10rem;
  height: 3rem;
  border-radius: 200px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  position: relative;
}
.shop_wrap .shop_box .info .category::before {
  content: "";
  background-size: 100% 100%;
}
.shop_wrap .shop_box .info .category.hot {
  background-color: #db3914;
}
.shop_wrap .shop_box .info .category.hot::before {
  background-image: url(../img/hot.svg);
  width: 1.3rem;
  height: 2.1rem;
}
.shop_wrap .shop_box .info .category.cool {
  background-color: #48bee4;
}
.shop_wrap .shop_box .info .category.cool::before {
  background-image: url(../img/cool.svg);
  width: 1.8rem;
  height: 2.1rem;
}
.shop_wrap .shop_box .info .item {
  font-size: 2.1rem;
  margin-bottom: 0;
}
.shop_wrap .shop_box .info .price {
  font-size: 3.3rem;
  font-family: "Zen Old Mincho", serif;
  line-height: 1em;
  margin: 0.5rem 0;
}
.shop_wrap .shop_box .info .price > .yen {
  font-size: 1.6rem;
}
.shop_wrap .shop_box .info .txt {
  font-size: 1.5rem;
  font-weight: 500;
  margin: 1rem 0 1.5rem;
}
.shop_wrap .shop_box .info .shop_name {
  font-weight: bold;
  font-size: 1.5rem;
}
.shop_wrap .shop_box .info .shop_link {
  background-color: #91753c;
  color: #fff;
  font-weight: 500;
  padding: 1rem;
  font-size: 1.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.shop_wrap .shop_box .info .shop_link:before {
  content: "";
  background-image: url(../img/btn_arrow.svg);
  background-repeat: no-repeat;
  width: 8px;
  height: 16px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10px;
  margin: auto;
}
.shop_wrap .shop_box .soldout {
  background: #922322;
  color: #fff;
  font-weight: bold;
  text-align: center;
}

.lead_div {
  background-color: #fff;
  text-align: center;
  border-radius: 1rem;
  font-family: "Zen Old Mincho", serif;
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.35);
  font-size: 2rem;
  padding: 2.5rem 2rem;
  margin: -2rem 1.5rem 0;
  z-index: 1;
  position: relative;
  font-weight: bold;
}
.lead_div .hot {
  color: #db3914;
}
.lead_div .cool {
  color: #48bee4;
}

.menu_p {
  color: #40220f;
}

.caution {
  margin: 1rem;
}

@media (min-width: 768px) {
  .menu {
    width: 40%;
    margin: 50px auto 20px;
  }
  .menu_p {
    font-size: 16px;
    margin: 30px 0;
    text-align: center;
  }
  .caution {
    padding: 0 10px;
    font-size: 13px;
  }
}
.btn_box {
  display: flex;
  flex-direction: column;
  margin: 3rem 5rem;
  gap: 1rem;
}
.btn_box > a {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 500px;
  position: relative;
  height: 5rem;
  font-size: 1.6rem;
  background: linear-gradient(25deg, #db3914 50%, #48bee4 0);
}
.btn_box > a::before {
  content: "";
  background-size: contain;
  position: absolute;
  bottom: 0;
  top: 0;
  margin: auto;
}
.btn_box > a::after {
  content: "";
  background-image: url(../img/btn_arrow_b.svg);
  width: 1.5rem;
  height: 0.8rem;
  background-size: 100% 100%;
  position: absolute;
  right: 2rem;
  bottom: 0;
  top: 0;
  margin: auto;
}
.btn_box > a.hot {
  background: #db3914;
}
.btn_box > a.hot::before {
  background-image: url(../img/hot.svg);
  left: 2rem;
  width: 2rem;
  height: 2.8rem;
}
.btn_box > a.cool {
  background: #48bee4;
}
.btn_box > a.cool::before {
  background-image: url(../img/cool.svg);
  left: 1.9rem;
  width: 2.5rem;
  height: 2.8rem;
}

.cp_section_back {
  background-image: url(../img/cp_back.png);
  background-position: center;
  background-size: 100%;
  padding: 4rem 1.5rem;
  margin-top: 4rem;
}
.cp_section_back .cp_section {
  background-color: #fff;
  border-radius: 1rem;
  padding: 1.5rem;
}
.cp_section_back .cp_section .category_ttl {
  font-size: 2rem;
  margin-top: 2rem;
}
.cp_section_back .cp_section dl dt {
  color: #db3914;
  font-weight: bold;
  position: relative;
  font-size: 1.7rem;
  line-height: 1.3em;
  padding-left: 2rem;
  margin-bottom: 1rem;
}
.cp_section_back .cp_section dl dt::before {
  content: "";
  width: 1rem;
  height: 100%;
  border-radius: 100px;
  background-color: #db3914;
  position: absolute;
  left: 0;
  top: 0.1rem;
}
.cp_section_back .cp_section dl dd {
  font-size: 1.4rem;
  margin-bottom: 2rem;
}
.cp_section_back .cp_section dl dd strong {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
  display: inline-block;
  margin-bottom: 1rem;
}
.cp_section_back .cp_section dl dd span {
  color: #db3914;
  font-weight: bold;
}

.copyright {
  background-color: #3b3c3c;
  color: #fff;
  text-align: center;
}

@media (min-width: 768px) {
  .copyright {
    font-size: 11px;
    padding: 10px 0;
  }
}
footer div {
  text-align: center;
  font-size: 11px;
  padding: 20px 0;
}
footer div:first-child {
  background-color: #000;
  color: #fff;
}
footer div:last-child {
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .pc_menu {
    width: calc(100vw - 500px - 11vw);
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
  }
  .pc_menu .pc_menu_box {
    width: 100%;
    min-width: 290px;
    max-width: 480px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: max(300px, 50%);
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .pc_menu .pc_menu_box > a {
    width: 100%;
    margin: 0 auto;
    max-height: 350px;
  }
  .pc_menu .pc_menu_box > a > img {
    width: auto;
    max-height: 350px;
    margin: 0 auto;
    display: block;
  }
  .pc_menu .pc_menu_box > a:first-child:hover {
    opacity: 1;
  }
  .pc_menu .pc_menu_box > ul {
    list-style: none;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    margin-top: 40px;
  }
  .pc_menu .pc_menu_box > ul > li {
    width: 100%;
    border-top: 1px solid #fff;
  }
  .pc_menu .pc_menu_box > ul > li:last-child {
    border-bottom: 1px solid #fff;
  }
  .pc_menu .pc_menu_box > ul > li > a {
    color: #fff;
    padding: 10px 0;
    display: flex;
    justify-content: center;
    font-size: 20px;
    font-weight: 500;
  }
  .pc_menu .pc_menu_box > ul > li > a:hover {
    text-decoration: none;
  }
}
@media (max-width: 900px) {
  .pc_menu {
    display: none;
  }
}
.page-top {
  position: fixed;
  transition: 0.5s;
  z-index: 9;
  opacity: 0;
  visibility: hidden;
}

.page-top > .page-top_link {
  background-color: #fff;
  position: relative;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-top.show_btn {
  opacity: 1;
  visibility: visible;
}

@media (min-width: 768px) {
  .page-top {
    bottom: 20px;
    right: 20px;
    margin: 0 30px 20px auto;
    width: 70px;
  }
  .page-top > .page-top_link {
    width: 70px;
    height: 70px;
    font-size: 15px;
  }
  .page-top > .page-top_link > img {
    width: 35px;
  }
}
@media (max-width: 767.98px) {
  .page-top {
    bottom: 10px;
    right: 10px;
    width: 40px;
  }
  .page-top > .page-top_link {
    width: 40px;
    height: 40px;
    font-size: 12px;
    box-shadow: 0px 0px 15px -5px #777777;
  }
  .page-top > .page-top_link > img {
    width: 20px;
  }
}/*# sourceMappingURL=style.css.map */