@charset "UTF-8";

/***************************************
01.Reset
02.共通
　ーヘッダー
　ーパンくず
　ーフッター
03.トップページ
04.
05.

***************************************/
/***************************************
01.Reset
***************************************/
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

:root {
	--bg-color:#F7F7FA;
	--bg-secondary-color:#303030;
	--mv-bg-color:#F7F7FA;
	--accent-color:#C5D881;
	--heading-primary-color:#0A245E;
	--heading-secondary-color:#0A245E;
	--link-color:#0A245E;
	--text-color: #000;
	--gray-color:#f5f5f5;
	--font-montserrat:"Montserrat",sans-serif;
	--font-h3:27px;
	--font-h4:20px;
	--font-h5:18px;
	--font-middle:20px;
	--font-default:16px;
	--font-small:14px;
	--box-shadow:0px 4px 4px 0px rgba(0,0,0,0.25);
}
@media screen and (max-width:767px) {
	:root {
		--font-h4:18px;
		--font-middle:17px;
		--font-small:12px;
	}
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
	box-sizing: border-box;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
html {
	/*overflow-x: hidden;*/
}
body {
	line-height: 1;
	text-align: left;
	overflow-x: hidden;
	transform-origin: top center;
	position: relative;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/*font-family: 'Montserrat', sans-serif;*/
/***************************************
02.共通
***************************************/
body {
	font-size: var(--font-default);
	font-family:"Noto Sans JP",sans-serif;
	font-weight: 400;
	text-align: justify;
	background: var(--bg-color);
	color: var(--text-color);
}
@media screen and (max-width:767px) {
	body {
	}
}

h1, h2, h3, h4, h5, h6 {
	font-weight: 700;
}
a {
	color: var(--link-color);
	word-break: break-all;
	text-decoration: none;
}
a.map-link {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding-right: 20px;
}
a.map-link::before {
	content: "";
	background-color: var(--accent-color);
	width: 12px;
	height: 21px;
	-webkit-mask: url('../img/pin.svg') center / 100% no-repeat;
	mask: url('../img/pin.svg') center / 100% no-repeat;
}

a:hover {
	color:var(--accent-color);
	text-decoration: none;
}

img {
	width: 100%;
	vertical-align: middle;
}
.clearfix:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}
small{
	font-size: 0.9rem;
}
.t_a_c {
	text-align: center;
}
.f_w_b {
	font-weight: bold;
}
@media screen and (min-width: 768px) {
	.sp_only {
		display: none !important;
	}
}
.pc_only {
	display: block;
}
.sp_tb_only {
	display: none;
}
section {
	padding: 60px 0;
	position: relative;
}
section h2{
	text-align: center;
	position: relative;
	margin-bottom: 10px;
}
section h3{
	font-size:var(--font-h3);
	color: var(--accent-color);
	padding-bottom: 20px;
}
section h4{
	font-size: var(--font-h4);
	font-weight: 700;
	padding-bottom: 10px;
	line-height: 1.6em;
	text-align: center;
}
section h5{
	font-size: var(--font-h5);
	font-weight: 700;
	padding-bottom: 20px;
	line-height: 1.6em;
	text-align: center;
}
section p{
	line-height: 1.6em;
}
.h-img {
	display: block;
	margin-inline: auto;
	height: 22px;
}
.h-img.h-img-large {
	height: 41px;
}
.strong {
	font-weight: bold;
}
.hanging-indent {
	text-align: left;
	margin-left: 1em;
	text-indent: -1em;
}

.ticket-note {
	margin-block: 32px;
}
.ticket-note-title {
	font-weight: bold;
	margin-bottom: 16px;
}
.ticket-note-body {
	font-size: 14px;
	line-height: 1.7;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.contact {
	margin-block: 32px;
}
.contact-title {
	font-size: 18px;
	font-weight: bold;
	line-height: 1.3;
	margin-bottom: 10px;
}
.contact-body {
	line-height: 1.3;
	margin-bottom: 22px;
}
.contact-host {
	line-height: 1.3;
}

@media screen and (max-width:767px) {
	section{
		padding: 40px 0 50px;
	}
	section h2 {
		font-size: 35px;
	}
	.pc_only {
		display: none;
	}
	.sp_only {
		display: block;
	}
	br.sp_only{
		display: inline;
	}

	.h-img {
		height: 16.5px;
	}
	.h-img.h-img-large {
		height: 27.5px;
	}
}

a[href^="tel:"]{
	color: var(--link-color);
}

/*------------チケット-----------------*/
#ticket_bt {
	position: fixed;
	bottom: 5px;
	right: 1.5%;
	padding: 0px;
	z-index: 100;
}
#ticket_bt a{
	display: block;
	background: url('../img/ticket_bt.png') no-repeat center right/100%;
	width: 160px;
	height: 78px;
}
#ticket_bt a:hover{
	opacity: 0.7;
	background-image: url('../img/ticket_bt_hover.png');
}

@media screen and (max-width:1024px) {
	/*#ticket_bt{
		display: none!important;
	}*/
	#ticket_bt {
		bottom: 5px;
		right: 5px !important;
		display: none !important;
	}
	#ticket_bt a{
		width: 80px;
    	height: 57px;
	}
	#ticket_bt a:hover{
	opacity:1;
}
}
/*------------ヘッダー-（ナビゲーション・ロゴ）----------------*/
.pc_logo_area {
	width: 50%;
    padding:0 15px;
    display: block;
    box-sizing: border-box;
}
.pc_logo_area img{
	width: 51px;
	height: 51px;
}
.pc_logo_area a{
	display: block;
	color: white;
	text-decoration: none;
	font-size: 23px;
	font-weight: bold;
	line-height: 1.2em;
}
.pc_logo_area a small{
	font-size: 16px;
}

header {
	position: relative;
	width: 100%;
	display: none;
	background: var(--bg-color);
}
.header-inner{
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 40px;
	margin-inline: 1.5vw;
	border-bottom: solid 1px #000;
}
.header-ticket {
	display: none;
}

