@charset "UTF-8";

/* =============================================================
  gourmet.css
 =============================================================== */

/* gourmet
---------------------------------------------------------------- */
#page-gourmet .page-title {
  width: 34.3%;
  max-width: 660px;
}

#gourmet {
  padding: 25px 0 50px;
  background: #ffd4e2;
  width: 100%;
}

/* アンカーリンク */
#anchor {
  background: #ffd4e2;
  padding: 10px 0 35px;
  transition: all 0.5s;
}

#anchor.fixed {
  padding: 10px 0;
  position: fixed;
  top: 95px;
  left: 0;
  width: 100%;
  z-index: 40;
}

#anchor ul {
  display: flex;
  justify-content: space-between;
  gap: 3%;
}

#anchor ul li {
  width: calc((100% - 6%) / 3);
}

#anchor ul li a {
  align-items: center;
  border-radius: 100vmax;
  display: flex;
  gap: 4%;
  padding: 10px 6%;
}

#anchor ul li a.active {
  background: var(--navy);
}

.anchor__place {
  background: var(--navy);
  border-radius: 100vmax;
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 2px;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.2;
  height: 55px;
  width: 55px;
}

.active .anchor__place {
  background: var(--white);
  color: var(--black);
}

.anchor__place span {
  display: block;
  font-size: 1.7rem;
  font-family: var(--font-monda);
  line-height: 0.9;
}

.anchor__place span span {
  display: inline-block;
  vertical-align: sub;
  line-height: 0;
}

.anchor__name {
  color: var(--navy);
  font-size: 2.8rem;
  font-family: var(--font-montserrat);
  font-weight: 700;
  line-height: 1;
}

.active .anchor__name {
  color: var(--white);
}

.anchor__name span {
  display: block;
  font-size: 1.4rem;
  font-family: var(--font-zenkaku);
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 7px;
}

/* 共通 */
.shop-contents {
  background: var(--white);
  border-radius: 20px;
  margin-bottom: 30px;
  position: relative;
  padding: 65px 60px;
  overflow: hidden;
}

.shop-contents::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 143px 143px 0 0;
  border-color: var(--navy) transparent transparent transparent;
}

.shop-contents__place {
  color: var(--white);
  left: 0;
  font-size: 1.7rem;
  position: absolute;
  top: 0;
  width: 80px;
  height: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.shop-contents__place span {
  display: block;
  font-size: 3rem;
  font-family: var(--font-montserrat);
  font-weight: 500;
  line-height: 1.2;
}

.shop-contents__lead {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 5.2%;
  margin-bottom: 60px;
}

.shop-contents__text {
  flex: 1;
  line-height: 2;
}

.shop-contents__recommend {
  border: 6px solid var(--purple);
  border-radius: 35px;
  margin-bottom: 50px;
  position: relative;
  padding: 40px 50px 20px;
}

.shop-contents__recommend h4 {
  background: var(--white);
  color: var(--purple);
  font-size: 3.6rem;
  font-family: var(--font-gugi);
  font-weight: 400;
  line-height: 1.2;
  position: absolute;
  padding: 0 25px;
  left: 50%;
  top: -33px;
  transform: translateX(-50%);
}

.shop-contents__recommend a {
  display: flex;
  justify-content: space-between;
  gap: 15px;
}

.shop-contents__recommend img {
  max-width: 55.5%;
  max-height: 141px;
}

.shop-contents__recommend p {
  background: url(../images/about/gourmet/icon_arrow_purple.svg) no-repeat
    bottom right 5px;
  flex: 1;
  line-height: 1.8;
  padding-bottom: 30px;
}

@media screen and (min-width: 769px) {
  #blue-bell .swiper-recommend .swiper-wrapper,
  #foodies-stand .swiper-recommend .swiper-wrapper,
  #club38 .swiper-recommend .swiper-wrapper {
    display: flex;
    gap: 60px;
    justify-content: center;
  }

  #blue-bell .swiper-recommend .swiper-slide,
  #foodies-stand .swiper-recommend .swiper-slide,
  #club38 .swiper-recommend .swiper-slide {
    width: calc((100% - 60px) / 2);
  }

  [class^="swiper-button-prev"],
  [class^="swiper-button-next"] {
    display: none;
  }
}

