@charset "UTF-8";
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: "Zen Old Mincho", "游明朝", "YuMincho", serif;
  font-size: 1.4rem;
  line-height: 1.5;
  letter-spacing: 0.03em;
  color: #012519;
  background-color: #8B1A2B;
  background-image: url("../images/bg-sp.webp");
  background-repeat: repeat;
  background-size: auto;
}
@media screen and (min-width: 768px) {
  body {
    font-size: 1.6rem;
    background-image: url("../images/bg-pc.webp");
  }
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  text-decoration: none;
  color: #012519;
}

@media screen and (min-width: 768px) {
  .is-pc {
    display: block !important;
  }
}
@media screen and (max-width: 960px) {
  .is-pc {
    display: none !important;
  }
}

@media screen and (min-width: 768px) {
  .is-sp {
    display: none !important;
  }
}
@media screen and (max-width: 960px) {
  .is-sp {
    display: block !important;
  }
}

.header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 100;
}
.header__nav {
  display: none;
}
@media screen and (min-width: 768px) {
  .header__nav {
    display: block;
    background-color: #8B1A2B;
  }
}
.header__menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3.6388888889vw;
  padding: 2.2222222222vw 0;
  list-style: none;
  margin: 0;
}
.header__menu li a {
  color: #FFFFFF;
  font-size: 1.8rem;
  letter-spacing: 0.03em;
  line-height: 1.5;
  transition: opacity 0.3s;
}
.header__menu li a:hover {
  opacity: 0.7;
}
.header__hamburger {
  position: fixed;
  top: 0;
  right: 0;
  width: 17.0666666667vw;
  height: 17.0666666667vw;
  background-color: #8B1A2B;
  border: none;
  cursor: pointer;
  z-index: 110;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.6vw;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .header__hamburger {
    display: none;
  }
}
.header__hamburger span {
  display: block;
  width: 6.6666666667vw;
  height: 0.2666666667vw;
  background-color: #FFFFFF;
  transition: transform 0.3s, opacity 0.3s;
}
.header__hamburger.is-active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.header__hamburger.is-active span:nth-child(2) {
  opacity: 0;
}
.header__hamburger.is-active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
.header__drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background-color: #8B1A2B;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 105;
  overflow-y: auto;
}
@media screen and (min-width: 768px) {
  .header__drawer {
    display: none;
  }
}
.header__drawer.is-active {
  opacity: 1;
  visibility: visible;
}
.header__drawer-inner {
  padding: 0;
}
.header__drawer-logo {
  padding: 4vw;
}
.header__drawer-logo img {
  width: 42.6666666667vw;
  height: auto;
  display: block;
}
.header__drawer-menu {
  list-style: none;
  padding: 0;
  margin: 3.4666666667vw 0 0;
}
.header__drawer-menu li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.header__drawer-menu li:first-child {
  border-top: none;
}
.header__drawer-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #FFFFFF;
  font-size: 1.8rem;
  padding: 8vw 5.3333333333vw;
}
.header__drawer-menu a::after {
  content: "";
  display: block;
  width: 3.2vw;
  height: 3.4666666667vw;
  background: url("../images/arrow.svg") no-repeat center/contain;
  flex-shrink: 0;
}

.fv img {
  width: 100%;
  height: auto;
  display: block;
}

