@charset "utf-8";


@font-face {
    font-family: "YakuHanJP";
    font-style: normal;
    font-weight: 300;
    src: url("../fonts/YakuHanJP/YakuHanJP-Light.woff2") format("woff2"),
    url("../fonts/YakuHanJP/YakuHanJP-Light.woff") format("woff");
}

@font-face {
    font-family: "YakuHanJP";
    font-style: normal;
    font-weight: 400;
    src: url("../fonts/YakuHanJP/YakuHanJP-Regular.woff2") format("woff2"),
    url("../fonts/YakuHanJP/YakuHanJP-Regular.woff") format("woff");
}

@font-face {
    font-family: "YakuHanJP";
    font-style: normal;
    font-weight: 500;
    src: url("../fonts/YakuHanJP/YakuHanJP-Medium.woff2") format("woff2"),
    url("../fonts/YakuHanJP/YakuHanJP-Medium.woff") format("woff");
}

@font-face {
    font-family: "YakuHanJP";
    font-style: normal;
    font-weight: 700;
    src: url("../fonts/YakuHanJP/YakuHanJP-Bold.woff2") format("woff2"),
    url("../fonts/YakuHanJP/YakuHanJP-Bold.woff") format("woff");
}


* {
	margin: 0;
	padding: 0;
	-webkit-backface-visibility: hidden;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}

html {
	-webkit-text-size-adjust: none;
	height: 100%;
	background: transparent;
}

body {
	margin: 0;
	padding: 0;
	overflow-y: scroll;
	width: 100%;
	height: 100%;
	font-weight: 400;
	font-size: 16px;
	font-family: YakuHanJP, "Noto Sans JP", "Hiragino Sans", "BIZ UDPGothic", Meiryo, sans-serif;
	font-feature-settings: 'palt' 1;
	text-align: center;
	line-height: 1.8;
	-webkit-font-smoothing: antialiased;
	letter-spacing: 0.1em;
	color: #4b4845;
	background: #fff;
}


h1,
h2,
h3,
h4,
h5,
h6 {
	padding: 0;
	margin: 0;
	font-weight: 300;
}

ul,
ol {
	margin: 0;
	padding: 0;
	list-style-type: none;
}

p {
	padding: 0;
	margin: 0;
}

img {
	width: 100%;
	-webkit-touch-callout: none;
	-ms-interpolation-mode: bicubic;
	vertical-align: bottom;
}

a {
	word-break: break-all;
	text-decoration: underline;
	color: #4e525d;
	outline: none;
	transition: opacity 0.4s cubic-bezier(.57,0,.26,1);
}

a:active,
a:hover,
a:focus {
	outline: none;
}

@media (any-hover: hover) {
	a:hover {
		opacity: .4;
	}
}


table {
	border-collapse: collapse;
}

.wrapper ::before,
.wrapper ::after {
	font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic", Meiryo, sans-serif;
	font-feature-settings: normal;
}

button {
	-webkit-user-select: none;
	user-select: none;
	touch-action: manipulation;
		outline: none;
		border: none;
		background: none;
}

@-webkit-keyframes fadeIn {
	0% { opacity: 0;}
	100% { opacity: 1;}
}

@keyframes fadeIn {
	0% { opacity: 0;}
	100% { opacity: 1;}
}

@-webkit-keyframes fadeOut {
	0% { opacity: 1;}
	100% { opacity: 0;}
}

@keyframes fadeOut {
	0% { opacity: 1;}
	100% { opacity: 0;}
}

/*--------------------------------------
loading
--------------------------------------*/


.loading {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background: #e60113;
	z-index: 5000;
}

@keyframes spin {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}


.loading p {
	margin: -19px 0 0 -19px;
	padding-top: 22px;
	display: block;
	overflow: hidden;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 38px;
	height: 0;
	border: 8px solid #fff;
	border-radius: 50%;
	border-top-color: transparent;
	animation: spin 0.75s infinite linear;
	z-index: 5002;
}

.loading::after {
	content: "";
	margin: -19px 0 0 -19px;
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 22px;
	height: 22px;
	border: 8px solid rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	z-index: 5001;
}


/*--------------------------------------
コンテンツ
--------------------------------------*/
.wrapper {
	position: relative;
	width: 100%;
}

.container {
	text-align: left;
	width: 100%;
	height: auto;
	z-index: 100;
}


/*--------------------------------------
header
--------------------------------------*/
#top {
	padding: 0 0;
	position: relative;
	overflow: visible;
	height: calc(100vh / 8 * 7 - 1px);
	background: linear-gradient(180deg,rgba(250, 252, 252, 1) 7%, rgba(255, 255, 255, 1) 100%);
	z-index: 101;
}

body.active #top {
	animation: hideOverflow 0s forwards;
	animation-delay: 3s;
}


@keyframes hideOverflow {
  to {
    overflow: hidden;
  }
}

.siteTitle {
	padding-top: calc(54% * 0.5);
	position: absolute;
	top: 50%;
	left: 50%;
	overflow: hidden;
	width: calc(100% * 0.5);
	height: 0;
	background: url(../images/common/header/title.svg) no-repeat;
	background-size: 100% auto;
	transform: translate(-50%, -40%);
	z-index: 50;
}

.w .siteTitle {
animation: title-move-w 4s cubic-bezier(.17,.67,.07,.99) 2s 1 forwards;
}

@keyframes title-move-w {
	0% {
		transform: translate(-50%, -40%);
	}
		50% {
		transform: translate(-84%, -40%);
	}
	100% {
		transform: translate(-84%, -50%);
	}
}

.w2 .siteTitle {
animation: title-move-w2 4s cubic-bezier(.17,.67,.07,.99) 2s 1 forwards;
}

@keyframes title-move-w2 {
	0% {
		transform: translate(-50%, -40%);
	}
		50% {
		transform: translate(-84%, -40%);
	}
	100% {
		transform: translate(-84%, -50%);
	}
}
.w3 .siteTitle {
animation: title-move-w3 4s cubic-bezier(.17,.67,.07,.99) 2s 1 forwards;
}

@keyframes title-move-w3 {
	0% {
		transform: translate(-50%, -40%);
	}
		50% {
		transform: translate(-84%, -40%);
	}
	100% {
		transform: translate(-84%, -50%);
	}
}

.h .siteTitle {
animation: title-move-h 4s cubic-bezier(.17,.67,.07,.99) 2s 1 forwards;
}

@keyframes title-move-h {
	0% {
		transform: translate(-50%, -40%);
	}
		50% {
		transform: translate(-90%, -40%);
	}
	100% {
		transform: translate(-90%, -50%);
	}
}

.h2 .siteTitle {
animation: title-move-h2 4s cubic-bezier(.17,.67,.07,.99) 2s 1 forwards;
}

@keyframes title-move-h2 {
	0% {
		transform: translate(-50%, -40%);
	}
		50% {
		transform: translate(-90%, -40%);
	}
	100% {
		transform: translate(-90%, -50%);
	}
}

.h3 .siteTitle {
animation: title-move-h3 4s cubic-bezier(.17,.67,.07,.99) 2s 1 forwards;
}

@keyframes title-move-h3 {
	0% {
		transform: translate(-50%, -40%);
	}
		50% {
		transform: translate(-90%, -40%);
	}
	100% {
		transform: translate(-90%, -50%);
	}
}

@media only screen and (max-width: 1800px) {
}

.visual {
	position: absolute;
	top: 50%;
	left: 50%;
	width: calc(100vh / 13 * 7);
	height: 100%;
	transform: translate(-50%, -40%);
	z-index: 60;
}

body.w .visual {
	animation: visual-move-w 4s cubic-bezier(.17,.67,.07,.99) 2s 1 forwards;
}

