/*************************************************

index page

*************************************************/
/* shoplist-nav
---------------------------------------*/
.shoplist-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.8rem 1rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 6rem;
}

.shoplist-nav__item {
  width: calc(50% - 0.5rem);
}

.shoplist-nav__anchor {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: min(18rem, 100%);
  height: 100%;
  min-height: 4.3rem;
  padding: 0 2.5rem 0 0.5rem;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  background-color: #fff;
  border-radius: 10rem;
  -webkit-transition: color 0.3s, background-color 0.3s;
  transition: color 0.3s, background-color 0.3s;
}
@media (any-hover: hover) {
  .shoplist-nav__anchor:hover {
    color: #fff;
    background-color: #b09841;
  }
  .shoplist-nav__anchor:hover::before {
    opacity: 0;
  }
  .shoplist-nav__anchor:hover::after {
    opacity: 1;
  }
}
.shoplist-nav__anchor::before, .shoplist-nav__anchor::after {
  position: absolute;
  top: 50%;
  right: 1.4rem;
  display: block;
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  margin-top: -0.4rem;
  background: url(../images/common/arw_02.svg) no-repeat center center/100% auto;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.shoplist-nav__anchor::after {
  background-image: url(../images/common/arw_02_w.svg);
  opacity: 0;
}

/* shoplist-group
---------------------------------------*/
.shoplist-group {
  margin-bottom: 16rem;
}
@media screen and (max-width: 767px) {
  .shoplist-group {
    margin-bottom: 12rem;
  }
}
.shoplist-group:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .shoplist-group .parts-title01 {
    margin-bottom: 8rem;
  }
}

.shoplist-group-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 5rem 6rem;
}
@media screen and (max-width: 767px) {
  .shoplist-group-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 4rem;
  }
}

.shoplist-group-list__item {
  width: calc(50% - 3rem);
}
@media screen and (max-width: 767px) {
  .shoplist-group-list__item {
    width: 100%;
  }
}

.shoplist-group-list__anchor {
  display: block;
  text-decoration: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media (any-hover: hover) {
  .shoplist-group-list__anchor:hover {
    opacity: 0.7;
  }
}

.shoplist-group-list__img {
  width: 100%;
}

.shoplist-group-list__img-el {
  width: 100%;
  height: auto;
  aspect-ratio: 470/247;
  background-color: #000;
}
.shoplist-group-list__img-el img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: 100%;
}

.shoplist-group-list__name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 2rem 0 1.5rem;
  font-weight: 700;
}

.shoplist-group-list__name-01 {
  font-size: 2.2rem;
}

.shoplist-group-list__addr,
.shoplist-group-list__tel {
  font-weight: 700;
}

/*************************************************

detail page

*************************************************/
/* shoplist-detail-main
---------------------------------------*/
.shoplist-detail-main {
  line-height: 0;
}
.shoplist-detail-main img {
  width: 100%;
}

/* shoplist-detail-info
---------------------------------------*/
.shoplist-detail-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 7rem;
  padding-bottom: 7rem;
  border-bottom: #fff solid 1px;
}
@media screen and (max-width: 767px) {
  .shoplist-detail-info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 4rem;
    padding-bottom: 5rem;
  }
}

.shoplist-detail-info-left {
  width: 17rem;
}
@media screen and (max-width: 767px) {
  .shoplist-detail-info-left {
    margin: 0 auto 2.5rem;
    text-align: center;
  }
}

@media screen and (min-width: 768px) {
  .shoplist-detail-info-left + .shoplist-detail-info-right {
    width: calc(100% - 23rem);
  }
}
@media screen and (max-width: 767px) {
  .shoplist-detail-info-right {
    width: 100%;
  }
}

.shoplist-detail-info-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.3rem;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

.shoplist-detail-info-title__01 {
  font-size: 2.5rem;
}

.shoplist-detail-info-title__02 {
  font-size: 1.5rem;
}

.shoplist-detail-info-addr,
.shoplist-detail-info-tel {
  line-height: 2;
}

.shoplist-detail-info-map {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 2.5rem;
}