header nav {
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: flex-end;
	z-index: 10;
	position: relative;
}
header nav ul {
	width: 100%;
	display: flex;
	justify-content: flex-end;
	box-sizing: border-box;
	gap: 3.5vw;
}
header nav ul a {
	text-decoration: none;
	display: block;
	height: 11px;
	-webkit-mask-position: center;
	mask-position: center;
	-webkit-mask-size: auto 100%;
	mask-size: auto 100%;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	background: var(--link-color);
}
header nav ul a:hover {
	background: var(--accent-color);
}
#header-news {
	width: 49px;
	-webkit-mask-image: url('../img/text_news.svg');
	mask-image: url('../img/text_news.svg');
}
#header-cast {
	width: 45px;
	-webkit-mask-image: url('../img/text_cast.svg');
	mask-image: url('../img/text_cast.svg');
}
#header-tickets {
	width: 71px;
	-webkit-mask-image: url('../img/text_tickets.svg');
	mask-image: url('../img/text_tickets.svg');
}
#header-goods {
	width: 61px;
	-webkit-mask-image: url('../img/text_goods.svg');
	mask-image: url('../img/text_goods.svg');
}
#header-access {
	width: 66px;
	-webkit-mask-image: url('../img/text_access.svg');
	mask-image: url('../img/text_access.svg');
}
.fixed{
	position: fixed;
	top: 0;
	right: 0;
	z-index: 900;
}
.sp-tickets{
	display: none;
}

/*ナビゲーション*/
@media screen and (max-width:1024px) {
	header{
		display: block!important;
	}
	.pc_logo_area {
		width: 70%;
		padding:0 0px;
	}
	.pc_logo_area img{
		width: 38px;
		height: 38px;
	}
	#top-head {
		position: fixed;
		display: block!important;
		z-index: 100;
	}
	.header-info, .header-nav-list a span {
		display: none;
	}
	.header-inner {
		padding: 0 10px;
		z-index: 100;
		width: 100%;
		justify-content: flex-end;
		gap: 14px;
		margin-inline: 5px;
		padding-inline: 13px;
	}
	.header-ticket {
		display: block;
		width: 84px;
	}
	.header-ticket img {
		display: block;
	}
	.header-nav {
		width: 100%;
		position: fixed;
		top: 0;
	}
	.header-nav-list {
		display: block;
		padding: 55px 45px 70px;
		background: var(--bg-secondary-color);
	}
	.sp_header {
		display: flex;
	}
	.sp_logo_area {
		width: 60px;
		padding: 15px;
		display: block;
	}
	.nav-right{
		display: flex;
		align-items: center;
	}
	.sp-tickets {
		display: flex;
		height: auto;
		padding: 0;
		text-align: center;
		margin-right: 10px;
		box-sizing: border-box;
		width: 80px;
	}
	.sp-tickets a img{
		width: 100%;
	}
	header nav{
		display: none;
		position: fixed;
		top:100px;
		width: 100%;
		left: 0;
	}
	header nav ul {
		padding: 0;
	}
    header nav ul li a {
		padding: 16px;
    }
	header nav ul a {
		font-weight: bold;
	}
	header nav ul{
		display: block;
		margin: 0 auto;
		width: 100%;
        height: 100%;
		padding-left: 0;
	}
	header nav ul li{
		width: 100%;
		padding: 0;
		margin: 0 auto;
		text-align: center;
	}
	header nav ul li a{
		display: block; 
	}
	header nav ul a:hover::after {
		display: none;
	}
	header nav ul a:hover {
	}

      /*開閉ボタン*/
	#nav_toggle{
		display: block;
		width: 26px;
		height: 20px;
		position: relative;
		z-index: 100;
	}
	#nav_toggle div {
		position: relative;
	}
	#nav_toggle span{
		display: block;
		height: 1px;
		background: #000;
		position:absolute;
		width: 100%;
		left: 0;
		-webkit-transition: 0.5s ease-in-out;
		-moz-transition: 0.5s ease-in-out;
		transition: 0.5s ease-in-out;	
	}
	#nav_toggle span:nth-child(1){
		top:0px;
	}
	#nav_toggle span:nth-child(2){
		top:10px;
	}
	#nav_toggle span:nth-child(3){
		top:20px;
	}
	
	/*開閉ボタンopen時*/
	.open #nav_toggle span {
		background: var(--accent-color);
	}
	.open #nav_toggle span:nth-child(1) {
		top: 12px;
	   -webkit-transform: rotate(135deg);
		-moz-transform: rotate(135deg);
		transform: rotate(135deg);
	}
	.open #nav_toggle span:nth-child(2) {
		width: 0;
		left: 50%;
	}
	.open #nav_toggle span:nth-child(3) {
		top: 12px;
		-webkit-transform: rotate(-135deg);
		-moz-transform: rotate(-135deg);
		transform: rotate(-135deg);
	}
	.header-nav > ul > li {
		border-bottom: solid 1px #6A6A6A;
	}
	.header-nav > ul > li a {
		display: block;
		position: relative;
		text-decoration: none;
		height: 60px;
		background-color: var(--accent-color);
		z-index: 2;
		-webkit-mask-position: left center;
		mask-position: left center;
	}
	#header-news {
		width: 100%;
		-webkit-mask-size: 63px auto;
		mask-size: 63px auto;
	}
	#header-cast {
		width: 100%;
		-webkit-mask-size: 57px auto;
		mask-size: 57px auto;
	}
	#header-tickets {
		width: 100%;
		-webkit-mask-size: 89px auto;
		mask-size: 89px auto;
	}
	#header-goods {
		width: 100%;
		-webkit-mask-size: 77px auto;
		mask-size: 77px auto;
	}
	#header-access {
		width: 100%;
		-webkit-mask-size: 84px auto;
		mask-size: 84px auto;
	}
}
@media screen and (max-width:767px) {
	header nav {
		display: none;
		position: fixed;
		top: 60px;
		width: 100%;
		height: 100%;
		left: 0;
	}
}