@keyframes visual-move-w {
	0% {
		transform: translate(-50%, -40%);
	}
		50% {
		transform: translate(30%, -40%);
	}
	100% {
		transform: translate(30%, -50%);
	}
}

body.w2 .visual {
animation: visual-move-w2 4s cubic-bezier(.17,.67,.07,.99) 2s 1 forwards;
}

@keyframes visual-move-w2 {
	0% {
		transform: translate(-50%, -40%);
	}
		50% {
		transform: translate(42%, -40%);
	}
	100% {
		transform: translate(42%, -50%);
	}
}

body.w3 .visual {
animation: visual-move-w3 4s cubic-bezier(.17,.67,.07,.99) 2s 1 forwards;
}

@keyframes visual-move-w3 {
	0% {
		transform: translate(-50%, -40%);
	}
		50% {
		transform: translate(60%, -40%);
	}
	100% {
		transform: translate(60%, -50%);
	}
}

body.h .visual {
	animation: visual-move-h 4s cubic-bezier(.17,.67,.07,.99) 2s 1 forwards;
}

@keyframes visual-move-h {
	0% {
		transform: translate(-50%, -40%);
	}
		50% {
		transform: translate(30%, -40%);
	}
	100% {
		transform: translate(30%, -50%);
	}
}

body.h2 .visual {
	animation: visual-move-h2 4s cubic-bezier(.17,.67,.07,.99) 2s 1 forwards;
}

@keyframes visual-move-h2 {
	0% {
		transform: translate(-50%, -40%);
	}
		50% {
		transform: translate(10%, -40%);
	}
	100% {
		transform: translate(10%, -50%);
	}
}

body.h3 .visual {
	animation: visual-move-h3 4s cubic-bezier(.17,.67,.07,.99) 2s 1 forwards;
}

@keyframes visual-move-h3 {
	0% {
		transform: translate(-50%, -40%);
	}
		50% {
		transform: translate(0%, -40%);
	}
	100% {
		transform: translate(0%, -50%);
	}
}

.visual .shadow {
	padding-top: calc(175.8% * 0.9);
	position: absolute;
	top: 50%;
	left: 50%;
	display: block;
	overflow: hidden;
	width: calc(100% * 0.9);
	height: 0;
	background: url(../images/common/header/visual/shadow.webp) no-repeat center bottom;
	background-size: 100% auto;
	transform: translate(-50%, -50%);
	z-index: 8;
}

.visual .photo {
	padding-top: calc(175.8% * 0.9);
	position: absolute;
	top: 50%;
	left: 50%;
	overflow: hidden;
	width: calc(100% * 0.9);
	height: 0;
	background: url(../images/common/header/visual/photo.webp) no-repeat;
	background-size: 100% auto;
	transform: translate(-50%, -50%);
	z-index: 10;
}

body.open .visual figure {
}


nav {
}

.globalNav {
	position: absolute;
	bottom: -80px;
	left: 0;
	width: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #fcead6;
	transition: bottom 1.5s cubic-bezier(0.42, 0, 0.26, 1.01);
	z-index: 12;
}

#top .globalNav {
	display: none;
}

#top.active .globalNav {
	bottom: 0;
}

.globalNav li {
	padding: 16px 1.5em;
	position: relative;
}

.globalNav li:first-child {
}

.globalNav li:not(:last-child)::after {
	content: "";
	display: block;
	width: 1px;
	height: 1.8em;
	position: absolute;
	top: 50%;
	right: 0;
	background: #5673bf;
	transform: translateY(-50%) rotate(14deg);
}

.globalNav a {
	font-size: 24px;
	text-decoration: none;
	line-height: 48px;
}


@media only screen and (max-width: 1800px) {
	.globalNav a {
		font-size: 1.2vw;
	}
}

@media only screen and (max-width: 1290px) {
	.globalNav li {
		padding: 16px 1.2em;
	}

	.globalNav a {
		font-size: 1.2vw;
	}
}

@media only screen and (max-width: 1140px) {
	.globalNav li {
		padding: 16px 1em;
	}

	.globalNav a {
		font-size: 1.1vw;
	}
}

.globalNav .new::before {
	content: "NEW";
	position: absolute;
	bottom: 0.1em;
	right: -14%;
	width: 3em;
	height: 3em;
	display: flex;
	justify-content: center;
	align-items: center;
	font-family: "Tilt Warp", sans-serif;
	font-weight: 400;
	font-size: 1vw;
	color: rgba(205, 47, 62, 1);
	background: #d9c096;
	letter-spacing: -0.05em;
	transform: scale(0.6);
	border-radius: 50%;
	z-index: 6;
}

#top .globalNav li:nth-of-type(4).new::before {
	right: -38%;
}


.globalNav .new::after {
	content: "";
	position: absolute;
	bottom: 0.65em;
	right: -4%;
	width: 0.8em;
	height: 0.8em;
	display: flex;
	justify-content: center;
	align-items: center;
	font-family: "Tilt Warp", sans-serif;
	font-weight: 400;
	font-size: 1vw;
	letter-spacing: -0.05em;
	background: #d9c096;
	transform: scale(1) rotate(92deg) skew(20deg, 20deg);
	z-index: 5;
}

#top .globalNav li:nth-of-type(4).new::after {
	right: -17%;
}

.menu .globalNav .new::before {
	bottom: auto;
	top: 0.5em;
	right: -2.5em;
	font-size: 1vw;
	background: rgba(205, 47, 62, 1);
	color: #d9c096;
	transform: scale(1);
}

.menu .globalNav li:nth-of-type(4).new::before {
	right: 6em;
}

.menu .globalNav .new::after {
	bottom: auto;
	top: 2.6em;
	right: -1%;
	background: rgba(205, 47, 62, 1);
}

.menu .globalNav li:nth-of-type(4).new::after {
	right: 20.5%;
}

@media only screen and (max-width: 1840px) {
	#top .globalNav .new::before {
		bottom: 0.15em;
		right: -16%;
	transform: scale(0.7);
	}

	#top .globalNav li:nth-of-type(4).new::before {
		right: -38%;
	}

	#top .globalNav li:nth-of-type(4).new::after {
		right: -17%;
	}
}

.h2 #top .globalNav .new::before,
.h #top .globalNav .new::before {
	right: -14%;
	color: #fff;
	background: rgba(205, 47, 62, 1);
}

.h2 #top .globalNav .new::after,
.h #top .globalNav .new::after {
	background: rgba(205, 47, 62, 1);
}

	#menu-btn {
		display: block;
		position: fixed;
		top: 5px;
		right: 8px;
		height: 53px;
		width: 54px;
		outline: none;
		border: none;
		background: none;
		cursor: pointer;
		z-index: 1000;
		-webkit-tap-highlight-color:rgba(0, 0, 0, 0);
		-webkit-transition: 0.5s ease-in-out;
		transition: 0.5s ease-in-out;
		z-index: 2100;
	}


/*
	.active #menu-btn {
		animation: fade 0.5s cubic-bezier(.17,.67,.6,.92) 2s 1 forwards;
		z-index: 1100;
	}
*/

