@charset "UTF-8";
:root {
  --bp-sp: 767px;
}

:root {
  --bp-portrait: 1024px;
}

:root {
  --bp-pc: 1236px;
}

/******************************************************************
foundation - base
******************************************************************/
:where(html) {
  -webkit-text-size-adjust: 100%;
}

:where(body) {
  margin: 0;
}

:where(sub),
:where(sup) {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

:where(sub) {
  bottom: -0.2em;
}

:where(sup) {
  top: -0.4em;
}

:where(button, input, optgroup, select, textarea) {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.4;
  font-feature-settings: "palt";
  letter-spacing: 0.04em;
}

:where(html) {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

:where(body) {
  min-width: 375px;
  font-family: "Zen Old Mincho", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  overflow-wrap: break-word;
  overflow-y: scroll;
  color: #fff;
  line-height: 1.4;
  font-size: 1rem;
}
@media print {
  :where(body) {
    width: 1200px;
    zoom: 0.8;
  }
}

:where(h1, h2, h3, h4, h5, h6, p, ul, ol, li, dl, dd, figure) {
  margin: 0;
  padding: 0;
}

:where(li) {
  list-style: none;
}

:where(table) {
  border-collapse: collapse;
  border-spacing: 0;
}

:where(iframe) {
  border: 0;
}

:where(button) {
  background-color: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  appearance: none;
  color: inherit;
  text-decoration: none;
}
@media (any-hover: hover) {
  :where(button):hover {
    text-decoration: none;
  }
}
:where(button):focus {
  text-decoration: none;
}
:where(button) {
  outline-color: #999999;
}

:where(input, select) {
  outline-color: #999999;
}

:where(em) {
  font-style: normal;
  font-weight: bold;
}

:where(fieldset) {
  border: 0;
  padding: 0;
  margin: 0;
}

:where(address) {
  font-style: normal;
}

:where(a) {
  color: #fff;
  text-decoration: underline;
  text-decoration-thickness: 1px !important;
  text-underline-offset: 0.1em;
  outline-color: #999999;
}
@media (any-hover: hover) {
  :where(a):hover {
    text-decoration: none;
  }
}
:where(a):focus {
  text-decoration: none;
}

:where(img) {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

:where(svg) {
  vertical-align: middle;
}

:where(hr) {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #fff;
}

/******************************************************************
layout - wrapper
******************************************************************/
.l-wrapper {
  width: 100%;
  overflow: clip;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}
.l-wrapper main {
  flex-grow: 1;
}

/******************************************************************
layout - header-dropdown
******************************************************************/
body:has(.l-header-sticky .l-header-dropdown > [aria-hidden=false]),
body:has(.l-header-fixed:not(.l-header-fixed--portrait-over):not(.l-header-fixed--portrait) .l-header-dropdown > [aria-hidden=false]) {
  overflow: hidden;
}

.l-header-dropdown {
  display: flex;
}
.l-header-dropdown__button {
  margin-right: 18px;
}
.l-header-dropdown__button img {
  width: 32px;
}
.l-header-dropdown__close {
  display: block;
  width: fit-content;
  margin-inline: auto;
  width: 18px;
  height: 18px;
  position: relative;
}
.l-header-dropdown__close::before, .l-header-dropdown__close::after {
  position: absolute;
  content: "";
  margin: auto;
  box-sizing: border-box;
  vertical-align: middle;
  transition-property: all;
  transition-duration: 0.3s;
  transition-timing-function: cubic-bezier(0.3, 2, 0.6, 1);
}
.l-header-dropdown__close::before {
  background-color: #fff;
  width: 24.4558441227px;
  height: 1px;
  transform: translateX(-3.2279220614px) rotate(45deg);
  top: 0;
  bottom: 0;
  left: 0;
}
.l-header-dropdown__close::after {
  background-color: #fff;
  width: 24.4558441227px;
  height: 1px;
  transform: translateX(-3.2279220614px) rotate(-45deg);
  top: 0;
  bottom: 0;
  left: 0;
}
.l-header-dropdown__close {
  position: fixed;
  top: 24px;
  right: calc(50% - 195px + 24px);
}
.l-header-dropdown__body {
  display: none;
  position: absolute;
  inset-inline: 0;
  top: var(--header-height);
  z-index: 110;
  max-height: calc(100dvh - var(--header-height));
  overflow-y: auto;
  scroll-behavior: smooth;
  overscroll-behavior: contain;
  box-sizing: border-box;
  top: 0;
  height: 100dvh;
  max-height: 100dvh;
  padding-top: var(--header-height);
  background-color: rgba(0, 0, 0, 0.85);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
}
.l-header-dropdown__body-inner {
  max-width: 500px;
  margin-inline: auto;
  padding: 18px;
}
.l-header-dropdown__body-inner > *:not(:last-child) {
  margin-bottom: 2rem;
}
.l-header-dropdown__body-inner nav > *:not(:last-child) {
  margin-bottom: 2rem;
}
.l-header-dropdown__body-inner {
  box-sizing: border-box;
  min-height: calc(100% - var(--header-height));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.l-header-dropdown__body-inner img {
  width: 70%;
}

.l-header-sticky .l-header-dropdown::after,
.l-header-fixed:not(.l-header-fixed--portrait-over):not(.l-header-fixed--portrait) .l-header-dropdown::after {
  position: absolute;
  content: "";
  margin: auto;
  box-sizing: border-box;
  vertical-align: middle;
  position: fixed;
  z-index: 109;
  inset-inline: 0;
  background-color: rgba(0, 0, 0, 0.7);
  top: var(--header-height);
  transition: opacity 0.4s, height 0s 0.4s;
  opacity: 0;
  height: 0;
}
.l-header-sticky .l-header-dropdown:has(> [aria-hidden=false])::after,
.l-header-fixed:not(.l-header-fixed--portrait-over):not(.l-header-fixed--portrait) .l-header-dropdown:has(> [aria-hidden=false])::after {
  transition: opacity 0.4s, height 0s 0s;
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  opacity: 1;
  height: 100vh;
  height: 100dvh;
}

/******************************************************************
layout - sp-view-layout
******************************************************************/
html:has(.l-sp-view-layout__header) {
  --header-height: 68px;
  scroll-padding-top: calc(var(--header-height) + 10px);
}

body:has(.l-sp-view-layout__header) {
  min-width: 320px;
  background-color: #171717;
}

.l-sp-view-layout {
  padding-top: 68px;
}
.l-sp-view-layout__header {
  position: absolute;
}
.l-sp-view-layout__head {
  box-sizing: border-box;
  position: fixed;
  z-index: 3;
  height: 68px;
  width: fit-content;
  top: 0;
  left: calc((100% - 390px) / 2);
}
@media screen and (max-width: 390px) {
  .l-sp-view-layout__head {
    left: 0;
  }
}
.l-sp-view-layout__head {
  padding: 16px 8px 0 8px;
  font-size: 1rem;
}
.l-sp-view-layout__head img {
  width: 196px;
}
.l-sp-view-layout__dropdown {
  box-sizing: border-box;
  position: fixed;
  z-index: 2;
  height: 68px;
}
@media screen and (min-width: 1280px) {
  .l-sp-view-layout__dropdown {
    display: none;
  }
}
.l-sp-view-layout__dropdown {
  width: 100%;
  max-width: 390px;
  margin-inline: auto;
  top: 0;
  left: 0;
  right: 0;
  background-color: #131313;
  display: flex;
  justify-content: flex-end;
}
.l-sp-view-layout__dropdown .l-header-dropdown {
  display: flex;
}
@media screen and (min-width: 1280px) {
  .l-sp-view-layout__dropdown .l-header-dropdown {
    display: none;
  }
}
.l-sp-view-layout__side {
  position: fixed;
  top: 0;
  height: 100vh;
  overflow-y: auto;
  width: calc((100% - 390px) / 2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: safe center;
}
@media screen and (max-width: 1280px) {
  .l-sp-view-layout__side > * {
    display: none;
  }
}
.l-sp-view-layout__side--left {
  left: 0;
  background: url(/album_tier1/assets/img/left-navi.png) right top/cover no-repeat;
}
.l-sp-view-layout__side--right {
  right: 0;
  background: url(/album_tier1/assets/img/right-navi.png) left top/cover no-repeat;
}
.l-sp-view-layout__side {
  color: #fff;
}
.l-sp-view-layout__side a {
  color: inherit;
  text-decoration: none;
}
@media (any-hover: hover) {
  .l-sp-view-layout__side a:hover {
    text-decoration: none;
  }
}
.l-sp-view-layout__side a:focus {
  text-decoration: none;
}
.l-sp-view-layout__side > *:not(:last-child) {
  margin-bottom: 50px;
}
.l-sp-view-layout__logo {
  max-width: 288px;
}
.l-sp-view-layout__official img {
  width: 214px;
}
.l-sp-view-layout__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 390px;
  min-height: 100vh;
  margin-inline: auto;
  background-color: #131313;
  color: #fff;
}
.l-sp-view-layout__content a {
  color: inherit;
  text-decoration: none;
}
@media (any-hover: hover) {
  .l-sp-view-layout__content a:hover {
    text-decoration: none;
  }
}
.l-sp-view-layout__content a:focus {
  text-decoration: none;
}
.l-sp-view-layout__section-vertical {
  margin: 35px 18px;
}
.l-sp-view-layout__section-vertical-padding {
  padding: 35px 18px;
}
.l-sp-view-layout__section-vertical-padding-bottom {
  margin-top: 35px;
  padding: 0 18px 35px 18px;
}
.l-sp-view-layout .bg-section1 {
  background: url(/album_tier1/assets/img/bg-section1.png) top center repeat-y;
}
.l-sp-view-layout .bg-section2 {
  background: url(/album_tier1/assets/img/bg-section2.png) top center repeat-y;
}
.l-sp-view-layout .bg-section3 {
  padding-bottom: 0.1px;
  background: url(/album_tier1/assets/img/bg-noise8.png) right top 55px no-repeat, url(/album_tier1/assets/img/bg-noise9.png) right bottom no-repeat;
}
.l-sp-view-layout .bg-section4 {
  background: url(/album_tier1/assets/img/bg-noise10.png) left top 55px no-repeat;
}
.l-sp-view-layout .bg-section5 {
  background: url(/album_tier1/assets/img/bg-noise11.png) right top no-repeat, url(/album_tier1/assets/img/bg-noise12.png) left bottom 80px no-repeat;
}
.l-sp-view-layout__nav > *:not(:last-child) {
  margin-bottom: 0.6em;
}
.l-sp-view-layout__nav {
  font-size: 22px;
  text-align: center;
}
.l-sp-view-layout__nav a {
  color: inherit;
  text-decoration: none;
}
@media (any-hover: hover) {
  .l-sp-view-layout__nav a:hover {
    text-decoration: none;
  }
}
.l-sp-view-layout__nav a:focus {
  text-decoration: none;
}
.l-sp-view-layout__nav a {
  transition-property: opacity;
  transition-duration: 0.4s;
}
@media (any-hover: hover) {
  .l-sp-view-layout__nav a:hover {
    opacity: 0.6;
  }
}
.l-sp-view-layout__nav a:focus {
  opacity: 0.6;
}
.l-sp-view-layout__datalist {
  text-align: center;
}
.l-sp-view-layout__datalist > *:not(:last-child) {
  margin-bottom: 30px;
}
.l-sp-view-layout__datalist dt img {
  width: 235px;
  margin-bottom: -5px;
}
.l-sp-view-layout__datalist dt {
  font-size: 15px;
}
.l-sp-view-layout__datalist dt .font-22 {
  font-size: 22px;
}
.l-sp-view-layout__datalist dt .font-18 {
  font-size: 18px;
}
.l-sp-view-layout__datalist dd {
  margin-top: 10px;
}
.l-sp-view-layout__footer {
  background-color: #131313;
  padding: 0.75em;
  text-align: center;
}

/******************************************************************
layout - footer-section
******************************************************************/
.l-footer-section {
  color: #000;
}

.l-footer-section-title {
  position: relative;
  z-index: 1;
  font-family: "Zen Old Mincho", serif;
  font-weight: 900;
  font-size: 28.914px;
  font-style: normal;
  line-height: 0.8;
  color: #f4f0df;
  text-align: center;
  margin: 0;
}

.l-footer-section-title--sns {
  font-size: 22px;
  line-height: 0.8;
}

.l-footer-section-frame {
  width: 95%;
}
.l-footer-section-frame--side {
  width: 240px;
}
.l-footer-section-frame {
  height: 96px;
  margin: 0 auto;
  background-color: #000;
  position: relative;
}

.l-footer-section-frame::before, .l-footer-section-frame::after {
  content: "";
  position: absolute;
  top: -10px;
  bottom: -10px;
  width: 1px;
  background-color: #fff;
}

.l-footer-section-frame::before {
  left: 0;
}

.l-footer-section-frame::after {
  right: 0;
}

.l-footer-section-frame-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  position: relative;
}

.l-footer-section-frame-inner::before, .l-footer-section-frame-inner::after {
  content: "";
  position: absolute;
  left: -10px;
  right: -10px;
  height: 1px;
  background-color: #fff;
}

.l-footer-section-frame-inner::before {
  top: 0;
}

.l-footer-section-frame-inner::after {
  bottom: 0;
}

.l-footer-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #c69c6e;
  border-radius: 5px;
  color: #000;
  text-decoration: none;
  transition: opacity 0.3s, transform 0.2s;
}

@media (hover) {
  .l-footer-icon:hover {
    opacity: 0.85;
    transform: scale(1.05);
  }
}
@media (hover: none) {
  .l-footer-icon:active {
    opacity: 0.85;
    transform: scale(1.05);
  }
}
.l-footer-icon svg {
  width: 22px;
  height: 22px;
  display: block;
}

.l-footer-icon--line {
  background-color: rgba(0, 0, 0, 0);
  border-radius: 0;
}

.l-footer-icon--line svg {
  width: 40px;
  height: 40px;
}

/******************************************************************
component - list-note
******************************************************************/
.c-list-note {
  font-size: 13px;
}
.c-list-note__item {
  display: table-row;
}
.c-list-note__head {
  display: table-cell;
  padding-right: 0.25em;
  white-space: nowrap;
  vertical-align: top;
}
.c-list-note__body {
  display: table-cell;
  vertical-align: top;
}
.c-list-note__body a {
  word-break: break-all;
}

/******************************************************************
component - image
******************************************************************/
a:has(> .c-image) {
  display: block;
  color: inherit;
  text-decoration: none;
}
@media (any-hover: hover) {
  a:has(> .c-image):hover {
    text-decoration: none;
  }
}
a:has(> .c-image):focus {
  text-decoration: none;
}

a:has(> .c-image:not(.c-image--full):not(.c-image--object-fit)) {
  width: fit-content;
  margin-inline: auto;
}

a:has(> .c-image.c-image--left:not(.c-image--full):not(.c-image--object-fit)) {
  margin-inline: initial;
}

a:has(> .c-image.c-image--right:not(.c-image--full):not(.c-image--object-fit)) {
  margin-inline: auto 0;
}

.c-image {
  display: table;
  width: fit-content;
  margin-inline: auto;
}
.c-image--left {
  margin-inline: initial;
}
.c-image--right {
  margin-inline: auto 0;
}

/******************************************************************
component - image-play
******************************************************************/
.c-image-play {
  position: relative;
  display: inline-block;
  border: 1px solid #fff;
}
.c-image-play__main {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(/album_tier1/assets/img/icon-play.png);
  background-size: 46px auto;
}

/******************************************************************
component - heading2
******************************************************************/
.c-heading2 {
  margin-inline: -18px;
}

/******************************************************************
component - heading3
******************************************************************/
.c-heading3 {
  font-weight: bold;
  font-size: 20px;
  text-align: center;
}

/******************************************************************
component - text
******************************************************************/
.c-text {
  line-height: 1.8;
}
.c-text__caution {
  color: #d70000;
  font-weight: normal;
}

/******************************************************************
component - text-date
******************************************************************/
.c-text-date {
  text-align: center;
  color: #aa8b66;
  font-size: 18px;
}
.c-text-date strong {
  font-size: 36px;
  font-weight: normal;
}
.c-text-date span {
  color: #cecbbd;
}

/******************************************************************
component - dialog
******************************************************************/
body:has(.c-dialog[open]) {
  overflow: hidden;
}

.l-wrapper:has(.c-dialog[open]) {
  overflow-y: auto;
  scrollbar-gutter: stable;
}

.l-wrapper:has(.c-dialog[open]) .l-header-fixed .l-header-fixed__inner > * {
  overflow-y: auto;
  scrollbar-gutter: stable;
}

.c-dialog {
  max-width: 100vw;
  max-height: 100dvh;
  margin: auto !important;
  box-sizing: border-box;
  width: 100vw;
  height: 100dvh;
  border: 0;
  background-color: transparent;
  overflow: hidden;
  padding: 20px;
}
.c-dialog[open] {
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-dialog::backdrop {
  background-color: rgba(0, 0, 0, 0.7);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
}
.c-dialog {
  transition-property: opacity;
  transition-duration: 300ms;
  opacity: 0;
}
.c-dialog::backdrop {
  transition-property: opacity;
  transition-duration: 300ms;
  opacity: 0;
}
.c-dialog__inner {
  transition-property: transform;
  transition-duration: 300ms;
  transform: scale(0.97);
}
.c-dialog.is-open {
  opacity: 1;
}
.c-dialog.is-open::backdrop {
  opacity: 1;
}
.c-dialog.is-open .c-dialog__inner {
  transform: scale(1);
}
.c-dialog__inner {
  box-sizing: border-box;
  position: relative;
  width: fit-content;
  height: fit-content;
  max-height: 100%;
  max-width: 1300px;
}
.c-dialog__inner:has(.c-swiper-dialog-gallery) {
  width: 100%;
}
.c-dialog__inner {
  outline: 0;
}
.c-dialog[data-type=image] .c-dialog__inner img {
  max-height: calc(100dvh - 50px - 50px);
}
.c-dialog[data-type=movie] .c-dialog__inner, .c-dialog[data-type=youtube] .c-dialog__inner {
  width: 100%;
}
.c-dialog[data-type=movie] .c-dialog__inner iframe, .c-dialog[data-type=youtube] .c-dialog__inner iframe {
  width: 100%;
  aspect-ratio: 16/9;
}
.c-dialog__close {
  position: absolute;
  top: 10px;
  right: 10px;
  display: inline-block;
  width: fit-content;
  border-radius: 100vw;
  aspect-ratio: 1/1;
  line-height: 0;
  padding: 16px;
  transition-property: background;
  transition-duration: 0.4s;
}
@media (any-hover: hover) {
  .c-dialog__close:hover {
    background-color: #333;
  }
}
.c-dialog__close:focus {
  background-color: #333;
}
.c-dialog__close > span {
  display: inline-block;
  width: 24px;
  height: 24px;
  position: relative;
}
.c-dialog__close > span::before, .c-dialog__close > span::after {
  position: absolute;
  content: "";
  margin: auto;
  box-sizing: border-box;
  vertical-align: middle;
  transition-property: all;
  transition-duration: 0.3s;
  transition-timing-function: cubic-bezier(0.3, 2, 0.6, 1);
}
.c-dialog__close > span::before {
  background-color: #fff;
  width: 30.941125497px;
  height: 3px;
  transform: translateX(-3.4705627485px) rotate(45deg);
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}
.c-dialog__close > span::after {
  background-color: #fff;
  width: 30.941125497px;
  height: 3px;
  transform: translateX(-3.4705627485px) rotate(-45deg);
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}

/******************************************************************
component - data-scroll-ani
******************************************************************/
[data-scroll-ani=fadeIn],
[data-scroll-ani-parent=fadeIn] > * {
  opacity: 0;
}
[data-scroll-ani=fadeIn].is-scroll-ani,
[data-scroll-ani-parent=fadeIn] > *.is-scroll-ani {
  animation: fadeIn 1s ease-out both;
}

[data-scroll-ani-child=fadeIn] {
  opacity: 0;
}
.js-scroll-ani-group.is-scroll-ani [data-scroll-ani-child=fadeIn] {
  animation: fadeIn 1s ease-out both;
}

[data-scroll-ani=fadeInUp],
[data-scroll-ani-parent=fadeInUp] > * {
  opacity: 0;
}
[data-scroll-ani=fadeInUp].is-scroll-ani,
[data-scroll-ani-parent=fadeInUp] > *.is-scroll-ani {
  animation: fadeInUp 1s ease-out both;
}

[data-scroll-ani-child=fadeInUp] {
  opacity: 0;
}
.js-scroll-ani-group.is-scroll-ani [data-scroll-ani-child=fadeInUp] {
  animation: fadeInUp 1s ease-out both;
}

/******************************************************************
component - ani
******************************************************************/
.c-ani-blinkfade {
  animation: blinkfade 1s ease-in-out infinite alternate;
}

.c-ani-swing {
  animation: swing 1.5s ease-in-out infinite alternate;
}

/******************************************************************
component - keyframes
******************************************************************/
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes blinkfade {
  0% {
    opacity: 1;
  }
  98% {
    opacity: 1;
  }
  100% {
    opacity: 0.3;
  }
}
@keyframes swing {
  0% {
    transform: rotate(-10deg);
  }
  100% {
    transform: rotate(10deg);
  }
}
/******************************************************************
component - shop-list
******************************************************************/
.c-shop-list {
  --gap: 16px;
  --column: 2;
  display: flex;
  flex-wrap: wrap;
  margin-right: calc(var(--gap) * -1);
  gap: var(--gap);
}
.c-shop-list > * {
  box-sizing: border-box;
  width: calc(100% / var(--column) - var(--gap));
}
.c-shop-list a {
  box-sizing: border-box;
  display: block;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 220/60;
}
/******************************************************************
project - visual
******************************************************************/
.p-visual__main {
  margin-bottom: 20px;
}
.p-visual__main p {
  position: relative;
  margin-top: -180px;
  margin-right: 10px;
  width: 30%;
  margin-left: auto;
}
.p-visual__about {
  position: relative;
  margin-top: -15px;
  padding: 0 20px 30px 20px;
}
.p-visual__about h2 {
  text-align: center;
  font-weight: normal;
  font-size: 15px;
}
.p-visual__about h2 img {
  margin-top: 12px;
  width: 95%;
}
.p-visual__about-date {
  text-align: center;
  font-weight: normal;
  font-size: 18px;
}
.p-visual__about-date strong {
  font-weight: normal;
  font-size: 36px;
}
.p-visual__about-text {
  margin-top: 20px;
  color: #bca171;
  margin-inline: -10px;
  font-size: 16px;
  line-height: 1.7;
  text-align: center;
}
.p-visual__about-star {
  position: absolute;
  width: 75px;
  top: -60px;
  left: 0;
}
.p-visual__about-star2 {
  position: absolute;
  width: 50px;
  top: 150px;
  right: 0;
}
.p-visual__live {
  padding: 20px 0 0 0;
  background: linear-gradient(to bottom, #323232 0%, rgba(50, 50, 50, 0) 100%);
  text-align: center;
}
.p-visual__live img {
  width: 80%;
}

/******************************************************************
project - album
******************************************************************/
.p-album > * {
  background: url(/album_tier1/assets/img/bg-noise1.png) left top 65px no-repeat, url(/album_tier1/assets/img/bg-noise2.png) right top 160px no-repeat;
}
.p-album__list {
  position: relative;
}
.p-album__list::before, .p-album__list::after {
  background-color: #fff;
}
.p-album__list::before {
  z-index: 1;
  position: absolute;
  content: "";
  margin: auto;
  box-sizing: border-box;
  vertical-align: middle;
  top: -10px;
  left: 0;
  width: 1px;
  height: calc(100% + 20px);
}
.p-album__list::after {
  position: absolute;
  content: "";
  margin: auto;
  box-sizing: border-box;
  vertical-align: middle;
  top: -10px;
  right: 0;
  width: 1px;
  height: calc(100% + 20px);
}
.p-album__list > li:not(:last-child) {
  margin-bottom: 20px;
}
.p-album__list > li {
  position: relative;
}
.p-album__list > li::before, .p-album__list > li::after {
  background-color: #fff;
}
.p-album__list > li::before {
  position: absolute;
  content: "";
  margin: auto;
  box-sizing: border-box;
  vertical-align: middle;
  top: 0;
  left: -10px;
  width: calc(100% + 20px);
  height: 1px;
}
.p-album__list > li::after {
  position: absolute;
  content: "";
  margin: auto;
  box-sizing: border-box;
  vertical-align: middle;
  bottom: 0;
  left: -10px;
  width: calc(100% + 20px);
  height: 1px;
}
.p-album__list > li {
  background-color: #121212;
  padding: 40px 20px;
}
.p-album__list > li > *:not(:last-child) {
  margin-bottom: 24px;
}
.p-album__list-img {
  padding: 0 17px;
  text-align: center;
}
.p-album__list-img > *:not(:last-child) {
  margin-bottom: 10px;
}
.p-album__list h3 {
  text-align: center;
  font-size-adjust: 22px;
}
.p-album__list h3 span {
  display: block;
  font-size: 15px;
  color: #aa8b66;
}
.p-album__list dl {
  font-size: 15px;
  line-height: 1.6;
}
.p-album__list dl div {
  display: table-row;
}
.p-album__list dl dt {
  display: table-cell;
  padding-right: 0.75em;
}
.p-album__list dl dd {
  display: table-cell;
}
.p-album__list p {
  font-size: 15px;
  line-height: 1.6;
}

.p-album-bottom {
  padding-block: 0.1px;
  background: url(/album_tier1/assets/img/bg-noise3.png) left top no-repeat, url(/album_tier1/assets/img/bg-noise4.png) right bottom no-repeat;
}

/******************************************************************
project - special-offer
******************************************************************/
.p-special-offer > * {
  background: url(/album_tier1/assets/img/bg-noise5.png) right top 50px no-repeat;
}
.p-special-offer__list {
  margin-top: 45px;
  position: relative;
}
.p-special-offer__list::before, .p-special-offer__list::after {
  background-color: #fff;
}
.p-special-offer__list::before {
  z-index: 1;
  position: absolute;
  content: "";
  margin: auto;
  box-sizing: border-box;
  vertical-align: middle;
  top: -10px;
  left: 0;
  width: 1px;
  height: calc(100% + 20px);
}
.p-special-offer__list::after {
  position: absolute;
  content: "";
  margin: auto;
  box-sizing: border-box;
  vertical-align: middle;
  top: -10px;
  right: 0;
  width: 1px;
  height: calc(100% + 20px);
}
.p-special-offer__list > li:not(:last-child) {
  margin-bottom: 20px;
}
.p-special-offer__list > li {
  position: relative;
}
.p-special-offer__list > li::before, .p-special-offer__list > li::after {
  background-color: #fff;
}
.p-special-offer__list > li::before {
  position: absolute;
  content: "";
  margin: auto;
  box-sizing: border-box;
  vertical-align: middle;
  top: 0;
  left: -10px;
  width: calc(100% + 20px);
  height: 1px;
}
.p-special-offer__list > li::after {
  position: absolute;
  content: "";
  margin: auto;
  box-sizing: border-box;
  vertical-align: middle;
  bottom: 0;
  left: -10px;
  width: calc(100% + 20px);
  height: 1px;
}
.p-special-offer__list > li {
  background-color: #121212;
  padding: 40px 20px;
}
.p-special-offer__list > li > *:not(:last-child) {
  margin-bottom: 24px;
}
.p-special-offer__list h3 {
  flex-grow: 1;
  font-size: 18px;
  text-align: center;
}
.p-special-offer__list h3 small {
  display: block;
  font-size: 15px;
}
.p-special-offer__img {
  padding: 0 17px;
  text-align: center;
}
.p-special-offer__note {
  font-size: 15px;
  line-height: 1.6;
}

/******************************************************************
project - event
******************************************************************/
.p-event > * {
  background: url(/album_tier1/assets/img/bg-noise6.png) right top 65px no-repeat, url(/album_tier1/assets/img/bg-noise7.png) left top 450px no-repeat;
}
.p-event__lead {
  font-size: 26px;
  color: #aa8b66;
  font-weight: 600;
  text-align: center;
}
.p-event__heading3 {
  text-align: center;
  font-size: 22px;
  line-height: 1.8;
}
.p-event__heading3 small {
  display: block;
  font-size: 16px;
  color: #aa8b66;
}
.p-event__list {
  position: relative;
}
.p-event__list::before, .p-event__list::after {
  background-color: #fff;
}
.p-event__list::before {
  z-index: 1;
  position: absolute;
  content: "";
  margin: auto;
  box-sizing: border-box;
  vertical-align: middle;
  top: -10px;
  left: 0;
  width: 1px;
  height: calc(100% + 20px);
}
.p-event__list::after {
  position: absolute;
  content: "";
  margin: auto;
  box-sizing: border-box;
  vertical-align: middle;
  top: -10px;
  right: 0;
  width: 1px;
  height: calc(100% + 20px);
}
.p-event__list > li:not(:last-child) {
  margin-bottom: 20px;
}
.p-event__list > li {
  position: relative;
}
.p-event__list > li::before, .p-event__list > li::after {
  background-color: #fff;
}
.p-event__list > li::before {
  position: absolute;
  content: "";
  margin: auto;
  box-sizing: border-box;
  vertical-align: middle;
  top: 0;
  left: -10px;
  width: calc(100% + 20px);
  height: 1px;
}
.p-event__list > li::after {
  position: absolute;
  content: "";
  margin: auto;
  box-sizing: border-box;
  vertical-align: middle;
  bottom: 0;
  left: -10px;
  width: calc(100% + 20px);
  height: 1px;
}
.p-event__list > li {
  background-color: #121212;
  padding: 30px 20px;
}
.p-event__list > li > *:not(:last-child) {
  margin-bottom: 10px;
}
.p-event__list {
  text-align: center;
}
.p-event__list h4 {
  font-size: 20px;
}
.p-event__list p {
  font-size: 20px;
}
.p-event__list p span {
  display: block;
  margin-top: 0.75em;
  color: #aa8b66;
  font-size: 1rem;
}
.p-event__list div {
  border-top: 1px solid #3f3f3b;
  margin-top: 24px;
  padding-top: 24px;
  font-size: 14px;
  line-height: 1.8;
}
.p-event__list h5 {
  font-size: 15px;
}
.p-event__list h5:not(:first-child) {
  margin-top: 15px;
}
.p-event__list ul {
  color: #aa8b66;
}
.p-event__note {
  border: 1px solid #aa8b66;
  background-color: #504130;
  color: #f5f1e0;
  padding: 20px;
  font-size: 15px;
  line-height: 1.6;
  font-weight: 600;
}
.p-event__note > *:not(:last-child) {
  margin-bottom: 0.25em;
}
.p-event__note h3:not(:first-child) {
  margin-top: 1em;
}
.p-event__note h3 {
  font-size: 1rem;
}

/******************************************************************
utility - mediaquery
******************************************************************/
.u-portrait-media {
  display: none;
}

.u-sp-media {
  display: none;
}

/******************************************************************
utility - u-gutter
******************************************************************/
.u-gutter > *:not(:last-child) {
  margin-bottom: 1rem;
}

.u-gutter-s > *:not(:last-child) {
  margin-bottom: 0.75rem;
}

.u-gutter-2x > *:not(:last-child) {
  margin-bottom: 2rem;
}

/******************************************************************
utility - display
******************************************************************/
.u-block {
  display: block;
}

.u-none {
  display: none;
}

.u-inline {
  display: inline;
}

.u-inline-block {
  display: inline-block;
}

/******************************************************************
utility - display-off
******************************************************************/
.u-display-off {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  overflow: hidden;
  padding: 0;
  clip: rect(0, 0, 0, 0);
}

/******************************************************************
utility - text-align
******************************************************************/
.u-center {
  text-align: center !important;
}

.u-right {
  text-align: right !important;
}

.u-left {
  text-align: left !important;
}

/******************************************************************
utility - hover-opacity
******************************************************************/
.u-hover-opacity {
  transition-property: opacity;
  transition-duration: 0.4s;
}
@media (any-hover: hover) {
  .u-hover-opacity:hover {
    opacity: 0.7;
  }
}
.u-hover-opacity:focus {
  opacity: 0.7;
}

/******************************************************************
utility - hover-expand
******************************************************************/
.u-hover-expand-2x, .u-hover-expand-2l, .u-hover-expand-l, .u-hover-expand, .u-hover-expand-s, .u-hover-expand-2s {
  display: inline-block;
  transition-property: transform;
  transition-duration: 0.3s;
  transition-timing-function: cubic-bezier(0.3, 1.8, 0.6, 1);
  will-change: transform;
}

@media (any-hover: hover) {
  .u-hover-expand-2s:hover {
    transform: scale(1.01);
  }
}
.u-hover-expand-2s:focus {
  transform: scale(1.01);
}

@media (any-hover: hover) {
  .u-hover-expand-s:hover {
    transform: scale(1.02);
  }
}
.u-hover-expand-s:focus {
  transform: scale(1.02);
}

@media (any-hover: hover) {
  .u-hover-expand:hover {
    transform: scale(1.03);
  }
}
.u-hover-expand:focus {
  transform: scale(1.03);
}

@media (any-hover: hover) {
  .u-hover-expand-l:hover {
    transform: scale(1.04);
  }
}
.u-hover-expand-l:focus {
  transform: scale(1.04);
}

@media (any-hover: hover) {
  .u-hover-expand-2l:hover {
    transform: scale(1.05);
  }
}
.u-hover-expand-2l:focus {
  transform: scale(1.05);
}

@media (any-hover: hover) {
  .u-hover-expand-2x:hover {
    transform: scale(1.06);
  }
}
.u-hover-expand-2x:focus {
  transform: scale(1.06);
}

/******************************************************************
utility - ani-delay
******************************************************************/
.u-ani-delay0s,
.u-ani-delay0s::before,
.u-ani-delay0s::after {
  animation-delay: 0s !important;
}

.u-ani-delay01s,
.u-ani-delay01s::before,
.u-ani-delay01s::after {
  animation-delay: 0.1s !important;
}

.u-ani-delay02s,
.u-ani-delay02s::before,
.u-ani-delay02s::after {
  animation-delay: 0.2s !important;
}

.u-ani-delay03s,
.u-ani-delay03s::before,
.u-ani-delay03s::after {
  animation-delay: 0.3s !important;
}

.u-ani-delay04s,
.u-ani-delay04s::before,
.u-ani-delay04s::after {
  animation-delay: 0.4s !important;
}

.u-ani-delay05s,
.u-ani-delay05s::before,
.u-ani-delay05s::after {
  animation-delay: 0.5s !important;
}

.u-ani-delay06s,
.u-ani-delay06s::before,
.u-ani-delay06s::after {
  animation-delay: 0.6s !important;
}

.u-ani-delay07s,
.u-ani-delay07s::before,
.u-ani-delay07s::after {
  animation-delay: 0.7s !important;
}

.u-ani-delay08s,
.u-ani-delay08s::before,
.u-ani-delay08s::after {
  animation-delay: 0.8s !important;
}

.u-ani-delay09s,
.u-ani-delay09s::before,
.u-ani-delay09s::after {
  animation-delay: 0.9s !important;
}

.u-ani-delay10s,
.u-ani-delay10s::before,
.u-ani-delay10s::after {
  animation-delay: 1s !important;
}

.u-ani-delay11s,
.u-ani-delay11s::before,
.u-ani-delay11s::after {
  animation-delay: 1.1s !important;
}

.u-ani-delay12s,
.u-ani-delay12s::before,
.u-ani-delay12s::after {
  animation-delay: 1.2s !important;
}

.u-ani-delay13s,
.u-ani-delay13s::before,
.u-ani-delay13s::after {
  animation-delay: 1.3s !important;
}

.u-ani-delay14s,
.u-ani-delay14s::before,
.u-ani-delay14s::after {
  animation-delay: 1.4s !important;
}

.u-ani-delay15s,
.u-ani-delay15s::before,
.u-ani-delay15s::after {
  animation-delay: 1.5s !important;
}

.u-ani-delay16s,
.u-ani-delay16s::before,
.u-ani-delay16s::after {
  animation-delay: 1.6s !important;
}

.u-ani-delay17s,
.u-ani-delay17s::before,
.u-ani-delay17s::after {
  animation-delay: 1.7s !important;
}

.u-ani-delay18s,
.u-ani-delay18s::before,
.u-ani-delay18s::after {
  animation-delay: 1.8s !important;
}

.u-ani-delay19s,
.u-ani-delay19s::before,
.u-ani-delay19s::after {
  animation-delay: 1.9s !important;
}

.u-ani-delay20s,
.u-ani-delay20s::before,
.u-ani-delay20s::after {
  animation-delay: 2s !important;
}

.u-ani-delay21s,
.u-ani-delay21s::before,
.u-ani-delay21s::after {
  animation-delay: 2.1s !important;
}

.u-ani-delay22s,
.u-ani-delay22s::before,
.u-ani-delay22s::after {
  animation-delay: 2.2s !important;
}

.u-ani-delay23s,
.u-ani-delay23s::before,
.u-ani-delay23s::after {
  animation-delay: 2.3s !important;
}

.u-ani-delay24s,
.u-ani-delay24s::before,
.u-ani-delay24s::after {
  animation-delay: 2.4s !important;
}

.u-ani-delay25s,
.u-ani-delay25s::before,
.u-ani-delay25s::after {
  animation-delay: 2.5s !important;
}

.u-ani-delay26s,
.u-ani-delay26s::before,
.u-ani-delay26s::after {
  animation-delay: 2.6s !important;
}

.u-ani-delay27s,
.u-ani-delay27s::before,
.u-ani-delay27s::after {
  animation-delay: 2.7s !important;
}

.u-ani-delay28s,
.u-ani-delay28s::before,
.u-ani-delay28s::after {
  animation-delay: 2.8s !important;
}

.u-ani-delay29s,
.u-ani-delay29s::before,
.u-ani-delay29s::after {
  animation-delay: 2.9s !important;
}

.u-ani-delay30s,
.u-ani-delay30s::before,
.u-ani-delay30s::after {
  animation-delay: 3s !important;
}
