@charset "UTF-8";
/* CSS Document */


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

	Common

//////////////////////////////////////////////////////////////////////////////// */
@font-face {
	font-family: 'sns_ico';
	src:
		url('../fonts/sns_ico.ttf?sij4de') format('truetype'),
		url('../fonts/sns_ico.woff?sij4de') format('woff'),
		url('../fonts/sns_ico.svg?sij4de#sns_ico') format('svg');
	font-weight: normal;
	font-style: normal;
}

i.snsIcon {
	font-family: 'sns_ico' !important;
	speak: never;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;

	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	
	color: #000;
}

.icon-ap:before { content: "\e900";}
.icon-blo:before { content: "\e901";}
.icon-fb:before { content: "\e902";}
.icon-hp:before { content: "\e903";}
.icon-in:before { content: "\e904";}
.icon-line:before { content: "\e905";}
.icon-spo:before { content: "\e906";}
.icon-tt:before { content: "\e907";}
.icon-tw:before { content: "\e908";}
.icon-yt:before { content: "\e909";}
.icon-x:before { content: "\e90a";}
.icon-wb:before { content: "\e90b";}


html {
	scroll-behavior: smooth;
}
body {
	font-family: "游明朝体", "Yu Mincho", YuMincho, "ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif;
	font-size: min(3.4vw, 16px);
	line-height: 1.8;
  letter-spacing: 0.05em;
	-webkit-text-size-adjust: 100%;
}
body::before {
  content: "";
  display: block;
  width: 100vw;
  height: 100vh;
  background-image: linear-gradient(150deg, #b36b2f 0%, #e39641 40%, #461e16 90%);
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  pointer-events: none;
}
body::after {
  content: "";
  display: block;
  width: 100vw;
  height: 100vh;
  background: url("../images/bg_texture.png") repeat left top;
  background-size: 65px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  pointer-events: none;
  mix-blend-mode: screen;
}

img {
	max-width: 100%;
	height: auto;
}
ul { list-style: none;}

.anim {
	opacity: 0;
	transition: all .6s ease-out;
}
.anim.on {
	opacity: 1;
}


.opYT {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #222;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	transition: all 1s cubic-bezier(0.33, 1, 0.68, 1);
    z-index: 9998;
}
.opYT .ytWrap {
    width: 100%;
	padding-top: 56.25%;
	position: relative;
}
.opYT .ytWrap iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.opYT .ytClose {
	position: absolute;
    bottom: 17px;
    left: 50%;
	transform: translateX(-50%);
    width: 40px;
    height: 40px;
	z-index: 10;
}

.opYT.close {
	transform: translateY(-100%);
}

#fixMenu {
  position: fixed;
  bottom: 0;
  left: 50%;
  width: 100%;
  max-width: 600px;
  background-color: #fff;
  border-radius: 10px 10px 0 0;
  transform: translateX(-50%);
  overflow: hidden;
  z-index: 9997;
  box-shadow: 0px -2px 5px 0px rgba(0, 0, 0, 0.2);
}
#fixMenu ul {
  display: flex;
}
#fixMenu ul li {
  width: 40%;
  border-left: #ddd solid 1px;
}
#fixMenu ul li a {
  text-align: center;
  display: block;
  color: #000000;
  text-decoration: none;
  line-height: 1.4;
  padding: min(3vw, 15px) min(2vw, 10px);
  font-size: min(3.8vw, 20px);
  font-feature-settings: "palt";
  letter-spacing: 0.02em;
}
#fixMenu ul li.menuBtn {
  width: 20%;
  position: relative;
}
#fixMenu ul li.menuBtn.new::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ffea00;
  position: absolute;
  top: 0.5em;
  right: 0.5em;
}
#fixMenu ul li.menuBtn a {
  background-color: #000;
  width: 100%;
  height: 100%;
  position: relative;
}
#fixMenu ul li.menuBtn a::before,
#fixMenu ul li.menuBtn a::after {
  content: "";
  display: block;
  width: 54%;
  height: 2px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transition: all 0.3s ease-out;
} 
#fixMenu ul li.menuBtn a::before {
  transform: translate(-50%, -300%);
}
#fixMenu ul li.menuBtn a::after {
  transform: translate(-50%, 250%);
}

