/******************************/
/* SLIDER */
/******************************/
.p-main-slider .bx-wrapper .bx-viewport {
  border: 0;
  box-shadow: none;
  left: 0;
}
.p-main-slider .bx-wrapper img {
  margin: 0 auto;
  width: 100%;
}
.p-main-slider .bx-wrapper .bx-pager {
  padding-top: 0;
  bottom: -40px;
}
@media screen and (max-width: 767px) {
  .p-main-slider .bx-wrapper .bx-pager {
    bottom: -25px;
  }
}
.p-main-slider .bx-wrapper .bx-pager.bx-default-pager a {
  margin-left: 10px;
  margin-right: 10px;
  background: #dddddd;
}

/******************************/
/* HERO */
/******************************/
.p-hero {
  position: relative;
  overflow: hidden;
  padding-top: 120px;
  padding-bottom: 90px;
  background: radial-gradient(circle at 15% 20%, #fff4e4 0%, #f5e4d1 45%, #efe2d2 100%);
}
@media screen and (max-width: 1023px) {
  .p-hero {
    padding-top: 90px;
    padding-bottom: 75px;
  }
}
@media screen and (max-width: 767px) {
  .p-hero {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.p-hero:before,
.p-hero:after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(176, 116, 69, 0.15);
  filter: blur(0);
}
.p-hero:before {
  width: 260px;
  height: 260px;
  top: -80px;
  right: 8%;
}
.p-hero:after {
  width: 200px;
  height: 200px;
  bottom: -70px;
  left: 6%;
  background: rgba(47, 74, 59, 0.12);
}
.p-hero__grain {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.07) 0,
    rgba(255, 255, 255, 0.07) 2px,
    rgba(0, 0, 0, 0.02) 2px,
    rgba(0, 0, 0, 0.02) 4px
  );
  opacity: 0.35;
  pointer-events: none;
}

.p-hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.p-hero__copy {
  flex: 1 1 55%;
  min-width: 280px;
}

.p-hero__eyebrow {
  margin: 0 0 12px 0;
  font-size: 12px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(59, 42, 34, 0.7);
}

.p-hero__title {
  margin: 0 0 20px 0;
  font-size: 52px;
  font-weight: 600;
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 0.06em;
  color: #2b1d16;
}
@media screen and (max-width: 1023px) {
  .p-hero__title {
    font-size: 42px;
  }
}
@media screen and (max-width: 767px) {
  .p-hero__title {
    font-size: 32px;
  }
}

.p-hero__lead {
  margin: 0;
  max-width: 520px;
  font-size: 16px;
  line-height: 2;
  color: rgba(43, 29, 22, 0.85);
}
@media screen and (max-width: 767px) {
  .p-hero__lead {
    font-size: 14px;
  }
}

.p-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}

.p-hero__link {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #2b1d16;
}

.p-hero__visual {
  flex: 1 1 38%;
  min-width: 260px;
  display: grid;
  gap: 22px;
  align-items: start;
}

.p-hero__mosaic {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 64px;
  gap: 12px;
}
@media screen and (max-width: 1023px) {
  .p-hero__mosaic {
    grid-auto-rows: 56px;
  }
}
@media screen and (max-width: 767px) {
  .p-hero__mosaic {
    grid-auto-rows: 50px;
  }
}

.p-hero__mosaic-item {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 28px rgba(43, 29, 22, 0.18);
}

.p-hero__mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-hero__mosaic-item.is-large {
  grid-column: 1 / span 6;
  grid-row: span 2;
}

.p-hero__mosaic-item.is-small {
  grid-column: 1 / span 3;
  grid-row: span 2;
}

.p-hero__mosaic-item.is-tall {
  grid-column: 4 / span 3;
  grid-row: span 3;
}

.p-hero__mosaic-item.is-wide {
  grid-column: 1 / span 6;
  grid-row: span 2;
}

.p-hero__card {
  width: 100%;
  padding: 26px 28px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(59, 42, 34, 0.15);
  box-shadow: 0 18px 30px rgba(43, 29, 22, 0.16);
}

.p-hero__label {
  margin: 0 0 12px 0;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(59, 42, 34, 0.6);
}