.news {
  padding: 13.3333333333vw 5.3333333333vw 16vw;
}
@media screen and (min-width: 768px) {
  .news {
    padding: 1.1805555556vw 2.7777777778vw 5.5555555556vw;
  }
}
.news__inner {
  max-width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .news__inner {
    max-width: 59.0277777778vw;
  }
}
.news__title {
  font-family: "Zen Old Mincho", "游明朝", "YuMincho", serif;
  font-weight: 700;
  color: #FFFFFF;
  text-align: center;
  margin: 0 0 10.6666666667vw;
}
@media screen and (min-width: 768px) {
  .news__title {
    margin: 0 0 2.2222222222vw;
  }
}
.news__title-sp {
  font-size: 2.8rem;
  letter-spacing: 0.03em;
}
.news__title-pc {
  font-size: 3.2rem;
  letter-spacing: 0.03em;
}
.news__list {
  margin: 0;
  padding: 0;
  overflow-y: auto;
  height: 80vw;
}
@media screen and (min-width: 768px) {
  .news__list {
    height: 20.8333333333vw;
  }
}
.news__item {
  border-top: 1px solid #FFFFFF;
}
.news__item:last-child {
  border-bottom: 1px solid #FFFFFF;
}
.news__header {
  display: grid;
  grid-template-columns: 1fr 10.6666666667vw;
  grid-template-rows: auto auto;
  align-items: start;
  width: 100%;
  padding: 5.3333333333vw 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: #FFFFFF;
  font-family: "Zen Old Mincho", "游明朝", "YuMincho", serif;
  gap: 2.6666666667vw;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px) {
  .news__header {
    display: flex;
    align-items: center;
    gap: 1.0416666667vw;
    padding: 2.7777777778vw 2.7777777778vw 2.7777777778vw 0;
  }
}
.news__header:hover {
  opacity: 0.7;
}
.news__header--static {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto;
  align-items: start;
  padding: 5.3333333333vw 0;
  gap: 2.6666666667vw;
  color: #FFFFFF;
  font-family: "Zen Old Mincho", "游明朝", "YuMincho", serif;
  cursor: default;
}
@media screen and (min-width: 768px) {
  .news__header--static {
    display: flex;
    align-items: center;
    gap: 1.0416666667vw;
    padding: 2.7777777778vw 0;
  }
}
.news__header--static:hover {
  opacity: 1;
}
.news__meta {
  display: flex;
  align-items: center;
  gap: 4vw;
  grid-column: 1/-1;
  grid-row: 1;
}
@media screen and (min-width: 768px) {
  .news__meta {
    gap: 1.0416666667vw;
    flex-shrink: 0;
  }
}
.news__date {
  font-family: "Zen Old Mincho", "游明朝", "YuMincho", serif;
  font-size: 1.8rem;
  color: #FFFFFF;
  flex-shrink: 0;
  white-space: nowrap;
}
.news__label {
  display: inline-block;
  font-family: "Zen Old Mincho", "游明朝", "YuMincho", serif;
  font-size: 1.6rem;
  font-weight: 500;
  width: 40vw;
  padding: 1.0666666667vw 0;
  border: 1px solid #FFFFFF;
  color: #8B1A2B;
  background-color: #FFFFFF;
  flex-shrink: 0;
  white-space: nowrap;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .news__label {
    width: 10.4166666667vw;
    padding: 0.4166666667vw 0;
  }
}
.news__text {
  font-family: "Zen Old Mincho", "游明朝", "YuMincho", serif;
  font-size: 1.6rem;
  color: #FFFFFF;
  margin: 0;
  grid-column: 1;
  grid-row: 2;
  padding-right: 1em;
}
@media screen and (min-width: 768px) {
  .news__text {
    font-size: 1.5rem;
    flex: 1;
    min-width: 0;
  }
}
.news__toggle {
  display: block;
  width: 8vw;
  height: 8vw;
  grid-column: 2;
  grid-row: 2;
  align-self: start;
  background: url("../images/arrow-news.webp") no-repeat center/contain;
  transform: rotate(180deg);
  transition: transform 0.3s;
}
@media screen and (min-width: 768px) {
  .news__toggle {
    width: 2.0833333333vw;
    height: 2.0833333333vw;
    flex-shrink: 0;
  }
}
.news__header[aria-expanded=true] .news__toggle {
  transform: rotate(0deg);
}
.news__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.news__body[aria-hidden=false] {
  max-height: 1000px;
}
.news__body-inner {
  display: flex;
  flex-direction: column;
  gap: 5.3333333333vw;
  padding: 6.6666666667vw;
  margin: 0 0 5.3333333333vw;
  background: url("../images/bg-news.webp") repeat center/cover;
}
@media screen and (min-width: 768px) {
  .news__body-inner {
    flex-direction: row;
    gap: 2.0833333333vw;
    padding: 2.0833333333vw;
    margin: 0 0 1.3888888889vw;
  }
}
.news__body-content {
  flex: 1;
  font-family: "Zen Old Mincho", "游明朝", "YuMincho", serif;
  font-size: 1.4rem;
  line-height: 1.8;
  color: #1A1A1A;
}
@media screen and (min-width: 768px) {
  .news__body-content {
    font-size: 1.5rem;
  }
}
.news__body-content p {
  margin: 0 0 1em;
}
.news__body-content p:last-child {
  margin-bottom: 0;
}
.news__body-image {
  flex-shrink: 0;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .news__body-image {
    width: 19.4444444444vw;
  }
}
.news__body-image img {
  width: 100%;
  height: auto;
  display: block;
}
.news__empty {
  font-family: "Zen Old Mincho", "游明朝", "YuMincho", serif;
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  padding: 10.6666666667vw 0;
}
@media screen and (min-width: 768px) {
  .news__empty {
    padding: 4.1666666667vw 0;
  }
}

.about {
  position: relative;
  padding: 10.6666666667vw 0 0;
}
@media screen and (min-width: 768px) {
  .about {
    padding: 0vw 0 13.0555555556vw;
  }
}
.about__video {
  display: flex;
  justify-content: center;
  line-height: 1;
}
.about__video iframe {
  width: 100vw;
  height: 52.5333333333vw;
}

