/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jan 17 2026 | 12:07:20 */
/* 親コンテナ */
.avia_codeblock .custom-404-block{
	position: relative;
	height: auto;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	padding: 0;
	margin: 0;
}

/* ギターSVG */
.guitarSVG {
    max-height: 400px; 
    width: auto;
    display: block;
    margin: 0 auto; /* ← 横中央寄せ */
    pointer-events: none;
}



.custom-404 {
    background: #fafaf7;
    position: relative;
    text-align: center;    /* ここを中央寄せに */
    padding: 50px 20px;    /* 上下左右の余白を調整 */
}

@keyframes pulse {
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.5;
    }
}

.custom-404::before {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    border: 1px solid rgba(58, 47, 42, 0.2); /* 404の後ろの円の色 */
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 2s ease-in-out infinite;
}



.custom-404 h1 {
    font-size: 100px;
    font-weight: 900;
    color: #3b2f2a;
    position: relative;
    z-index: 1;
    margin: 0 auto;
}

.custom-404 p {
    position: relative;
    z-index: 1;
    color: #888;
    margin: 10px auto 0 auto;
}

.custom-404 a {
    display: inline-block;
    padding: 13px 45px;
    background: #5a4a40;
    color: #fafaf7;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    margin-top: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.custom-404 a:hover {
    background: #3b2f2a;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

//Copyright (c) 2026 leimapapa (https://codepen.io/leimapapa/pen/VwdbPLW) 
//This software is released under the MIT License.
//https://opensource.org/licenses/MIT