.shoplist-detail-info-map__anchor {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: block;
  width: min(15rem, 100%);
  padding: 0 2rem 1rem 0;
  font-size: 1.7rem;
  text-decoration: none;
}
@media (any-hover: hover) {
  .shoplist-detail-info-map__anchor:hover::before {
    width: 0;
  }
}
.shoplist-detail-info-map__anchor::before {
  position: absolute;
  bottom: 0;
  right: 0;
  display: block;
  content: "";
  width: 100%;
  height: 1px;
  background: #b09841;
  -webkit-transition: width 0.3s;
  transition: width 0.3s;
}
.shoplist-detail-info-map__anchor::after {
  position: absolute;
  top: 1rem;
  right: 0;
  display: block;
  content: "";
  width: 1rem;
  height: 1rem;
  background: url(../images/common/arw_02.svg) no-repeat center center/100% auto;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.shoplist-detail-info-text {
  margin-top: 3.5rem;
  line-height: 2;
}

/* shoplist-detail-nav
---------------------------------------*/
.shoplist-detail-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2.4rem 3rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: min(60rem, 100% - 2.8rem);
  margin: 0 auto 8rem;
}
@media screen and (max-width: 767px) {
  .shoplist-detail-nav {
    gap: 2rem 1rem;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.shoplist-detail-nav__item {
  width: calc(33.3333333333% - 2rem);
}
@media screen and (max-width: 767px) {
  .shoplist-detail-nav__item {
    width: calc(50% - 0.5rem);
  }
}

.shoplist-detail-nav__anchor {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 4.3rem;
  padding: 0 2.5rem 0 0.5rem;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  background-color: #fff;
  border-radius: 10rem;
  -webkit-transition: color 0.3s, background-color 0.3s;
  transition: color 0.3s, background-color 0.3s;
}
@media (any-hover: hover) {
  .shoplist-detail-nav__anchor:hover {
    color: #fff;
    background-color: #b09841;
  }
  .shoplist-detail-nav__anchor:hover::before {
    opacity: 0;
  }
  .shoplist-detail-nav__anchor:hover::after {
    opacity: 1;
  }
}
.shoplist-detail-nav__anchor::before, .shoplist-detail-nav__anchor::after {
  position: absolute;
  top: 50%;
  right: 1.4rem;
  display: block;
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  margin-top: -0.4rem;
  background: url(../images/common/arw_02.svg) no-repeat center center/100% auto;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.shoplist-detail-nav__anchor::after {
  background-image: url(../images/common/arw_02_w.svg);
  opacity: 0;
}

/* shoplist-detail-cast
---------------------------------------*/
.shoplist-detail-cast {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 6.8rem 1.8rem;
  counter-reset: number 0;
}
@media screen and (max-width: 767px) {
  .shoplist-detail-cast {
    gap: 4rem 0;
  }
}

.shoplist-detail-cast__item {
  position: relative;
  width: calc(20% - 1.44rem);
}
@media screen and (max-width: 767px) {
  .shoplist-detail-cast__item {
    width: 33.3333333333%;
  }
}
.shoplist-detail-cast__item.home {
  display: none !important;
}

.shoplist-detail-cast__anchor {
  display: block;
  text-decoration: none;
}
@media (any-hover: hover) {
  .shoplist-detail-cast__anchor:hover .shoplist-detail-cast__photo {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}

.shoplist-detail-cast__img {
  overflow: hidden;
  position: relative;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 767px) {
  .shoplist-detail-cast__img {
    margin-bottom: 1rem;
  }
}

.shoplist-detail-cast__photo {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 186/260;
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
  z-index: 1;
}
.shoplist-detail-cast__photo img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.shoplist-detail-cast__num {
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(7.6rem, 100%);
  padding: 0.3rem 0;
  color: #fff;
  font-size: 1.3rem;
  background: #000;
  text-align: center;
  display: none;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .shoplist-detail-cast__num {
    width: min(4.3rem, 100%);
    padding: 0.3rem 0;
    font-size: 0.8rem;
  }
}

.shoplist-detail-cast__job {
  font-size: 1.3rem;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .shoplist-detail-cast__job {
    font-size: 0.8rem;
    text-align: center;
  }
}

.shoplist-detail-cast__name {
  margin-bottom: 0.3rem;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .shoplist-detail-cast__name {
    font-size: 1.2rem;
    text-align: center;
  }
}

/* shoplist-detail-rank
---------------------------------------*/
.shoplist-detail-rank {
  margin-bottom: 17rem;
}
@media screen and (max-width: 767px) {
  .shoplist-detail-rank {
    margin-bottom: 13rem;
  }
}
@media screen and (min-width: 768px) {
  .shoplist-detail-rank .parts-title01 {
    margin-bottom: 3rem;
  }
}

.shoplist-detail-rank__span {
  margin-bottom: 5rem;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
}

/* shoplist-detail-staff
---------------------------------------*/
.shoplist-detail-staff {
  margin-bottom: 17rem;
}
@media screen and (max-width: 767px) {
  .shoplist-detail-staff {
    margin-bottom: 13rem;
  }
}
.shoplist-detail-staff .shoplist-detail-cast__item::before {
  display: none;
}

/* shoplist-detail-blackbg
---------------------------------------*/
.shoplist-detail-blackbg {
  padding: 16rem 0;
  color: #fff;
  background-color: #000;
}
@media screen and (max-width: 767px) {
  .shoplist-detail-blackbg {
    padding: 12rem 0;
  }
}

/* shoplist-detail-schedule
---------------------------------------*/
.shoplist-detail-schedule {
  margin-bottom: 16rem;
}
@media screen and (max-width: 767px) {
  .shoplist-detail-schedule {
    margin-bottom: 13rem;
  }
}

.shoplist-detail-schedule-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .shoplist-detail-schedule-col {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 6rem;
  }
}

.shoplist-detail-schedule-col__box {
  width: calc(50% - 2.25rem);
}
@media screen and (max-width: 767px) {
  .shoplist-detail-schedule-col__box {
    width: 100%;
  }
}

.shoplist-detail-schedule-col__box-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.8rem;
  margin-bottom: 3rem;
  line-height: 1.3;
}
.shoplist-detail-schedule-col__box-title .in-en {
  font-size: 4rem;
  font-weight: 900;
}
@media screen and (max-width: 767px) {
  .shoplist-detail-schedule-col__box-title .in-en {
    font-size: 3rem;
  }
}
.shoplist-detail-schedule-col__box-title .in-ja {
  font-size: 1.5rem;
  font-weight: 700;
}

.shoplist-detail-schedule-col__row {
  padding-bottom: 3rem;
  border-bottom: #757575 solid 1px;
}
@media screen and (max-width: 767px) {
  .shoplist-detail-schedule-col__row {
    padding-bottom: 2rem;
  }
}
.shoplist-detail-schedule-col__row + .shoplist-detail-schedule-col__row {
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .shoplist-detail-schedule-col__row + .shoplist-detail-schedule-col__row {
    margin-top: 1.5rem;
  }
}

.shoplist-detail-schedule-col__date {
  position: relative;
  margin-bottom: 0.5rem;
  padding-left: 1em;
  font-size: 1.3rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .shoplist-detail-schedule-col__date {
    margin-bottom: 0.2rem;
  }
}
.shoplist-detail-schedule-col__date::before {
  position: absolute;
  top: 0.6em;
  left: 0;
  display: block;
  content: "";
  width: 0.5384615385em;
  height: auto;
  aspect-ratio: 1/1;
  background-color: #b09841;
}

.shoplist-detail-schedule-col__text {
  font-size: 1.5rem;
}

/* shoplist-detail-system
---------------------------------------*/
.shoplist-detail-system {
  margin-bottom: 16rem;
}
@media screen and (max-width: 767px) {
  .shoplist-detail-system {
    margin-bottom: 13rem;
  }
}

.shoplist-detail-system-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .shoplist-detail-system-list {
    gap: 2rem;
  }
}

.shoplist-detail-system-list__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 2.5rem;
  border-bottom: #757575 solid 1px;
}
@media screen and (max-width: 767px) {
  .shoplist-detail-system-list__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0 0 2rem;
  }
}