.about__video img {
	width: 100%;
  max-width: 1200px;
}
@media screen and (min-width: 768px) {
  .about__video iframe {
    width: 83.3333333333vw;
    height: 43.9583333333vw;
  }
}
.about__video iframe .player {
  display: none;
}
@media screen and (min-width: 768px) {
  .about__inner {
    max-width: 83.3333333333vw;
    margin: 0 auto;
  }
}
.about__content {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  background: #F5F0E8 url("../images/bg-about.webp") repeat center/cover;
  padding: 13.3333333333vw 5.3333333333vw 26.6666666667vw;
}
@media screen and (min-width: 768px) {
  .about__content {
    padding: 4.1666666667vw 9.7222222222vw;
  }
}
.about__title {
  font-family: "Zen Old Mincho", "游明朝", "YuMincho", serif;
  font-size: 2.8rem;
  font-weight: 500;
  color: #1A1A1A;
  text-align: center;
  margin: 0 0 8vw;
}
@media screen and (min-width: 768px) {
  .about__title {
    font-size: 3.2rem;
    margin: 0 0 2.0833333333vw;
  }
}
.about__text {
  font-family: "Zen Old Mincho", "游明朝", "YuMincho", serif;
  font-size: 1.6rem;
  line-height: 1.5;
  color: #1A1A1A;
}
@media screen and (min-width: 768px) {
  .about__text {
    font-size: 1.6rem;
  }
}
.about__text p {
  margin: 0 0 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  .about__text p {
    margin: 0 0 2.0833333333vw;
  }
}
.about__text p:last-child {
  margin-bottom: 0;
}