/*------------フッター-----------------*/
footer p {
	padding: 40px 0 40px 0;
	color: #000;
	text-align: center;
	line-height: 1.3em;
	font-size: 12px;
	border-top: solid 1px #000;
	margin-inline: 20px;
	font-family: var(--font-montserrat);
	font-weight: 300;
	margin-top: 100px;
}
@media screen and (max-width:767px) {
	footer p {
		margin-top: 40px;
		margin-inline: 5px;
	}
}

/*------------共通-----------------*/
.contents {
	padding-top: 70px;
}
@media screen and (max-width:767px) {
	.contents {
		padding-top: 10px;
	}
}
section .inner{
	margin: 0 auto;
	position: inherit;
	max-width: 1030px;
	padding-inline: 20px;
}
@media screen and (max-width:767px) {
	section .inner{
		margin: 0 10px;
		padding-inline: 0;
	}
}


/***************************************
03.メインビジュアル
***************************************/
.mv {
}
.mv .mv-img{
	background: var(--mv-bg-color) url(../img/main_w.png) no-repeat center center/contain;
	margin: 0;
	width: 100%;
	aspect-ratio: 1440 / 674;
	position: relative;
}
.mv h1{
	display: none;
}
@media screen and (max-width:1024px) {
	.mv {
		padding-block: 40px;
	}
}
@media screen and (max-width:767px) {
	.mv .mv-img{
		background: var(--mv-bg-color) url(../img/main_w_sp.png) no-repeat center center/100%;
		aspect-ratio: 390 / 594;
	}
}

a.message {
    display: block;
    border-radius: 15px;
    width: 60%;
    background-color:var(--link-color);
    color: #fff;
    text-align: center;
    margin: 80px auto 0px;
    padding: 30px 0;
    font-size: 24px;
    font-weight: bold;
}
a.message:hover{
	opacity: 0.7;
}
@media screen and (max-width:767px) {
	a.message {
		margin: 30px auto 0 auto;
	}
}
/*news*/
.news{
	padding: 0;
}
.news ul {
	max-height: 146px;
	display: flex;
	justify-content: flex-start;
	flex-direction: column;
	max-width: 400px;
	margin: auto;
	overflow-y: scroll;
}
.news ul li {
	display: flex;
	justify-content: flex-start;
	line-height: 1.7em;
	padding: 8px 0px 4px;
	box-sizing: border-box;
	gap: 12px;
	font-size: 14px;
	border-bottom: solid 1px #000;
	line-height: 1.9;
}
.news ul li time {
	font-family: var(--font-montserrat);
	flex-shrink: 0;
}
.news ul li p {
	text-align: left;
	line-height: 1.9;
}

a.bt{
	display: grid;
	place-items: center;
	min-width: 240px;
	width: fit-content;
	min-height: 43px;
	margin: 16px auto;
	border: solid 1px var(--link-color);
	border-radius: 30px;
	background: none;
	font-weight: bold;
	color: var(--link-color);
	padding: 6px 20px;
	transition: all 0.5s 0s ease;
	box-sizing: border-box;
}
a.bt:hover{
	background: var(--link-color);
	color: var(--bg-color);
}


@media screen and (max-width:767px) {
	.news{
		max-width: 100%;
	}
	.news h2 {
		margin-bottom: 22px;
	}
	.news ul {
		padding: 0;
		max-height: 122px;
	}
	.news ul li {
		font-size: 12px;
		gap: 24px;
		padding: 12px 0;
	}
	.news ul li:first-child {
		padding-top: 0;
	}
	.news ul li time,
	.news ul li p {
		line-height: 1.2;
	}
	a.bt{
		min-width: 220px;
	}
}
/***************************************
04.イントロダクション
***************************************/
section.intro .inner{
	text-align: center;
}
@media screen and (max-width:767px) {
	section.sec_1 h2{
	}
}
.intro .text-area {
	padding: 0;
	position: inherit;
	z-index: 10;
	font-weight: 500;
	line-height: 1.9;
	text-align: center;
}
.intro .text-area p {
	line-height: 1.9;
	font-weight: bold;
}
.comment-title {
	padding-bottom: 40px;
}
ul.comment {
	display: grid;
	grid-template-columns: 484px;
	justify-content: center;
	gap: 24px;
}
ul.comment li {
	max-width: 100%;
	padding: 24px;
	background: #fff;
	color: #000;
}
ul.comment li p{
	line-height: 1.7;
	font-weight: 500;
	text-align: left;
}
ul.comment li h5{
	color: #000;
	line-height: 1.7;
	padding-bottom: 8px;
}
/*ul.comment li:first-child,
ul.comment li:last-child{
	background: #FFEAD1;
}*/
ul.comment.second li:nth-child(odd){
	background: var(--gray-color);
}
.summary{
	padding: 56px 0 120px;
}
.summary p {
	line-height: 1.7;
}

@media screen and (max-width:950px) {
	.intro .text-area br.sp_only {
		display: inline !important;
	}
}
@media screen and (max-width:767px) {
	.intro {
		padding-top: 80px;
	}
	.intro .text-area {
		padding: 0;
	}
	.summary {
		padding-bottom: 90px;
	}
	.summary p{
		text-align: left;
		font-size: 14px;
	}
	.summary p br{
		display: none;
	}
	ul.comment {
		margin: 0;
		grid-template-columns: 100%;
		gap: 10px;
	}
	ul.comment li{
		width: 100%;
		padding: 20px 15px;
		min-height: auto;
	}
	ul.comment li p{
		font-size: 14px;
		text-align: left;
	}
}