#fixMenu ul li.menuBtn a.on::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
#fixMenu ul li.menuBtn a.on::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}



.fixArea {  
  position: fixed;
  bottom: 0;
  left: 50%;
  width: 100%;
  max-width: 600px;
  transform: translateX(-50%);
  z-index: 9997;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: min(4vw, 20px);
}

.fixArea .news {
  background-color: #fff;
  width: min(90vw, 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  padding: min(3vw, 15px);
}
.fixArea .news h5 {
  width: 20%;
  font-size: min(3.6vw, 18px);
}
.fixArea .news .newsWrap {
  width: 80%;
  line-height: 1.4;
}
.fixArea .news .newsWrap .date {
  font-size: min(3vw, 12px);
  font-weight: bold;
  margin-bottom: min(1vw, 8px);
}
.fixArea .news .newsWrap a {
  color: #000;
  text-decoration: none;
  line-height: 1.4;
  position: relative;
  display: block;
  white-space: nowrap;
  overflow: hidden;
}
.fixArea .news .newsWrap a span {
  display: block;
  width: fit-content;
  animation: tic 30s linear 0s infinite;
}
@keyframes tic {
  0% { transform: translateX(0%);}
  100% { transform: translateX(-100%);}
}


.fixArea .news .newsWrap a::after {
  content: "Official Site";
  display: block;
  text-align: right;
  font-size: min(2.8vw, 10px);
  margin-top: min(2vw, 10px);
  width: fit-content;
  padding-left: 1em;
  margin-left: auto;
  background-color: #fff;
  position: relative;
  z-index: 1;
}
.fixArea .news .newsWrap a::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  bottom: 0.4em;
  left: 0;
  background-color: #000;
  position: absolute;
  z-index: 0;
}


.fixArea .fixBtn {
  display: flex;
  width: 100%;
  background-color: #fff;
  border-radius: 10px 10px 0 0;
  box-shadow: 0px -2px 5px 0px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}
.fixArea .fixBtn li {
  width: 40%;
  border-left: #ddd solid 1px;
}
.fixArea .fixBtn.addMenu li {
  width: 27%;
}
.fixArea .fixBtn li a {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000000;
  text-decoration: none;
  line-height: 1.4;
  padding: min(3vw, 15px) min(2vw, 10px);
  font-size: min(3.8vw, 20px);
  font-feature-settings: "palt";
  letter-spacing: 0.02em;
  height: 100%;
}
.fixArea .fixBtn li a.spMenu {
  font-size: min(2.4vw, 9.6px);
}
.fixArea .fixBtn li.menuBtn {
  width: 20%;
  position: relative;
}
.fixArea .fixBtn li.menuBtn.new::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ffea00;
  position: absolute;
  top: 0.5em;
  right: 0.5em;
}
.fixArea .fixBtn li.menuBtn a {
  background-color: #000;
  width: 100%;
  height: 100%;
  position: relative;
}
.fixArea .fixBtn li.menuBtn a::before,
.fixArea .fixBtn li.menuBtn a::after {
  content: "";
  display: block;
  width: 54%;
  height: 2px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transition: all 0.3s ease-out;
} 
.fixArea .fixBtn li.menuBtn a::before {
  transform: translate(-50%, -300%);
}
.fixArea .fixBtn li.menuBtn a::after {
  transform: translate(-50%, 250%);
}

.fixArea .fixBtn li.menuBtn a.on::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.fixArea .fixBtn li.menuBtn a.on::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

#modalMenu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #fff;
  z-index: 9996;
  display: none;
}
#modalMenu .modalMenuInner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding-bottom: 24%;
}
#modalMenu .menuBlock {
  padding: min(3vw, 30px) min(8vw, 80px);
}
#modalMenu .menuBlock + .menuBlock {
  border-top: #000 solid 1px;
}