.venue {
  background: #2B3B2B url("../images/bg-venue.webp") repeat;
  padding: 0 0 16vw;
}
@media screen and (min-width: 768px) {
  .venue {
    padding: 0 0 10.7638888889vw;
  }
}
.venue__icon {
  display: flex;
  justify-content: center;
  width: 100%;
  transform: translateY(-8vw);
  margin: 0 auto -8vw;
}
@media screen and (min-width: 768px) {
  .venue__icon {
    transform: translateY(-10.2083333333vw);
    margin: 0 auto -10.2083333333vw;
  }
}
.venue__icon img {
  width: 89.3333333333vw;
  height: auto;
}
@media screen and (min-width: 768px) {
  .venue__icon img {
    width: 47.2222222222vw;
  }
}
.venue__title {
  font-family: "Zen Old Mincho", "游明朝", "YuMincho", serif;
  font-size: 2.8rem;
  font-weight: 500;
  color: #FFFFFF;
  text-align: center;
  margin: 2.6666666667vw 0 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  .venue__title {
    font-size: 3.6rem;
    margin: 0.2777777778vw 0 2.2916666667vw;
  }
}
.venue__tabs {
  margin: 0 0 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  .venue__tabs {
    margin: 0 0 1.3888888889vw;
  }
}
.venue__tabs-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.venue__tabs-item {
  border-right: 1px solid #FFFFFF;
}
.venue__tabs-item:first-of-type {
  border-left: 1px solid #FFFFFF;
}
.venue__tabs-item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.6666666667vw;
  padding: 2.6666666667vw 5.3333333333vw;
  color: #FFFFFF;
  font-weight: 700;
  font-family: "Noto Sans JP", "游ゴシック", "YuGothic", sans-serif;
  font-size: 1.4rem;
  line-height: 1.4;
  letter-spacing: 0;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px) {
  .venue__tabs-item a {
    gap: 0.6944444444vw;
    padding: 0.4166666667vw 4.1666666667vw;
    font-size: 1.8rem;
  }
}
.venue__tabs-item a:hover {
  opacity: 0.7;
}
.venue__tabs-item a::after {
  content: "";
  display: block;
  width: 2.6666666667vw;
  height: 2.9333333333vw;
  background: url("../images/arrow-bottom.svg") no-repeat center/contain;
}
@media screen and (min-width: 768px) {
  .venue__tabs-item a::after {
    width: 0.6944444444vw;
    height: 0.7638888889vw;
  }
}
.venue__detail {
  max-width: 100%;
  margin: 0 5.3333333333vw 2.6666666667vw;
  padding: 8vw 5.3333333333vw;
  background-color: #FFFFFF;
}
@media screen and (min-width: 768px) {
  .venue__detail {
    max-width: 75vw;
    margin: 0 auto 1.3888888889vw;
    padding: 4.1666666667vw 0 5.5555555556vw;
  }
}
.venue__detail-title {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Zen Old Mincho", "游明朝", "YuMincho", serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.1em;
  color: #FFFFFF;
  background-color: #AD0E37;
  text-align: center;
  padding: 0.5333333333vw 0;
  margin: 0 auto;
  transform: skewX(16deg);
  width: 100%;
}
@media screen and (min-width: 768px) {
  .venue__detail-title {
    width: 20.8333333333vw;
    font-size: 2rem;
    padding: 0.1388888889vw 0;
  }
}
.venue__detail-title span {
  display: block;
  transform: skewX(-16deg);
}
@media screen and (min-width: 768px) {
  .venue__detail-content {
    width: 45.1388888889vw;
    margin: 1.8055555556vw auto 0;
  }
}
.venue__dl {
  margin: 0;
  font-family: "Noto Sans JP", "游ゴシック", "YuGothic", sans-serif;
}
.venue__dl dt {
  font-size: 1.6rem;
  font-weight: 700;
  color: #012519;
}
@media screen and (min-width: 768px) {
  .venue__dl dt {
    font-size: 1.5rem;
    width: 9.375vw;
  }
}
.venue__dl dt:first-child {
  border-top: none;
}
.venue__dl dt.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.venue__dl dd {
  flex: 1;
  font-size: 1.5rem;
  color: #1A1A1A;
}
@media screen and (min-width: 768px) {
  .venue__dl dd {
    line-height: 1.8;
    font-size: 1.5rem;
  }
}
.venue__dlItem {
  display: flex;
  flex-direction: column;
  gap: 2.6666666667vw;
  border-bottom: 1px solid #E2E2E2;
  padding: 5.3333333333vw 0 5.8666666667vw;
}
@media screen and (min-width: 768px) {
  .venue__dlItem {
    gap: 3.4722222222vw;
    flex-direction: row;
    padding: 2.0833333333vw 0;
  }
}
.venue__dlItem:last-of-type {
  border-bottom: none;
}
@media screen and (min-width: 768px) {
  .venue__dlItem:last-of-type {
    border-bottom: 1px solid #E2E2E2;
  }
}
.venue__links {
  display: flex;
  flex-direction: column;
  gap: 2.6666666667vw;
  margin-top: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .venue__links {
    flex-direction: row;
    gap: 0.6944444444vw;
    margin-top: 0.6944444444vw;
  }
}
.venue__link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 2.1333333333vw;
  font-family: "Noto Sans JP", "游ゴシック", "YuGothic", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: #2B3B2B;
  background-color: #F8F6F6;
  padding: 4.2666666667vw;
  transition: opacity 0.3s;
  width: 53.3333333333vw;
}
@media screen and (min-width: 768px) {
  .venue__link {
    flex: 1;
    width: auto;
    padding: 1.1111111111vw;
  }
}
.venue__link:hover {
  opacity: 0.7;
}
.venue__link::after {
  position: absolute;
  top: 50%;
  right: 4.2666666667vw;
  transform: translateY(-50%);
  content: "";
  display: block;
  width: 2.6666666667vw;
  height: 2.9333333333vw;
  background: url("../images/arrow-right-sp.svg") no-repeat center/contain;
}
@media screen and (min-width: 768px) {
  .venue__link::after {
    right: 1.1111111111vw;
    width: 0.6944444444vw;
    height: 0.7638888889vw;
    background: url("../images/arrow-right.svg") no-repeat center/contain;
  }
}
.venue__ticket {
  background-color: #F8F6F6;
  padding: 4.2666666667vw 5.3333333333vw;
  border-radius: 8px;
}
@media screen and (min-width: 768px) {
  .venue__ticket {
    padding: 2.7777777778vw;
  }
}
.venue__ticket-title {
  font-family: "Noto Sans JP", "游ゴシック", "YuGothic", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #012519;
  margin: 0 0 4vw;
}
@media screen and (min-width: 768px) {
  .venue__ticket-title {
    font-size: 1.8rem;
    margin: 0 0 0.6944444444vw;
  }
}
.venue__ticket-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.venue__ticket-list li {
  font-family: "Noto Sans JP", "游ゴシック", "YuGothic", sans-serif;
  font-size: 1.4rem;
  line-height: 2;
  color: #012519;
  text-indent: -1em;
  margin-left: 1em;
}
@media screen and (min-width: 768px) {
  .venue__ticket-list li {
    font-size: 1.6rem;
  }
}
.venue__ticket-list li + li {
  margin-top: 1.6vw;
}
@media screen and (min-width: 768px) {
  .venue__ticket-list li + li {
    margin-top: 0.4166666667vw;
  }
}
.venue__ticket-list li::before {
  content: "■";
  color: #AD0E37;
  margin-right: 2.6666666667vw;
  font-size: 0.8rem;
  vertical-align: middle;
}
@media screen and (min-width: 768px) {
  .venue__ticket-list li::before {
    margin-right: 0.6944444444vw;
  }
}
.venue__section {
  display: flex;
  flex-direction: column;
  gap: 2.6666666667vw;
  padding: 5.3333333333vw 0;
  border-bottom: 1px solid #E2E2E2;
}
@media screen and (min-width: 768px) {
  .venue__section {
    flex-direction: row;
    gap: 3.4722222222vw;
    padding: 2.0833333333vw 0;
  }
}
.venue__section-title {
  font-family: "Noto Sans JP", "游ゴシック", "YuGothic", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #012519;
  margin: 0 0 0.8vw;
}
@media screen and (min-width: 768px) {
  .venue__section-title {
    width: 9.375vw;
    font-size: 1.6rem;
    margin: 0 0 1.0416666667vw;
  }
}
.venue__section-text {
  font-family: "Noto Sans JP", "游ゴシック", "YuGothic", sans-serif;
  font-size: 1.6rem;
  color: #1A1A1A;
}
@media screen and (min-width: 768px) {
  .venue__section-text {
    font-size: 1.5rem;
  }
}
.venue__section-text p {
  margin: 0 0 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .venue__section-text p {
    margin: 0 0 0.6944444444vw;
  }
}
.venue__section-text p:last-child {
  margin-bottom: 0;
}
.venue__ended {
  background-color: #CAD9D0;
  margin: 5.3333333333vw 5.3333333333vw 0;
  padding: 8vw 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  .venue__ended {
    max-width: 75vw;
    margin: 1.3888888889vw auto 0;
    padding: 2.7777777778vw 5.5555555556vw;
  }
}
.venue__ended-title {
  font-family: "Zen Old Mincho", "游明朝", "YuMincho", serif;
  font-size: 2rem;
  font-weight: 700;
  color: #2B3B2B;
  text-align: center;
  margin: 0 0 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  .venue__ended-title {
    font-size: 2.4rem;
    margin: 0 0 2.0833333333vw;
  }
}
.venue__ended-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6.6666666667vw;
}
@media screen and (min-width: 768px) {
  .venue__ended-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.0833333333vw 2.0833333333vw;
  }
}
.venue__ended-name {
  font-family: "Noto Sans JP", "游ゴシック", "YuGothic", sans-serif;
  font-size: 1.85rem;
  font-weight: 700;
  color: #2B3B2B;
  margin: 0;
  padding: 0 0 4vw;
  border-bottom: 1px solid #2B3B2B;
}
@media screen and (min-width: 768px) {
  .venue__ended-name {
    font-size: 1.8rem;
    padding: 0 0 1.1111111111vw;
  }
}
.venue__ended-info {
  padding: 4vw 0 0;
}
@media screen and (min-width: 768px) {
  .venue__ended-info {
    padding: 0.9722222222vw 0 0;
  }
}
.venue__ended-period, .venue__ended-place {
  font-family: "Noto Sans JP", "游ゴシック", "YuGothic", sans-serif;
  font-size: 1.4rem;
  color: #2B3B2B;
  margin: 0;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .venue__ended-period, .venue__ended-place {
    font-size: 1.4rem;
  }
}