/***************************************
05.アーティスト .sec_2
***************************************/
.sec_2{
	text-align: center;
}
.sec_2 h2 {
	margin-bottom: 40px;
}
.Performer {
	margin: 0px auto;
	padding: 0px 0;
	text-align: center;
	font-weight: bold;
	line-height: 1.2;
}
.Performer .one {
	width: 300px;
	margin: 0 auto 20px;
	font-size: 18px;
}
.Performer .flex {
	display: flex;
	gap: 16px;
	margin-inline: auto;
}
.Performer .flex > div {
	flex: 1;
	width: 316px;
}
.Performer .three {
	display: flex;
	gap: 16px;
	max-width: 728px;
	margin-block: 48px;
}
.Performer .four {
	display: flex;
	gap: 16px;
	max-width: 976px;
	margin-block: 48px;
}
.Performer h3 {
	color: var(--heading-primary-color);
	font-size: 24px;
	padding-bottom: 14px;
}
.Performer .two {
	max-width: 480px;
	margin-bottom: 70px;
}
.Performer .primary {
	max-width: 616px;
	margin-bottom: 48px;
}

.Performer  div img{
	width: 100%;
	margin-bottom: 8px;
	display: block;
}
.Performer .flex > div small{
	font-size: 14px;
	font-weight: 400;
	line-height: 1.4em;
	display: inline-block;
	padding-top: 5px;
}
.staff h3 {
	padding-bottom: 30px;
}
.staff dl {
	display: grid;
	grid-template-columns: max-content max-content;
	margin-inline: auto;
	width: fit-content;
	line-height: 1.6;
	font-size: 14px;
	font-weight: 500;
}
.staff dt {
	text-align: right;
	padding-left: 114px;
}
.staff dd {
	text-align: left;
}
.staff2 p {
	padding-top: 1em;
}

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

	.sec_2 h2 {
		margin-bottom: 30px;
	}
	.Performer {
		padding: 0 0 10px;
	}
	.Performer .two,
	.Performer .three,
	.Performer .four {
		flex-wrap: wrap;
		justify-content: center;
		gap: 16px calc(16 / 370 * 100%);
	}
	.Performer .two > div,
	.Performer .three > div,
	.Performer .four > div {
		max-width: 176px;
		flex: none;
		width: calc(176 / 370 * 100%);
	}
	.Performer .primary {
		max-width: none;
		padding-inline: 60px;
	}
	.Performer .primary > div {
		max-width: 250px;
		width: 250px;
	}
	.Performer h3 {
		font-size: 20px;
	}

	.staff h3 .h-img {
		height: 22px;
	}
	.staff dl {
		font-size: 12px;
		grid-template-columns: max-content auto;
	}
	.staff dt {
		padding: 0;
	}
}

/***************************************
07.チケット .sec_3
***************************************/
.sec_3 {
	background: var(--bg-secondary-color);
	padding: 0;
	margin-block: 146px;
}
.sec_3::before,
.sec_3::after {
	content: '';
	display: block;
	width: 100%;
	height: 286px;
	position: absolute;
	left: 0;
	background-position: center;
	background-size: 100% 100%;
	background-repeat: no-repeat;
	z-index: -1;
}
.sec_3::before {
	background-image: url('../img/sec3_bg_top.png');
	bottom: calc(100% - 70px);
}
.sec_3::after {
	background-image: url('../img/sec3_bg_bottom.png');
	top: calc(100% - 40px);
}
.sec_3 .inner{
	text-align: center;
	color: #fff;
}
.sec_3 .inner a {
	color: var(--accent-color);
}
.sec_3 h2 {
	margin-bottom: 44px;
}

.sec_3 .inner .about-ticket{
	text-align: center;
	line-height: 1.8em;
	position: relative;
	margin: auto;
	margin-top: 40px;
	max-width: 744px;
}
.sec_3 .inner div.title{
	font-size: 24px;
	font-weight: bold;
	padding-bottom: 20px;
}