#modalMenu .pageMenu {
  font-size: min(4.4vw, 24px);
  line-height: 1.6;
}
#modalMenu .pageMenu a {
  color: #000;
  text-decoration: none;
  font-feature-settings: "palt";
  font-size: min(4.2vw, 24px);
  line-height: 1.4;
  position: relative;
}
#modalMenu .pageMenu span {
  font-size: 0.7em;
}
#modalMenu .pageMenu.new a::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ffea00;
  position: absolute;
  bottom: 1em;
  right: -0.6em;
}
#modalMenu .menuBlock ul {
  margin-top: min(3vw, 15px);
}
#modalMenu .menuBlock ul li + li {
  margin-top: min(0.5vw, 5px);
}
#modalMenu .menuBlock ul li a {
  color: #000;
  text-decoration: none;
  font-size: min(3.8vw, 20px);
  font-feature-settings: "palt";
  
  display: flex;
  line-height: 1.6;
  align-items: baseline;
  gap: min(2vw, 10px);
}
#modalMenu .menuBlock ul li a span {
  background-color: #000;
  color: #fff;
  font-size: 0.76em;
  padding: min(0.5vw, 3px) min(2vw, 10px);
  white-space: nowrap;
}

#remasterBnr {
  position: absolute;
  top: min(4vw, 20px);
  right: min(4vw, 20px);
  z-index: 2;
  width: min(32vw, 180px);
}
#remasterBnr.v2 {
  position: absolute;
  top: min(3vw, 15px);
  right: min(3vw, 20px);
  z-index: 2;
  width: min(26vw, 150px);
}

.specialMenu {
  position: absolute;
/*  bottom: min(15vw, 100px);*/
  bottom: min(9vw, 100px);
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  border-radius: 8px;
  width: 94%;
  padding: min(4vw, 20px);
  z-index: 1;
  
  transition: all 0.3s ease-out;
  opacity: 0;
  pointer-events: none;
/*  clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0% 100%);*/
}
.specialMenu::after {
  content: "";
  display: block;
  width: 20px;
  height: 14px;
  background-color: #fff;
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  position: absolute;
  bottom: 0%;
  left: 65%;
  transform: translateY(90%);
}
.specialMenu.on {
/*  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);*/
  opacity: 1;
  pointer-events: auto;
}
.specialMenu p {
  font-size: min(3.2vw, 14px);
  letter-spacing: 0.04em;
  margin-bottom: min(3vw, 15px);
  border-bottom: #000 solid 1px;
  text-align: center;
  padding-bottom: min(1vw, 5px);
}
.specialMenu ul {
  display: flex;
  flex-direction: column;
  gap: min(1vw, 5px);
}
.specialMenu ul li a {
  color: #000;
  text-decoration: none;
  font-feature-settings: "palt";
  
  display: flex;
  align-items: flex-start;
  gap: min(2vw, 10px);
    line-height: 1.6;
}
.specialMenu ul li a span {
  background-color: #000;
  color: #fff;
  font-size: 0.86em;
  padding: min(0.5vw, 3px) min(2vw, 10px);
  white-space: nowrap;
}

