@charset "utf-8";
/* CSS Document */
span.marker {
    background: linear-gradient(transparent 50%, #ffff00 50%);
}
.img{
    max-width: 740px;
    margin: 40px auto;
}
.btn{
	max-width: 320px;
	margin: 40px auto;
}
.btn a{
	text-align: center;
	background: linear-gradient(135deg, #2d1055, #7a1a4a);
	border: 2px solid #c9a84c;
	border-radius: 4em;
	padding: .6em;
	width: 100%;
	font-weight: bold;
	color: #f5d98a;
	font-size: 20px;
	letter-spacing: 1px;
	text-shadow: 0 1px 3px rgba(0,0,0,0.4);
	box-shadow: 0 4px 16px rgba(120,26,74,0.35);
	transition: all 0.3s ease;
}
.btn a:hover{
	background: linear-gradient(135deg, #7a1a4a, #2d1055);
	box-shadow: 0 6px 24px rgba(201,168,76,0.4);
	opacity: 1;
	transform: translateY(-2px);
}
.triangle {
	width: 0;
	height: 0;
	border-style: solid;
	border-right: 80px solid transparent;
	border-left: 80px solid transparent;
	border-top: 50px solid #7a1a4a;
	border-bottom: 0;
	margin: 0 auto 50px;
	text-align: center;
}

.footer-001 {
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 25px 10px 10px;
    background: linear-gradient(135deg, #0d0820 0%, #1a0a2e 60%, #2d1055 100%);
    border-top: 1px solid rgba(201,168,76,0.3);
    margin: 80px 0 0;
}
.footer-001__logo {
    width: 130px;
    height: 30px;
}

.footer-001__list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 1.5em;
    list-style-type: none;
    margin: 0 0 .5em;
    padding: .5em;
    font-size: 14px;
}

.footer-001__link {
    color: rgba(245,217,138,0.85);
    font-weight: 400;
    text-decoration: none;
}
.footer-001__link:hover{
    opacity: 0.5;
}

.footer-001__copyright {
    margin: 0;
    color: rgba(255,255,255,0.5);
    font-weight: 200;
    font-size: .8em;
}
/* ===============================
   レスポンシブ：768px以上（タブレット）
================================== */
@media (min-width: 768px) {
	.btn{
		max-width: 600px;
		margin: 40px auto;
	}
}
	