.sec_3 .day {
	font-weight: 500;
	line-height: 1.3;
}
div.place{
	font-size: var(--font-middle);
	width: fit-content;
	margin: 4px auto 16px;
	font-weight: 700;
	line-height: 1.3em;
}
.sec_3 .map-link:hover {
	color: var(--bg-color);
}
.sec_3 .map-link:hover::before {
	background: var(--bg-color);
}
.about-ticket h5 {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	font-weight: normal;
	padding-bottom: 30px;
}
.about-ticket h5::before,
.about-ticket h5::after {
	content: '';
	display: block;
	flex: 1;
	height: 1px;
	background: #7A7A7A;
}
.price-body {
	display: flex;
	flex-direction: column;
	text-align: right;
	width: fit-content;
	margin-inline: auto;
}
.u20-ticket-note .disc {
	font-size: 14px;
	line-height: 1.8;
}
.u20-ticket-note-sub {
	font-size: 14px;
	text-align: left;
}
.pre-sale {
	margin-block: 40px 32px;
}
.pre-sale-title {
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 22px;
}
.pre-sale-body {
	font-size: 18px;
	line-height: 1.3;
	margin-block: 20px;
}
.pre-sale-btns {
	display: flex;
	justify-content: center;
	gap: 10px;
}
.sec_3 .pre-sale .bt {
	background: var(--accent-color);
	color: var(--bg-secondary-color);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	letter-spacing: -0.02em;
	border: solid 1px var(--accent-color);
	min-width: 200px;
	margin: 0;
}
.sec_3 .pre-sale .bt::after {
	content: '';
	width: 11px;
	height: 8px;
	background-color: var(--bg-secondary-color);
	-webkit-mask: url('../img/arrow.svg') center / 100% no-repeat;
	mask: url('../img/arrow.svg') center / 100% no-repeat;
	transition: all 0.5s 0s ease;
}
.sec_3 .pre-sale .bt:hover {
	background: var(--bg-secondary-color);
	color: var(--accent-color);
}
.sec_3 .pre-sale .bt:hover::after {
	background-color: var(--accent-color);
}
@media screen and (max-width:767px) {
	.sec_3 {
		margin-block: 84px 104px;
		padding-bottom: 20px;
	}
	.sec_3::before,
	.sec_3::after {
		height: 114px;
	}
	.sec_3::before {
		background-image: url('../img/sec3_bg_top_sp.png');
		bottom: calc(100% - 8px);
	}
	.sec_3::after {
		background-image: url('../img/sec3_bg_bottom_sp.png');
		top: calc(100% - 8px);
	}
	.sec_3 h2 {
		margin-bottom: 38px;
	}
	.sec_3 .inner div.title{
		font-size: 24px;
	}
	.sec_3 .inner div.title span {
		display: block;
		font-size: 18px;
		margin-top: 14px;
	}
	.sec_3 .day {
		font-size: 14px;
	}
	div.place {
		font-size: 18px;
		margin-bottom: 16px;
	}
	div.place a.map-link {
		padding-right: 0;
	}
}
@media screen and (max-width: 380px) {
	div.place {
		font-size: 17px;
	}
}
.sec_3 .inner div.day strong{
	font-weight: 700;
	font-size: var(--font-h4);
	line-height: 1.8em;
}
.sec_3 .inner div.price{
	padding: 0 0 10px;
}
.sec_3 .inner div.price p{
	font-size: 18px;
	line-height: 1.3em;
	font-weight: bold;
	padding-bottom: 20px;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
.sec_3 .inner div.price p strong{
	font-size: 32px;
	font-weight: 600;
	font-family: var(--font-montserrat);
	margin-left: 16px;
}
.sec_3 .inner div.price p small {
	font-size: 16px;
	align-self: flex-end;
	line-height: 1;
}

.sec_3 .inner dl{
	width: 30em;
	margin: auto;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.sec_3 .inner dl dt,
.sec_3 .inner dl dd{
	padding-bottom: 10px;
	text-align: left;
	position: relative;
}
.sec_3 .inner dl dt{
	width: 6em;
}
.sec_3 .inner dl dd{
	width: calc(100% - 6.5em);
	word-break: break-all;
}
.sec_3 .inner div.price dl dd span.notice{
	position: absolute;
	bottom: 10px;
	right: -7em;
	font-size: 14px;
	font-weight: 700;
}
@media screen and (max-width:767px) {
	.sec_3 .inner dl{
		width: 100%;
	}
	.sec_3 .inner dl dt{
		padding-bottom: 0;
		width: 5em;
	}
	.sec_3 .inner dl dd{
		padding-bottom: 20px;
		width: calc(100% - 5.5em);
	}
}
.schedule-container h5 {
	padding: 0;
	margin-bottom: 8px;
}
.schedule {
	margin-block: 8px;
	padding: 24px;
	background: #232323;
}
.schedule-title {
	font-size: 18px;
	font-weight: bold;
	line-height: 1.3;
}
.schedule-date {
	font-size: 14px;
	line-height: 1.3;
	margin-block: 4px 24px;
}
.schedule1 {
	max-width: 272px;
}
.schedule2 {
	max-width: 514px;
}
.schedule .schedule-wrap{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.schedule .schedule-wrap div{
	width: 49%;
	background: var(--gray-color);
	box-shadow: var(--box-shadow);
	border-radius: 5px;
	padding: 30px;
	color:#000;
}
.schedule .schedule-wrap div h6{
	margin-bottom: 20px;
}
.schedule .schedule-wrap div img{
	display: block;
	margin: 20px auto;
}
.schedule .schedule-wrap div:nth-of-type(2) img{
	max-width: 103px;
}
.schedule p.talk{
	padding-top: 20px;
	text-align: left;
}

.sec_3 .t-contents{
	text-align: center;
}
.sec_3 .contact-1 {
	text-align: center;
	line-height: 1.5em;
	margin-bottom: 1em;
}
.sec_3 .contact-1 p{
	padding-bottom: 10px;
}
@media screen and (max-width:767px) {
	.sec_3 .inner .about-ticket{
		padding: 10px 0;
		line-height: 1.4em;
		margin-top: 0;
	}
	.sec_3 .inner div.day{
		font-weight: 700;
		font-size: var(--font-h4);
	}
	.sec_3 .inner div.price{
		font-size: 24px;
		padding: 20px 0 24px;
	}
	.sec_3 .inner div.price small{
		font-size: var(--font-default);
	}
	.sec_3 .inner div.price p{
		padding-bottom: 10px;
	}
	.schedule .schedule-wrap div{
		width: 100%;
		margin-bottom: 20px;
	}
	.price-body {
		gap: 8px;
	}
	.u20-ticket-note ul {
		font-size: 14px;
		font-weight: normal;
		line-height: 1.6;
		display: flex;
		flex-direction: column;
		gap: 8px;
		margin-top: 4px;
	}
	.pre-sale-btns {
		flex-wrap: wrap;
		gap: 20px;
	}
	.sec_3 .pre-sale .bt {
		min-width: 160px;
	}
	.schedule {
		padding: 12px;
	}
	.schedule-title {
		font-size: 14px;
	}
	.schedule-date {
		font-size: 12px;
		margin-block: 4px 16px;
	}
	.schedule1 {
		max-width: none;
		width: calc(180 / 390 * 100vw);
	}
	.schedule2 {
		max-width: none;
		width: calc(340 / 390 * 100vw);
	}
	.contact-title {
		font-size: 16px;
	}
}

/*アコーディオン*/
.about-ticket .tickets_box02 details{
	border: 1px solid var(--accent-color);
	border-radius:6px;
	margin-top: 20px;
}
.about-ticket .tickets_box02 details .details-box{
	padding: 20px;
}
details summary {
	list-style: none;
	cursor: pointer;
	padding: 10px 15px;
	color: white;
	font-size: 14px;
	font-weight: bold;
	line-height: 1.4;
	position: relative;
	color: var(--accent-color);
}
details[open] summary{
}
details summary::-webkit-details-marker {
	display: none;
}
details summary span{
	position: relative;
}
details summary:before{
	content: "";
	display: inline-block;
	width: 17px;
	height: 1px;
	background: var(--accent-color);
	position: absolute;
	right:16px;
	top: 50%;
	transform: translateY(-50%);
}
details summary:after{
	content: "";
	display: inline-block;
	width: 1px;
	height: 17px;
	background: var(--accent-color);
	position: absolute;
	right: 24px;
	top: 50%;
	transform: translateY(-50%);
}
details[open] summary:after{
	display: none;
}
details summary:hover {
	color: var(--bg-secondary-color);
	background: var(--accent-color);
}
details summary:hover::before,
details summary:hover::after {
	background: var(--bg-secondary-color);
}

.sec_3 .row_01{
	padding: 40px 0;
	margin: auto;
	width: 100%;
	
}
.sec_3 .row_01 .ttl,
.sec_7 .row_01 .ttl {
	text-align: center;
	font-weight: 500;
	font-size: 1.25em;
	line-height: 1.25em;
}

.sec_3 .t-contents {
	margin: 0 auto;
	position: relative;
	z-index: 10;
}
.sec_3 .t-contents .p-area {
	padding: 20px 0 0 0px;
	text-align: center;
}
.sec_3 .t-contents .p-area .t_a_c {
	padding-bottom: 10px;
	font-size: 32px;
    margin: auto;
    font-weight: 700;
}
.sec_3 .t-contents .p-area .t_a_c:before{
	content: "";
	width: 1rem;
	height: 1px;
	background: white;
	display: inline-block;
	vertical-align: middle;
	margin-right: 3px;
}
@media screen and (max-width:767px) {
	details summary {
		font-weight: normal;
	}
}

/***************************************
08.チケットに関する注意事項 .sec_3
***************************************/
.sec_3 .ttl-area {
	padding-bottom: 50px;
}
.sec_3 .inner .row_01 h4 {
	text-align: center;
}
.row_01 {
	text-align: left;
	position: inherit;
	z-index: 20;
}
.row_01 p {
	line-height: 1.5em;
}
.row_01 ul {
	padding-left: 0.5em;
}
.row_01 ul li {
	text-indent: -1.4em;
	padding-left: 1em;
	padding-bottom: 0.6em;
    line-height: 1.7em;
	list-style: disc;
	list-style-position: inside;
	box-sizing: border-box;
}
.row_01 ul li.none_disc {
	text-indent: -1em;
	list-style: none;
}
.row_01 ul li ul {
	padding-left: 0;
}
.row_01 .l-s-none li {
	list-style: none;
	text-indent: -0.5em;
    padding-left: 0.5em;
}
.row_01 .l-s-none li::before {
	content: "・";
	display: inline-block;
}
.contact-2{
	padding-top: 50px;
}
@media screen and (max-width:767px) {
	.sec_3 .row_01{
		padding-top:30px;
	}
}

/***************************************
09.GOODS .sec_4
***************************************/
.sec_4 {
	padding-top: 80px;
}
.sec_4 .inner{
	padding-top: 20px;
}
.comming-soon {
	font-family: var(--font-montserrat);
	font-size: 22px;
	font-weight: 500;
	text-align: center;
	padding-top: 10px;
}
.sec_4 .map{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	padding-bottom: 30px;
}
.sec_4 .text-area {
	text-align: left;
	width: 58%;
	line-height: 1.6em;
}
.sec_4 p.address{
	padding-bottom: 1em;
}
.sec_4 div.place{
	margin-bottom: 5px;
}
.sec_4 .g_map {
	width: 39%;
	position: relative;
    z-index: 10;
}
.sec_4 .g_map iframe {
  width: 100%;
  height: 256px;
  display: block;
  box-shadow: var(--box-shadow);
}
.sec_4 .access-info p{
	padding-bottom: 0.5em;
}
.sec_4 .access-info ul {
	margin-left: 1em;
}
.sec_4 .access-info ul li{
	padding-bottom: 0.2em;
	list-style-type:disc;
}
@media screen and (max-width:767px) {
	.sec_4 {
		padding-top: 0;
	}
	.sec_4 .inner{
		display: block;
		margin: 0;
	}
	.sec_4 .text-area {
		width: 100%;
		padding: 0 20px;
	}
	.sec_4 div.place{
		font-size: 17px;
	}
	.sec_4 .g_map {
		display: block;
		width: 100%;
		margin-bottom: 20px;
	}
	.sec_4 p.address{
		line-height: 1.4em;
	}
	.sec_4 .g_map_inner {
		height: 250px;
	}
	.sec_4 .access-info h5{
		font-size: 1em;
		padding-bottom: 10px;
	}
	.sec_4 .g_map iframe {
		height: 250px;
	}
	.sec_4 .access-info ul li{
		padding-bottom: 0.5em;
	}
}


/***************************************
10.ACCESS sec_5
***************************************/
.sec_5 .inner {
	margin-top: 40px;
}
.access {
	display: flex;
	gap: 26px;
	margin-top: 20px;
}
.access-map {
	width: 390px;
	flex-shrink: 0;
}
.access-map iframe {
	display: block;
	width: 100%;
	aspect-ratio: 390 / 250;
}
.access-text {
	flex: 1;
}
.access a.map-link {
	justify-content: flex-start;
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 8px;
	width: fit-content;
}
.access a.map-link::before {
	width: 16px;
	height: 26px;
	background-color: var(--link-color);
}
.access a.map-link:hover::before {
	background-color: var(--accent-color);
}
.address {
	line-height: 1.3;
}
.access .hanging-indent {
	font-size: 14px;
	line-height: 1.7;
	margin-top: 24px;
}
.sec_5 p.comingsoon{
	font-family:var(--font-montserrat);
	font-size: 22px;
	text-align: center;
	padding: 40px 0;
}
.sec_5 .img{
	padding: 30px 0 10px 0;
	text-align: center;
}
.sec_05 .c-s {
	font-size: 18px;
	text-align: center;
	font-weight: bold;
}
.sec_05 #GOODS {
    padding: 0;
	line-height: 1.5;
}
.sec_05 #GOODS .goods_notice p {
    text-align: center;
    line-height: 1.8rem;
	margin-top: 10px;
    margin-bottom: 40px;
	font-size: 20px;
	font-weight: bold;
}
.sec_05 #GOODS>a.btn {
    display: block;
    margin: 0 auto 20px;
    text-decoration: none;
    color: #fff;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    background-color: #E89600;
    width: fit-content;
    padding: 23px 60px;
    box-sizing: border-box;
    border-radius: 45px;
    border: 2px solid #fff;
	box-shadow: 0px 3px 6px 0px rgba(193, 1, 24, 0.4);
}
.sec_05 #GOODS>a.btn:hover {
    opacity: 0.8;
}
#GOODS h3 {
    font-weight: bold;
    text-align: center;
    font-size: 20px;
    padding-bottom: 20px;
	line-height: 1.8em;
}
.sec_05 #GOODS ul.goods_info {
	list-style-position: outside;
    padding-left: 1em;
    list-style-type: "※";
}
.sec_05 #GOODS ul.goods_info:nth-of-type(1) {
	margin-bottom: 40px;
}
.sec_05 #GOODS ul.goods_info li {
    padding-bottom: 8px; 
}
.sec_05 #GOODS ul.goods_list {
	display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0 24px;
	margin-top: 60px;
}
.sec_05 #GOODS ul.goods_list li {
    width: 23%;
    margin-bottom: 40px;
}
.sec_05 #GOODS ul.goods_list li a {
    color: white;
    display: block;
}
.sec_05 #GOODS ul.goods_list li a:hover {
    text-decoration: none;
    color: #E89600;
}
.sec_05 #GOODS ul.goods_list li a.btn {
    display: block;
    margin: 0 auto 10px;
    text-decoration: none;
    color: #fff;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    background-color: #E89600;
    width: 100%;
    padding: 10px 20px 11px 15px;
    box-sizing: border-box;
    border-radius: 45px;
}
.sec_05 #GOODS ul.goods_list li a.btn:hover {
    opacity: 0.7;
}
.sec_05 #GOODS ul.goods_list li a img {
    width: 100%;
    margin-bottom: 10px;
}
.modal-inner h4, .sec_05 #GOODS ul.goods_list li a h4 {
    font-weight: bold;
    padding-bottom: 10px;
    line-height: 1.6rem;
}
.modal-inner p, .sec_05 #GOODS ul.goods_list li a p {
    margin-bottom: 10px;
}
.modal-inner p.price, .sec_05 #GOODS ul.goods_list li a p.price {
    text-align: right;
	font-weight: bold;
	padding-bottom: 15px;
}
.modal-inner p.price strong, .sec_05 #GOODS ul.goods_list li a p.price strong {
    font-size: 1.2rem;
    font-weight: bold;
}
.modal-inner p.exp, .sec_05 #GOODS ul.goods_list li a p.exp {
    line-height: 1.4rem;
}
.modal-inner p.exp span.small, .sec_05 #GOODS ul.goods_list li a p.exp span.small {
    font-size: 14px;
}
.sec_05 #GOODS .online_bnr {
    text-align: center;
}
#GOODS .dates{
	font-size: 20px;
    font-weight: bold;
    padding: 20px;
    background: white;
    color: #000;
    text-align: center;
    line-height: 1.7;
    margin-bottom: 20px;
}
#GOODS .dates dl {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    line-height: 1.6em;
    text-align: left;
}
#GOODS .dates dl dt {
    width: 25%;
    position: relative;
    text-align: right;
    padding-right: 5px;
}
#GOODS .dates dl dd {
    width: 60%;
    line-height: 1.5;
}
.sec_05 #GOODS h3.sales {
    margin-top: 40px;
}
.sec_05 #GOODS .goods_info_ttl {
    font-size: 18px;
    font-weight: bold;
    padding-bottom: 10px;
	margin-top: 20px;
}
.sec_05 #GOODS .goods_info_ttl:first-child {
    margin-top: 0;
}
/*------------mordal-area-----------------*/
.modal-content {
    width: 100%;
}
.modal {
    display: none;
    height: 100vh;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}
