body {
  background-color: #000;
}

.header {
  grid-column: full;
  background: url(../images/shared/header-line.png) center bottom no-repeat;
}
.header-row {
  height: 185px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-btn {
  position: fixed;
  right: 5.2083333333%;
}
@media (max-width: 767px) {
  .header-logo {
    width: 180px;
  }
  .header-row {
    height: 100px;
  }
  .header-btn {
    right: 1em;
  }
}

.gnav {
  position: fixed;
  grid-column: full;
  width: 100%;
  top: 185px;
  right: 0;
  max-width: 600px;
  padding: 3em;
  text-align: center;
  color: #eecc00;
  background-color: rgba(0, 0, 0, 0.8);
  transform: translateX(100%);
  transition: transform 0.5s ease-out;
}
.gnav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  width: 121px;
  height: 90px;
}
.gnav-btn-line {
  display: block;
  width: 100%;
  height: 9px;
  background: url(../images/shared/gnav-line.png) no-repeat;
  background-size: cover;
  position: relative;
}
.gnav-btn-line::before {
  content: "";
  background: url(../images/shared/gnav-line.png) no-repeat;
  background-size: cover;
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  transform: translate(15%, -150%);
  bottom: 100%;
}
.gnav-menu li {
  text-align: center;
  padding-bottom: 1em;
  margin-bottom: 1em;
  position: relative;
}
.gnav-menu li::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-image: -webkit-gradient(linear, left top, right top, from(#E3CB8B), color-stop(40%, rgba(var(--color-primary-rgb), 1)), to(rgba(var(--color-primary-rgb), 0)));
  background-image: -o-linear-gradient(left, #E3CB8B 0%, rgba(var(--color-primary-rgb), 1) 40%, rgba(var(--color-primary-rgb), 0) 100%);
  background-image: linear-gradient(90deg, #E3CB8B 0%, rgba(var(--color-primary-rgb), 1) 40%, rgba(var(--color-primary-rgb), 0) 100%);
  content: "";
}
.gnav-menu li:nth-child(even)::before {
  background-image: -webkit-gradient(linear, right top, left top, from(#E3CB8B), color-stop(40%, rgba(var(--color-primary-rgb), 1)), to(rgba(var(--color-primary-rgb), 0)));
  background-image: -o-linear-gradient(right, #E3CB8B 0%, rgba(var(--color-primary-rgb), 1) 40%, rgba(var(--color-primary-rgb), 0) 100%);
  background-image: linear-gradient(-90deg, #E3CB8B 0%, rgba(var(--color-primary-rgb), 1) 40%, rgba(var(--color-primary-rgb), 0) 100%);
}
.gnav-opened .gnav {
  transform: translateX(0);
}
@media (max-width: 767px) {
  .gnav {
    top: 100px;
  }
  .gnav-btn {
    width: 60px;
    height: 40px;
  }
  .gnav-btn-line {
    height: 4px;
  }
}

.page-title {
  text-align: center;
  color: #eecc00;
  font-size: 64px;
  font-family: "trajan-color", serif;
  line-height: 1;
  margin: 1.8em auto;
}
@media (max-width: 767px) {
  .page-title {
    font-size: 32px;
  }
}

.news-header {
  display: flex;
  flex-wrap: wrap;
  background: url(../images/shared/news-line.png) center bottom no-repeat;
  gap: 0.5em 1em;
  justify-content: center;
  padding-bottom: 0.5em;
  margin-bottom: 1.5em;
}
.news-article {
  color: #fff;
}
.news-content {
  max-width: 33em;
  margin: 1.5em auto 3em;
  letter-spacing: 0.04em;
}
.news-content img.aligncenter {
  display: block;
  margin: auto;
}
.news-content p, .news-content .wp-block-image {
  margin-bottom: 1.5em;
}
.news-link {
  display: flex;
  background: url(../images/shared/btn-frame.png) no-repeat;
  width: 486px;
  height: 121px;
  font-size: 40px;
  justify-content: center;
  align-items: center;
  margin: 2em auto 3em;
}
.news-archive {
  margin-bottom: 6em;
}
@media (min-width: 768px) {
  .news-archive .linklist-news__date {
    flex: 0 0 10em;
    width: 10em;
  }
}
@media (max-width: 767px) {
  .news-link {
    background-size: cover;
    width: 243px;
    height: 60px;
    font-size: 20px;
    margin: 2em auto 3em;
  }
  .news-archive .linklist-news__more {
    margin-left: auto;
  }
}

.linklist-news__more {
  background: url(../images/shared/news-more.png) no-repeat;
  color: #000;
  width: 118px;
  height: 53px;
  text-align: center;
  line-height: 1;
  display: grid;
  place-items: center;
  padding-bottom: 0.1em;
  font-size: 18px;
}
@media (max-width: 767px) {
  .linklist-news__more {
    width: 60px;
    height: 26px;
    background-size: contain;
    font-size: 14px;
  }
}

.cast__link {
  display: block;
  position: relative;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transition: 0.4s -webkit-transform linear;
  transition: 0.4s -webkit-transform linear;
  -o-transition: 0.4s transform linear;
  transition: 0.4s transform linear;
  transition: 0.4s transform linear, 0.4s -webkit-transform linear;
}
.cast__link:hover {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}
.cast__link:hover .cast__flip_front {
  opacity: 0;
}
.cast__link:hover .cast__flip_back {
  opacity: 1;
}
.cast__flip {
  display: block;
  position: relative;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transition: 0.4s -webkit-transform linear;
  transition: 0.4s -webkit-transform linear;
  -o-transition: 0.4s transform linear;
  transition: 0.4s transform linear;
  transition: 0.4s transform linear, 0.4s -webkit-transform linear;
}
.back-face .cast__flip {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}
.cast__flip_front {
  position: relative;
  z-index: 2;
  display: block;
  -webkit-transition: 0.4s -webkit-transform linear;
  transition: 0.4s -webkit-transform linear;
  -o-transition: 0.4s transform linear;
  transition: 0.4s transform linear;
  transition: 0.4s transform linear, 0.4s -webkit-transform linear;
}
.cast__flip_back {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  -webkit-transform: translateZ(-1px) rotateY(180deg);
  transform: translateZ(-1px) rotateY(180deg);
  -webkit-transition: 0.4s -webkit-transform linear;
  transition: 0.4s -webkit-transform linear;
  -o-transition: 0.4s transform linear;
  transition: 0.4s transform linear;
  transition: 0.4s transform linear, 0.4s -webkit-transform linear;
}
.cast-archive .page-title {
  margin-bottom: 0;
}
.cast-tab {
  max-width: 1140px;
  margin: 3em auto;
}
.cast-tab-menu {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  justify-content: center;
}
.cast-tab-item {
  background: url(../images/shared/cast-btn.png) center no-repeat;
  font-size: 48px;
  height: 2.4791666667em;
  text-align: center;
  padding-top: 0.1em;
}
@media (max-width: 767px) {
  .cast-tab {
    margin-top: 0;
  }
  .cast-tab-menu {
    grid-template-columns: repeat(auto-fill, 8.6666666667em);
  }
  .cast-tab-item {
    font-size: 24px;
    height: 2.5em;
    background-size: auto 2.875em;
  }
}
.cast-link {
  display: flex;
  background: url(../images/shared/btn-frame.png) no-repeat;
  width: 486px;
  height: 121px;
  font-size: 40px;
  justify-content: center;
  align-items: center;
  margin: 2em auto 3em;
  color: #fff;
}
@media (max-width: 767px) {
  .cast-link {
    background-size: cover;
    width: 243px;
    height: 60px;
    font-size: 20px;
    margin: 2em auto 3em;
  }
}
.cast-detail {
  margin: 5em auto;
}
.cast-detail .cast-content {
  display: grid;
  grid-template-columns: 37.4149659864% 59.3537414966%;
  max-width: 1176px;
  margin: 3em auto;
  gap: 38px;
  position: relative;
}
.cast-detail .cast-content::before {
  content: "";
  display: block;
  background: url(../images/shared/cast-deco.png) center no-repeat;
  width: 535px;
  height: 410px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(50%, -50%);
}
.cast-detail .cast-subimg {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.75em;
  margin-top: 4.2em;
}
.cast-detail .img {
  background: url(../images/home/cast-bg.jpg) center/cover no-repeat;
  position: relative;
  overflow: hidden;
}
.cast-detail .img .frame {
  position: relative;
  z-index: 1;
}
.cast-detail .img .cast {
  width: 73%;
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}
.cast-detail .name {
  color: #eecc00;
  font-size: 48px;
  font-family: "trajan-color", serif;
  line-height: 1;
  text-align: center;
}
.cast-detail .text {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.cast-detail .text .birth {
  margin: 0 0 1em;
  color: #fff;
  font-size: min(48px,3vw);
  font-family: var(--font-family-latin);
  text-align: center;
}
.cast-detail .link {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  transition: opacity ease 0.3s;
}
.cast-detail .link li:not(:last-child) {
  margin-right: 10%;
}
.cast-detail .link a {
  transition: opacity ease 0.3s;
}
.cast-detail .link a:hover {
  opacity: 0.6;
}
@media (max-width: 1023.98px) {
  .cast-detail .name {
    font-size: 40px;
  }
  .cast-detail .text .birth {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .cast-detail .cast-content {
    grid-template-columns: 100%;
  }
  .cast-detail .cast-img {
    width: 100%;
    max-width: 750px;
    margin: auto;
  }
  .cast-detail .text .name {
    font-size: 24px;
  }
  .cast-detail .text .birth {
    font-size: 28px;
  }
  .cast-detail .link li {
    width: 15%;
  }
}

.swiper-fade .swiper-slide {
  transition-property: opacity !important;
}

.shop-info {
  position: relative;
}
.shop-info-head {
  text-align: center;
}
.shop-info .slider__wrap {
  position: relative;
  padding-bottom: 75px;
}
.shop-info .slider__wrap::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-image: -webkit-gradient(linear, left top, right top, from(#E3CB8B), color-stop(40%, rgba(var(--color-primary-rgb), 1)), to(rgba(var(--color-primary-rgb), 0)));
  background-image: -o-linear-gradient(left, #E3CB8B 0%, rgba(var(--color-primary-rgb), 1) 40%, rgba(var(--color-primary-rgb), 0) 100%);
  background-image: linear-gradient(90deg, #E3CB8B 0%, rgba(var(--color-primary-rgb), 1) 40%, rgba(var(--color-primary-rgb), 0) 100%);
  content: "";
}

.slider__wrap {
  margin: 75px auto;
  max-width: 1300px;
}
.slider-subimg {
  display: grid;
  gap: clamp(1em, 4.8vw, 48px);
  grid-template-columns: repeat(4, minmax(150px, 1fr));
  padding-top: clamp(1em, 4.8vw, 48px);
}
@media (max-width: 767px) {
  .slider-subimg {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
}

@media (hover: hover) {
  .slider-subimg .slider__swiper_thumb {
    -webkit-transition: 0.3s opacity ease-in-out;
    -o-transition: 0.3s opacity ease-in-out;
    transition: 0.3s opacity ease-in-out;
  }
  .slider-subimg .slider__swiper_thumb:hover {
    opacity: 0.6;
  }
}
.header-btn {
  z-index: 999;
}

.gnav {
  z-index: 998;
}

.cast-detail .cast-content::before {
  z-index: -1;
}

.cast-detail .img {
  margin: 0 auto 2em;
}

.cast-detail .profile {
  max-height: 900px;
  padding-left: 3em;
  color: #fff;
  background: url(../images/home/cast-bg2.jpg) center / cover no-repeat;
  position: relative;
  overflow-y: scroll;
	-webkit-overflow-scrolling: touch;
}
.cast-detail .profile::-webkit-scrollbar {
  width: 0;
}
.cast-detail .profile .simplebar-scrollbar::before {
	width: 10px;
	background: #ec0;
	top: 0;
	left: 0;
	border-radius: 0;
}
.cast-detail .profile .simplebar-scrollbar.simplebar-visible::before {
	opacity: 1;
}
.cast-detail .profile .simplebar-track {
	width: 10px;
	background: #333;
}

.cast-detail .profile dl {
  width: 90%;
}

.cast-detail .profile dl dt {
  font-size: 18px;
}

.cast-detail .profile dl dd {
  margin: 0 0 1em;
  padding: 1em;
  background: url(../images/shared/header-line.png) center bottom no-repeat;
  font-size: 16px;
}

@media (max-width: 767px) {
  .cast-detail .cast-content::before {
    top: 9%;
    transform: translate(50%, 0);
  }
  .cast-detail .cast-img {
    width: 90%;
  }
  .cast-detail .profile {
    width: 90%;
    max-height: 400px;
    margin: 0 auto;
    padding-left: 0;
    background: none;
  }
  .cast-detail .profile dl {
    width: 100%;
  }
  .cast-detail .profile dl dt {
    font-size: 16px;
  }
  .cast-detail .profile dl dd {
    font-size: 14px;
  }
}/*# sourceMappingURL=add.css.map */