@keyframes fade {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

	#menu-btn::before,
	#menu-btn::after,
	#menu-btn span {
		content: "";
		margin-left: -20px;
		padding-top: 1px;
		position: absolute;
		top: 0;
		left: 50%;
		overflow: hidden;
		display: block;
		width: 40px;
		height: 0;
		background: #fff;
	}

	.b #menu-btn {
	}


	.b #menu-btn::before,
	.b #menu-btn::after,
	.b #menu-btn span {
		background: #af9a7d;
	}

	#menu-btn::before {
		top: 14px;
		-webkit-animation: btnTr 0.8s cubic-bezier(.17,.67,.07,.99) 0s forwards;
		animation: btnTr 0.8s cubic-bezier(.17,.67,.07,.99) 0s forwards;
		-webkit-transition: 0.4s ease-in-out;
		transition: 0.4s ease-in-out;
	}

	#menu-btn:hover::before {
	}

	#menu-btn.active:hover::before {
	}

	#menu-btn span {
		top: 26px;
		-webkit-transition: 0.4s ease-in-out;
		transition: 0.4s ease-in-out;
	}

	#menu-btn::after {
		top: 38px;
		-webkit-animation: btnBr 0.8s cubic-bezier(.17,.67,.07,.99) 0s forwards;
		animation: btnBr 0.8s cubic-bezier(.17,.67,.07,.99) 0s forwards;
		-webkit-transition: 0.4s ease-in-out;
		transition: 0.4s ease-in-out;
	}

	#menu-btn:hover::after {
	}

	#menu-btn.active:hover::after {
	}


	#menu-btn.b.active::before,
	#menu-btn.active::before {
		background: #fff;
		-webkit-animation: btnT 0.8s cubic-bezier(.17,.67,.07,.99) 0s forwards;
		animation: btnT 0.8s cubic-bezier(.17,.67,.07,.99) 0s forwards;
	}

	#menu-btn.b.active span,
	#menu-btn.active span {
		background: #fff;
		opacity: 0;
	}

	#menu-btn.b.active::after,
	#menu-btn.active::after {
		background: #fff;
		-webkit-animation: btnB 0.8s cubic-bezier(.17,.67,.07,.99) 0s forwards;
		animation: btnB 0.8s cubic-bezier(.17,.67,.07,.99) 0s forwards;
	}


/* btnT */
@-webkit-keyframes btnT {
	0% { -webkit-transform: translateY(0px);}
	20% { -webkit-transform: translateY(12px) rotate(0deg);}
	100% { -webkit-transform: translateY(12px) rotate(-30deg);}
}

@keyframes btnT {
	0% { transform: translateY(0px);}
	20% { transform: translateY(12px) rotate(0deg);}
	100% { transform: translateY(12px) rotate(-30deg);}
}

/* btnTr */
@-webkit-keyframes btnTr {
	0% { -webkit-transform: translateY(12px) rotate(-30deg);}
	30% { -webkit-transform: translateY(12px) rotate(0deg);}
	100% { -webkit-transform: translateY(0px);}
}

@keyframes btnTr {
	0% { transform: translateY(12px) rotate(-30deg);}
	30% { transform: translateY(12px) rotate(0deg);}
	100% { transform: translateY(0px);}
}

/* btnB */
@-webkit-keyframes btnB {
	0% { -webkit-transform: translateY(0px);}
	20% { -webkit-transform: translateY(-12px) rotate(0deg);}
	100% { -webkit-transform: translateY(-12px) rotate(30deg);}
}

@keyframes btnB {
	0% { transform: translateY(0px);}
	20% { transform: translateY(-12px) rotate(0deg);}
	100% { transform: translateY(-12px) rotate(30deg);}
}

/* btnBr */
@-webkit-keyframes btnBr {
	0% { -webkit-transform: translateY(-12px) rotate(30deg);}
	30% { -webkit-transform: translateY(-12px) rotate(0deg);}
	100% { -webkit-transform: translateY(0px);}
}

@keyframes btnBr {
	0% { transform: translateY(-12px) rotate(30deg);}
	30% { transform: translateY(-12px) rotate(0deg);}
	100% { transform: translateY(0px);}
}

	#menu-btn.b::before,
	#menu-btn.b::after,
	#menu-btn.b span {
		background: #474c4d;
	}

.menu {
	position: fixed;
	top: 0;
	right: -100%;
	width: 100%;
	height: 100vh;
	text-align: right;
	transition: all 0.8s cubic-bezier(.57,0,.26,1);
	z-index: 1099;
}

.menu.active {
	right: 0;
}

	.menu button {
		content: "";
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100vh;
		outline: none;
		cursor: default;
		border: none;
		background: none;
		z-index: 302;
	}

	.menu div {
		position: relative;
		width: 100%;
	height: 100vh;
		display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
		z-index: 303;
	}

.menu .globalNav {
	padding: 11% 0 0;
	position: absolute;
	left: 50%;
	bottom: auto;
	top: 50%;
	justify-content: center;
	flex-direction: column;
	text-align: center;
	background: none;
	transform: translate(-50%, -50%);
	z-index: 304;
}

.menu .globalNav a:hover {
}


.menu .globalNav::before {
	content: "";
	padding-top: calc(57% * 0.4);
	position: absolute;
	top: -2em;
	left: 50%;
	overflow: hidden;
	width: calc(100% * 0.4);
	height: 0;
	background: url(../images/common/header/title.svg) no-repeat;
	background-size: 100% auto;
	transform: translateX(-50%);
	z-index: 100;
}

body.morning .menu .globalNav::before {
	background: url(../images/common/header/title_morning.svg) no-repeat;
	background-size: 100% auto;
}

.menu .globalNav a::after {
	display: none;
}

.menu .globalNav a {
	font-size: 1.6vw;
	color: #fff;
}

.menu .globalNav li:not(:last-child)::after {
	display: none;
}

@media only screen and (max-width: 1140px) {

	.menu .globalNav a {
		font-size: 2.4vw;
	}

	.menu .globalNav li {
		padding: 0.5em 1em;
	}
}



.sns-link {
	position: absolute;
	top: 16px;
	right: 8px;
	display:flex;
	width: 6vw;
	min-width: 100px;
	z-index: 20;
}

.sns-link li {
	width: 50%;
}

.sns-link li.line {
	margin-left: 4%;
}

.sns-link a {
	padding: 92% 0 0;
	position: relative;
	overflow: hidden;
	display: block;
	width: 100%;
	height: 0;
}

.sns-link .line a {
	background: url(../images/common/nav/sns/line.svg) no-repeat center center;
	background-size: 100% auto;
}

.sns-link .x a {
	background: url(../images/common/nav/sns/x.svg) no-repeat center center;
	background-size: 100% auto;
}

.sns-link .facebook a {
	background: url(../images/common/nav/sns/facebook.svg) no-repeat center center;
	background-size: 100% auto;
}


#top .scroll {
	padding: 0 1.1em 0 0;
	overflow: hidden;
	position: absolute;
	bottom: 48px;
	right: 12px;
	width: calc(1em + 5px);
	height: 10em;
	font-size: 1.1vw;
	letter-spacing: 0.1em;
	z-index: 122;
}

.scroll::before,
.scroll::after {
	content: "";
	display: block;
	width: 1px;
	height: 100%;
	background: rgba(255, 255, 255, .2);
}

.scroll::after {
	background: rgba(255, 255, 255, 1);
	-webkit-animation: scrollDown 3s cubic-bezier(.17,.67,.07,.99) 0s infinite forwards;
	animation: scrollDown 3s cubic-bezier(.17,.67,.07,.99) 0s infinite forwards;
}

/* scrollDown */
@-webkit-keyframes scrollDown {
	0% { transform: translate3d(0, -56vh, 0);}
	100% { transform: translate3d(0, 0vh, 0);}
}

@keyframes scrollDown {
	0% { transform: translate3d(0, -56vh, 0);}
	100% { transform: translate3d(0, 0vh, 0);}
}