.p-hero__name {
  margin: 0 0 8px 0;
  font-size: 18px;
  font-weight: 600;
  color: #2b1d16;
}

.p-hero__note {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: rgba(43, 29, 22, 0.75);
}

.p-hero__seal {
  position: absolute;
  right: -18px;
  bottom: -18px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 2px dashed rgba(59, 42, 34, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #2b1d16;
  background: rgba(248, 241, 231, 0.9);
  box-shadow: 0 12px 20px rgba(43, 29, 22, 0.12);
}
@media screen and (max-width: 1023px) {
  .p-hero__seal {
    width: 120px;
    height: 120px;
    font-size: 12px;
  }
}
@media screen and (max-width: 767px) {
  .p-hero__seal {
    width: 110px;
    height: 110px;
    font-size: 11px;
    right: -10px;
    bottom: -10px;
  }
}

/******************************/
/* CRAFT SECTION */
/******************************/
.p-craft {
  position: relative;
  padding: 110px 0 120px;
  background: linear-gradient(140deg, #f6efe7 0%, #f2e3d4 45%, #efe7dc 100%);
  overflow: hidden;
}
@media screen and (max-width: 1023px) {
  .p-craft {
    padding: 90px 0 100px;
  }
}
@media screen and (max-width: 767px) {
  .p-craft {
    padding: 70px 0 80px;
  }
}
.p-craft:before,
.p-craft:after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(111, 73, 42, 0.12);
  filter: blur(0);
}
.p-craft:before {
  width: 220px;
  height: 220px;
  top: -60px;
  left: 6%;
}
.p-craft:after {
  width: 300px;
  height: 300px;
  bottom: -140px;
  right: 8%;
  background: rgba(47, 74, 59, 0.12);
}

.p-craft__header {
  max-width: 680px;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .p-craft__header {
    margin-bottom: 35px;
  }
}

.p-craft__eyebrow {
  margin: 0 0 12px 0;
  font-size: 12px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(59, 42, 34, 0.7);
}

.p-craft__title {
  margin: 0 0 16px 0;
  font-size: 34px;
  font-weight: 600;
  font-family: "Cormorant Garamond", serif;
  color: #2b1d16;
}
@media screen and (max-width: 1023px) {
  .p-craft__title {
    font-size: 30px;
  }
}
@media screen and (max-width: 767px) {
  .p-craft__title {
    font-size: 26px;
  }
}

.p-craft__lead {
  margin: 0;
  font-size: 15px;
  line-height: 1.9;
  color: rgba(43, 29, 22, 0.82);
}

.p-craft__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}
@media screen and (max-width: 1023px) {
  .p-craft__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 767px) {
  .p-craft__grid {
    grid-template-columns: 1fr;
  }
}

.p-craft__card {
  padding: 22px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(59, 42, 34, 0.12);
  box-shadow: 0 18px 30px rgba(43, 29, 22, 0.12);
}

.p-craft__image {
  border-radius: 16px;
  overflow: hidden;
  height: 200px;
  margin-bottom: 18px;
}
@media screen and (max-width: 1023px) {
  .p-craft__image {
    height: 180px;
  }
}
@media screen and (max-width: 767px) {
  .p-craft__image {
    height: 190px;
  }
}

.p-craft__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-craft__tag {
  margin: 0 0 10px 0;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(43, 29, 22, 0.6);
}

.p-craft__name {
  margin: 0 0 10px 0;
  font-size: 18px;
  font-weight: 600;
  color: #2b1d16;
}

.p-craft__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: rgba(43, 29, 22, 0.75);
}

.p-craft__cta {
  margin-top: 40px;
}