.highlights {
  position: relative;
}
.highlights__frame {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}
.highlights__frame img {
  width: 100%;
  height: auto;
  display: block;
}
.highlights__body {
  background: #F5F0E8 url("../images/bg-about.webp") repeat center/cover;
  padding: 45.3333333333vw 5.3333333333vw 16vw;
}
@media screen and (min-width: 768px) {
  .highlights__body {
    padding: 16.875vw 12.5vw 5.5555555556vw;
  }
}
.highlights__title {
  font-family: "Zen Old Mincho", "游明朝", "YuMincho", serif;
  font-size: 2.8rem;
  font-weight: 500;
  color: #2B3B2B;
  text-align: center;
  margin: 0 0 8vw;
}
@media screen and (min-width: 768px) {
  .highlights__title {
    font-size: 3.6rem;
    margin: 0 0 2.7777777778vw;
  }
}
@media screen and (min-width: 768px) {
  .highlights__item {
    display: flex;
    align-items: flex-start;
    gap: 2.0833333333vw;
  }
}
.highlights__item:not(:first-of-type) {
  margin-top: 13.3333333333vw;
}
@media screen and (min-width: 768px) {
  .highlights__item:not(:first-of-type) {
    margin-top: 2.7777777778vw;
  }
}
.highlights__item-image {
  margin: 0 0 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  .highlights__item-image {
    flex-shrink: 0;
    width: 34.7222222222vw;
    margin: 0;
  }
}
.highlights__item-image img {
  width: 100%;
  height: auto;
  display: block;
}
@media screen and (min-width: 768px) {
  .highlights__item-content {
    flex: 1;
  }
}
.highlights__item-header {
  display: flex;
  flex-direction: column;
  gap: 2.6666666667vw;
  margin: 0 0 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  .highlights__item-header {
    flex-direction: row;
    gap: 1.3888888889vw;
    margin: 0 0 2.0833333333vw;
  }
}
.highlights__item-num {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Zen Old Mincho", "游明朝", "YuMincho", serif;
  font-size: 2.2rem;
  font-weight: 500;
  color: #FFFFFF;
  background-color: #2B3B2B;
  width: 13.3333333333vw;
  height: 13.3333333333vw;
  flex-shrink: 0;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .highlights__item-num {
    font-size: 3rem;
    width: 4.8611111111vw;
    height: auto;
  }
}
.highlights__item-title {
  font-family: "Zen Old Mincho", "游明朝", "YuMincho", serif;
  font-size: 2rem;
  font-weight: 500;
  color: #012519;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .highlights__item-title {
    font-size: 2.8rem;
  }
}
.highlights__item-text {
  font-family: "Zen Old Mincho", "游明朝", "YuMincho", serif;
  font-size: 1.6rem;
  color: #012519;
}
.highlights__item-text p {
  margin: 0 0 4vw;
}
@media screen and (min-width: 768px) {
  .highlights__item-text p {
    margin: 0 0 1.0416666667vw;
  }
}
.highlights__item-text p:last-child {
  margin-bottom: 0;
}