@media screen and (min-width: 821px) {
	
	.sp { display: none;}
	
	a { transition: all 0.3s ease-out;}
	a:hover { opacity: 0.5;}
  
  
  #fixMenu {
    display: none;
  }
  #fixMenu ul li {
    width: 42%;
  }
	#fixMenu ul li.menuBtn {
    width: 16%;
  }
  #fixMenu ul li.menuBtn a::before,
  #fixMenu ul li.menuBtn a::after {
    width: 46%;
  }
  
  
  .fixArea {
    flex-direction: row;
    max-width: 1020px;
    bottom: 3vh;
  }
  
  .fixArea .news {
    width: 55%;
    border-radius: 100px;
    padding: min(3vw, 15px) min(6vw, 30px);
  }
  .fixArea .news .newsWrap .date {
    position: relative;
  }
  .fixArea .news .newsWrap .date span {
    background-color: #fff;
    position: relative;
    padding-right: min(2vw, 10px);
    z-index: 1;
  }
  .fixArea .news .newsWrap .date::after {
    content: "Official Site";
    display: block;
    text-align: right;
    font-size: min(2.8vw, 10px);
    width: fit-content;
    padding-left: 1em;
    margin-left: auto;
    background-color: #fff;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
  }
  .fixArea .news .newsWrap .date::before {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    bottom: 0.7em;
    left: 0;
    background-color: #000;
    position: absolute;
    z-index: 0;
  }
  
  .fixArea .news .newsWrap a::after,
  .fixArea .news .newsWrap a::before {
    display: none;
  }
  
  .fixArea .news .newsWrap a {
    white-space: nowrap;
    overflow: hidden;
    display: block;
  }
  
  .fixArea .fixBtn {
    width: 43%;
    background-color: transparent;
    justify-content: space-between;
    border-radius: 0;
    align-items: center;
    box-shadow: none;
  }
  .fixArea .fixBtn li {
    width: 48%;
    border: none;
  }
  .fixArea .fixBtn li a {
    background-color: #fff;
    border-radius: 8px;
    border-radius: 100px;
    font-size: min(3.2vw, 14px);
    padding: min(5vw, 28px) min(2vw, 10px);
  }
  .fixArea .fixBtn li.menuBtn {
    display: none;
  }
  
  #modalMenu .modalMenuInner {
    padding-bottom: 5%;
  }
  
  .specialMenu {
    max-width: 540px;
    left: inherit;
    right: 0;
    transform: translateX(0%);
  }
  .specialMenu::after {
    left: 81%;
  }
  
  .fixArea .fixBtn.addMenu li {
    width: 31%;
  }
	
}
@media screen and (max-width: 820px) {
	
	.pc { display: none !important;}

}


#mainvisual {
  height: 100vh;
  height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  gap: min(7vw, 40px);
}

#mainvisual .logo {
  width: min(56%, 420px);
  line-height: 0;
  position: absolute;
  top: 14vw;
  left: 50%;
  transform: translateX(-50%);
}
#mainvisual .mvPic {
  line-height: 0;
  height: 76vh;
  background-image: linear-gradient(0deg, #190607 80%, rgba(0,0,0,0));
  position: relative;
}

#mainvisual .catch {
  text-align: center;
  font-feature-settings: "palt";
  color: #fff;
  font-size: min(5.2vw, 32px);
  font-weight: 200;
  letter-spacing: 0.1em;
  position: absolute;
  top: 84vw;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
#mainvisual .pageSelect {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 860px;
  gap: 5%;
}
#mainvisual .pageSelect li {
  width: 42%;
}
#mainvisual .pageSelect li a {
  display: block;
  text-align: center;
  text-decoration: none;
  color: #fff;
  padding: min(4vw, 2vh) 0;
  font-size: min(4.2vw, 18px);
  letter-spacing: 0.1em;
}
#mainvisual .pageSelect li:nth-child(1) a {
  background-image: linear-gradient(120deg, #e39641 0%, #1e7b6d 100%);
}
#mainvisual .pageSelect li:nth-child(2) a {
  background-image: linear-gradient(120deg, #e39641 0%, #923958 100%);
}



@media screen and (min-width: 821px) {
  
  
  #mainvisual {
    padding: 0 0;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    max-width: 168vh;
  }
  #mainvisual.v3 {
    height: 79vh;
  }
  
  #mainvisual .logo {
    bottom: 81vh;
    z-index: 10;
  }
  
  #mainvisual .mvPic {
    position: relative;
    height: 100%;
    width: 100%;
  }
  #mainvisual .mvPic > img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  
  #mainvisual .catch {
    position: absolute;
    bottom: 18%;
    left: 50%;
    transform: translateX(-50%);
  }
  #mainvisual .pageSelect {
    position: absolute;
    bottom: 7%;
    left: 50%;
    transform: translateX(-50%);
  }
  
}

@media screen and (max-width: 820px) {
  
  #mainvisual .pageSelect {
    display: none;
  }
}


.modalWrap {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background-color: #fff;
  z-index: 1000;
  display: none;
}