.shop-contents__menu ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 45px;
}

.shop-contents__menu li {
  width: calc(100% / 3);
}

.shop-contents__menu a {
  position: relative;
  display: block;
}

.shop-contents__menu a:hover {
  opacity: 1;
}

.shop-contents__menu a::before {
  background: rgba(0, 0, 0, 0.3);
  content: "";
  height: 100%;
  opacity: 1;
  position: absolute;
  transition: all 0.5s;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 1;
}

.shop-contents__menu a:hover::before {
  background: rgba(0, 0, 0, 0.6);
}

.shop-contents__menu img {
  aspect-ratio: 327 / 206;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shop-contents__menu p {
  color: #fff;
  font-size: 3.6rem;
  font-family: var(--font-montserrat);
  font-weight: 300;
  line-height: 1;
  text-align: center;
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  z-index: 2;
}

.shop-contents__details {
  display: flex;
  gap: 5.5%;
  margin-bottom: 45px;
}

.shop-contents__slider {
  width: 37.14%;
}

.shop-contents__slider .swiper {
  margin-bottom: 10px;
}

.shop-contents__slider .swiper-slide {
  position: relative;
  transition-property: opacity;
  aspect-ratio: 365 / 242;
}

.thumb-wrapper {
  display: flex;
}

.thumb-media {
  cursor: pointer;
  transition: all 0.5s;
  opacity: 0.4;
}

.thumb-media-active {
  opacity: 1;
}

.shop-contents__detail {
  flex: 1;
}

.shop-contents__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0 35px;
  margin-bottom: 30px;
}

.shop-contents__list__title {
  color: var(--purple);
  font-weight: 700;
  line-height: 1.8;
  width: 70px;
}

.shop-contents__list__text {
  line-height: 1.8;
  width: calc(100% - 105px);
}

.shop-contents__detail .button a {
  margin: 0 0 65px;
  max-width: 324px;
}

.shop-contents__sns {
  margin-bottom: 5px;
}

.shop-contents__sns a {
  display: inline-block;
  margin-right: 15px;
}

.shop-contents__sns .fa-brands {
  color: var(--navy);
  font-size: 2.7rem;
  vertical-align: baseline;
  width: 24px;
}

.shop-contents__memo {
  font-size: 1.3rem;
}

.shop-contents__order {
  margin-bottom: 40px;
}

.shop-contents__order h4,
.shop-contents__news h4,
.shop-contents__location h4 {
  color: var(--purple);
  font-size: 5rem;
  font-family: var(--font-textmeone);
  font-weight: 400;
}

.shop-contents__order h4 {
  margin-bottom: 35px;
}

.shop-contents__order__slider,
.shop-contents__location__slider {
  position: relative;
}

.swiper-order .swiper-slide {
  position: relative;
}

.swiper-order .swiper-order__img {
  margin-bottom: 15px;
}

.swiper-order .swiper-order__img img {
  margin-left: auto;
  width: 85.57%;
}

.swiper-order .swiper-order__img span {
  align-items: center;
  background: var(--white);
  border-radius: 100vmax;
  border: 2px solid var(--purple);
  color: var(--purple);
  display: flex;
  font-size: 2.6rem;
  font-weight: 500;
  font-family: var(--font-montserrat);
  height: 54px;
  justify-content: center;
  position: absolute;
  left: 0;
  top: -15px;
  width: 54px;
}