.modal__bg {
    background: #162328;
    opacity: 0.3;
    height: 100vh;
    position: absolute;
    width: 100%;
}
.modal__content {
    height: 85%;
    background: #110B04;
    left: 50%;
    padding: 50px;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 50%;
    box-sizing: border-box;
    border: 1px solid #DEC9B0;
}
.batsu {
    display: block;
    position: absolute;
    width: 50px;
    height: 50px;
    top: -20px;
    right: -20px;
    background-color: #DEC9B0;
    border-radius: 50%;
	color: #110B04;
}
.batsu::before, .batsu::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 3.5px;
    height: 25px;
    background: #110B04;
}
.batsu::before {
    transform: translate(-50%, -50%) rotate(45deg);
}
.batsu::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}
.modal__content .modal-inner {
    height: 100%;
    overflow-y: auto;
}
.modal__content .modal-inner img {
    width: 75%;
    display: block;
    margin: auto;
    padding-bottom: 20px;
}
.modal-inner h4 {
    font-size: 1.4rem;
}
.modal-inner p.price{
	padding-bottom: 0;
}
.modal-inner p.price strong {
    font-size: 1.4rem;
}
@media screen and (max-width:767px) {
	.sec_5 p.coming{
		font-size: 20px;
	}
	section.sec_5 .inner a.bt{
		width: 100%;
	}
}
.sec_5 .comingsoon{
	text-align: center;
	font-size: 2.5em;
	text-align: center;
	padding: 80px 0 80px;
	text-align: center;
}
/*仮*/
.sec_5_2 {
	padding: 100px 0;
}