.modalWrap .close {
  position: absolute;
  top: min(5vw, 30px);
  right: min(5vw, 30px);
  width: min(8vw, 30px);
  height: min(8vw, 30px);
}
.modalWrap .close::before,
.modalWrap .close::after {
  content: "";
  display: block;
  background-color: #000;
  width: 100%;
  height: 1px;
  position: absolute;
  top: 50%;
  left: 50%;
}
.modalWrap .close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.modalWrap .close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.modalInner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100%;
}
.modalInner .modalTitle {
  line-height: 1.5;
  letter-spacing: 0.06em;
    font-size: min(6vw, 6.4vh);
  font-feature-settings: "palt";
  margin-bottom: min(4vw, 2vh);
}
.modalInner .modalTitle span {
  display: block;
  font-size: 0.6em;
  font-weight: normal;
}

.modalInner .catch {
  font-size: min(3.8vw, 3vh);
  letter-spacing: 0.08em;
  margin-bottom: min(4vw, 3vh);
}

.modalInner .btn {
  margin-top: min(6vw, 5vh);
  width: min(46vw, 240px);
}
.modalInner .btn a {
  display: block;
  color: #fff;
  text-decoration: none;
  padding: min(3vw, 15px);
}

#modalAlbum .btn a { background-image: linear-gradient(120deg, #e39641 0%, #1e7b6d 100%);}
#modalTour .btn a { background-image: linear-gradient(120deg, #e39641 0%, #923958 100%);}

.menuSchedule {
  width: 90%;
}
.menuSchedule li {
  display: flex;
  border-bottom: #000 solid 1px;
  padding: min(1vw, 0.6vh) 0;
  text-align: left;
  font-size: min(2.5vw, 18px);
}
.menuSchedule li .date {
  width: 35%;
}
.menuSchedule li .venue {
  width: 65%;
}




@media screen and (min-width: 821px) {
  
  .menuSchedule {
    max-width: min(140vh, 1080px);
    column-count: 2;
  }
  
  .menuSchedule li {
    letter-spacing: 0;
    font-size: min(2.4vh, 18px);
  }
  .menuSchedule li .date {
    width: 30%;
  }
  .menuSchedule li .date span {
    font-size: 0.8em;
  }
  
  .menuSchedule li .venue {
    width: 70%;
  }
  
}


.newOpWrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  height: 100svh;
  z-index: 9999;
}
.newOp {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.opNew01 {
  background: #66625a url(../images/ny_mv.jpg) no-repeat center center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  text-align: center;
  z-index: 4;
}
.opNew01 > div {
  margin-bottom: min(11vh, 80px);
}
.opNew01 p {
  font-size: min(4.2vw, 32px);
  padding: min(2vw, 10px);
/*
  background: url("../images/bdr_note.png") repeat-x center bottom;
  background-size: auto 2px;
*/
  line-height: 1.4;
  letter-spacing: 0.1em;
  color: #fff;
}
.opNew01 p:first-of-type {
}
.opNew01 a {
  display: block;
  background-color: #000;
  color: #fff;
  text-decoration: none;
  padding: min(2vw, 10px) min(8vw, 60px);
  margin: min(6vw, 30px) auto 0;
  width: fit-content;
  border-radius: 100px;
  font-size: min(3.2vw, 14px);
}

.opNew02 .btnOpNext,
.opNew03 .btnOpNext,
.opNew04 .btnOpNext {
  position: absolute;
  top: min(3vw, 20px);
  right: min(3vw, 20px);
  width: min(10vw, 50px);
  height: min(10vw, 50px);
  border-radius: 50%;
  background-color: #000;
  z-index: 10;
}
.opNew02 .btnOpNext::before,
.opNew02 .btnOpNext::after,
.opNew03 .btnOpNext::before,
.opNew03 .btnOpNext::after,
.opNew04 .btnOpNext::before,
.opNew04 .btnOpNext::after {
  content: "";
  display: block;
  width: 60%;
  height: 2px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
}
.opNew02 .btnOpNext::before,
.opNew03 .btnOpNext::before,
.opNew04 .btnOpNext::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.opNew02 .btnOpNext::after,
.opNew03 .btnOpNext::after,
.opNew04 .btnOpNext::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.opNew02 {
  background: url("../images/ny_op_bg.jpg") no-repeat center center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 3;
}
.opNew02 .message {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 90%;
  width: 1180px;
}
.opNew02 .message > div {
  position: relative;
  width: 48%;
  
  line-height: 1.6em;
  text-align: left;
}
.opNew02 .message > div:nth-child(3) {
  width: 100%;
}
.opNew02 .message p {
  font-size: min(3.3vw, 18px);
}
.opNew02 .message p span {
  background: url("../images/bdr_note.png") repeat-x center bottom;
  background-size: auto 2px;
  display: block;
  padding: min(1vw, 3px) 0;
}
.opNew02 .message .signature {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: min(1vw, 3px) 0;
}

.opNew02 .message > div .btnNext {
  display: block;
  background-color: #000;
  color: #fff;
  text-decoration: none;
  padding: min(2vw, 10px) min(8vw, 60px);
  margin: min(6vw, 30px) auto 0;
  width: fit-content;
  border-radius: 100px;
  font-size: min(3.2vw, 14px);
}

.opNew03 {
  background-color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 2;
}

.opNew03 .ytWrap {
  width: 100%;
  padding-top: 56.25%;
  position: relative;
}
.opNew03 .ytWrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: 0;
}