.swiper-order .swiper-order__title {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.swiper-order .swiper-order__text {
  line-height: 1.8;
}

.shop-contents__location h4 + p {
  line-height: 2;
  margin-bottom: 30px;
}

.shop-contents__news {
  display: flex;
  gap: 20px;
  margin-bottom: 45px;
}

.shop-contents__news h4 {
  width: 110px;
}

.shop-contents__news .news__list {
  border-top: 1px solid var(--navy);
  flex: 1;
  margin-top: 15px;
}

.shop-contents__news .news__item {
  border-bottom: 1px solid var(--navy);
  position: relative;
}

.shop-contents__news .news__item::before {
  content: "";
  position: absolute;
  top: 55%;
  right: 8px;
  width: 14px;
  height: 1px;
  border-radius: 9999px;
  background-color: var(--navy);
  transform: rotate(45deg);
  transform-origin: calc(100% - 0.2px) 50%;
}

.shop-contents__news .news__item::after {
  content: "";
  position: absolute;
  top: 55%;
  right: 8px;
  width: 21px;
  height: 1px;
  border-radius: 9999px;
  background-color: var(--navy);
}

.news__item a {
  font-size: 1.8rem;
  line-height: 1.4;
  display: block;
  padding: 17px 40px 17px 20px;
}

.shop-contents__recruit a {
  display: block;
  margin: 50px auto 10px;
}

@media screen and (min-width: 769px) {
  #foodies-stand .swiper-order {
    overflow: visible;
  }

  #foodies-stand .swiper-order .swiper-wrapper,
  #foodies-stand .swiper-location .swiper-wrapper {
    display: flex;
    gap: 20px;
  }

  #foodies-stand .swiper-order .swiper-slide,
  #foodies-stand .swiper-location .swiper-slide {
    width: calc((100% - 40px) / 3);
  }
}

/* The Blue Bell */
#blue-bell .shop-contents__img {
  max-width: 36.22%;
}

#blue-bell .shop-contents__location__img {
  display: flex;
  gap: 60px;
}

#blue-bell .location__img01 {
  width: 38.2%;
}

#blue-bell .location__img02 {
  flex: 1;
}

#blue-bell .location__img02 img {
  margin-bottom: 30px;
}

#blue-bell .location__img02 p {
  text-align: center;
}

/* FOODIES STAND */
#foodies-stand .shop-contents__img {
  max-width: 47.95%;
}

#foodies-stand .shop-contents__list {
  gap: 0 20px;
  margin-bottom: 0;
}

#foodies-stand .shop-contents__list__title {
  width: 148px;
}

#foodies-stand .shop-contents__list__text {
  width: calc(100% - 168px);
}

#foodies-stand .shop-contents__list__text span {
  display: block;
  padding-left: 1em;
}

/* CLUB 38 */
#club38 .shop-contents__img {
  max-width: 48.77%;
}

#club38 .shop-contents__location__img {
  display: flex;
  justify-content: center;
  gap: 108px;
}

#club38 .location__img01 {
  width: 37.3%;
}

#club38 .location__img02 {
  width: 36.93%;
}

@media only screen and (max-width: 1024px) {
  #anchor.fixed {
    top: 60px;
  }

  #anchor ul {
    gap: 2%;
  }

  #anchor ul li {
    width: calc((100% - 4%) / 3);
  }

  #anchor ul li a {
    gap: 4%;
    padding: 10px 5%;
  }

  .anchor__place {
    font-size: 1.1rem;
    height: 45px;
    width: 45px;
  }

  .anchor__place span {
    font-size: 1.4rem;
  }

  .anchor__name {
    font-size: 2.1rem;
  }

  .anchor__name span {
    font-size: 1.2rem;
  }

  .shop-contents__recommend a {
    flex-direction: column;
  }

  .shop-contents__recommend img {
    max-width: 100%;
    width: 100%;
  }

  .shop-contents__menu p {
    font-size: 2.8rem;
  }
}