.works {
  background: rgba(239, 232, 215, 0.7);
  padding: 13.3333333333vw 5.3333333333vw 16vw;
  margin: 13.3333333333vw auto 0;
}
@media screen and (min-width: 768px) {
  .works {
    max-width: 75vw;
    margin: 7.5vw auto 0;
    padding: 5.5555555556vw;
  }
}
.works__grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 13.3333333333vw;
}
@media screen and (min-width: 768px) {
  .works__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3.4722222222vw 3.1944444444vw;
  }
}
.works__item--hidden {
  display: none;
}
.works__item-image {
  aspect-ratio: 2/1;
  background-color: #EEE7D3;
}
.works__item-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  display: block;
}
.works__item-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 4vw 0 0;
  font-family: "Noto Sans JP", "游ゴシック", "YuGothic", sans-serif;
  color: #012519;
}
@media screen and (min-width: 768px) {
  .works__item-body {
    padding: 1.0416666667vw 0 0;
  }
}
.works__item-author {
  font-size: 1.4rem;
  margin: 0 0 0.8vw;
}
@media screen and (min-width: 768px) {
  .works__item-author {
    font-size: 1.6rem;
    margin: 0 0 0.2083333333vw;
  }
}
.works__item-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1A1A1A;
  margin: 0 0 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .works__item-title {
    font-size: 2rem;
    margin: 0 0 0.6944444444vw;
  }
}
.works__item-year {
  display: inline-block;
  font-size: 1.2rem;
  color: #58776C;
  background-color: #E3DAC4;
  padding: 1.0666666667vw 3.2vw;
  margin: 0 0 5.3333333333vw;
  align-self: flex-start;
}
@media screen and (min-width: 768px) {
  .works__item-year {
    font-size: 1.4rem;
    padding: 0.2777777778vw 0.8333333333vw;
    margin: 0 0 1.3888888889vw;
  }
}
.works__item-desc {
  font-size: 1.6rem;
  color: #1A1A1A;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .works__item-desc {
    font-size: 1.4rem;
  }
}
.works__more {
  text-align: center;
  margin: 10.6666666667vw 0 0;
}
@media screen and (min-width: 768px) {
  .works__more {
    margin: 3.4722222222vw 0 0;
  }
}
.works__more-btn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Noto Sans JP", "游ゴシック", "YuGothic", sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0;
  line-height: 1.4;
  color: #1A1A1A;
  background: none;
  border: none;
  padding: 2.6666666667vw 1.3333333333vw;
  cursor: pointer;
  transition: opacity 0.3s;
  margin-inline: auto;
  background-color: #FFFFFF;
  width: 60.5333333333vw;
}
@media screen and (min-width: 768px) {
  .works__more-btn {
    width: 15.7638888889vw;
    font-size: 1.4rem;
    padding: 1.1111111111vw;
  }
}
.works__more-btn:hover {
  opacity: 0.7;
}
.works__more-btn::after {
  position: absolute;
  top: 50%;
  content: "";
  display: block;
  right: 4.2666666667vw;
  width: 2.6666666667vw;
  height: 2.6666666667vw;
  background-image: url("../images/arrow-plus.svg");
  background-size: 100% auto;
  background-repeat: no-repeat;
}
@media screen and (min-width: 768px) {
  .works__more-btn::after {
    right: 1.1111111111vw;
    width: 0.6944444444vw;
    height: 0.6944444444vw;
  }
}