.sec_5 .ttl-area {
	padding-bottom: 50px;

}
#GOODS{
	padding-top: 30px;
}
#GOODS p{
	line-height: 1.8rem;
	margin-bottom: 30px;
}
#GOODS p.lead{
	text-align: center;
}
#GOODS p.dates{
	font-size: 1.3rem;
	font-weight: bold;
	padding: 20px;
	background: white;
	color: #000;
	text-align: center;
}

#GOODS>a.btn {
    display: block;
    margin: 30px auto 60px;
    text-decoration: none;
    color: #fff;
    text-align: center;
    font-size: 1.5rem;
	font-weight: bold;
    background: #A4000F;
    width:20em;
    padding: 14px 20px 16px 15px;
    box-sizing: border-box;
    border-radius: 30px;
}
#GOODS>a.btn:hover{
	opacity: 0.7;
}

#GOODS ul{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
#GOODS ul li{
	width: 32%;
	margin-bottom: 30px;
}
#GOODS ul h4{
	font-size: 18px;
}
#GOODS ul li p{
	margin-bottom: 0px;
	text-align: left;
}
#GOODS ul li img{
	width: 100%;
	margin-bottom: 10px;
}
#GOODS ul li a{
	color:#DEC9B0;
	display: block;
	
}
#GOODS ul li a:hover{
	text-decoration: none;
	color: #A2F8EC;
}
#GOODS ul li a:hover img{
	opacity: 0.7;
}
#GOODS ul li p.name{
	font-weight: bold;
	padding-bottom: 0px;
	line-height: 1.4rem;
}
#GOODS ul li p.price{
	text-align: right;
	font-size: 20px;
	font-weight: bold;
}
#GOODS ul li p.exp{
	font-size: 14px;
}
#GOODS ul li p.price strong{
	font-size: 1.2rem;
	font-weight: bold;
}
.modal-inner p.price strong{
	font-size: 1.4rem;
}