.scroll p {
	position: absolute;
	bottom: 0;
	right: 0;
	overflow: hidden;
	writing-mode: vertical-rl;
	font-size: 1.1vw;
	font-weight: 500;
	line-height: 1.2;
	letter-spacing: 0.1em;
	color: #fff;
	transform: scaleX(.89);
	-ms-user-select: none;
	-webkit-user-select: none;
	user-select: none;
}

#top .sticker {
	position: absolute;
	bottom: -80px;
	right: 0;
	width: 50%;
	z-index: 19;
	transition: bottom 1.5s cubic-bezier(0.42, 0, 0.26, 1.01);
	z-index: 12;
}

#top.active .sticker {
	bottom: 0;
}

#top .sticker li {
	width: 100%;
	background: #ef896e;
}

#top .sticker a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	font-weight: 700;
	color: #fff;
	letter-spacing: 0.05em;
	font-size: 32px;
	line-height: 80px;
	text-decoration: none;
}

@media only screen and (max-width: 1800px) {
	#top .sticker a {
		font-size: 1.6vw;
	}
}

@media only screen and (max-width: 1290px) {
	#top .sticker a {
		font-size: 1.4vw;
	}
}

#top .sticker a br {
	display: none;
}

#top .sticker a::before {
	content: "";
	padding-top: 48px;
	position: absolute;
	right: 8px;
	top: 50%;
	display: block;
	overflow: hidden;
	width: 48px;
	height: 0;
	background: #fff;
	border-radius: 50%;
	transform: translateY(-50%);
}

#top .sticker a::after {
	content: "";
	margin: -5px 0 0 0px;
	position: absolute;
	top: 50%;
	right: 22px;
	display: block;
	width: 18px;
	height: 18px;
	transform: rotate(45deg);
	border: solid 1px #ef896e;
	border-right: none;
	border-bottom: none;
	transform: translateY(-50%) rotate(-135deg);
}

/*--------------------------------------
 * コンテンツ
 * ---------------------------------------*/

.primary {
	position: relative;
	overflow: hidden;
	display: flex;
	gap: 0px 1px;
	flex-wrap: wrap;
	width: 100%;
	background: #000;
	z-index: 100;
}

.primary::after,
.primary::before {
	content: "";
	position: absolute;
	top: -1px;
	left: 0;
	display: block;
	width: calc(50% + 1px);
	height: calc(100vh / 8 * 1 + 2px);
	background: #fff;
	clip-path: inset(0 0 0 0);
	transition: clip-path 0.5s cubic-bezier(.57,0,.26,1) 2.5s;
	z-index: 1001;
}

.primary::after {
	top: -1px;
	left: 50%;
}

body.active .primary::after,
body.active .primary::before {
	clip-path: inset(0 0 0 100%);
}

body.active.open section::after,
body.active.open .primary::after,
body.active.open .primary::before {
	display: none;
}

section::after {
	content: "";
	position: absolute;
	top: -1px;
	left: 0;
	display: block;
	width: calc(100% + 1px);
	height: calc(100vh / 8 * 1);
	background: #e60113;
	clip-path: inset(0 0 0 0);
	transition: clip-path 0.5s cubic-bezier(.57,0,.26,1) 3s;
	z-index: 1000;
}

body.active section::after {
	clip-path: inset(0 0 0 100%);
}

.primary section {
	position: relative;
	overflow: hidden;
	width: calc((100% - 1px) / 2);
	height: calc(100vh / 8 * 1);
	transition: width 1s cubic-bezier(.57,0,.26,1);
	border-top: solid 1px;
	z-index: 101;
}

section.open {
	width: calc(100% - 1px);
	height: auto;
	transform: none;
}

section.close {
	width: 0%;
	transform: none;
}

section.open::before {
	
}

body.active section.open::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	clip-path: inset(0 0 0 0);
	width: 100%;
	height: calc(100vh / 8 * 1 + 50px);
	background: transparent;
	z-index: 91;
}

section.left {
	transform-origin: left;
}

section.right {
	transform-origin: right;
}

.primary section h2 {
	padding: 0;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	height: calc(100vh / 8 * 1);
	font-family: "Poppins", sans-serif;
	font-size: 42px;
	font-weight: 100;
	line-height: 1.2;
	white-space: nowrap;
	-webkit-user-select: none;
	user-select: none;
	cursor: pointer;
	color: #000;
	transition: padding 0.4s cubic-bezier(.57,0,.26,1) 0s, color 0.4s cubic-bezier(.57,0,.26,1) 0s;
	z-index: 90;
}

.primary section.open h2 {
	padding-top: 80px;
	cursor: default;
	color: #000 !important;
	transition: padding 1s cubic-bezier(.57,0,.26,1) 1.2s;
}

body.open.close .primary section.open h2 {
	padding-top: 0px;
	transition: padding 0.4s cubic-bezier(.57,0,.26,1) 0s;
}

@media (any-hover: hover) {
	.primary section h2:hover {
		color: #e60113;
	}
}

.primary section h2:hover::after {
	transform: translateX(0%);
}

.primary section.open h2::after {
	transform: translateX(0%) scaleX(0%);
}

.primary section .contents {
	margin: 0 auto;
	padding: 56px 72px 180px;
	position: relative;
	overflow: hidden;
	display: none;
	width: 100%;
	max-width: 1240px;
}

.primary section.open .contents {
	display: block;
	opacity: 1;
}

@media only screen and (max-width: 1080px) {

	.primary section .contents {
		padding: 56px 48px 180px;
	}
}

section button.close {
	padding: 61px 0 0;
	overflow: hidden;
	position: absolute;
	top: 0;
	right: 0;
	width: 61px;
	height: 0;
	cursor: pointer;
	z-index: 89;
}

section.open button.close {
	z-index: 100;
}

section button.close.active {
	position: fixed;
}

section button.close::before,
section button.close::after {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	width: calc(100% - 24px);
	height: 1px;
	background: #000;
	transform: translate(-50%, -50%); 
}

section button.close::after {
	width: 1px;
	height: calc(100% - 24px);
	transform: translate(-50%, -50%) rotate(0deg);
	transition: transform 0.4s cubic-bezier(.57,0,.26,1);
}

section.open button.close::after {
	transform: translate(-50%, -50%) rotate(-90deg);
}

body.white2 section button.close::before,
body.white2 section button.close::after {
	background: #fff;
}

.ec a {
	padding: 0;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 7em;
	height: 2.6em;
	text-align: center;
	font-size: 14px;
	color: #fff;
	background: #393738;
	-webkit-user-select: none;
	user-select: none;
	text-decoration: none;
	transition: opacity 0.4s cubic-bezier(.57,0,.26,1);
	border-radius: 6px;
	z-index: 1;
}

@media (any-hover: hover) {
	.ec a:hover {
	}
}

section.new::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	border: 9vw solid #000;
	border-right-color: transparent;
	border-bottom-color: transparent; 
	height: 0;
	width: 0;
}

section.new::after {
	content: "NEW";
	position: absolute;
	left: 1.1vw;
	top: 1.5vw;
	width: 9vw;
	height: 9vw;
	display: flex;
	justify-content: center;
	align-items: center;
	font-family: "Tilt Warp", sans-serif;
	font-weight: 400;
	font-size: 5vw;
	letter-spacing: -0.05em;
	transform: rotate(-45deg) scaleY(0.9);
}


.movie {
}

.movie .v > div {
	position: relative;
	padding: 30px 0 56.25%;
	height: 100%;
}

.movie .v > div iframe,
.movie .v > div object,
.movie .v > div embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 3;
}

.item {
	opacity: 0;
	transform: translateY(3vh);
	transition: opacity 1s cubic-bezier(.57,0,.26,1) 0s, transform 1s cubic-bezier(.57,0,.26,1) 0s;
}