.opNew04 {
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 1;
}
.opNew04 .opRelease {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 90%;
  width: 1180px;
}
.opNew04 .opRelease .txt {
  width: 48%;
}
.opNew04 .opRelease .txt .name {
  font-size: min(4.2vw, 24px);
  margin-bottom: min(2vw, 10px);
}
.opNew04 .opRelease .txt .title {
  font-size: min(7.4vw, 42px);
  line-height: 1.6;
}
.opNew04 .opRelease .txt .title span {
  font-size: 0.4em;
  display: block;
}
.opNew04 .opRelease .txt .release {
  color: #eca546;
  font-size: min(4vw, 20px);
  letter-spacing: 0.1em;
}
.opNew04 .opRelease .txt .intro {
  margin: min(4vw, 30px) 0;
  text-align: left;
  font-size: min(3.2vw, 16px);
}
.opNew04 .opRelease .txt a {
  display: block;
  background-color: #eca546;
  color: #fff;
  text-decoration: none;
  padding: min(2vw, 10px) min(6vw, 30px);
  margin: 0 auto 0;
  width: fit-content;
  border-radius: 100px;
  font-size: min(3.2vw, 14px);
}
.opNew04 .opRelease .jacket {
  width: 48%;
  line-height: 0;
  border: #ccc solid 1px;
}


#mainvisual.newBg {
  background-color: #66625a;
  max-width: 100%;
}

.newMv {
  height: 100%;
  background: url("../images/ny_mv.jpg") no-repeat center center;
  background-size: cover;
  background-color: #66625a;
  aspect-ratio: 10 / 7.5;
}
.newMv.v2 {
  background: url("../images/new_mv_debb2dFN.jpg") no-repeat center center;
  background-size: cover;
  background-color: #66625a;
  height: 100%;
  aspect-ratio: 12.6 / 7.5;
}

.newMv .logoName {
  position: absolute;
  top: 4vh;
  left: 50%;
  transform: translateX(-50%);
  width: min(65vh, 54vw);
  line-height: 0;
}
.newMv.v2 .logoName {
  top: 4vh;
  width: min(65vh, 54vw);
}

.newMv .titleWrap {
  position: absolute;
  bottom: 19vh;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  text-align: center;
}
.newMv .titleWrap .title {
  font-size: min(12.6vh, 7.6vw);
  font-weight: bold;
  line-height: 1.2;
  white-space: nowrap;
}
.newMv .titleWrap .messageLink {
  font-size: min(4.8vh, 2.8vw);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: min(3vh, 4vw);
}
.newMv .titleWrap .messageLink a {
  display: block;
  background-color: #a98b3b;
  color: #fff;
  text-decoration: none;
  padding: 0.3vw 3vw;
  width: fit-content;
  border-radius: 100px;
  font-size: min(2vh, 1.2vw);
  line-height: 1.4;
}