/******************************/
/* NEWS */
/******************************/
.p-line-informaiton {
  margin-top: 90px;
  margin-bottom: 90px;
}
@media screen and (max-width: 1023px) {
  .p-line-informaiton {
    margin-top: 90px;
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 767px) {
  .p-line-informaiton {
    margin-top: 45px;
    margin-bottom: 45px;
  }
}

.p-line-informaiton-list__item {
  display: flex;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .p-line-informaiton-list__item {
    display: block;
    margin-bottom: 15px;
  }
}

.p-line-informaiton-list__date {
  width: 120px;
}

.p-line-informaiton-list__ttl {
  flex: 1;
}

/******************************/
/* グループバナー */
/******************************/
.p-group-bnr {
  margin-top: 90px;
  margin-bottom: 90px;
}
@media screen and (max-width: 1023px) {
  .p-group-bnr {
    margin-top: 50px;
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 1023px) {
  .p-group-bnr .c-slider-thema .slick-next {
    right: -10px;
  }
}
@media screen and (max-width: 767px) {
  .p-group-bnr .c-slider-thema .slick-next {
    right: -3px;
  }
}
@media screen and (max-width: 1023px) {
  .p-group-bnr .c-slider-thema .slick-prev {
    left: -10px;
  }
}
@media screen and (max-width: 767px) {
  .p-group-bnr .c-slider-thema .slick-prev {
    left: -3px;
  }
}

.p-group-bnr-list {
  margin-left: -25px;
  margin-right: -25px;
}
@media screen and (max-width: 1070px) {
  .p-group-bnr-list {
    margin-left: 0px;
    margin-right: 0px;
  }
}

.p-group-bnr-list__item {
  margin-left: 25px;
  margin-right: 25px;
  word-break: break-all;
}
@media screen and (max-width: 1023px) {
  .p-group-bnr-list__item {
    margin-left: 12px;
    margin-right: 12px;
  }
}
.p-group-bnr-list__item img {
  width: 100%;
}

.p-group-bnr-list__ttl {
  margin-top: 15px;
}

/******************************/
/* INFORMATION */
/******************************/
.p-information {
  margin-top: 90px;
  margin-bottom: 90px;
  padding: 60px 90px;
  background: url(https://img.shop-pro.jp/tmpl_img/87/bg-grid.png) repeat;
  color: #2d2d2d;
}
@media screen and (max-width: 1023px) {
  .p-information {
    margin-top: 60px;
    margin-bottom: 45px;
    margin-left: 25px;
    margin-right: 25px;
    padding: 45px 45px;
  }
}
@media screen and (max-width: 767px) {
  .p-information {
    margin-left: 0;
    margin-right: 0;
    padding: 35px 25px;
  }
}

/******************************/
/* CONCEPT */
/******************************/
.p-concept-box {
  display: flex;
  flex-wrap: wrap;
  margin-top: 75px;
  margin-bottom: 105px;
}
@media screen and (max-width: 1023px) {
  .p-concept-box {
    margin-top: 45px;
    margin-bottom: 75px;
    margin-left: 25px;
    margin-right: 25px;
  }
}
@media screen and (max-width: 767px) {
  .p-concept-box {
    display: block;
    margin-bottom: 60px;
    margin-left: 0;
    margin-right: 0;
  }
}

.p-concept-box__logo {
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px;
  width: 330px;
  min-height: 300px;
  background: #fafafa;
  text-align: center;
}
@media screen and (max-width: 1023px) {
  .p-concept-box__logo {
    padding: 45px;
    width: 220px;
    min-height: 195px;
  }
}
@media screen and (max-width: 767px) {
  .p-concept-box__logo {
    padding: 30px 15px;
    width: auto;
    min-height: 80px;
  }
}
.p-concept-box__logo img {
  max-width: 210px;
}
@media screen and (max-width: 1023px) {
  .p-concept-box__logo img {
    max-width: 130px;
  }
}
@media screen and (max-width: 767px) {
  .p-concept-box__logo img {
    max-width: 120px;
  }
}

.p-concept-box__txt {
  box-sizing: border-box;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 60px 120px;
  background: url(https://img.shop-pro.jp/tmpl_img/87/bg.gif) no-repeat center center #aaaaaa;
  background-size: cover;
  color: #ffffff;
}
@media screen and (max-width: 1023px) {
  .p-concept-box__txt {
    padding: 45px;
  }
}
@media screen and (max-width: 767px) {
  .p-concept-box__txt {
    padding: 20px 25px;
  }
}
.p-concept-box__txt:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
}

.p-concept-box__body {
  position: relative;
  z-index: 10;
}

/******************************/
/* RECOMMEND ITEMS */
/******************************/
.c-ttl-bg.is-recommend:before {
  background: url(https://img.shop-pro.jp/tmpl_img/87/bg.gif) center center no-repeat;
  background-size: cover;
}
.p-recommend {
  overflow: hidden;
  padding-bottom: 90px;
}
@media screen and (max-width: 1023px) {
  .p-recommend {
    padding-bottom: 60px;
  }
}
@media screen and (max-width: 767px) {
  .p-recommend {
    padding-bottom: 30px;
  }
}

@media screen and (max-width: 1023px) {
  .p-recommend-list {
    margin-left: 25px;
    margin-right: 25px;
  }
}
@media screen and (max-width: 767px) {
  .p-recommend-list {
    margin-left: 0;
    margin-right: 0;
  }
}

/******************************/
/* TOP PICK UP ITEMS */
/******************************/
.p-pickup {
  padding-top: 120px;
  padding-bottom: 120px;
  background: #fafafa;
}
@media screen and (max-width: 1023px) {
  .p-pickup {
    padding-top: 90px;
    padding-bottom: 90px;
  }
}
@media screen and (max-width: 767px) {
  .p-pickup {
    padding-top: 45px;
    padding-bottom: 60px;
  }
}

.p-pickup-list {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .p-pickup-list {
    margin-top: 0;
    margin-left: -25px;
    margin-right: -25px;
  }
}

.p-pickup-list__item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 75px;
  word-break: break-all;
}
@media screen and (max-width: 1023px) {
  .p-pickup-list__item {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 767px) {
  .p-pickup-list__item {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 45px;
    max-width: 600px;
  }
}
.p-pickup-list__item:last-child {
  margin-bottom: 0;
}
.p-pickup-list__item:nth-child(even) .p-pickup-list__txt {
  order: -1;
}
@media screen and (max-width: 1023px) {
  .p-pickup-list__item:nth-child(even) .p-pickup-list__txt {
    padding-left: 25px;
    padding-right: 60px;
  }
}

.p-pickup-list__img {
  overflow: hidden;
  position: relative;
  width: 53%;
  height: 28vw;
  opacity: 1;
  transform: translate(0, 0);
}
@media screen and (min-width: 1270px) {
  .p-pickup-list__img {
    max-height: 365px;
  }
}
@media screen and (max-width: 1023px) {
  .p-pickup-list__img {
    width: 53%;
    height: 28vw;
  }
}
@media screen and (max-width: 767px) {
  .p-pickup-list__img {
    width: auto;
    height: 55vw;
  }
}
.p-pickup-list__img:before, .p-pickup-list__img:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.p-pickup-list__img .p-pickup-list__img-bg {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 100%;
  height: 100%;
  transition: all 0.4s 0.6s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  background: #000000;
}
.p-pickup-list__img:after {
  transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  background: #fff;
}
.p-pickup-list__img:before {
  transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  background: #fff;
}
.p-pickup-list__img.faded .p-pickup-list__img-bg, .p-pickup-list__img.faded:after {
  width: 0;
}
.p-pickup-list__img img {
  position: relative;
  top: 50%;
  transform: translate(0, -50%);
  width: 100%;
}

.p-pickup-list__txt {
  box-sizing: border-box;
  flex: 1;
  padding-left: 70px;
  padding-right: 70px;
}
@media screen and (max-width: 1023px) {
  .p-pickup-list__txt {
    padding-left: 60px;
    padding-right: 25px;
    width: 47%;
  }
}
@media screen and (max-width: 767px) {
  .p-pickup-list__txt {
    margin-top: 20px;
    padding-left: 25px;
    padding-right: 25px;
    width: auto;
  }
}

.p-pickup-list__ttl {
  margin-top: 0;
  margin-bottom: 15px;
  line-height: 1.4;
  font-size: 24px;
  font-weight: normal;
}
@media screen and (max-width: 767px) {
  .p-pickup-list__ttl {
    margin-bottom: 10px;
    font-size: 17px;
  }
}
.p-pickup-list__ttl img {
  display: none !important;
}

.p-pickup-list__btn {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .p-pickup-list__btn {
    margin-top: 20px;
  }
}

/******************************/
/* TOP RANKING */
/******************************/
@media screen and (max-width: 1023px) {
  .c-ttl-bg.is-ranking {
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 767px) {
  .c-ttl-bg.is-ranking {
    margin-bottom: 35px;
  }
}
.c-ttl-bg.is-ranking:before {
  background: url(https://img.shop-pro.jp/tmpl_img/87/bg.gif) center center no-repeat;
  background-size: cover;
}

.p-ranking {
  padding-top: 30px;
}
@media screen and (max-width: 1023px) {
  .p-ranking {
    padding-top: 90px;
  }
}
@media screen and (max-width: 767px) {
  .p-ranking {
    padding-top: 60px;
  }
}

.p-ranking-list {
  margin-bottom: 30px;
}
@media screen and (max-width: 1050px) {
  .p-ranking-list {
    margin-left: 20px;
    margin-right: 20px;
  }
}
@media screen and (max-width: 1023px) {
  .p-ranking-list {
    margin-left: 0;
    margin-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-ranking-list {
    margin-left: -12px;
    margin-right: -12px;
  }
}
.p-ranking-list .slick-prev {
  left: -5px;
  margin-top: -43px;
}
@media screen and (max-width: 1023px) {
  .p-ranking-list .slick-prev {
    left: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-ranking-list .slick-prev {
    margin-top: -30px;
  }
}
.p-ranking-list .slick-next {
  right: -5px;
  margin-top: -43px;
}
@media screen and (max-width: 1023px) {
  .p-ranking-list .slick-next {
    right: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-ranking-list .slick-next {
    margin-top: -30px;
  }
}
.p-ranking-list .slick-dotted.slick-slider {
  margin-bottom: 60px;
}
.p-ranking-list .slick-dots {
  bottom: -45px;
}
.p-ranking-list .slick-dots li {
  margin: 0 2px;
}

.p-ranking-list__item {
  position: relative;
  box-sizing: border-box;
  margin-right: 10px;
  margin-left: 10px;
  padding-bottom: 25px;
  word-break: break-all;
}
@media screen and (max-width: 1023px) {
  .p-ranking-list__item {
    margin-right: 20px;
    margin-left: 20px;
  }
}
@media screen and (max-width: 767px) {
  .p-ranking-list__item {
    margin-right: 12px;
    margin-left: 12px;
  }
}
.p-ranking-list__item.slick-active .p-ranking-list__num {
  opacity: 1;
  animation: rankingfadein 0.2s 0s;
}

.p-ranking-list__img {
  margin-bottom: 20px;
  background: #ffffff;
}
@media screen and (max-width: 767px) {
  .p-ranking-list__img {
    margin-bottom: 10px;
    text-align: center;
  }
}

.p-ranking-list__num {
  box-sizing: border-box;
  position: absolute;
  top: 0px;
  right: 0px;
  padding-top: 3px;
  min-width: 30px;
  line-height: 27px;
  font-size: 16px;
  font-weight: bold;
  background: #ffffff;
  color: #2d2d2d;
  text-align: center;
  opacity: 0;
  transition: all ease 0.1s;
}
.p-ranking-list__num.is-1 {
  background: #c5b597;
  color: #ffffff;
}
.p-ranking-list__num.is-2 {
  background: #b1b9bb;
  color: #ffffff;
}
.p-ranking-list__num.is-3 {
  background: #714d3b;
  color: #ffffff;
}

@keyframes rankingfadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.p-ranking-list__ttl {
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .p-ranking-list__ttl {
    font-size: 13px;
  }
}
.p-ranking-list__ttl img {
  vertical-align: middle;
}

.p-ranking-list__price {
  margin-top: 15px;
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .p-ranking-list__price {
    margin-top: 5px;
    font-size: 13px;
  }
}
.p-ranking-list__price.is-default {
  margin-top: 0;
}

.p-ranking-list__btn {
  position: absolute;
  bottom: 0;
  right: 0;
}

/******************************/
/* TOP SHOP */
/******************************/
.p-shop {
  padding-top: 90px;
}
@media screen and (max-width: 1023px) {
  .p-shop {
    padding-top: 60px;
  }
}
@media screen and (max-width: 767px) {
  .p-shop {
    padding-top: 30px;
  }
}

.p-shop-wrap {
  position: relative;
  overflow: hidden;
  padding-top: 45px;
  padding-bottom: 45px;
}
@media screen and (max-width: 767px) {
  .p-shop-wrap {
    padding-top: 0;
    padding-bottom: 0;
  }
}
.p-shop-wrap:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}
@media screen and (max-width: 767px) {
  .p-shop-wrap:before {
    content: none;
  }
}

.p-shop__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-shop__bg {
    position: static;
    width: auto;
    height: auto;
  }
}
.p-shop__bg img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-shop__bg img {
    max-width: 100%;
  }
}
@media screen and (max-width: 1023px) {
  .p-shop__bg .simpleParallax {
    overflow: visible !important;
  }
}
@media screen and (max-width: 767px) {
  .p-shop__bg .simpleParallax {
    overflow: hidden !important;
  }
}

.p-shop-contents {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 360px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-shop-contents {
    min-height: inherit;
  }
}

.p-shop-box {
  position: relative;
  z-index: 100;
  width: 660px;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .p-shop-box {
    margin-top: 15px;
    width: auto;
    color: #2d2d2d;
  }
}

.p-shop-box__ttl {
  margin-bottom: 15px;
  line-height: 1.4;
  font-size: 24px;
}
@media screen and (max-width: 767px) {
  .p-shop-box__ttl {
    font-size: 17px;
  }
}

.p-shop-box__body {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .p-shop-box__body {
    margin-top: 0;
  }
}

.p-shop-box__url {
  margin-top: 15px;
}
.p-shop-box__url a {
  color: #ffffff;
}

/******************************/
/* Coffee Theme Overrides */
/******************************/
.p-information {
  background: var(--coffee-paper);
  border: 1px solid var(--coffee-border);
  border-radius: 28px;
  box-shadow: 0 20px 35px var(--coffee-shadow);
}

.p-concept-box__logo {
  background: var(--coffee-latte);
  border-radius: 24px 0 0 24px;
  box-shadow: inset 0 0 0 1px var(--coffee-border);
}
@media screen and (max-width: 767px) {
  .p-concept-box__logo {
    border-radius: 18px 18px 0 0;
  }
}

.p-concept-box__txt {
  border-radius: 0 24px 24px 0;
}
@media screen and (max-width: 767px) {
  .p-concept-box__txt {
    border-radius: 0 0 18px 18px;
  }
}
.p-concept-box__txt:before {
  background: rgba(43, 29, 22, 0.45);
}

.p-recommend {
  padding-bottom: 110px;
}

.p-pickup {
  background: linear-gradient(180deg, rgba(239, 226, 210, 0.8) 0%, rgba(248, 241, 231, 1) 100%);
}

.p-pickup-list__img {
  border-radius: 24px;
  box-shadow: 0 18px 30px rgba(43, 29, 22, 0.18);
}
.p-pickup-list__img .p-pickup-list__img-bg {
  background: var(--coffee-caramel);
}

.p-ranking-list__num.is-1 {
  background: #d7b48a;
}
.p-ranking-list__num.is-2 {
  background: #c2a58c;
}
.p-ranking-list__num.is-3 {
  background: #8b5a3f;
}

.p-shop-wrap:before {
  background: linear-gradient(180deg, rgba(43, 29, 22, 0.5) 0%, rgba(43, 29, 22, 0.7) 100%);
}

.p-shop-box__url a {
  color: var(--coffee-paper);
}

.p-recommend,
.p-pickup {
  scroll-margin-top: 140px;
}
@media screen and (max-width: 1023px) {
  .p-recommend,
  .p-pickup {
    scroll-margin-top: 100px;
  }
}
@media screen and (max-width: 767px) {
  .p-recommend,
  .p-pickup {
    scroll-margin-top: 70px;
  }
}
@media screen and (max-width: 767px) {
  .p-shop-box__url a {
    color: #2d2d2d;
  }
}

.p-shop-box__btn {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .p-shop-box__btn {
    margin-top: 20px;
  }
}