.item.active {
	opacity: 1;
	transform: translateY(0);
}

.notice li:not(:last-child) {
	padding-bottom: 4px;
}

.notice p {
	display: flex;
	font-size: 14px;
	line-height: 1.7;
}

.notice p::before {
	content: "※";
}

/*--------------------------------------
news
---------------------------------------*/


#news {
	position: relative;
	overflow: hidden;
	background: #fff;
}
#goods {
	position: relative;
	overflow: hidden;
	background: #ccc;
}

#news h2 {
}


#news .contents {
	margin: 0 auto;
	position: relative;
	display: flex;
	align-items: start;
	justify-content: end;
	flex-wrap: wrap;
	max-width: 1240px;
	width: 100%;
	overflow: hidden;
	z-index: 4;
}

#news .entryList {
	width:100%;
}

#news .entryList li {
	border-bottom: solid 1px rgba(173, 157, 146, .5);
}

#news .entryList li:first-child {
	border-top: solid 1px rgba(173, 157, 146, .5);
}

#news .entryList li:nth-of-type(n+4) {
	display: none;
}

#news .entry a {
	padding: 24px 48px 24px 0;
	position: relative;
	display: flex;
	overflow: hidden;
	line-height: 1.8;
	font-size: 16px;
	text-decoration: none;
	color: #4e525d;
}

#news .entry a::after {
	content: "";
	margin-top: -4px;
	padding-top: 8px;
	position: absolute;
	top: 50%;
	right: 16px;
	display: block;
	width: 8px;
	height: 0;
	transform: rotate(-45deg);
	border: solid 1px;
	border-top: none;
	border-left: none;
	-webkit-transition: 0.4s ease-in-out;
	-moz-transition: 0.4s ease-in-out;
	-ms-transition: 0.4s ease-in-out;
	-o-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out;
}

#news .entry a:hover::after {
	right: 8px;
}

#news .entry a:hover {
}

#news .entry time {
	width: 8em;
	color: #4c423b;
	text-align: left;
}

#news .entry p {
	padding: 0;
	color: #4c423b;
text-align: left;
	flex: 1;
}

#news .entryList + ul {
	text-align: right;
}

#news .entryList + ul li {
	padding-top: 24px;
}

#news .entryList + ul a {
	padding: 0 1.3em;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 7em;
	height: 2.6em;
	line-height: 1.2;
	text-decoration: none;
	-webkit-user-select: none;
	user-select: none;
	color: #fff;
	background: #393738;
	border-radius: 6px;
}

#news .entryList + ul a:hover {
}

/*--------------------------------------
live
---------------------------------------*/
.primary section#live-tour {
	background: #fff;
}

.primary section#live-tour.open {
	overflow: visible !important;
}

#live-tour .contents {
	overflow: visible !important;
}

#live-tour h3 {
	padding-top: calc(246% * 0.2);
	padding-top: calc(100vh - 80px - 56px - 1em - 80px);
	position: sticky;
	top: 56px;
	left: 0;
	overflow: hidden;
	width: calc((100vh - 80px - 56px - 1em - 80px) / 2.46);
	height: 0;
	font-family: "Poppins", sans-serif;
	font-size: 42px;
	font-weight: 100;
	line-height: 1.2;
	background: url(../images/contents/live-tour/logo.svg) no-repeat;
	background-size: 100% auto;
}

@media only screen and (max-width: 1180px) {
	#live-tour h3 {
		padding-top: calc(100vh - 80px - 56px - 1em - 180px);
		width: calc((100vh - 80px - 56px - 1em - 180px) / 2.46);
	}
}

#live-tour .contents > .detail {
	margin-top: calc((100vh - 80px - 83px - 1em - 80px) * -1);
	padding-left: calc((100vh - 80px - 56px - 1em - 80px + 140px) / 2.46);
}

@media only screen and (max-width: 1180px) {
	#live-tour .contents > .detail {
		margin-top: calc((100vh - 80px - 83px - 1em - 180px) * -1);
		padding-left: calc((100vh - 80px - 56px - 1em - 80px - 0px) / 2.46);
	}
}
@media only screen and (max-width: 1080px) {
	#live-tour .contents > .detail {
		padding-left: calc((100vh - 80px - 56px - 1em - 80px + 40px) / 2.46);
	}
}

#live-tour .message {
	padding-bottom: 40px;
}

#live-tour .live-tour-link {
}

#live-tour .live-tour-link ul {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

#live-tour .live-tour-link a {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 5em;
	text-decoration: none;
	-webkit-user-select: none;
	user-select: none;
	color: #fff;
	font-size: 18px;
	line-height: 1.6;
	text-align: center;
	background: #393738;
	border-radius: 6px;
}

#live-tour .live-tour-link li:only-child a {
	margin: 0 auto;
	width: 25em;
	height: 4em;
	font-size: 16px;
}

#live-tour .live-tour-link a br {
}

@media only screen and (max-width: 1080px) {
	#live-tour .live-tour-link a {
		padding: 0 1.5em;
		text-align: left;
	}

	#live-tour .live-tour-link a br {
		display: none;
	}

}

#live-tour table {
	margin: 0 auto;
	text-align: left;
}

#live-tour .date {
	padding: 64px 32px 0 0;
	vertical-align: top;
	position: relative;
	text-align: center;
}

#live-tour .date::after {
	content: "";
	position: absolute;
	top: 64px;
	right: -1px;
	display: block;
	width: 1px;
	height: calc(100% - 64px);
	background: #4b4845;
}

#live-tour .date > p {
	margin-top: -0.2em;
	font-family: "Poppins", sans-serif;
	font-size: 48px;
	font-weight: 200;
	line-height: 1.2;
}

#live-tour .date p span {
	display: block;
	font-size: 18px;
	font-family: YakuHanJP, "Noto Sans JP", "Hiragino Sans", "BIZ UDPGothic", Meiryo, sans-serif;
	font-weight: 400;
}

#live-tour .date ul li {
	padding-top: 6px;
}

#live-tour .date ul p {
	white-space: nowrap;
	line-height: 1.2;
	font-size: 15px;
}

#live-tour td.detail {
	padding: 64px 0 0 0;
	position: relative;
	vertical-align: top;
}

#live-tour td.detail > ul {
	padding: 0 0 0 40px;
	border-left: solid 1px;
}

#live-tour .venue p {
	font-size: 20px;
	line-height: 1.6;
}

#live-tour .venue p span {
	padding-bottom: 0.2em;
	display: block;
	font-size: 24px;
	line-height: 1.2;
}

#live-tour .seat {
	padding-top: 16px;
	line-height: 1.2;
}

#live-tour .seat ul:not(.notice) li {
	padding-bottom: 8px;
	display: flex;
	align-items: center;
	gap: 0.3em;
}

#live-tour .seat ul:not(.notice) li:only-child {
	padding-bottom: 0;
}

#live-tour .seat ul:not(.notice) li::before {
	content: "";
	display: block;
	width: 0.5em;
	height: 0.5em;
	background: #4b4845;
}

#live-tour .seat ul:not(.notice) li p {
}

#live-tour .ec {
	padding-top: 16px;
	position: relative;
}

#live-tour .soldout .ec::before {
	content: "";
	position: absolute;
	display: block;
	width: 100%;
	height: 100%;
	z-index: 10;
}

#live-tour .ec a {
}

#live-tour .soldout .ec a {
	opacity: .2;
}

#live-tour .soldout .ec a:hover {
	opacity: .1;
}


#live-tour .info {
	padding-top: 16px;
}

#live-tour .info dl {
	display: flex;
	align-items: start;
	gap: 0 8px;
}