#mainvisual .messageLink {
  position: absolute;
  bottom: min(24vh, 160px);
  left: 50%;
  transform: translateX(-50%);
  font-size: min(4.6vh, 2.6vw);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: min(3vh, 4vw);
    white-space: nowrap;
  color: #fff;
}
#mainvisual .messageLink a {
  display: block;
  background-color: #a98b3b;
  color: #fff;
  text-decoration: none;
  padding: 0.3vw 3vw;
  width: fit-content;
  border-radius: 100px;
  font-size: min(2vh, 1.2vw);
  line-height: 1.4;
}

#messageModal {
  z-index: 9999;
}


@media screen and (max-width: 820px) {
  
  #mainvisual.newBg {
    height: 81vh;
  }
  #mainvisual.newBg .newMv.v2 {
    background: url(../images/new_mv_debb2dFN.jpg) no-repeat center center;
    background-size: 160%;
  }
  #mainvisual.newBg .newMv.v2 .logoName {
    top: 17%;
  }
  #mainvisual.v3 {
    height: auto;
  }
  
  
  .opNew01 {
    background: #66625a url(../images/ny_mv.jpg) no-repeat center 42%;
    background-size: contain;
  }
  .opNew02 .message {
    flex-direction: column;
    flex-wrap: nowrap;
    overflow: auto;
    height: 80%;
    padding-bottom: min(8vw, 60px);
  }
  .opNew02 .message > div {
    width: 100%;
  }
  
  .opNew04 .opRelease {
    flex-direction: column-reverse;
    gap: min(4vw, 20px);
    max-height: 90vh;
    overflow: auto;
    padding-bottom: min(8vw, 60px);
  }
  .opNew04 .opRelease .txt {
    width: 100%;
  }
  .opNew04 .opRelease .jacket {
    width: 60%;
  }
  
  .newMv {
    background: url(../images/ny_mv.jpg) no-repeat center 32%;
    background-color: #66625a;
    background-size: contain;
    height: 100vh;
    width: 100vw;
    aspect-ratio: auto;
  }
  .newMv .logoName {
    top: 22%;
  }
  .newMv .titleWrap {
    bottom: 33%;
  }
  .newMv.v2 {
    background: url(../images/new_mv_debb2dFN.jpg) no-repeat center 32%;
    background-color: #66625a;
    background-size: 120%;
    height: 100vh;
    width: 100vw;
    aspect-ratio: auto;
  }
  .newMv.v2 .logoName {
    top: 18.5%;
    width: 44vw;
  }
  .newMv.v2 .titleWrap {
    bottom: 38%;
  }
  
  .newMv .titleWrap .title {
    font-size: min(12.6vh, 7.4vw);
  }
  
  .newMv .titleWrap .messageLink {
    font-size: 3.6vw;
  }
  .newMv .titleWrap .messageLink a {
    font-size: 2.6vw;
  }
  
  #mainvisual .messageLink {
    font-size: 3.6vw;
    bottom: min(27vh, 190px);
  }
  #mainvisual .messageLink a {
    font-size: 2.6vw;
  }
  
}


#mainvisual2 {
  background: url("../images/new_mv_bg.jpg") no-repeat center center;
  background-size: cover;
  width: 100vw;
  height: 100vh;
  height: 100svh;
  display: flex;
  justify-content: center;
  align-items: center;
}
#mainvisual2 .mv2Inr {
  background: url("../images/new_mv_debb2dFN.jpg") no-repeat center center;
  background-size: cover;
  aspect-ratio: 17 / 12;
  width: 860px;
  max-height: 90%;
  max-width: 95%;
  position: relative;
}

#mainvisual2 .logoName {
  position: absolute;
    top: 5%;
  left: 50%;
  transform: translateX(-50%);
  width: 40%;
  line-height: 0;
}
#mainvisual2 .titleWrap {
  position: absolute;
  bottom: 7%;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: min(7vw, 62px);
  font-weight: bold;
  color: #fff;
}