.shoplist-detail-system-list__title {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 21rem;
  padding-left: 3rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .shoplist-detail-system-list__title {
    width: 100%;
    margin-bottom: 0.5rem;
    padding-left: 1rem;
  }
}

.shoplist-detail-system-list__body {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: calc(100% - 21rem);
}
@media screen and (max-width: 767px) {
  .shoplist-detail-system-list__body {
    width: 100%;
    padding-left: 1rem;
  }
  .is-map .shoplist-detail-system-list__body {
    padding-left: 0;
  }
}
.shoplist-detail-system-list__body .in-map {
  overflow: hidden;
  position: relative;
  height: 35rem;
  line-height: 0;
  border-radius: 1rem;
}
.shoplist-detail-system-list__body .in-map iframe {
  display: block;
  width: 100% !important;
  height: 100% !important;
  line-height: 0;
}

/* shoplist-detail-news
---------------------------------------*/
.shoplist-detail-news {
  margin-bottom: 16rem;
}
@media screen and (max-width: 767px) {
  .shoplist-detail-news {
    margin-bottom: 13rem;
  }
}

.shoplist-detail-news-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.shoplist-detail-news-list__item {
  width: 100%;
  border-bottom: #757575 solid 1px;
}

.shoplist-detail-news-list__anchor {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 3rem 0 3rem 3rem;
  color: #fff;
  text-decoration: none;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .shoplist-detail-news-list__anchor {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 2rem 1rem 2rem;
  }
}
.shoplist-detail-news-list__anchor .in-date {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  width: 17.5rem;
  padding-left: 1em;
  font-size: 1.3rem;
}
@media screen and (max-width: 767px) {
  .shoplist-detail-news-list__anchor .in-date {
    width: 100%;
    margin-bottom: 0.5rem;
  }
}
.shoplist-detail-news-list__anchor .in-date::before {
  position: absolute;
  top: 0.6em;
  left: 0;
  display: block;
  content: "";
  width: 0.5384615385em;
  height: auto;
  aspect-ratio: 1/1;
  background-color: #b09841;
}
.shoplist-detail-news-list__anchor .in-title {
  width: calc(100% - 17.5rem);
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .shoplist-detail-news-list__anchor .in-title {
    width: 100%;
    font-size: 1.4rem;
  }
}

/* shoplist-detail-recruit
---------------------------------------*/
.shoplist-detail-recruit {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: min(118rem, 100% - 3rem);
  margin: 10rem auto 0;
  padding: 10rem 1.2rem 12rem;
  background: url(../images/common/footer_bg_pc.jpg) no-repeat center center/cover;
  border-radius: 1rem;
}
.shoplist-detail-recruit .parts-button01 {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 4rem;
}

.shoplist-detail-recruit__img {
  max-width: 80rem;
  margin: 0 auto;
  line-height: 0;
}