#live-tour .info dt {
	flex-shrink: 0;
	width: 5em;
	font-size: 13px;
	text-align: center;
	line-height: 2;
	white-space: nowrap;
	border: solid 1px;
}

#live-tour .info dd {
	padding: 0.1em 0 0 0;
	flex: 1;
	font-size: 14px;
	text-align: left;
	line-height: 1.7;
}

#live-tour .info dd a {
}

#live-tour .total-information {
	padding-top: 64px;
	display: flex;
	align-items: center;
	gap: 16px;
}

#live-tour .total-information dt {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 15em;
	height: 3em;
	font-size: 15px;
	line-height: 1.2;
	border: solid 1px;
}

@media only screen and (max-width: 1040px) {
	#live-tour .total-information dt {
		width: 14em;
		font-size: 14px;
	}
}

#live-tour .total-information dd a {
	display: flex;
	align-items: center;
	gap: 1em;
	line-height: 1.6;
	font-size: 15px;
	text-decoration: none;
}

#live-tour .total-information dd a::before {
	content: "";
	padding-top: 3.4em;
	display: block;
	width: 10em;
	height: 0;
	background: url(../images/contents/live-tour/ussarite.svg) no-repeat center center;
	background-size: 100% auto;
}

#live-tour .total-information dd a br {
	display: none;
}

@media only screen and (max-width: 1240px) {
	#live-tour .total-information dd a br {
		display: block;
	}
}

@media only screen and (max-width: 1040px) {
	#live-tour .total-information dd a {
		font-size: 14px;
	}
}

#live-tour .members {
	margin: 80px 0;
}

#live-tour .members::before,
#live-tour .members::after {
	content: "";
	margin: 0 auto;
	display: block;
	width: 100%;
	height: 1px;
	background: #4b4845;
}

#live-tour .members > dt {
	padding: 64px 0 16px;
	font-family: "Poppins", sans-serif;
	font-size: 48px;
	font-weight: 200;
	text-align: center;
	line-height: 1.2;
}

#live-tour .members > dd {
	padding-bottom: 56px;
}

#live-tour .members ul {
	margin: 0 auto;
	display: table;
}

#live-tour .members li {
	padding-bottom: 8px;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

#live-tour .members dd > ul > li:nth-last-child(1) {
	padding-top: 24px;
}

#live-tour .members dd > ul > li > p {
	width: 50%;
	text-align: left;
}

#live-tour .members dd > ul > li > p:first-child {
	text-align: right;
}

#live-tour .members li:nth-last-child(1) li p:nth-of-type(2)::after,
#live-tour .members dd > ul > li > p:first-child::after {
	content: "\00A0:\00A0";
}

#live-tour .members li:nth-last-child(1) li p:first-child {
	width: 100%;
	text-align: center;
}

#live-tour .members li p br {
	display: none;
}

@media only screen and (max-width: 1240px) {
}

#live-tour .members p span {
	display: block;
	font-size: 13px;
	line-height: 1.2;
	white-space: nowrap;
}

#live-tour .link-ec,
#live-tour .ticket {
	display: flex;
	justify-content: center;
	align-items: start;
	gap: 16px;
	text-align: left;
}

#live-tour .ticket {
	padding-bottom: 16px;
}

#live-tour .link-ec > dt,
#live-tour .ticket > dt {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 9em;
	height: 3em;
	flex-shrink: 0;
	border: solid 1px;
}

#live-tour .link-ec > dd,
#live-tour .ticket > dd {
	flex: 1;
}

#live-tour .ticket > dd > p {
	display: flex;
	line-height: 1.7;
	font-size: 18px;
	gap: 0.3em;
}

#live-tour .ticket > dd > p::before {
	content: "";
	margin-top: 0.6em;
	display: block;
	flex-shrink: 0;
	width: 0.5em;
	height: 0.5em;
	background: #4b4845;
}

#live-tour .ticket > dd > .notice {
	padding: 0 0 16px 1em;
}

#live-tour .ticket > dd dl {
	padding: 16px 0 0;
}

#live-tour .ticket > dd a {
}

#live-tour .ticket > dd > dl > dt::before {
	content: "";
	margin-right: 4px;
	width: 12px;
	height: calc(tan(60deg) * 12px / 2);
	display: inline-block;
	clip-path: polygon(0 0, 100% 0, 50% 100%);
	background: #fff;
}

#live-tour .members + .notice {
	padding-bottom: 60px;
}

	#live-tour .resale button br {
		display: none;
	}

#live-tour .resale button,
#live-tour .link-ec a {
	margin-bottom: 8px;
	padding: 1.2em calc(2.4em + 8px) 1.2em 2.4em;
	position: relative;
	display: inline-block;
	text-align: center;
	font-size: 18px;
	line-height: 1.2;
	text-decoration: none;
	-ms-user-select: none;
	-webkit-user-select: none;
	user-select: none;
	color: #fff;
	background: #393738;
	border-radius: 6px;
}

#live-tour .link-ec a {
	padding: 1.2em calc(1.2em + 8px) 1.2em 1.2em;
	width: 100%;
}

#live-tour .link-ec a br {
	display: none;
}

@media only screen and (max-width: 1240px) {
}

@media only screen and (max-width: 1080px) {
	#live-tour .link-ec a {
		line-height: 1.6;
		font-size: 16px;
		}

	#live-tour .link-ec a br {
		display: block;
	}
}

#live-tour .link-ec dd > ul:not(.notice)  > li {
	padding-bottom: 16px;
}

#live-tour .link-ec dd > ul:not(.notice) > li > p {
	font-size: 18px;
}

#live-tour .resale li {
	padding-bottom: 80px;
	display: flex;
	justify-content: center;
}

#live-tour .resale button {
	margin: 0 auto;
	padding: 1.2em 0;
	width: 24em;
	font-size: 22px;
	font-weight: 500;
}

#live-tour .live-tour-link a::after,
#live-tour .link-ec a::after {
	content: "";
	margin-top: -4px;
	padding-top: 8px;
	position: absolute;
	top: 50%;
	right: 16px;
	display: block;
	width: 8px;
	height: 0;
	transform: rotate(-45deg);
	border: solid 1px;
	border-top: none;
	border-left: none;
	-webkit-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out;
}

#live-tour .resale button:hover,
#live-tour .link-ec a:hover {
	opacity: 1;
	background: #6c686a;
}

#live-tour .live-tour-link a:hover::after,
#live-tour .link-ec a:hover::after {
	right: 8px;
}

#live-tour .tab {
	position: fixed;
	right: -64px;
	top: 50%;
	width: 80px;
	-webkit-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out;
}

#live-tour .caution dt {
	display: flex;
	align-items: center;
}

#live-tour .caution dt::before {
	content: "＜";
}

#live-tour .caution dt::after {
	content: "＞";
}

#live-tour .caution dd {
	padding: 8px 0 0 0;
}

#live-tour .caution .notice p {
	font-size: 15px;
}

#live-tour .caution .notice p::before {
	content: "・";
}

#live-tour .caution .notice .notice {
	padding-left: 1em;
}

#live-tour .caution .notice .notice p {
	padding-top: 4px;
	font-size: 13px;
}

#live-tour .caution .notice .notice p::before {
	content: "※";
}


#live-tour .soldout .date::after {
	content: "THANK YOU\ASOLD OUT";
	margin: 16px auto 0;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 7em;
	height: 7em;
	white-space: pre;
	letter-spacing: 0.02em;
	text-align: center;
	font-size: 13px;
	font-family: "Poppins", sans-serif;
	font-weight: 300;
	line-height: 1.2;
	color: #fff;
	background: #e60113;
	border: solid 1px;
	border-radius: 50%;
	z-index: 3;
}