@media only screen and (max-width: 768px) {
  #page-gourmet .page-title {
    width: 68%;
    max-width: 511px;
  }

  #gourmet {
    padding: 30px 0;
  }

  #header.active + #breadcrumb + #page-title__block + #gourmet {
    padding: 60px 0 50px;
  }

  #anchor {
    padding: 10px 0 25px;
  }

  #anchor.fixed {
    top: auto;
    /* bottom: 108px; */
    position: relative;
  }

  #anchor ul {
    flex-direction: column;
    gap: 10px;
  }

  /* #anchor.fixed ul {
    gap: 5px;
  } */

  #anchor ul li {
    width: 100%;
  }

  #anchor ul li a {
    border: 2px solid var(--navy);
    padding: 8px 5%;
  }

  /* #anchor.fixed ul li a {
    padding: 2px 5%;
  } */

  #anchor ul li a:hover {
    opacity: 1;
  }

  .anchor__place {
    font-size: 1.2rem;
    height: 50px;
    width: 50px;
  }

  /* #anchor.fixed .anchor__place {
    font-size: 0.8rem;
    height: 35px;
    width: 35px;
  } */

  .anchor__place span {
    font-size: 1.6rem;
  }

  /* #anchor.fixed .anchor__place span {
    font-size: 1rem;
  } */

  .anchor__name {
    font-size: 2.5rem;
  }

  /* #anchor.fixed .anchor__name {
    font-size: 1.8rem;
  } */

  .anchor__name span {
    font-size: 1.4rem;
    margin-bottom: 5px;
  }

  /* #anchor.fixed .anchor__name span {
    font-size: 1rem;
    margin-bottom: 0;
  } */

  .shop-contents {
    border-radius: 10px;
    padding: 35px 20px;
  }

  .shop-contents::before {
    border-width: 98px 98px 0 0;
  }

  .shop-contents__place {
    font-size: 1.4rem;
    width: 55px;
    height: 60px;
  }

  .shop-contents__place span {
    font-size: 2.2rem;
  }

  .shop-contents__lead {
    flex-direction: column;
    gap: 25px;
    margin-bottom: 25px;
  }

  .shop-contents__recommend {
    border: 4px solid var(--purple);
    margin-bottom: 30px;
    padding: 30px 35px 15px;
  }

  .shop-contents__recommend h4 {
    font-size: 2.7rem;
    top: -18px;
    padding: 0 18px;
  }

  .shop-contents__recommend a {
    gap: 6px;
  }

  .shop-contents__recommend img {
    aspect-ratio: 195 / 108;
    max-width: 100%;
    max-height: 100%;
  }

  .shop-contents__recommend p {
    font-size: 1.4rem;
  }

  [class^="swiper-button-prev"],
  [class^="swiper-button-next"] {
    position: absolute;
    top: 50%;
    width: 12px;
    height: 16px;
    z-index: 1;
    transform: translateY(-50%);
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s;
  }

  [class^="swiper-button-prev"]::after,
  [class^="swiper-button-next"]::after {
    content: "";
    display: block;
    width: 12px;
    height: 12px;
    border-style: solid;
    border-width: 2px 2px 0 0;
    border-color: #6c6c6c;
    transform: rotate(45deg);
  }

  [class^="swiper-button-prev"]::after {
    transform: rotate(-135deg);
  }

  [class^="swiper-button-next"]::after {
    transform: rotate(45deg);
  }

  [class^="swiper-button-prev"] {
    left: 13px;
  }

  [class^="swiper-button-next"] {
    right: 13px;
  }

  .swiper-button-disabled {
    opacity: 0;
    pointer-events: none;
  }

  [class^="swiper-pagination"] {
    position: relative;
    margin-top: 5px;
    font-size: 1rem;
    line-height: 1;
    text-align: center;
    height: 10px;
  }

  .swiper-pagination-bullet {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #bebebe;
    border-radius: 50%;
    margin: 0 4px;
    transition: all 0.5s;
  }

  .swiper-pagination-bullet-active {
    background: var(--purple);
  }

  .shop-contents__menu {
    margin-left: -20px;
    margin-right: -20px;
    width: calc(100% + 40px);
  }

  .shop-contents__menu ul {
    margin-bottom: 30px;
  }

  .shop-contents__menu li {
    width: calc(100% / 2);
  }

  .shop-contents__menu p {
    font-size: 1.8rem;
  }

  .shop-contents__details {
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
  }

  .shop-contents__slider {
    margin-left: -20px;
    margin-right: -20px;
    width: calc(100% + 40px);
  }

  .shop-contents__slider .swiper-slide {
    aspect-ratio: 315 / 202;
  }

  .shop-contents__list {
    gap: 0 20px;
    margin-bottom: 15px;
  }

  .shop-contents__list__title {
    width: 60px;
  }

  .shop-contents__list__text {
    width: calc(100% - 80px);
  }

  .shop-contents__detail .button a {
    margin: 0 0 15px;
    max-width: 275px;
    padding: 8px;
  }

  .shop-contents__order {
    margin-bottom: 25px;
  }

  .shop-contents__order h4,
  .shop-contents__news h4,
  .shop-contents__location h4 {
    font-size: 3.3rem;
  }

  .shop-contents__order h4 {
    margin-bottom: 10px;
  }

  .shop-contents__order__slider {
    padding: 0 20px;
  }

  .swiper-order .swiper-slide {
    padding-top: 15px;
  }

  .swiper-order .swiper-order__img {
    aspect-ratio: 224 / 153;
  }

  .swiper-order .swiper-order__img img {
    margin-left: auto;
    width: 85.57%;
  }

  .swiper-order .swiper-order__img span {
    align-items: center;
    background: var(--white);
    border-radius: 100vmax;
    border: 2px solid var(--purple);
    color: var(--purple);
    display: flex;
    font-size: 2.6rem;
    font-weight: 500;
    font-family: var(--font-montserrat);
    height: 54px;
    justify-content: center;
    position: absolute;
    left: 0;
    top: 0;
    width: 54px;
  }

  .swiper-order .swiper-order__title {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }

  .swiper-order .swiper-order__text {
    line-height: 1.8;
  }

  .swiper-button-prev03 {
    left: -5px;
    top: 26%;
  }

  .swiper-button-next03 {
    right: -5px;
    top: 26%;
  }

  .swiper-pagination03 {
    margin-top: 15px;
  }

  .shop-contents__location h4 + p {
    line-height: 1.8;
    margin-bottom: 20px;
  }

  .shop-contents__location__slider {
    padding: 0 10px;
  }

  .swiper-order .swiper-location__img {
    aspect-ratio: 250 / 155;
  }

  .swiper-button-prev04 {
    left: -5px;
    top: 35%;
  }

  .swiper-button-next04 {
    right: -5px;
    top: 35%;
  }

  .swiper-pagination04 {
    margin-top: 15px;
  }

  .shop-contents__news {
    flex-direction: column;
    gap: 5px;
    margin-bottom: 25px;
  }

  .shop-contents__news .news__list {
    margin-top: 0;
  }

  .news__item a {
    font-size: 1.6rem;
    line-height: 1.6;
    padding: 10px 45px 10px 10px;
  }

  .shop-contents__recruit a {
    margin: 30px auto 0;
  }

  /* The Blue Bell */
  #blue-bell .shop-contents__img {
    max-width: 69.84%;
  }

  #blue-bell .shop-contents__location__img {
    flex-direction: column;
    gap: 30px;
  }

  #blue-bell .location__img01 {
    width: 100%;
  }

  #blue-bell .location__img01 img {
    margin: 0 auto;
  }

  #blue-bell .location__img02 img {
    margin: 0 auto 15px;
  }

  #blue-bell .location__img02 p {
    text-align: left;
  }

  /* FOODIES STAND */
  #foodies-stand .shop-contents__img {
    max-width: 80%;
    padding: 18px 0 18px 25px;
    box-sizing: unset;
  }

  #foodies-stand .shop-contents__list__title {
    width: 60px;
  }

  #foodies-stand .shop-contents__list__text {
    width: calc(100% - 80px);
  }

  #foodies-stand .shop-contents__list__title:last-of-type,
  #foodies-stand .shop-contents__list__text:last-of-type {
    width: 100%;
  }

  /* CLUB 38 */
  #club38 .shop-contents__img {
    max-width: 76.19%;
    padding: 5px 0 10px 25px;
    box-sizing: unset;
  }

  #club38 .shop-contents__location__img {
    flex-direction: column;
    gap: 40px;
  }

  #club38 .location__img01,
  #club38 .location__img02 {
    width: 100%;
  }

  #club38 .location__img01 img,
  #club38 .location__img02 img {
    margin: 0 auto;
  }

  /* #page-gourmet #footer {
    padding: 20px 0 280px;
  } */
}