.goods {
  background: #2B3B2B url("../images/bg-goods.webp") repeat;
  padding: 13.3333333333vw 5.3333333333vw 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  .goods {
    padding: 10.4166666667vw 8.3333333333vw 2.0833333333vw;
  }
}
.goods__title {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.6666666667vw;
  margin: 0 0 9.3333333333vw;
}
@media screen and (min-width: 768px) {
  .goods__title {
    gap: 2.7777777778vw;
    margin: 0 0 2.0833333333vw;
  }
}
.goods__title::before {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(-100%);
  width: 17.0666666667vw;
  height: 14.6666666667vw;
  content: "";
  display: block;
  background-image: url("../images/icon-goods-left-sp.webp");
  background-size: 100% auto;
  background-repeat: no-repeat;
}
@media screen and (min-width: 768px) {
  .goods__title::before {
    transform: translateY(0%);
    background-image: url("../images/icon-goods-left.webp");
    position: unset;
    width: 9.7222222222vw;
    height: 6.9444444444vw;
  }
}
.goods__title::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 17.0666666667vw;
  height: 14.6666666667vw;
  content: "";
  display: none;
  background-image: url("../images/icon-goods-right.webp");
  background-size: 100% auto;
  background-repeat: no-repeat;
}
@media screen and (min-width: 768px) {
  .goods__title::after {
    display: block;
    position: unset;
    width: 9.7222222222vw;
    height: 6.9444444444vw;
  }
}
.goods__title-text {
  font-family: "Zen Old Mincho", "游明朝", "YuMincho", serif;
  font-size: 2.8rem;
  font-weight: 500;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .goods__title-text {
    font-size: 3.6rem;
  }
}
.goods__inner {
  background-color: #FFFFFF;
  padding: 16vw 5.3333333333vw 13.3333333333vw;
}
@media screen and (min-width: 768px) {
  .goods__inner {
    max-width: 75vw;
    margin: 0 auto;
    padding: 3.4722222222vw 5.5555555556vw 3.4722222222vw;
  }
}
.goods__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8vw;
}
@media screen and (min-width: 768px) {
  .goods__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3.4722222222vw 2.7777777778vw;
  }
}
.goods__item {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .goods__item-image {
    width: 30.2083333333vw;
    height: 19.8611111111vw;
  }
}
.goods__item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.goods__item-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 4vw 0 0;
}
@media screen and (min-width: 768px) {
  .goods__item-body {
    padding: 1.3888888889vw 0 0;
  }
}
.goods__item-title {
  font-family: "Noto Sans JP", "游ゴシック", "YuGothic", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #012519;
  margin: 0 0 1.3333333333vw;
}
@media screen and (min-width: 768px) {
  .goods__item-title {
    font-size: 2rem;
    margin: 0 0 0.3472222222vw;
  }
}
.goods__item-spec {
  font-family: "Noto Sans JP", "游ゴシック", "YuGothic", sans-serif;
  font-size: 1.4rem;
  color: #666666;
  margin: 0 0 4vw;
}
@media screen and (min-width: 768px) {
  .goods__item-spec {
    font-size: 1.6rem;
    margin: 0 0 1.0416666667vw;
  }
}
.goods__item-desc {
  font-family: "Noto Sans JP", "游ゴシック", "YuGothic", sans-serif;
  font-size: 1.6rem;
  color: #012519;
}
.goods__item-price {
  font-family: "Noto Sans JP", "游ゴシック", "YuGothic", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #012519;
  margin: auto 0 0;
  line-height: 1.5;
  padding: 5.3333333333vw 0 0;
  margin-top: 6.4vw;
  border-top: 1px solid #E2E2E2;
}
@media screen and (min-width: 768px) {
  .goods__item-price {
    font-size: 1.8rem;
    margin-top: 1.3888888889vw;
    padding: 1.3888888889vw 0 0;
  }
}
.goods__notes {
  margin: 13.3333333333vw 0 0;
}
@media screen and (min-width: 768px) {
  .goods__notes {
    margin: 3.4722222222vw 0 0;
  }
}
.goods__notes p {
  font-family: "Noto Sans JP", "游ゴシック", "YuGothic", sans-serif;
  font-size: 1.4rem;
  color: #A2A2A2;
  margin: 0;
}