#live-tour .add .date::after {
	content: "追加公演";
	margin: 8px auto 0;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 6em;
	height: 2.6em;
	font-size: 14px;
	color: #e60113;
	border: solid 1px;
	z-index: 10;
}



#resale_modal .modal {
position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	overscroll-behavior: none;
	display: none;
		z-index: 2101;
}

#resale_modal .modal > div {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	width: 100%;
	height: 100vh;
	z-index: 1105;
}

#resale_modal .modal > div > button {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	outline: none;
	border: none;
	cursor: pointer;
	background: rgba(0, 0, 0, .5);
	z-index: 1104;
}

.open-modal #track-list_modal::before {
	content: "";
	margin: -30vh 0 0 -520px;
	display: block;
	position: fixed;
	top: 50%;
	left: 50%;
	width: 1040px;
	height: 60vh;
	background: #fff;
	transition: 1s ease-in-out;
	z-index: 1101;
}

@media only screen and (max-width: 1284px) {
	.open-modal #track-list_modal::before {
		margin: -30vh 0 0 -42%;
		width: 84%;
	}
}

#resale_modal .modal > div > div {
	position: relative;
	display: flex;
	align-items: center;
	width: 82%;
	max-width: 1040px;
	height: 88vh;
	background: #fff;
	overflow-y: auto;
	overscroll-behavior: none;
	z-index: 1106;
}

#resale_modal figure {
	padding-top: 100%;
	overflow: hidden;
	width: 100%;
	height: 0;
	background: url(../images/contents/live-tour/notice.webp) no-repeat center center;
	background-size: 100% auto;
}

#resale_modal .modal > div > div > button {
	margin: calc(-44vh) 0 0 439px;
	padding-top: 72px;
	overflow: hidden;
	position: fixed;
	top: 50%;
	left: 50%;
	width: 72px;
	height: 0;
	cursor: pointer;
	z-index: 1104;
}

@media only screen and (max-width: 1240px) {

	#resale_modal .modal > div > div > button {
		margin: calc(-44vh) 0 0 calc(43% - 92px);
	}

}

#resale_modal .modal > div > div > button::before,
#resale_modal .modal > div > div > button::after {
	content: "";
	padding-top: 1px;
	position: absolute;
	top: 21px;
	right: 17px;
	overflow: hidden;
	display: block;
	width: 40px;
	height: 0;
	cursor: pointer;
	background: #000;
	transform: rotate(45deg);
	z-index: 1107;
}

#resale_modal .modal > div > div > button::before {
	animation: btnTr 0.8s cubic-bezier(.17,.67,.07,.99) 0s forwards;
}

#resale_modal .modal > div > div > button::after {
	top: 45px;
	transform: rotate(-45deg);
	animation: btnBr 0.8s cubic-bezier(.17,.67,.07,.99) 0s forwards;
}

#resale_modal .modal.open > div > div > button::before {
	animation: btnT 0.8s cubic-bezier(.17,.67,.07,.99) 0s forwards;
}

#resale_modal .modal.open > div > div > button::after {
	animation: btnB 0.8s cubic-bezier(.17,.67,.07,.99) 0s forwards;
}

/* btnT2 */
@keyframes btnT2 {
	0% { transform: translateY(0px);}
	20% { transform: translateY(12px) rotate(0deg);}
	100% { transform: translateY(12px) rotate(-135deg);}
}

/* btnTr2 */
@keyframes btnTr2 {
	0% { transform: translateY(12px) rotate(-135deg);}
	30% { transform: translateY(12px) rotate(0deg);}
	100% { transform: translateY(12px);}
}

/* btnB2 */
@keyframes btnB2 {
	0% { transform: translateY(0px);}
	20% { transform: translateY(-12px) rotate(0deg);}
	100% { transform: translateY(-12px) rotate(135deg);}
}

/* btnBr 2*/
@keyframes btnBr2 {
	0% { transform: translateY(-12px) rotate(135deg);}
	30% { transform: translateY(-12px) rotate(0deg);}
	100% { transform: translateY(-12px);}
}


/*--------------------------------------
上部へボタン
---------------------------------------*/

ul.toTop {
	padding-top: 61px;
	overflow: hidden;
	position: fixed;
	bottom: -61px;
	right: 0;
	width: 61px;
	z-index: 90;
	transition: bottom 1.2s cubic-bezier(.34,0,0,.99) 0s;
}

ul.toTop.active {
	bottom: 0px;
	z-index: 1000;
}

body.close ul.toTop {
	bottom: -61px;
	z-index: 1000;
}

.toTop a {
	padding-top: 61px;
	position: absolute;
	bottom: 0;
	left: 0;
	display: block;
	overflow: hidden;
	width: 61px;
	height: 0;
}

.toTop a::before {
	content: "";
	margin: -4px 0 0 -10px;
	position: absolute;
	top: 50%;
	left: 50%;
	display: block;
	width: 22px;
	height: 22px;
	border: solid 1px #000;
	border-right: none;
	border-bottom: none;
	transition: margin 0.4s cubic-bezier(.34,0,0,.99) 0s;
	transform: rotate(45deg);
}

body.white .toTop a::before {
	border-color: #fff;
}


ul.toTop a:hover {
	opacity: 1;
}

ul.toTop a:hover::before {
	margin-top: -12px;
}


/*--------------------------------------
フッター
---------------------------------------*/

#link {
	padding: 0;
	background: #e60113;
	width: 100%;
	height: 0;
	transition: opacity 0.8s cubic-bezier(.57,0,.26,1);
	z-index: 1;
}

body.open #link {
	height: auto;
	display: block !important;
	opacity: 1!important;
	border: none;
}

body.open #link .contents {
	padding: 180px 72px 0;
	height: auto;
	display: block !important;
	opacity: 1!important;
}

footer {
	background: #e60113;
	width: 100%;
	height: 0;
	transition: opacity 0.8s cubic-bezier(.57,0,.26,1);
}

footer > *{
	transition: opacity 0.8s cubic-bezier(.57,0,.26,1);
}

body.open footer,
body.open footer > * {
	height: auto;
	opacity: 1;
}

footer .copyright::before {
	display: none;
}

footer .copyright {
	padding: 120px 0 180px;
	letter-spacing: 0;
	font-family: "Poppins", sans-serif;
	font-weight: 300;
	font-size: 18px;
	color: #fff;
	line-height: 1.2;
}

footer .copyright br {
	display: none;
}

footer .copyright a {
	color: #fff;
	text-decoration: none;
}

/*--------------------------------------------------------------------------------------------------*/

@media only screen and (max-width: 980px) {

	body {
		font-size: 15px;
		line-height: 1.8;
	}

	#live-tour .link-ec,
	#live-tour .ticket {
		flex-direction: column;
	gap: 8px;
	}

	#live-tour .link-ec > dt,
	#live-tour .ticket > dt {
		width: 100%;
	}

	#live-tour .link-ec a br {
		display: none;
	}

	#live-tour .resale button {
		width: 24em;
		font-size: 18px;
	}

	#live-tour .total-information {
		align-items: start;
		}


	#live-tour .total-information dt {
		width: 13em;
		font-size: 13px;
	}

	#live-tour .total-information dd a {
		flex-direction: column;
		gap: 0;
	}

	#live-tour .total-information dd a br {
		display: none;
	}

}

/*--------------------------------------------------------------------------------------------------*/

@media only screen and (max-width: 860px) {
}


/*--------------------------------------------------------------------------------------------------*/

@media only screen and (max-width: 780px) {

}

/*--------------------------------------------------------------------------------------------------*/

@media only screen and (max-width: 680px) {

	body {
		font-size: 14px;
		line-height: 1.8;
	}

}
/*--------------------------------------------------------------------------------------------------*/