#GOODS div.day{
	padding: 30px;
	background: #DEC9B0;
	color: #000;
	margin-bottom: 30px;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
.sec_3 .inner .outline > div.day h5 {
    width: 2em;
    margin: 0.4em 2em 0 0em;
    padding: 0;
}
#GOODS div.day p{
	display: inline-block;
	margin: 0;
	font-size: 20px;
}
#GOODS div.day p span{
	display: inline-block;
	background: #110B04;
	color: #DEC9B0;
	padding: 3px 5px;
	width: 12em;
	margin-bottom: 10px;
	text-align: center;
	margin-right: 10px;
}
#GOODS div.day{
	font-weight: bold;
	padding-left:10px;
}


@media screen and (max-width:767px) {
	.sec_05 #GOODS .goods_notice p {
		font-size: 18px;
		line-height: 1.5;
		margin-bottom: 25px;
	}
	
	.sec_05 .c-s {
		font-size: 14px;
		text-align: center;
		padding: 0;
	}
	#GOODS h3 {
		padding-bottom: 10px;
	}
	#GOODS h3 br{
		display: none;
	}
	#GOODS .dates {
		font-size: 16px;
	}
	.sec_05 #GOODS>a.btn {
		font-size: 18px;
		padding: 20px 40px;
		width: fit-content;
	}
	
	#GOODS .dates dl {
		display: block;
	}
	#GOODS .dates dl dt {
		width: 100%;
		text-align: center;
	}
	#GOODS .dates dl dd {
		width: 100%;
		text-align: center;
		padding-bottom: 15px;
	}
	#GOODS .dates dl dd:last-child {
		padding-bottom: 0;
	}
	#GOODS ul li {
		gap: 0 13px;
	}
	#GOODS ul li {
		width: 48%;
	}
	.modal-inner p.price, .sec_05 #GOODS ul.goods_list li a p.price {
		font-size: 14px;
	}
	.modal-inner p.exp, .sec_05 #GOODS ul.goods_list li a p.exp {
		line-height: 1.2rem;
		font-size: 0.9rem;
	}
	.sec_05 #GOODS ul.goods_list li a.btn {
		font-size: 14px;
		padding: 10px;
	}
	.modal__content {
		width: 90%;
		padding: 50px 20px;
		top: 50%;
		left: 50%;
		position: absolute;
		transform: translate(-50%, -50%);
		/*height: auto;*/
		height: 96%;
	}
	.batsu {
		display: block;
		position: absolute;
		width: 35px;
		height: 35px;
		top: -10px;
		right: -10px;
		border-radius: 50%;
	}
	.batsu::before, .batsu::after {
		content: "";
		position: absolute;
		top: 50%;
		left: 50%;
		width: 3px;
		height: 20px;
	}
	.modal__content .modal-inner {
		height: 100%;
		overflow-y: auto;
	}
	.modal-inner h4 {
		font-size: 1.1rem;
		text-align: left;
	}
	.modal-inner p.price strong {
		font-size: 1.2rem;
	}
	.modal-inner p.exp {
		line-height: 1.4rem;
		font-size: 1rem;
	}
	.sec_05 #GOODS .goods_info_ttl {
		font-size: 16px;
		padding-bottom: 5px;
		margin-top: 15px;
	}

	.access {
		flex-direction: column;
		gap: 0;
		margin-top: 40px;
	}
	.access-map {
		width: 100%;
	}
	.access a.map-link {
		font-size: 16px;
		padding: 0;
		width: auto;
		justify-content: center;
	}
	.access a.map-link::before {
		width: 10px;
		height: 17px;
	}
	.address {
		font-size: 14px;
		margin-top: 4px;
	}
}


/***************************************
11.
***************************************/

/***************************************
12.ご来場になるお客様へのお願い sec_7
***************************************/
.sec_7 {
}
.sec_7 .inner{
	
}
.sec_7 h5 {
	font-size: 16px;
}
.sec_7 .hanging-indent {
	font-size: 14px;
	line-height: 1.7;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.sec_7 .row_01 .ttl{
	font-weight: 700;
	padding-bottom: 20px;
	font-size: 24px;
}
.sec_7 .row_01 .info_text {
	padding-top: 30px;
	text-align: center;
}

#history {
	text-align: center;
	font-weight: 700;
}
#history ul.flex{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	max-width: 458px;
	margin: 20px auto;
}
#history ul.flex li{
	width: 48%;
	font-weight: 400;
}
#history ul.flex li a{
	color: var(--text-color);
	line-height: 1.6em;
}
#history ul.flex li img{
	margin-bottom: 10px;
}

/***************************************
13.pagetop
***************************************/
#pagetop {
    position: fixed;
    bottom: 10px;
    left: 5px;
    width: 40px;
    height: 50px;
	z-index: 1000;
}
#pagetop a{
	width: 40px;
	height: 40px;
	color: white;
	background: url(../img/arrow.png) no-repeat top center/70%;
	background-color: rgba(0,0,0,0.5);
}
