/* 右に矢印アイコンボタン */
.btn001 {
    width: 250px;
    text-align: center;
    margin: 50px auto 20px;
    position: relative;
}
.btn001 a {
    color: #fff;
	font-size: 1em;
	line-height: 1em;
	font-weight: 400;
	padding: 18px 44px 18px 24px;
	display: block;
	background-color: var(--color-green);
	border-radius: 10px;
	position: relative;
	transition: transform 0.2s ease, opacity 0.2s ease;
}
.btn001 a::after {
	content: "";
	position: absolute;
	right: 18px;
	top: 50%;
	width: 8px;
	height: 8px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	transform: translateY(-50%) rotate(45deg);
}
.btn001 a:hover {
	color: #fff;
	text-decoration: none;
	opacity: 0.75;
	transform: translateY(-3px);
}

/* 右に外部アイコンボタン */
.btn002 {
    width: 260px;
    text-align: center;
    margin: 15px 20px 20px 0;
    position: relative;
}

.btn002.bt_width {
    width: 200px;
    text-align: center;
    margin: 15px 20px 20px 0;
    position: relative;
}

.btn002 a {
    color: #fff !important;
    font-size: 0.9em;
    line-height: 1em;
    padding: 12px 36px 12px 10px;
    display: block;
    background-color: #222428;
    text-decoration: none !important;
    position: relative;
	border-radius: 5px;
}
.btn002 a i {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    margin-left: 0 !important;
}
.bbtn002 .link {
    position: absolute;
    right: 10px;
    top: 18px;
}
.btn002 a:hover {
	color: #fff;
	text-decoration: none;
	opacity: 0.75;
}


/* チケット購入ボタン */
.buy_o_btn a {
	color: #fff;
	font-size: 1.1em;
	line-height: 1em;
	font-weight: 500;
	padding: 11px 24px;
	display: block;
	background-color: #20c6cd;
	border-radius: 4px;
}

.buy_o_btn a:hover {
	color: #fff;
	text-decoration: none;
	opacity: 1;
}

.buy_btn a {
	color: #fff;
	font-size: 0.9em;
	line-height: 1em;
	font-weight: 400;
	padding: 11px 24px;
	display: block;
	background-color: var(--color-green);
	border-radius: 4px;
}

.buy_btn a:hover {
	color: #fff;
	text-decoration: none;
	opacity: 0.75;
}
@media screen and (max-width: 640px) {
.buy_o_btn a {
    color: #fff;
    font-size: 0.9em;
    padding: 10px 15px;
}

.buy_o_btn a:hover {
	opacity: 1;
}

.buy_btn a {
    color: #fff;
    font-size: 0.9em;
    padding: 10px 15px;
}
}