@media only screen and (max-width: 520px) {

	.siteTitle {
		padding-top: calc(248% * 0.26);
		top: 16px;
		left: 16px;
		width: calc(100% * 0.26);
		background: url(../images/common/header/title_sp.svg) no-repeat;
		background-size: 100% auto;
		transform: none;
	}

	.visual {
		width: 96%;
		height: 100%;
		transform: translate(-50%, -50%);
	}

	.visual .photo {
		padding-top: calc(175.8% * 1);
		width: calc(100% * 1);
		background: url(../images/common/header/visual/photo.webp) no-repeat;
		background-size: 100% auto;
		transform: translate(-50%, -40%);
		animation: visual-move-sp-photo 4s cubic-bezier(.17,.67,.07,.99) 3s 1 forwards;
	}

@keyframes visual-move-sp-photo {
	0% {
		transform: translate(-50%, -40%);
	}
	100% {
		transform: translate(-50%, -50%);
	}
}

	.visual .shadow {
		padding-top: calc(175.8% * 1);
		width: calc(100% * 1);
		background: url(../images/common/header/visual/shadow.webp) no-repeat center bottom;
		background-size: 100% auto;
		transform: translate(-50%, -40%);
	animation: visual-move-sp 4s cubic-bezier(.17,.67,.07,.99) 3s 1 forwards;
	}

@keyframes visual-move-sp {
	0% {
		transform: translate(-50%, -40%);
	}
	100% {
		transform: translate(-50%, -50%);
	}
}

	.sns-link {
		top: auto;
		bottom: 14px;
		width: 24vw;
		min-width: 0;
		opacity: 0;
		transition: opacity 1s cubic-bezier(0.42, 0, 0.26, 1.01) 5s;
	z-index: 100;
	}

	body.active .sns-link {
		opacity: 1;
	}

	.primary {
}

	.primary::after,
	.primary::before {
		transition: clip-path 0.5s cubic-bezier(.57,0,.26,1) 2s;
	}

	section::after {
		transition: clip-path 0.5s cubic-bezier(.57,0,.26,1) 2.5s;
	}

	.primary section {
	}

	.primary section h2 {
		font-size: 25px;
		font-weight: 200;
	transition: border-color 1s cubic-bezier(.57,0,.26,1) 0s;
		border-bottom: solid 1px #000;
	}

	.primary section.open h2 {
		border-color: #fff;
	}

	.primary section#link h2 {
		border: none;
	}

	.primary section .contents {
		padding: 56px 24px 80px;
	}

	#link > *,
	.primary section .contents > * {
		opacity: 0;
		transition: opacity 0.6s cubic-bezier(0.42, 0, 0.26, 1.01) 0s;
	}

		.primary section.open + #link > *,
	.primary section .contents.active > * {
		opacity: 1;
		transition: opacity 0.4s cubic-bezier(0.42, 0, 0.26, 1.01) 0s;
	}

	body.close .primary section .contents > * {
		opacity: 0;
	}

	section button.close {
		padding: 39px 0 0;
		width: 39px;
	}

	section button.close::before,
	section button.close::after {
		width: calc(100% - 14px);
		height: 1px;
	}

	section button.close::after {
		width: 1px;
		height: calc(100% - 14px);
	}

	#news .entry a {
		padding: 24px 32px 24px 0;
		flex-direction: column;
		line-height: 1.6;
		font-size: 14px;
	}

	#live-tour h3 {
		padding-top: 55%;
		position: static;
		width: 100%;
		background: url(../images/contents/live-tour/logo_sp.svg) no-repeat;
		background-size: 100% auto;
	}

	#live-tour .contents > .detail {
		margin: 0;
		padding: 24px 0;
	}

	#live-tour .message {
		padding-bottom: 24px;
	}

	#live-tour .live-tour-link a,
	#live-tour .live-tour-link li:only-child a {
		width: 100%;
	font-size: 14px;
	}

	#live-tour .live-tour-link a::after,
	#live-tour .link-ec a::after {
		right: 12px;
	}

	#live-tour .date {
		padding: 32px 8px 0 0;
	}

	#live-tour .date > p {
		font-size: 38px;
	}

	#live-tour .date ul p {
		font-size: 13px;
	}

	#live-tour .venue p {
		font-size: 16px;
	}

	#live-tour .venue p span {
		font-size: 22px;
	}

	#live-tour td.detail {
		padding: 32px 0 0 0;
	}

	#live-tour td.detail > ul {
		padding: 0 0 0 16px;
	}

	#live-tour .info dl {
	flex-direction: column;
	}

	#live-tour .info dd > p,
	#live-tour .info dt {
		font-size: 12px;
	}

	#live-tour .add .date::after {
		font-size: 13px;
	}

	#live-tour .total-information {
		padding-top: 48px;
		flex-direction: column;
		align-items: center;
		gap: 8px;
	}

	#live-tour .total-information dt {
		width: 100%;
		font-size: 14px;
		}

	#live-tour .total-information dd a::before {
		padding-top: calc(3.4em * 1.5);
		width: calc(10em * 1.5);
	}

	#live-tour .members {
		margin: 40px 0 32px;
	}

	#live-tour .members::before,
	#live-tour .members::after {
		display: none;
	}

	#live-tour .members > dt {
		padding: 0;
		display: flex;
		justify-content: center;
		align-items: center;
		width: 100%;
		height: 3em;
		line-height: 1.2;
		font-family: YakuHanJP, "Noto Sans JP", "Hiragino Sans", "BIZ UDPGothic", Meiryo, sans-serif;
		font-size: 14px;
		border: solid 1px;
	}

	#live-tour .members > dd {
		padding: 16px 0 0;
	}

	#live-tour .members li p br {
		display: block;
	}

	#live-tour .resale li {
		padding-bottom: 40px;
	}

	#live-tour .resale button {
		width: 100%;
		font-size: 15px;
	}

	#resale_modal .modal > div > div > button {
		margin: calc(-46vh) 0 0 calc(43% - 69px);
	}

	#live-tour .link-ec > dt, #live-tour .ticket > dt {
		font-size: 14px;
	}

	#live-tour .ticket > dd > p {
		font-size: 16px;
	}

	#live-tour .ticket {
		padding-bottom: 24px;
	}

	#live-tour .link-ec > dd {
		padding-top: 8px;
	}

	#live-tour .link-ec a br {
		display: block;
		}

	#live-tour .link-ec dd > ul:not(.notice) > li > p {
		font-size: 15px;
	}

	#live-tour .caution {
		padding-top: 32px;
	}

	#live-tour .caution dt {
		padding: 0.5em 0;
		justify-content: center;
		border-top: solid 1px;
		border-bottom: solid 1px;
	}

	#live-tour .caution dt::after,
	#live-tour .caution dt::before {
		display: none;
	}

	#live-tour .caution .notice p {
	font-size: 14px;
	}

	body.open #link {
		z-index: 101;
	}

	#link h2 {
		padding: 0;
		height: 0 !important;
		overflow: hidden;
	}

	body.open #link .contents {
		padding: 56px 24px 0;
	}

	ul.toTop {
		padding-top: 39px;
		bottom: -39px;
		width: 39px;
	}

	.toTop a {
		padding-top: 39px;
		width: 39px;
	}

	.toTop a::before {
		margin: -3px 0 0 -9px;
		width: 16px;
		height: 16px;
	}

	#link {
		border: none !important;
	}

	footer .copyright {
		padding: 40px 0 80px;
		font-size: 12px;
	}
}

/*--------------------------------------------------------------------------------------------------*/

@media screen and (orientation: landscape) {



}