.footer {
  background: #2B3B2B url("../images/bg-venue.webp") repeat;
  padding: 0 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  .footer {
    padding: 0 8.3333333333vw 5.5555555556vw;
  }
}
@media screen and (min-width: 768px) {
  .footer__inner {
    max-width: 75vw;
    margin-inline: auto;
  }
}
@media screen and (min-width: 768px) {
  .footer__copyright {
    padding: 2.0833333333vw 0 0;
  }
}
.footer__copyright p {
  font-size: 1.2rem;
  line-height: 2;
  color: #FFFFFF;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .footer__copyright p {
    font-size: 1.4rem;
  }
}
.footer__bottom {
  padding-bottom: 10.6666666667vw;
}
@media screen and (min-width: 768px) {
  .footer__bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding-top: 1.9444444444vw;
    padding-bottom: 0;
  }
}
.footer__bottom-left {
  display: flex;
  flex-direction: column;
  gap: 3.2vw;
}
@media screen and (min-width: 768px) {
  .footer__bottom-left {
    flex-direction: row;
    align-items: center;
    gap: 4.1666666667vw;
  }
}
.footer__policy {
  display: flex;
  align-items: center;
  gap: 1.3333333333vw;
  font-size: 1.4rem;
  color: #FFFFFF;
  transition: opacity 0.3s;
  border-top: 1px solid #E2E2E2;
  border-bottom: 1px solid #E2E2E2;
  padding: 4vw 0;
  margin-top: 8vw;
}
@media screen and (min-width: 768px) {
  .footer__policy {
    border-top: none;
    border-bottom: none;
    font-size: 1.6rem;
    gap: 1.3888888889vw;
    padding: 0 0 0.1388888889vw;
    margin-top: 0;
  }
}
.footer__policy:hover {
  opacity: 0.7;
}
.footer__policy-icon {
  width: 3.2vw;
  height: 3.2vw;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .footer__policy-icon {
    margin-left: unset;
    width: 0.8333333333vw;
    height: 0.8333333333vw;
  }
}
.footer__copy {
  font-size: 1.1rem;
  color: #FFFFFF;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .footer__copy {
    margin-top: 0;
    font-size: 1.6rem;
  }
}
.footer__pagetop {
  position: fixed;
  bottom: 1em;
  right: 1em;
  flex-shrink: 0;
  transition: opacity 0.3s;
}
.footer__pagetop img {
  width: 16vw;
  height: auto;
  display: block;
}
@media screen and (min-width: 768px) {
  .footer__pagetop img {
    width: 8.5416666667vw;
  }
}
.footer__pagetop:hover {
  opacity: 0.7;
}

.notfound {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
  text-align: center;
  padding: 16vw 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  .notfound {
    min-height: 70vh;
    padding: 6.9444444444vw 2.7777777778vw;
  }
}
.notfound__inner {
  max-width: 85.3333333333vw;
}
@media screen and (min-width: 768px) {
  .notfound__inner {
    max-width: unset;
  }
}
.notfound__code {
  font-family: "Zen Old Mincho", "游明朝", "YuMincho", serif;
  font-size: 8rem;
  font-weight: 700;
  color: #FFFFFF;
}
@media screen and (min-width: 768px) {
  .notfound__code {
    font-size: 12rem;
  }
}
.notfound__title {
  font-family: "Zen Old Mincho", "游明朝", "YuMincho", serif;
  font-size: 2.4rem;
  font-weight: 500;
  color: #FFFFFF;
  margin: 0 0 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  .notfound__title {
    font-size: 3.2rem;
    margin: 0 0 1.3888888889vw;
  }
}
.notfound__desc {
  font-family: "Zen Old Mincho", "游明朝", "YuMincho", serif;
  font-size: 1.6rem;
  color: #FFFFFF;
  margin: 0 0 8vw;
}
@media screen and (min-width: 768px) {
  .notfound__desc {
    font-size: 1.6rem;
    margin: 0 0 2.7777777778vw;
  }
}
.notfound__btn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Noto Sans JP", "游ゴシック", "YuGothic", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #1A1A1A;
  background-color: #FFFFFF;
  padding: 4.2666666667vw 8vw;
  border: 1px solid #FFFFFF;
  transition: opacity 0.3s;
  width: 60.5333333333vw;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .notfound__btn {
    width: 15.7638888889vw;
    padding: 1.1111111111vw;
  }
}
.notfound__btn:hover {
  opacity: 0.7;
}
.notfound__btn::before {
  position: absolute;
  top: 50%;
  left: 4.2666666667vw;
  transform: translateY(-50%);
  content: "";
  display: block;
  width: 2.9333333333vw;
  height: 2.6666666667vw;
  background-size: 100% auto;
  background-image: url("../images/arrow-back.svg");
  background-repeat: no-repeat;
}
@media screen and (min-width: 768px) {
  .notfound__btn::before {
    left: 1.1111111111vw;
    width: 0.7638888889vw;
    height: 0.6944444444vw;
  }
}
